diff --git a/BlueLaminate/BlueLaminate.Cli/ListingSweepService.cs b/BlueLaminate/BlueLaminate.Cli/ListingSweepService.cs new file mode 100644 index 0000000..064e6bd --- /dev/null +++ b/BlueLaminate/BlueLaminate.Cli/ListingSweepService.cs @@ -0,0 +1,556 @@ +using BlueLaminate.EFCore.Data; +using BlueLaminate.EFCore.Entities; +using BlueLaminate.Scraper.CsFloat; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Logging; + +namespace BlueLaminate.Cli; + +/// How many API pages were fetched. +/// Total listings returned across those pages. +/// New listings inserted. +/// Existing listings refreshed (price/last-seen/etc.). +/// Listings flagged Removed (only on a complete pass). +/// Listings resolved to a catalogue skin by def/paint. +/// Why the sweep ended. +public sealed record ListingSweepResult( + int Pages, + int Seen, + int Inserted, + int Updated, + int Removed, + int Linked, + string StoppedReason); + +/// Catalogue skins fully paged this run. +/// Skins left untouched (e.g. request budget ran out). +public sealed record CatalogSweepResult( + int SkinsCovered, + int SkinsSkipped, + int Pages, + int Seen, + int Inserted, + int Updated, + int Removed, + string StoppedReason); + +/// +/// Global incremental sweep of CSFloat active listings into the database. Pages +/// sort_by=most_recent with no item filter, so it captures every listing — +/// including items not in our catalogue. Each listing is upserted by its stable +/// CSFloat id; / +/// bound the observation window. +/// +/// Two things keep it safe against the 200-request rate limit and partial runs: +/// +/// Pacing. After each page it inspects the client's rate-limit +/// headers; when remaining is low it sleeps until the reset epoch rather than +/// risking a 429. +/// Removed-tracking only on a complete pass. Marking unseen listings +/// as Removed is only valid when the whole market was covered. A capped or +/// incremental run that stops early must not do it, or it would falsely "sell" +/// everything it didn't reach. +/// +/// +public sealed class ListingSweepService +{ + public const string Source = "listings"; + public const string CatalogSource = "listings-catalog"; + + // Pace before the bucket is fully empty so a slightly-stale counter can't tip + // us into a 429. + private const int RateLimitSafetyMargin = 2; + + private readonly SkinTrackerDbContext _db; + private readonly CsFloatListingsClient _client; + private readonly ILogger _logger; + + public ListingSweepService( + SkinTrackerDbContext db, + CsFloatListingsClient client, + ILogger logger) + { + _db = db; + _client = client; + _logger = logger; + } + + /// Hard cap on API pages this run (rate-limit budget). + /// Hard cap on listings ingested this run. + /// + /// Stop once a whole page is already-known listings (cheap daily delta). When + /// false, keep paging until the cursor or a cap is exhausted (cold pass). + /// + /// Optional courtesy delay between pages. + public async Task SweepAsync( + int maxRequests = 4, + int maxListings = 200, + bool incremental = true, + TimeSpan? delayBetweenPages = null, + CancellationToken ct = default) + { + var now = DateTimeOffset.UtcNow; + var pages = 0; + var seen = 0; + var inserted = 0; + var updated = 0; + var linked = 0; + string? cursor = null; + string stoppedReason = "cursor exhausted"; + var completePass = true; + + // Catalogue lookup for best-effort skin linking, built once per run. + var skinByIndex = await _db.Skins + .Where(s => s.DefIndex != null && s.PaintIndex != null) + .Select(s => new { s.Id, s.DefIndex, s.PaintIndex }) + .ToDictionaryAsync(s => (s.DefIndex!.Value, s.PaintIndex!.Value), s => s.Id, ct); + + // Track which listing ids we touched this run, so a complete pass can flag + // the rest as Removed. + var touchedIds = new HashSet(); + var touchedInstanceIds = new HashSet(); + + while (true) + { + if (pages >= maxRequests) + { + stoppedReason = $"hit max-requests cap ({maxRequests})"; + completePass = false; + break; + } + if (seen >= maxListings) + { + stoppedReason = $"hit max-listings cap ({maxListings})"; + completePass = false; + break; + } + + ListingsPageResult page; + try + { + page = await _client.FetchPageAsync( + defIndex: null, paintIndex: null, sortBy: "most_recent", + limit: 50, cursor: cursor, ct: ct); + } + catch (CsFloatApiException ex) + { + _logger.LogError("Sweep aborted: {Message}", ex.Message); + stoppedReason = $"API error: {ex.Status}"; + completePass = false; + break; + } + + pages++; + seen += page.Listings.Count; + + var (ins, upd, link, allKnown) = await IngestPageAsync( + page.Listings, skinByIndex, touchedIds, touchedInstanceIds, now, ct); + inserted += ins; + updated += upd; + linked += link; + + _logger.LogInformation( + "Page {Page}: {Count} listings ({Ins} new, {Upd} updated); {Rate}", + pages, page.Listings.Count, ins, upd, _client.LastRateLimit); + + cursor = page.Cursor; + + // End of the market. + if (string.IsNullOrEmpty(cursor) || page.Listings.Count == 0) + { + stoppedReason = "cursor exhausted"; + break; + } + + // Incremental short-circuit: a full page we already knew means we've + // caught up to the previous sweep. This is a partial pass by design. + if (incremental && allKnown) + { + stoppedReason = "reached already-seen listings (incremental)"; + completePass = false; + break; + } + + await PaceAsync(delayBetweenPages, ct); + } + + // Persist inserts/updates before computing Removed so the touched set is durable. + await _db.SaveChangesAsync(ct); + + var removed = 0; + if (completePass) + removed = await MarkRemovedAsync(touchedIds, now, ct); + else + _logger.LogInformation("Partial pass — skipping Removed-tracking to avoid false sales."); + + await FlagDupesAsync(touchedInstanceIds, now, ct); + + await _db.ScrapeRuns.AddAsync( + new ScrapeRun { Source = Source, RanAt = now, ItemCount = seen }, ct); + await _db.SaveChangesAsync(ct); + + return new ListingSweepResult(pages, seen, inserted, updated, removed, linked, stoppedReason); + } + + /// + /// Catalogue-driven sweep: walk skins that have def/paint indexes and query + /// each one's listings with a server-side def_index+paint_index filter. The + /// API returns only that skin's listings, so no rate-limit budget is wasted on + /// stickers/cases/agents — every request is productive weapon data. Because + /// each skin is paged to completion, Removed-tracking is accurate per skin + /// even when the overall run is capped: a skin we fully covered but whose old + /// listing is now absent is genuinely gone. + /// + /// Hard cap on API pages across the whole run. + /// Safety cap on pages-worth per skin. + /// Optional courtesy delay between pages. + public async Task SweepCatalogAsync( + int maxRequests = 50, + int maxListingsPerSkin = 500, + TimeSpan? delayBetweenPages = null, + CancellationToken ct = default) + { + var now = DateTimeOffset.UtcNow; + + // Least-recently-swept first (never-swept skins sort first because null + // orders before any timestamp ascending). This is the cross-run resume: + // a capped run always continues from where the previous one stopped, and + // the stalest data refreshes first. + var skins = await _db.Skins + .Where(s => s.DefIndex != null && s.PaintIndex != null) + .OrderBy(s => s.ListingsSweptAt) + .Select(s => new { s.Id, Def = s.DefIndex!.Value, Paint = s.PaintIndex!.Value }) + .ToListAsync(ct); + + var pages = 0; + var seen = 0; + var inserted = 0; + var updated = 0; + var removed = 0; + var covered = 0; + var stoppedReason = "all catalogue skins covered"; + + foreach (var skin in skins) + { + if (pages >= maxRequests) + { + stoppedReason = $"hit max-requests cap ({maxRequests})"; + break; + } + + // One-entry lookup so IngestPageAsync resolves SkinId to this skin. + var lookup = new Dictionary<(int, int), int> { [(skin.Def, skin.Paint)] = skin.Id }; + var touchedIds = new HashSet(); + var touchedInstanceIds = new HashSet(); + string? cursor = null; + var skinComplete = true; + var skinSeen = 0; + + while (true) + { + if (pages >= maxRequests) + { + stoppedReason = $"hit max-requests cap ({maxRequests})"; + skinComplete = false; + break; + } + + ListingsPageResult page; + try + { + page = await _client.FetchPageAsync( + defIndex: skin.Def, paintIndex: skin.Paint, sortBy: "lowest_price", + limit: 50, cursor: cursor, ct: ct); + } + catch (CsFloatApiException ex) + { + _logger.LogError("Catalogue sweep aborted on skin {SkinId}: {Message}", skin.Id, ex.Message); + await _db.SaveChangesAsync(ct); + return Finish($"API error: {ex.Status}"); + } + + pages++; + seen += page.Listings.Count; + skinSeen += page.Listings.Count; + + var (ins, upd, _, _) = await IngestPageAsync( + page.Listings, lookup, touchedIds, touchedInstanceIds, now, ct); + inserted += ins; + updated += upd; + + cursor = page.Cursor; + if (string.IsNullOrEmpty(cursor) || page.Listings.Count == 0) + break; + if (skinSeen >= maxListingsPerSkin) + { + skinComplete = false; // didn't reach the end; don't mark Removed + break; + } + + await PaceAsync(delayBetweenPages, ct); + } + + // Per-skin Removed-tracking + resume stamp: only when this skin was + // paged to the end. A partial skin (hit the per-skin cap) is left with + // its old ListingsSweptAt so the next run revisits it first. + if (skinComplete) + { + removed += await MarkRemovedForSkinAsync(skin.Id, touchedIds, now, ct); + await _db.Skins + .Where(s => s.Id == skin.Id) + .ExecuteUpdateAsync( + setters => setters.SetProperty(s => s.ListingsSweptAt, now), ct); + covered++; + } + + // Persist this skin's listings/instances before dupe analysis so the + // asset-id grouping query sees them. + await _db.SaveChangesAsync(ct); + await FlagDupesAsync(touchedInstanceIds, now, ct); + + await _db.SaveChangesAsync(ct); + await PaceAsync(delayBetweenPages, ct); + } + + await _db.ScrapeRuns.AddAsync( + new ScrapeRun { Source = CatalogSource, RanAt = now, ItemCount = seen }, ct); + await _db.SaveChangesAsync(ct); + + return Finish(stoppedReason); + + CatalogSweepResult Finish(string reason) => + new(covered, skins.Count - covered, pages, seen, inserted, updated, removed, reason); + } + + // Flag this skin's once-Active listings that we didn't see this run as Removed. + private async Task MarkRemovedForSkinAsync( + int skinId, HashSet touchedIds, DateTimeOffset now, CancellationToken ct) + { + return await _db.Listings + .Where(l => l.SkinId == skinId + && l.Status == ListingStatus.Active + && !touchedIds.Contains(l.CsFloatListingId)) + .ExecuteUpdateAsync( + setters => setters + .SetProperty(l => l.Status, ListingStatus.Removed) + .SetProperty(l => l.RemovedAt, now), + ct); + } + + // Upsert a page of listings. Returns counts plus whether every listing on the + // page already existed (the incremental stop signal). Also resolves each + // listing to a SkinInstance (the physical item, by fingerprint) and records + // the touched instance ids so the caller can run dupe detection over them. + private async Task<(int Inserted, int Updated, int Linked, bool AllKnown)> IngestPageAsync( + IReadOnlyList listings, + IReadOnlyDictionary<(int, int), int> skinByIndex, + HashSet touchedIds, + HashSet touchedInstanceIds, + DateTimeOffset now, + CancellationToken ct) + { + if (listings.Count == 0) + return (0, 0, 0, true); + + var ids = listings.Select(l => l.ListingId).ToList(); + var existing = await _db.Listings + .Where(l => ids.Contains(l.CsFloatListingId)) + .ToDictionaryAsync(l => l.CsFloatListingId, ct); + + var inserted = 0; + var updated = 0; + var linked = 0; + var allKnown = true; + + foreach (var l in listings) + { + touchedIds.Add(l.ListingId); + int? skinId = skinByIndex.TryGetValue((l.DefIndex, l.PaintIndex), out var id) ? id : null; + if (skinId is not null) + linked++; + + // Resolve the physical item only when we know the skin — the + // fingerprint is meaningless without it. + var instance = skinId is { } sid + ? await ResolveInstanceAsync(sid, l, now, ct) + : null; + if (instance is not null) + touchedInstanceIds.Add(instance.Id); + + if (existing.TryGetValue(l.ListingId, out var row)) + { + // Refresh mutable fields. Price can change; a re-appeared listing + // returns to Active. + row.Price = l.Price; + row.LastSeenAt = now; + row.Status = ListingStatus.Active; + row.RemovedAt = null; + row.SkinId = skinId; + row.AssetId = l.AssetId; + row.SkinInstance = instance; + updated++; + } + else + { + allKnown = false; + var entity = MapToEntity(l, skinId, now); + entity.SkinInstance = instance; + _db.Listings.Add(entity); + inserted++; + } + } + + return (inserted, updated, linked, allKnown); + } + + // Find the SkinInstance matching this listing's fingerprint, or create one. + // The fingerprint is (skin, full-precision float, seed, stattrak, souvenir). + // It is deliberately NOT unique — duped copies share it — so a match may + // already represent more than one physical item; dupe detection runs later. + private async Task ResolveInstanceAsync( + int skinId, CsFloatListing l, DateTimeOffset now, CancellationToken ct) + { + var seed = l.PaintSeed.ToString(); + + // Check the change-tracker first (an instance just added earlier this page + // isn't queryable yet), then the database. + var tracked = _db.ChangeTracker.Entries() + .Select(e => e.Entity) + .FirstOrDefault(i => i.SkinId == skinId && i.FloatValue == l.FloatValue + && i.PaintSeed == seed && i.StatTrak == l.IsStatTrak && i.Souvenir == l.IsSouvenir); + if (tracked is not null) + { + tracked.LastSeenAt = now; + return tracked; + } + + var instance = await _db.SkinInstances.FirstOrDefaultAsync( + i => i.SkinId == skinId && i.FloatValue == l.FloatValue + && i.PaintSeed == seed && i.StatTrak == l.IsStatTrak && i.Souvenir == l.IsSouvenir, + ct); + + if (instance is not null) + { + instance.LastSeenAt = now; + return instance; + } + + instance = new SkinInstance + { + SkinId = skinId, + FloatValue = l.FloatValue, + PaintSeed = seed, + StatTrak = l.IsStatTrak, + Souvenir = l.IsSouvenir, + FirstSeenAt = now, + LastSeenAt = now, + }; + _db.SkinInstances.Add(instance); + return instance; + } + + private static Listing MapToEntity(CsFloatListing l, int? skinId, DateTimeOffset now) => new() + { + CsFloatListingId = l.ListingId, + Type = l.Type, + Price = l.Price, + ListedAt = l.CreatedAt, + AssetId = l.AssetId, + DefIndex = l.DefIndex, + PaintIndex = l.PaintIndex, + MarketHashName = l.MarketHashName, + WearName = l.WearName, + FloatValue = l.FloatValue, + PaintSeed = l.PaintSeed, + IsStatTrak = l.IsStatTrak, + IsSouvenir = l.IsSouvenir, + StickerCount = l.StickerCount, + SellerSteamId = l.SellerSteamId, + InspectLink = l.InspectLink, + SkinId = skinId, + FirstSeenAt = now, + LastSeenAt = now, + Status = ListingStatus.Active, + }; + + // Flag every currently-Active listing we did NOT see this run as Removed. + // Only called after a complete pass. Done in a single set-based update to + // avoid loading the whole table. + private async Task MarkRemovedAsync( + HashSet touchedIds, DateTimeOffset now, CancellationToken ct) + { + return await _db.Listings + .Where(l => l.Status == ListingStatus.Active && !touchedIds.Contains(l.CsFloatListingId)) + .ExecuteUpdateAsync( + setters => setters + .SetProperty(l => l.Status, ListingStatus.Removed) + .SetProperty(l => l.RemovedAt, now), + ct); + } + + // Dupe detection. For each instance touched this run, count the DISTINCT + // asset ids among its currently-Active listings. Two or more means the same + // fingerprint (skin+float+seed+ST+souvenir) is live under multiple Steam + // assets at once — the signature of a duplicated item, as opposed to an + // ordinary trade (which retires the old listing before the new one appears, + // leaving a single active asset). Flags freshly-detected dupes and stamps + // when first seen, enabling "alert on fresh duping" downstream. + private async Task FlagDupesAsync( + HashSet instanceIds, DateTimeOffset now, CancellationToken ct) + { + if (instanceIds.Count == 0) + return; + + // Instances (among those touched) with 2+ distinct active asset ids. + var dupeInstanceIds = await _db.Listings + .Where(l => l.SkinInstanceId != null + && instanceIds.Contains(l.SkinInstanceId!.Value) + && l.Status == ListingStatus.Active + && l.AssetId != null) + .GroupBy(l => l.SkinInstanceId!.Value) + .Where(g => g.Select(l => l.AssetId).Distinct().Count() >= 2) + .Select(g => g.Key) + .ToListAsync(ct); + + if (dupeInstanceIds.Count == 0) + return; + + // Flag only those not already flagged, stamping first-seen once. Instances + // already marked stay marked (they're excluded by the !SuspectedDupe filter). + var newlyFlagged = await _db.SkinInstances + .Where(i => dupeInstanceIds.Contains(i.Id) && !i.SuspectedDupe) + .ExecuteUpdateAsync( + setters => setters + .SetProperty(i => i.SuspectedDupe, true) + .SetProperty(i => i.DupeFirstSeenAt, now), + ct); + + if (newlyFlagged > 0) + _logger.LogWarning( + "Dupe detection: {Count} instance(s) newly flagged as suspected dupes.", newlyFlagged); + } + + // Pace requests against the rate limit: if the bucket is nearly empty, sleep + // until the reset epoch. Otherwise apply only the optional courtesy delay. + private async Task PaceAsync(TimeSpan? delay, CancellationToken ct) + { + var rate = _client.LastRateLimit; + if (rate.Remaining is { } remaining && remaining <= RateLimitSafetyMargin + && long.TryParse(rate.Reset, out var resetEpoch)) + { + var resetAt = DateTimeOffset.FromUnixTimeSeconds(resetEpoch); + var wait = resetAt - DateTimeOffset.UtcNow; + if (wait > TimeSpan.Zero) + { + _logger.LogWarning( + "Rate limit nearly exhausted ({Remaining} left); sleeping {Seconds:0}s until reset.", + remaining, wait.TotalSeconds); + await Task.Delay(wait, ct); + return; + } + } + + if (delay is { } d && d > TimeSpan.Zero) + await Task.Delay(d, ct); + } +} diff --git a/BlueLaminate/BlueLaminate.Cli/Program.cs b/BlueLaminate/BlueLaminate.Cli/Program.cs index df096d0..f3ae79d 100644 --- a/BlueLaminate/BlueLaminate.Cli/Program.cs +++ b/BlueLaminate/BlueLaminate.Cli/Program.cs @@ -1,6 +1,9 @@ using BlueLaminate.Cli; using BlueLaminate.Cli.Logging; using BlueLaminate.EFCore.Data; +using BlueLaminate.Scraper.Browser; +using BlueLaminate.Scraper.CsFloat; +using BlueLaminate.Scraper.Proxies; using BlueLaminate.Scraper.Skins; using Microsoft.Extensions.Logging; using OpenTelemetry; @@ -46,13 +49,482 @@ syncSkins.SetAction((parseResult, ct) => loggerFactory, ct)); +var countryOption = new Option("--country") +{ + Description = "Optional ISO country code(s) for the exit IP, e.g. \"us\" or \"us,gb\". Default: random." +}; +var rotatingOption = new Option("--rotating") +{ + Description = "Use a rotating exit IP instead of a pinned (sticky) session." +}; + +var probeProxy = new Command( + "probe-proxy", + "Launch non-headless Edge through the IPRoyal residential proxy and print the exit IP " + + "to confirm auth works and the IP is residential. Reads IPROYAL_USERNAME / IPROYAL_PASSWORD.") +{ + countryOption, + rotatingOption, +}; +probeProxy.SetAction((parseResult, ct) => + ProbeProxyAsync( + parseResult.GetValue(countryOption), + parseResult.GetValue(rotatingOption), + loggerFactory, + ct)); + +var defIndexOption = new Option("--def-index") +{ + Description = "CSFloat weapon def_index (e.g. AK-47=7, M4A4=16)." +}; +var paintIndexOption = new Option("--paint-index") +{ + Description = "CSFloat paint_index for a specific skin (e.g. M4A4 | Cyber Security=985)." +}; +var urlOption = new Option("--url") +{ + Description = "Full CSFloat URL to open. Overrides --def-index/--paint-index when set." +}; +var loadImagesOption = new Option("--load-images") +{ + Description = "Load images (uses more bandwidth). Default off to conserve the metered plan." +}; +var diagnoseOption = new Option("--diagnose") +{ + Description = "Log every CSFloat-domain response (url + status + type) to reveal where a " + + "Steam-login wall appears, not just /api/ JSON." +}; +var outOption = new Option("--out") +{ + Description = "Directory to write captured JSON to.", + DefaultValueFactory = _ => "captures", +}; + +var captureCsfloat = new Command( + "capture-csfloat", + "Open a CSFloat search page through the residential proxy and dump every CSFloat /api/ " + + "JSON response to disk while you browse (open a listing → 'Latest Sales'). " + + "Reads IPROYAL_USERNAME / IPROYAL_PASSWORD.") +{ + defIndexOption, + paintIndexOption, + urlOption, + countryOption, + loadImagesOption, + diagnoseOption, + outOption, +}; +captureCsfloat.SetAction((parseResult, ct) => + CaptureCsfloatAsync( + parseResult.GetValue(defIndexOption), + parseResult.GetValue(paintIndexOption), + parseResult.GetValue(urlOption), + parseResult.GetValue(countryOption), + parseResult.GetValue(loadImagesOption), + parseResult.GetValue(diagnoseOption), + parseResult.GetValue(outOption)!, + loggerFactory, + ct)); + +var sortByOption = new Option("--sort-by") +{ + Description = "Listing sort order: lowest_price, highest_price, most_recent, " + + "lowest_float, highest_float, best_deal, etc.", + DefaultValueFactory = _ => "lowest_price", +}; +var maxOption = new Option("--max") +{ + Description = "Maximum number of listings to fetch (paged 50 at a time).", + DefaultValueFactory = _ => 50, +}; +var dumpOption = new Option("--dump") +{ + Description = "Optional file path to write the fetched listings as JSON." +}; + +var fetchListings = new Command( + "fetch-listings", + "Fetch active CSFloat listings for one skin via the official API and print them. " + + "Reads CSFLOAT_API_KEY. Fetch-and-print only — nothing is written to the database.") +{ + defIndexOption, + paintIndexOption, + sortByOption, + maxOption, + dumpOption, +}; +fetchListings.SetAction((parseResult, ct) => + FetchListingsAsync( + parseResult.GetValue(defIndexOption), + parseResult.GetValue(paintIndexOption), + parseResult.GetValue(sortByOption)!, + parseResult.GetValue(maxOption), + parseResult.GetValue(dumpOption), + loggerFactory, + ct)); + +var maxRequestsOption = new Option("--max-requests") +{ + Description = "Hard cap on API pages this run (rate-limit budget; 200/window).", + DefaultValueFactory = _ => 4, +}; +var maxIngestOption = new Option("--max-listings") +{ + Description = "Hard cap on listings ingested this run.", + DefaultValueFactory = _ => 200, +}; +var fullOption = new Option("--full") +{ + Description = "Cold full pass: keep paging past already-seen listings (default is " + + "incremental — stop once caught up)." +}; + +var sweepListings = new Command( + "sweep-listings", + "Global incremental sweep of active CSFloat listings into the database. Pages most_recent, " + + "upserts by listing id, paces off rate-limit headers. Reads CSFLOAT_API_KEY.") +{ + maxRequestsOption, + maxIngestOption, + fullOption, +}; +sweepListings.SetAction((parseResult, ct) => + SweepListingsAsync( + parseResult.GetValue(maxRequestsOption), + parseResult.GetValue(maxIngestOption), + parseResult.GetValue(fullOption), + loggerFactory, + ct)); + +var catalogMaxRequestsOption = new Option("--max-requests") +{ + Description = "Hard cap on API pages across the whole run (rate-limit budget; 200/window).", + DefaultValueFactory = _ => 50, +}; +var perSkinCapOption = new Option("--max-per-skin") +{ + Description = "Safety cap on listings fetched per skin before moving on.", + DefaultValueFactory = _ => 500, +}; + +var sweepCatalog = new Command( + "sweep-catalog", + "Catalogue-driven sweep: query each catalogue skin's listings by def_index+paint_index so " + + "only weapons are fetched (no stickers/cases/agents). Per-skin Removed-tracking. " + + "Reads CSFLOAT_API_KEY.") +{ + catalogMaxRequestsOption, + perSkinCapOption, +}; +sweepCatalog.SetAction((parseResult, ct) => + SweepCatalogAsync( + parseResult.GetValue(catalogMaxRequestsOption), + parseResult.GetValue(perSkinCapOption), + loggerFactory, + ct)); + var root = new RootCommand("BlueLaminate CLI — Counter-Strike skin tracker tools.") { syncSkins, + probeProxy, + captureCsfloat, + fetchListings, + sweepListings, + sweepCatalog, }; return await root.Parse(args).InvokeAsync(); +// Acquire an IPRoyal residential lease, drive a real (non-headless) Edge browser +// through it, and report the exit IP. This is the proxy/Selenium spike: it proves +// authenticated residential routing end-to-end for a few KB before any CSFloat +// scraping spends real bandwidth. +static async Task ProbeProxyAsync( + string? country, bool rotating, ILoggerFactory loggerFactory, CancellationToken ct) +{ + var username = Environment.GetEnvironmentVariable("IPROYAL_USERNAME"); + var password = Environment.GetEnvironmentVariable("IPROYAL_PASSWORD"); + if (string.IsNullOrWhiteSpace(username) || string.IsNullOrWhiteSpace(password)) + { + Console.Error.WriteLine( + "Set IPROYAL_USERNAME and IPROYAL_PASSWORD environment variables first."); + return 1; + } + + var provider = new IpRoyalProxyProvider(username, password); + var factory = new BrowserDriverFactory(loggerFactory.CreateLogger()); + var probe = new ProxyProbe(provider, factory, loggerFactory.CreateLogger()); + + try + { + var info = await probe.RunAsync(new ProxyRequest(Country: country, Sticky: !rotating)); + Console.WriteLine(); + Console.WriteLine($" Exit IP : {info.Ip}"); + Console.WriteLine($" Location: {info.City}, {info.Region}, {info.Country}"); + Console.WriteLine($" Org/ASN : {info.Org}"); + Console.WriteLine($" Hostname: {info.Hostname ?? "—"}"); + Console.WriteLine(); + Console.WriteLine( + "Check Org/ASN: a consumer ISP = residential; a hosting provider = datacenter."); + return 0; + } + catch (Exception ex) + { + Console.Error.WriteLine($"Proxy probe failed: {ex.Message}"); + return 1; + } +} + +// Phase B: open a CSFloat search page through the residential proxy and dump +// every CSFloat /api/ JSON response to disk while the operator browses. This is +// how we discover the real endpoint/field shapes (active listings + Latest +// Sales) before designing tables or automating navigation. +static async Task CaptureCsfloatAsync( + int? defIndex, int? paintIndex, string? url, string? country, + bool loadImages, bool diagnose, string outDir, ILoggerFactory loggerFactory, CancellationToken ct) +{ + var username = Environment.GetEnvironmentVariable("IPROYAL_USERNAME"); + var password = Environment.GetEnvironmentVariable("IPROYAL_PASSWORD"); + if (string.IsNullOrWhiteSpace(username) || string.IsNullOrWhiteSpace(password)) + { + Console.Error.WriteLine( + "Set IPROYAL_USERNAME and IPROYAL_PASSWORD environment variables first."); + return 1; + } + + var targetUrl = BuildCsfloatUrl(url, defIndex, paintIndex); + var provider = new IpRoyalProxyProvider(username, password); + var factory = new BrowserDriverFactory(loggerFactory.CreateLogger()); + var capture = new CsFloatCaptureService( + provider, factory, loggerFactory.CreateLogger()); + + Console.WriteLine($"Opening {targetUrl}"); + Console.WriteLine( + "When the page loads: click a listing, then the 'Latest Sales' tab. " + + "Capturing all CSFloat /api/ responses."); + Console.WriteLine("Press Enter here when you're done to close the browser."); + + try + { + // Block until the operator presses Enter; the browser stays open and + // capturing the whole time. ReadLine is sync, so push it off-thread. + var count = await capture.RunAsync( + targetUrl, + outDir, + new ProxyRequest(Country: country, Sticky: true), + loadImages, + diagnose, + () => Task.Run(() => Console.ReadLine(), ct)); + + var full = Path.GetFullPath(outDir); + Console.WriteLine(); + Console.WriteLine($"Captured {count} response(s) to {full}"); + return 0; + } + catch (Exception ex) + { + Console.Error.WriteLine($"CSFloat capture failed: {ex.Message}"); + return 1; + } +} + +// Prefer an explicit --url; otherwise build a search URL from the indexes, +// defaulting to the M4A4 | Cyber Security example so the command runs as-is. +static string BuildCsfloatUrl(string? url, int? defIndex, int? paintIndex) +{ + if (!string.IsNullOrWhiteSpace(url)) + return url; + + var def = defIndex ?? 16; + var paint = paintIndex ?? 985; + return $"https://csfloat.com/search?def_index={def}&paint_index={paint}"; +} + +// Fetch active listings for one skin via CSFloat's official API and print them. +// Fetch-and-print only — no DB — so we can verify the real field shapes against a +// live key before designing the Listing schema. Defaults to the M4A4 | Cyber +// Security sample so it runs with no args. +static async Task FetchListingsAsync( + int? defIndex, int? paintIndex, string sortBy, int max, string? dumpPath, + ILoggerFactory loggerFactory, CancellationToken ct) +{ + var apiKey = Environment.GetEnvironmentVariable("CSFLOAT_API_KEY"); + if (string.IsNullOrWhiteSpace(apiKey)) + { + Console.Error.WriteLine("Set the CSFLOAT_API_KEY environment variable first."); + return 1; + } + + var def = defIndex ?? 16; + var paint = paintIndex ?? 985; + + using var http = CreateHttpClient(); + var client = new CsFloatListingsClient( + http, apiKey, loggerFactory.CreateLogger()); + + try + { + Console.WriteLine( + $"Fetching up to {max} active listings for def_index={def}, paint_index={paint} " + + $"(sort: {sortBy})…"); + var listings = await client.GetListingsAsync(def, paint, sortBy, max, ct: ct); + + Console.WriteLine(); + Console.WriteLine(client.LastRateLimit.ToString()); + Console.WriteLine(); + if (listings.Count == 0) + { + Console.WriteLine("No active listings found."); + return 0; + } + + Console.WriteLine($"{listings.Count} listing(s):"); + Console.WriteLine($" {"Price",10} {"Float",-10} {"Seed",-6} {"Wear",-16} {"Name"}"); + foreach (var l in listings) + { + var st = (l.IsStatTrak ? " ST" : "") + (l.IsSouvenir ? " SV" : "") + + (l.StickerCount > 0 ? $" +{l.StickerCount}stk" : ""); + Console.WriteLine( + $" {l.Price,10:C} {l.FloatValue,-10:0.000000} {l.PaintSeed,-6} " + + $"{l.WearName,-16} {l.MarketHashName}{st}"); + } + + if (!string.IsNullOrWhiteSpace(dumpPath)) + { + var json = System.Text.Json.JsonSerializer.Serialize( + listings, new System.Text.Json.JsonSerializerOptions { WriteIndented = true }); + await File.WriteAllTextAsync(dumpPath, json, ct); + Console.WriteLine(); + Console.WriteLine($"Wrote {listings.Count} listing(s) to {Path.GetFullPath(dumpPath)}"); + } + + return 0; + } + catch (CsFloatApiException ex) + { + Console.Error.WriteLine(ex.Message); + Console.Error.WriteLine(client.LastRateLimit.ToString()); + return 1; + } + catch (Exception ex) + { + Console.Error.WriteLine($"Fetch failed: {ex.Message}"); + return 1; + } +} + +// Global incremental sweep of active CSFloat listings into the database. Paces +// off rate-limit headers and only marks listings Removed on a complete pass. +static async Task SweepListingsAsync( + int maxRequests, int maxListings, bool full, ILoggerFactory loggerFactory, CancellationToken ct) +{ + var apiKey = Environment.GetEnvironmentVariable("CSFLOAT_API_KEY"); + if (string.IsNullOrWhiteSpace(apiKey)) + { + Console.Error.WriteLine("Set the CSFLOAT_API_KEY environment variable first."); + return 1; + } + + using var http = CreateHttpClient(); + var client = new CsFloatListingsClient( + http, apiKey, loggerFactory.CreateLogger()); + + using var db = new SkinTrackerDbContextFactory().CreateDbContext([]); + var service = new ListingSweepService( + db, client, loggerFactory.CreateLogger()); + + try + { + Console.WriteLine( + $"Sweeping listings ({(full ? "full cold pass" : "incremental")}; " + + $"max {maxRequests} requests, {maxListings} listings)…"); + + var r = await service.SweepAsync( + maxRequests: maxRequests, + maxListings: maxListings, + incremental: !full, + ct: ct); + + Console.WriteLine(); + Console.WriteLine($"Sweep complete ({r.StoppedReason}):"); + Console.WriteLine($" Pages fetched : {r.Pages}"); + Console.WriteLine($" Listings seen : {r.Seen}"); + Console.WriteLine($" Inserted : {r.Inserted}"); + Console.WriteLine($" Updated : {r.Updated}"); + Console.WriteLine($" Removed : {r.Removed}"); + Console.WriteLine($" Catalog-linked: {r.Linked}"); + Console.WriteLine(); + Console.WriteLine(client.LastRateLimit.ToString()); + return 0; + } + catch (CsFloatApiException ex) + { + Console.Error.WriteLine(ex.Message); + Console.Error.WriteLine(client.LastRateLimit.ToString()); + return 1; + } + catch (Exception ex) + { + Console.Error.WriteLine($"Sweep failed: {ex.Message}"); + return 1; + } +} + +// Catalogue-driven sweep: query each catalogue skin's listings by def/paint so +// only weapons are fetched (no stickers/cases/agents) and Removed-tracking is +// accurate per skin. Writes to the database. +static async Task SweepCatalogAsync( + int maxRequests, int maxPerSkin, ILoggerFactory loggerFactory, CancellationToken ct) +{ + var apiKey = Environment.GetEnvironmentVariable("CSFLOAT_API_KEY"); + if (string.IsNullOrWhiteSpace(apiKey)) + { + Console.Error.WriteLine("Set the CSFLOAT_API_KEY environment variable first."); + return 1; + } + + using var http = CreateHttpClient(); + var client = new CsFloatListingsClient( + http, apiKey, loggerFactory.CreateLogger()); + + using var db = new SkinTrackerDbContextFactory().CreateDbContext([]); + var service = new ListingSweepService( + db, client, loggerFactory.CreateLogger()); + + try + { + Console.WriteLine( + $"Catalogue sweep (weapons only; max {maxRequests} requests, {maxPerSkin}/skin)…"); + + var r = await service.SweepCatalogAsync( + maxRequests: maxRequests, maxListingsPerSkin: maxPerSkin, ct: ct); + + Console.WriteLine(); + Console.WriteLine($"Catalogue sweep complete ({r.StoppedReason}):"); + Console.WriteLine($" Skins covered : {r.SkinsCovered}"); + Console.WriteLine($" Skins skipped : {r.SkinsSkipped}"); + Console.WriteLine($" Pages fetched : {r.Pages}"); + Console.WriteLine($" Listings seen : {r.Seen}"); + Console.WriteLine($" Inserted : {r.Inserted}"); + Console.WriteLine($" Updated : {r.Updated}"); + Console.WriteLine($" Removed : {r.Removed}"); + Console.WriteLine(); + Console.WriteLine(client.LastRateLimit.ToString()); + return 0; + } + catch (CsFloatApiException ex) + { + Console.Error.WriteLine(ex.Message); + Console.Error.WriteLine(client.LastRateLimit.ToString()); + return 1; + } + catch (Exception ex) + { + Console.Error.WriteLine($"Catalogue sweep failed: {ex.Message}"); + return 1; + } +} + // Load the CS2 skin catalogue from the CSGO-API dataset and upsert it. Weapons // and collections are derived from the skins themselves. Throttled to once a // month unless --force; --dry-run loads and prints without a DB. @@ -73,8 +545,9 @@ static async Task SyncSkinsAsync( var tags = (s.StatTrakAvailable ? " ST" : "") + (s.SouvenirAvailable ? " SV" : ""); var range = s.FloatMin is not null ? $"{s.FloatMin:0.00}-{s.FloatMax:0.00}" : "—"; var sources = s.Sources.Count > 0 ? string.Join(", ", s.Sources.Select(x => x.Name)) : "—"; + var idx = $"{s.DefIndex?.ToString() ?? "—"}/{s.PaintIndex?.ToString() ?? "—"}"; Console.WriteLine( - $" {s.WeaponName,-16} {s.Name,-24} {s.Rarity,-14} {range,-10} {sources}{tags}"); + $" {idx,-10} {s.WeaponName,-16} {s.Name,-24} {s.Rarity,-14} {range,-10} {sources}{tags}"); } return 0; } diff --git a/BlueLaminate/BlueLaminate.Cli/SkinSyncService.cs b/BlueLaminate/BlueLaminate.Cli/SkinSyncService.cs index ca110be..4c4847f 100644 --- a/BlueLaminate/BlueLaminate.Cli/SkinSyncService.cs +++ b/BlueLaminate/BlueLaminate.Cli/SkinSyncService.cs @@ -161,6 +161,8 @@ public sealed class SkinSyncService } Set(() => skin.Name, v => skin.Name = v, s.Name); + Set(() => skin.DefIndex, v => skin.DefIndex = v, s.DefIndex); + Set(() => skin.PaintIndex, v => skin.PaintIndex = v, s.PaintIndex); Set(() => skin.Rarity, v => skin.Rarity = v, s.Rarity); Set(() => skin.Description, v => skin.Description = v, s.Description); Set(() => skin.ImageUrl, v => skin.ImageUrl = v, s.ImageUrl); diff --git a/BlueLaminate/BlueLaminate.EFCore/Configurations/ListingConfiguration.cs b/BlueLaminate/BlueLaminate.EFCore/Configurations/ListingConfiguration.cs new file mode 100644 index 0000000..c5b3e8c --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Configurations/ListingConfiguration.cs @@ -0,0 +1,43 @@ +using BlueLaminate.EFCore.Entities; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; + +namespace BlueLaminate.EFCore.Configurations; + +public class ListingConfiguration : IEntityTypeConfiguration+{ + public void Configure(EntityTypeBuilder entity) + { + // CSFloat's listing id is the natural key; the incremental sweep upserts + // against it and must never create duplicates. + entity.HasIndex(e => e.CsFloatListingId).IsUnique(); + + entity.Property(e => e.Price).HasPrecision(18, 2); + // Full precision to match SkinInstance for exact fingerprint joins. + entity.Property(e => e.FloatValue).HasColumnType("numeric(20,18)"); + + // Store the enum as text so the DB is self-describing (matches the + // project's readable-data leaning over opaque ints). + entity.Property(e => e.Status).HasConversion(); + + // The sweep filters/sorts by item identity and by what's still active. + entity.HasIndex(e => new { e.DefIndex, e.PaintIndex }); + entity.HasIndex(e => e.Status); + + // Best-effort catalogue link: a global sweep sees items we may not have, + // so the FK is optional and set null if the skin is later removed. + entity.HasOne(e => e.Skin) + .WithMany() + .HasForeignKey(e => e.SkinId) + .OnDelete(DeleteBehavior.SetNull); + + // Listings roll up to the physical item they represent. + entity.HasOne(e => e.SkinInstance) + .WithMany(i => i.Listings) + .HasForeignKey(e => e.SkinInstanceId) + .OnDelete(DeleteBehavior.SetNull); + + // Dupe analysis groups a fingerprint's listings by asset id. + entity.HasIndex(e => e.AssetId); + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinConfiguration.cs b/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinConfiguration.cs index 039fea3..c9e32ad 100644 --- a/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinConfiguration.cs +++ b/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinConfiguration.cs @@ -21,6 +21,18 @@ public class SkinConfiguration : IEntityTypeConfiguration // Slug is the natural key the sync upserts against. entity.HasIndex(e => e.Slug).IsUnique(); + // Market listings join back to a skin by (def_index, paint_index). Unique + // among populated rows; filtered so the many catalogue rows that predate + // these columns (null) don't collide. Postgres treats nulls as distinct + // anyway, but the filter makes the intent explicit and the index smaller. + entity.HasIndex(e => new { e.DefIndex, e.PaintIndex }) + .IsUnique() + .HasFilter("def_index IS NOT NULL AND paint_index IS NOT NULL"); + + // The catalogue sweep orders skins by when they were last swept (nulls + // first) to resume across capped runs; index that ordering. + entity.HasIndex(e => e.ListingsSweptAt); + entity.HasOne(e => e.Weapon) .WithMany(w => w.Skins) .HasForeignKey(e => e.WeaponId); diff --git a/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinInstanceConfiguration.cs b/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinInstanceConfiguration.cs index 3308d6f..e32f798 100644 --- a/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinInstanceConfiguration.cs +++ b/BlueLaminate/BlueLaminate.EFCore/Configurations/SkinInstanceConfiguration.cs @@ -8,19 +8,34 @@ public class SkinInstanceConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder entity) { - entity.Property(e => e.FloatValue).HasColumnType("numeric(10,9)"); + // Full precision so exact-match dupe detection isn't defeated by rounding. + // CSFloat returns deterministic ~17-digit floats; numeric(20,18) holds them. + entity.Property(e => e.FloatValue).HasColumnType("numeric(20,18)"); - // Primary lookup key for trade fingerprinting. - entity.HasIndex(e => e.FloatValue); - entity.HasIndex(e => e.PaintSeed); + // The fingerprint that identifies a physical item. NOT unique: duped items + // legitimately share a fingerprint, and detecting that collision is the + // point. Indexed for fast fingerprint resolution during the sweep. + entity.HasIndex(e => new + { + e.SkinId, + e.FloatValue, + e.PaintSeed, + e.StatTrak, + e.Souvenir, + }); + + // Surfacing fresh dupes is a hot query. + entity.HasIndex(e => e.SuspectedDupe); entity.HasOne(e => e.Skin) .WithMany(s => s.Instances) .HasForeignKey(e => e.SkinId); + // Condition is optional now (derived from float later); set null on delete + // rather than restrict so condition rows can change without blocking. entity.HasOne(e => e.Condition) .WithMany(c => c.Instances) .HasForeignKey(e => e.ConditionId) - .OnDelete(DeleteBehavior.Restrict); + .OnDelete(DeleteBehavior.SetNull); } } diff --git a/BlueLaminate/BlueLaminate.EFCore/Data/SkinTrackerDbContext.cs b/BlueLaminate/BlueLaminate.EFCore/Data/SkinTrackerDbContext.cs index 5ca1af2..eeda481 100644 --- a/BlueLaminate/BlueLaminate.EFCore/Data/SkinTrackerDbContext.cs +++ b/BlueLaminate/BlueLaminate.EFCore/Data/SkinTrackerDbContext.cs @@ -29,6 +29,7 @@ public class SkinTrackerDbContext : DbContext public DbSet Trades => Set(); public DbSet TradeItems => Set(); public DbSet PriceHistories => Set(); + public DbSet Listings => Set(); /// The PostgreSQL schema that owns all of this context's tables. public const string Schema = "skintracker"; @@ -48,5 +49,6 @@ public class SkinTrackerDbContext : DbContext modelBuilder.ApplyConfiguration(new TradeConfiguration()); modelBuilder.ApplyConfiguration(new TradeItemConfiguration()); modelBuilder.ApplyConfiguration(new PriceHistoryConfiguration()); + modelBuilder.ApplyConfiguration(new ListingConfiguration()); } } diff --git a/BlueLaminate/BlueLaminate.EFCore/Entities/Listing.cs b/BlueLaminate/BlueLaminate.EFCore/Entities/Listing.cs new file mode 100644 index 0000000..7265219 --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Entities/Listing.cs @@ -0,0 +1,86 @@ +namespace BlueLaminate.EFCore.Entities; + +/// Lifecycle of a CSFloat listing as observed across sweeps. +public enum ListingStatus +{ + /// Seen in the most recent sweep that covered it. + Active = 0, + + /// + /// Previously seen, then absent from a sweep that should have covered it — + /// i.e. sold or delisted. The disappearance is the signal; we can't tell sold + /// from delisted with certainty, but bounds when. + /// + Removed = 1, +} + +/// +/// One active-market listing observed on CSFloat via the official +/// GET /api/v1/listings endpoint. Rows are keyed by CSFloat's own listing +/// id and soft-tracked across sweeps: / +/// bound the observation window and flips to +/// when a once-seen listing stops appearing, +/// which approximates a sale/delisting. +/// +/// A global sweep returns items that may not be in our catalogue, so +/// is a best-effort nullable link (resolved by +/// def_index + paint_index); the listing stands on its own without it. +/// +public class Listing +{ + public int Id { get; set; } + + /// CSFloat's listing id (a snowflake string). Natural key for dedup. + public string CsFloatListingId { get; set; } = null!; + + /// "buy_now" or "auction". + public string Type { get; set; } = null!; + + /// Asking price in USD. + public decimal Price { get; set; } + + /// When CSFloat says the listing was created. + public DateTimeOffset ListedAt { get; set; } + + // Item identity. Stored directly (not only via the Skin link) so listings for + // items outside our catalogue are still fully described. + public int DefIndex { get; set; } + public int PaintIndex { get; set; } + public string MarketHashName { get; set; } = null!; + public string? WearName { get; set; } + public decimal FloatValue { get; set; } + public int PaintSeed { get; set; } + public bool IsStatTrak { get; set; } + public bool IsSouvenir { get; set; } + public int StickerCount { get; set; } + + public string? SellerSteamId { get; set; } + public string? InspectLink { get; set; } + + /// + /// Steam asset id of the listed copy. Changes on trade, so not a stable + /// identity — but the discriminator that distinguishes duped copies which + /// otherwise share an identical fingerprint. + /// + public string? AssetId { get; set; } + + /// Best-effort catalogue link, resolved by def_index + paint_index. Null if unmatched. + public int? SkinId { get; set; } + public Skin? Skin { get; set; } + + /// + /// The physical item (by fingerprint) this listing is for. Many listings over + /// time roll up to one instance, forming its market-movement history. Nullable + /// because catalogue-less items can't be fingerprinted to a known skin. + /// + public int? SkinInstanceId { get; set; } + public SkinInstance? SkinInstance { get; set; } + + // Soft-tracking across sweeps. + public DateTimeOffset FirstSeenAt { get; set; } + public DateTimeOffset LastSeenAt { get; set; } + public ListingStatus Status { get; set; } + + /// When the listing was marked Removed (absent from a sweep). Null while Active. + public DateTimeOffset? RemovedAt { get; set; } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Entities/Skin.cs b/BlueLaminate/BlueLaminate.EFCore/Entities/Skin.cs index f1049c5..e7fe387 100644 --- a/BlueLaminate/BlueLaminate.EFCore/Entities/Skin.cs +++ b/BlueLaminate/BlueLaminate.EFCore/Entities/Skin.cs @@ -9,6 +9,19 @@ public class Skin /// Stable id from the CSGO-API catalogue, e.g. "skin-e757fd7191f9". The natural key. public string Slug { get; set; } = null!; + // CSFloat/CS item indexes, sourced from the static catalogue (weapon.weapon_id + // and paint_index). Together they identify a skin on CSFloat and let market + // listings join back to this catalogue row. Nullable until a sync populates + // them, since older catalogue rows predate these columns. + public int? DefIndex { get; set; } + public int? PaintIndex { get; set; } + + // When the catalogue-driven listing sweep last fully covered this skin. The + // sweep processes least-recently-swept skins first (nulls = never swept), so + // capped runs chain across the whole catalogue and the stalest data refreshes + // first. Null until the first sweep reaches this skin. + public DateTimeOffset? ListingsSweptAt { get; set; } + public string Name { get; set; } = null!; public string Rarity { get; set; } = null!; public string? Description { get; set; } diff --git a/BlueLaminate/BlueLaminate.EFCore/Entities/SkinInstance.cs b/BlueLaminate/BlueLaminate.EFCore/Entities/SkinInstance.cs index 0a4492c..92b0491 100644 --- a/BlueLaminate/BlueLaminate.EFCore/Entities/SkinInstance.cs +++ b/BlueLaminate/BlueLaminate.EFCore/Entities/SkinInstance.cs @@ -1,20 +1,50 @@ namespace BlueLaminate.EFCore.Entities; +/// +/// One physical CS2 item, identified by its fingerprint +/// (Skin + FloatValue + PaintSeed + StatTrak + Souvenir) rather than its Steam +/// asset id, which changes on every trade. Decoupled from Steam inventories on +/// purpose: an instance exists from market observation alone, and the optional +/// bridge ties it to a SteamUser only once we +/// crawl inventories. +/// +/// Duping note: a duplicated item is a byte-for-byte copy with an identical +/// fingerprint, so a fingerprint is NOT guaranteed unique to one physical item. +/// We treat the fingerprint as the item, and flag +/// when the same fingerprint is seen live under two or more different asset ids +/// at once (see the sweep's dupe detection). +/// public class SkinInstance { public int Id { get; set; } public int SkinId { get; set; } public Skin Skin { get; set; } = null!; - public int ConditionId { get; set; } - public SkinCondition Condition { get; set; } = null!; - // FloatValue + PaintSeed form a stable fingerprint across trades; the Steam - // asset_id changes on every trade but these do not. + // Nullable: market observation gives a float but not a derived wear bucket. + // Condition can be backfilled later from the float without blocking ingest. + public int? ConditionId { get; set; } + public SkinCondition? Condition { get; set; } + + // The fingerprint. FloatValue is stored at full precision (see config) so + // that exact-match dupe detection isn't fooled by rounding. public decimal FloatValue { get; set; } public string PaintSeed { get; set; } = null!; public bool StatTrak { get; set; } public bool Souvenir { get; set; } public DateTimeOffset FirstSeenAt { get; set; } + public DateTimeOffset LastSeenAt { get; set; } + + /// + /// True once this fingerprint was observed live under 2+ distinct asset ids + /// simultaneously — the signature of duplication. + /// + public bool SuspectedDupe { get; set; } + + /// When the dupe condition was first detected. Null until then. + public DateTimeOffset? DupeFirstSeenAt { get; set; } + + /// Every market listing observed for this physical item over time. + public ICollection Listings { get; set; } = new List(); public ICollection InventoryItems { get; set; } = new List(); } diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530014903_AddListingsAndSkinIndexes.Designer.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530014903_AddListingsAndSkinIndexes.Designer.cs new file mode 100644 index 0000000..4b475f1 --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530014903_AddListingsAndSkinIndexes.Designer.cs @@ -0,0 +1,829 @@ +// +using System; +using BlueLaminate.EFCore.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace BlueLaminate.EFCore.Migrations +{ + [DbContext(typeof(SkinTrackerDbContext))] + [Migration("20260530014903_AddListingsAndSkinIndexes")] + partial class AddListingsAndSkinIndexes + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasDefaultSchema("skintracker") + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Collection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("Slug") + .IsRequired() + .HasColumnType("text") + .HasColumnName("slug"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.HasKey("Id") + .HasName("pk_collections"); + + b.HasIndex("Slug") + .IsUnique() + .HasDatabaseName("ix_collections_slug"); + + b.ToTable("collections", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AcquiredAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("acquired_at"); + + b.Property("AssetId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("asset_id"); + + b.Property("SkinInstanceId") + .HasColumnType("integer") + .HasColumnName("skin_instance_id"); + + b.Property("UserId") + .HasColumnType("integer") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("pk_inventory_items"); + + b.HasIndex("AssetId") + .HasDatabaseName("ix_inventory_items_asset_id"); + + b.HasIndex("SkinInstanceId") + .HasDatabaseName("ix_inventory_items_skin_instance_id"); + + b.HasIndex("UserId") + .HasDatabaseName("ix_inventory_items_user_id"); + + b.ToTable("inventory_items", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CsFloatListingId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("cs_float_listing_id"); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_value"); + + b.Property("InspectLink") + .HasColumnType("text") + .HasColumnName("inspect_link"); + + b.Property("IsSouvenir") + .HasColumnType("boolean") + .HasColumnName("is_souvenir"); + + b.Property("IsStatTrak") + .HasColumnType("boolean") + .HasColumnName("is_stat_trak"); + + b.Property("LastSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_at"); + + b.Property("ListedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listed_at"); + + b.Property("MarketHashName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("market_hash_name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("PaintSeed") + .HasColumnType("integer") + .HasColumnName("paint_seed"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RemovedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("removed_at"); + + b.Property("SellerSteamId") + .HasColumnType("text") + .HasColumnName("seller_steam_id"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text") + .HasColumnName("status"); + + b.Property("StickerCount") + .HasColumnType("integer") + .HasColumnName("sticker_count"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.Property("WearName") + .HasColumnType("text") + .HasColumnName("wear_name"); + + b.HasKey("Id") + .HasName("pk_listings"); + + b.HasIndex("CsFloatListingId") + .IsUnique() + .HasDatabaseName("ix_listings_cs_float_listing_id"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_listings_skin_id"); + + b.HasIndex("Status") + .HasDatabaseName("ix_listings_status"); + + b.HasIndex("DefIndex", "PaintIndex") + .HasDatabaseName("ix_listings_def_index_paint_index"); + + b.ToTable("listings", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConditionId") + .HasColumnType("integer") + .HasColumnName("condition_id"); + + b.Property("Currency") + .IsRequired() + .HasColumnType("text") + .HasColumnName("currency"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RecordedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("recorded_at"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Source") + .IsRequired() + .HasColumnType("text") + .HasColumnName("source"); + + b.HasKey("Id") + .HasName("pk_price_histories"); + + b.HasIndex("ConditionId") + .HasDatabaseName("ix_price_histories_condition_id"); + + b.HasIndex("SkinId", "ConditionId", "RecordedAt") + .HasDatabaseName("ix_price_histories_skin_id_condition_id_recorded_at"); + + b.ToTable("price_histories", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.ScrapeRun", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ItemCount") + .HasColumnType("integer") + .HasColumnName("item_count"); + + b.Property("RanAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("ran_at"); + + b.Property("Source") + .IsRequired() + .HasColumnType("text") + .HasColumnName("source"); + + b.HasKey("Id") + .HasName("pk_scrape_runs"); + + b.HasIndex("Source", "RanAt") + .HasDatabaseName("ix_scrape_runs_source_ran_at"); + + b.ToTable("scrape_runs", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("Description") + .HasColumnType("text") + .HasColumnName("description"); + + b.Property("FloatMax") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_max"); + + b.Property("FloatMin") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_min"); + + b.Property("ImageUrl") + .HasColumnType("text") + .HasColumnName("image_url"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("Rarity") + .IsRequired() + .HasColumnType("text") + .HasColumnName("rarity"); + + b.Property("Slug") + .IsRequired() + .HasColumnType("text") + .HasColumnName("slug"); + + b.Property("SouvenirAvailable") + .HasColumnType("boolean") + .HasColumnName("souvenir_available"); + + b.Property("StatTrakAvailable") + .HasColumnType("boolean") + .HasColumnName("stat_trak_available"); + + b.Property("TrueFloat") + .ValueGeneratedOnAddOrUpdate() + .HasColumnType("boolean") + .HasColumnName("true_float") + .HasComputedColumnSql("float_min = 0.0 AND float_max = 1.0", true); + + b.Property("WeaponId") + .HasColumnType("integer") + .HasColumnName("weapon_id"); + + b.HasKey("Id") + .HasName("pk_skins"); + + b.HasIndex("Slug") + .IsUnique() + .HasDatabaseName("ix_skins_slug"); + + b.HasIndex("TrueFloat") + .HasDatabaseName("ix_skins_true_float"); + + b.HasIndex("WeaponId") + .HasDatabaseName("ix_skins_weapon_id"); + + b.HasIndex("DefIndex", "PaintIndex") + .IsUnique() + .HasDatabaseName("ix_skins_def_index_paint_index") + .HasFilter("def_index IS NOT NULL AND paint_index IS NOT NULL"); + + b.ToTable("skins", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Condition") + .IsRequired() + .HasColumnType("text") + .HasColumnName("condition"); + + b.Property("MaxFloat") + .HasColumnType("numeric(10,9)") + .HasColumnName("max_float"); + + b.Property("MinFloat") + .HasColumnType("numeric(10,9)") + .HasColumnName("min_float"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.HasKey("Id") + .HasName("pk_skin_conditions"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_skin_conditions_skin_id"); + + b.ToTable("skin_conditions", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConditionId") + .HasColumnType("integer") + .HasColumnName("condition_id"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_value"); + + b.Property("PaintSeed") + .IsRequired() + .HasColumnType("text") + .HasColumnName("paint_seed"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Souvenir") + .HasColumnType("boolean") + .HasColumnName("souvenir"); + + b.Property("StatTrak") + .HasColumnType("boolean") + .HasColumnName("stat_trak"); + + b.HasKey("Id") + .HasName("pk_skin_instances"); + + b.HasIndex("ConditionId") + .HasDatabaseName("ix_skin_instances_condition_id"); + + b.HasIndex("FloatValue") + .HasDatabaseName("ix_skin_instances_float_value"); + + b.HasIndex("PaintSeed") + .HasDatabaseName("ix_skin_instances_paint_seed"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_skin_instances_skin_id"); + + b.ToTable("skin_instances", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("DisplayName") + .HasColumnType("text") + .HasColumnName("display_name"); + + b.Property("LastSyncedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_synced_at"); + + b.Property("SteamId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("steam_id"); + + b.HasKey("Id") + .HasName("pk_steam_users"); + + b.HasIndex("SteamId") + .IsUnique() + .HasDatabaseName("ix_steam_users_steam_id"); + + b.ToTable("steam_users", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FromUserId") + .HasColumnType("integer") + .HasColumnName("from_user_id"); + + b.Property("SteamTradeId") + .HasColumnType("text") + .HasColumnName("steam_trade_id"); + + b.Property("ToUserId") + .HasColumnType("integer") + .HasColumnName("to_user_id"); + + b.Property("TradedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("traded_at"); + + b.HasKey("Id") + .HasName("pk_trades"); + + b.HasIndex("FromUserId") + .HasDatabaseName("ix_trades_from_user_id"); + + b.HasIndex("ToUserId") + .HasDatabaseName("ix_trades_to_user_id"); + + b.ToTable("trades", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.TradeItem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("InventoryItemId") + .HasColumnType("integer") + .HasColumnName("inventory_item_id"); + + b.Property("TradeId") + .HasColumnType("integer") + .HasColumnName("trade_id"); + + b.HasKey("Id") + .HasName("pk_trade_items"); + + b.HasIndex("InventoryItemId") + .HasDatabaseName("ix_trade_items_inventory_item_id"); + + b.HasIndex("TradeId") + .HasDatabaseName("ix_trade_items_trade_id"); + + b.ToTable("trade_items", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Weapon", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("Team") + .IsRequired() + .HasColumnType("text") + .HasColumnName("team"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.HasKey("Id") + .HasName("pk_weapons"); + + b.HasIndex("Name") + .IsUnique() + .HasDatabaseName("ix_weapons_name"); + + b.ToTable("weapons", "skintracker"); + }); + + modelBuilder.Entity("CollectionSkin", b => + { + b.Property("CollectionsId") + .HasColumnType("integer") + .HasColumnName("collections_id"); + + b.Property("SkinsId") + .HasColumnType("integer") + .HasColumnName("skins_id"); + + b.HasKey("CollectionsId", "SkinsId") + .HasName("pk_skin_collections"); + + b.HasIndex("SkinsId") + .HasDatabaseName("ix_skin_collections_skins_id"); + + b.ToTable("skin_collections", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinInstance", "SkinInstance") + .WithMany("InventoryItems") + .HasForeignKey("SkinInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_inventory_items_skin_instances_skin_instance_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "User") + .WithMany("InventoryItems") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_inventory_items_steam_users_user_id"); + + b.Navigation("SkinInstance"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany() + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_listings_skins_skin_id"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") + .WithMany("PriceHistories") + .HasForeignKey("ConditionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_price_histories_skin_conditions_condition_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("PriceHistories") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_price_histories_skins_skin_id"); + + b.Navigation("Condition"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Weapon", "Weapon") + .WithMany("Skins") + .HasForeignKey("WeaponId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skins_weapons_weapon_id"); + + b.Navigation("Weapon"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("Conditions") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_conditions_skins_skin_id"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") + .WithMany("Instances") + .HasForeignKey("ConditionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_skin_instances_skin_conditions_condition_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("Instances") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_instances_skins_skin_id"); + + b.Navigation("Condition"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "FromUser") + .WithMany("TradesSent") + .HasForeignKey("FromUserId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_trades_steam_users_from_user_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "ToUser") + .WithMany("TradesReceived") + .HasForeignKey("ToUserId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_trades_steam_users_to_user_id"); + + b.Navigation("FromUser"); + + b.Navigation("ToUser"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.TradeItem", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.InventoryItem", "InventoryItem") + .WithMany("TradeItems") + .HasForeignKey("InventoryItemId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_trade_items_inventory_items_inventory_item_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Trade", "Trade") + .WithMany("TradeItems") + .HasForeignKey("TradeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_trade_items_trades_trade_id"); + + b.Navigation("InventoryItem"); + + b.Navigation("Trade"); + }); + + modelBuilder.Entity("CollectionSkin", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Collection", null) + .WithMany() + .HasForeignKey("CollectionsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_collections_collections_collections_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", null) + .WithMany() + .HasForeignKey("SkinsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_collections_skins_skins_id"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.Navigation("TradeItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.Navigation("Conditions"); + + b.Navigation("Instances"); + + b.Navigation("PriceHistories"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.Navigation("Instances"); + + b.Navigation("PriceHistories"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.Navigation("InventoryItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => + { + b.Navigation("InventoryItems"); + + b.Navigation("TradesReceived"); + + b.Navigation("TradesSent"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.Navigation("TradeItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Weapon", b => + { + b.Navigation("Skins"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530014903_AddListingsAndSkinIndexes.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530014903_AddListingsAndSkinIndexes.cs new file mode 100644 index 0000000..1ee288f --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530014903_AddListingsAndSkinIndexes.cs @@ -0,0 +1,126 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace BlueLaminate.EFCore.Migrations +{ + /// + public partial class AddListingsAndSkinIndexes : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "def_index", + schema: "skintracker", + table: "skins", + type: "integer", + nullable: true); + + migrationBuilder.AddColumn( + name: "paint_index", + schema: "skintracker", + table: "skins", + type: "integer", + nullable: true); + + migrationBuilder.CreateTable( + name: "listings", + schema: "skintracker", + columns: table => new + { + id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + cs_float_listing_id = table.Column(type: "text", nullable: false), + type = table.Column(type: "text", nullable: false), + price = table.Column(type: "numeric(18,2)", precision: 18, scale: 2, nullable: false), + listed_at = table.Column(type: "timestamp with time zone", nullable: false), + def_index = table.Column(type: "integer", nullable: false), + paint_index = table.Column(type: "integer", nullable: false), + market_hash_name = table.Column(type: "text", nullable: false), + wear_name = table.Column(type: "text", nullable: true), + float_value = table.Column(type: "numeric(10,9)", nullable: false), + paint_seed = table.Column(type: "integer", nullable: false), + is_stat_trak = table.Column(type: "boolean", nullable: false), + is_souvenir = table.Column(type: "boolean", nullable: false), + sticker_count = table.Column(type: "integer", nullable: false), + seller_steam_id = table.Column(type: "text", nullable: true), + inspect_link = table.Column(type: "text", nullable: true), + skin_id = table.Column(type: "integer", nullable: true), + first_seen_at = table.Column(type: "timestamp with time zone", nullable: false), + last_seen_at = table.Column(type: "timestamp with time zone", nullable: false), + status = table.Column(type: "text", nullable: false), + removed_at = table.Column(type: "timestamp with time zone", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("pk_listings", x => x.id); + table.ForeignKey( + name: "fk_listings_skins_skin_id", + column: x => x.skin_id, + principalSchema: "skintracker", + principalTable: "skins", + principalColumn: "id", + onDelete: ReferentialAction.SetNull); + }); + + migrationBuilder.CreateIndex( + name: "ix_skins_def_index_paint_index", + schema: "skintracker", + table: "skins", + columns: new[] { "def_index", "paint_index" }, + unique: true, + filter: "def_index IS NOT NULL AND paint_index IS NOT NULL"); + + migrationBuilder.CreateIndex( + name: "ix_listings_cs_float_listing_id", + schema: "skintracker", + table: "listings", + column: "cs_float_listing_id", + unique: true); + + migrationBuilder.CreateIndex( + name: "ix_listings_def_index_paint_index", + schema: "skintracker", + table: "listings", + columns: new[] { "def_index", "paint_index" }); + + migrationBuilder.CreateIndex( + name: "ix_listings_skin_id", + schema: "skintracker", + table: "listings", + column: "skin_id"); + + migrationBuilder.CreateIndex( + name: "ix_listings_status", + schema: "skintracker", + table: "listings", + column: "status"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "listings", + schema: "skintracker"); + + migrationBuilder.DropIndex( + name: "ix_skins_def_index_paint_index", + schema: "skintracker", + table: "skins"); + + migrationBuilder.DropColumn( + name: "def_index", + schema: "skintracker", + table: "skins"); + + migrationBuilder.DropColumn( + name: "paint_index", + schema: "skintracker", + table: "skins"); + } + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530023217_AddSkinListingsSweptAt.Designer.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530023217_AddSkinListingsSweptAt.Designer.cs new file mode 100644 index 0000000..ac78c4b --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530023217_AddSkinListingsSweptAt.Designer.cs @@ -0,0 +1,836 @@ +// +using System; +using BlueLaminate.EFCore.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace BlueLaminate.EFCore.Migrations +{ + [DbContext(typeof(SkinTrackerDbContext))] + [Migration("20260530023217_AddSkinListingsSweptAt")] + partial class AddSkinListingsSweptAt + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasDefaultSchema("skintracker") + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Collection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("Slug") + .IsRequired() + .HasColumnType("text") + .HasColumnName("slug"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.HasKey("Id") + .HasName("pk_collections"); + + b.HasIndex("Slug") + .IsUnique() + .HasDatabaseName("ix_collections_slug"); + + b.ToTable("collections", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AcquiredAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("acquired_at"); + + b.Property("AssetId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("asset_id"); + + b.Property("SkinInstanceId") + .HasColumnType("integer") + .HasColumnName("skin_instance_id"); + + b.Property("UserId") + .HasColumnType("integer") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("pk_inventory_items"); + + b.HasIndex("AssetId") + .HasDatabaseName("ix_inventory_items_asset_id"); + + b.HasIndex("SkinInstanceId") + .HasDatabaseName("ix_inventory_items_skin_instance_id"); + + b.HasIndex("UserId") + .HasDatabaseName("ix_inventory_items_user_id"); + + b.ToTable("inventory_items", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CsFloatListingId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("cs_float_listing_id"); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_value"); + + b.Property("InspectLink") + .HasColumnType("text") + .HasColumnName("inspect_link"); + + b.Property("IsSouvenir") + .HasColumnType("boolean") + .HasColumnName("is_souvenir"); + + b.Property("IsStatTrak") + .HasColumnType("boolean") + .HasColumnName("is_stat_trak"); + + b.Property("LastSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_at"); + + b.Property("ListedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listed_at"); + + b.Property("MarketHashName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("market_hash_name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("PaintSeed") + .HasColumnType("integer") + .HasColumnName("paint_seed"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RemovedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("removed_at"); + + b.Property("SellerSteamId") + .HasColumnType("text") + .HasColumnName("seller_steam_id"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text") + .HasColumnName("status"); + + b.Property("StickerCount") + .HasColumnType("integer") + .HasColumnName("sticker_count"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.Property("WearName") + .HasColumnType("text") + .HasColumnName("wear_name"); + + b.HasKey("Id") + .HasName("pk_listings"); + + b.HasIndex("CsFloatListingId") + .IsUnique() + .HasDatabaseName("ix_listings_cs_float_listing_id"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_listings_skin_id"); + + b.HasIndex("Status") + .HasDatabaseName("ix_listings_status"); + + b.HasIndex("DefIndex", "PaintIndex") + .HasDatabaseName("ix_listings_def_index_paint_index"); + + b.ToTable("listings", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConditionId") + .HasColumnType("integer") + .HasColumnName("condition_id"); + + b.Property("Currency") + .IsRequired() + .HasColumnType("text") + .HasColumnName("currency"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RecordedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("recorded_at"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Source") + .IsRequired() + .HasColumnType("text") + .HasColumnName("source"); + + b.HasKey("Id") + .HasName("pk_price_histories"); + + b.HasIndex("ConditionId") + .HasDatabaseName("ix_price_histories_condition_id"); + + b.HasIndex("SkinId", "ConditionId", "RecordedAt") + .HasDatabaseName("ix_price_histories_skin_id_condition_id_recorded_at"); + + b.ToTable("price_histories", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.ScrapeRun", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ItemCount") + .HasColumnType("integer") + .HasColumnName("item_count"); + + b.Property("RanAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("ran_at"); + + b.Property("Source") + .IsRequired() + .HasColumnType("text") + .HasColumnName("source"); + + b.HasKey("Id") + .HasName("pk_scrape_runs"); + + b.HasIndex("Source", "RanAt") + .HasDatabaseName("ix_scrape_runs_source_ran_at"); + + b.ToTable("scrape_runs", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("Description") + .HasColumnType("text") + .HasColumnName("description"); + + b.Property("FloatMax") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_max"); + + b.Property("FloatMin") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_min"); + + b.Property("ImageUrl") + .HasColumnType("text") + .HasColumnName("image_url"); + + b.Property("ListingsSweptAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listings_swept_at"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("Rarity") + .IsRequired() + .HasColumnType("text") + .HasColumnName("rarity"); + + b.Property("Slug") + .IsRequired() + .HasColumnType("text") + .HasColumnName("slug"); + + b.Property("SouvenirAvailable") + .HasColumnType("boolean") + .HasColumnName("souvenir_available"); + + b.Property("StatTrakAvailable") + .HasColumnType("boolean") + .HasColumnName("stat_trak_available"); + + b.Property("TrueFloat") + .ValueGeneratedOnAddOrUpdate() + .HasColumnType("boolean") + .HasColumnName("true_float") + .HasComputedColumnSql("float_min = 0.0 AND float_max = 1.0", true); + + b.Property("WeaponId") + .HasColumnType("integer") + .HasColumnName("weapon_id"); + + b.HasKey("Id") + .HasName("pk_skins"); + + b.HasIndex("ListingsSweptAt") + .HasDatabaseName("ix_skins_listings_swept_at"); + + b.HasIndex("Slug") + .IsUnique() + .HasDatabaseName("ix_skins_slug"); + + b.HasIndex("TrueFloat") + .HasDatabaseName("ix_skins_true_float"); + + b.HasIndex("WeaponId") + .HasDatabaseName("ix_skins_weapon_id"); + + b.HasIndex("DefIndex", "PaintIndex") + .IsUnique() + .HasDatabaseName("ix_skins_def_index_paint_index") + .HasFilter("def_index IS NOT NULL AND paint_index IS NOT NULL"); + + b.ToTable("skins", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Condition") + .IsRequired() + .HasColumnType("text") + .HasColumnName("condition"); + + b.Property("MaxFloat") + .HasColumnType("numeric(10,9)") + .HasColumnName("max_float"); + + b.Property("MinFloat") + .HasColumnType("numeric(10,9)") + .HasColumnName("min_float"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.HasKey("Id") + .HasName("pk_skin_conditions"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_skin_conditions_skin_id"); + + b.ToTable("skin_conditions", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConditionId") + .HasColumnType("integer") + .HasColumnName("condition_id"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_value"); + + b.Property("PaintSeed") + .IsRequired() + .HasColumnType("text") + .HasColumnName("paint_seed"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Souvenir") + .HasColumnType("boolean") + .HasColumnName("souvenir"); + + b.Property("StatTrak") + .HasColumnType("boolean") + .HasColumnName("stat_trak"); + + b.HasKey("Id") + .HasName("pk_skin_instances"); + + b.HasIndex("ConditionId") + .HasDatabaseName("ix_skin_instances_condition_id"); + + b.HasIndex("FloatValue") + .HasDatabaseName("ix_skin_instances_float_value"); + + b.HasIndex("PaintSeed") + .HasDatabaseName("ix_skin_instances_paint_seed"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_skin_instances_skin_id"); + + b.ToTable("skin_instances", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("DisplayName") + .HasColumnType("text") + .HasColumnName("display_name"); + + b.Property("LastSyncedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_synced_at"); + + b.Property("SteamId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("steam_id"); + + b.HasKey("Id") + .HasName("pk_steam_users"); + + b.HasIndex("SteamId") + .IsUnique() + .HasDatabaseName("ix_steam_users_steam_id"); + + b.ToTable("steam_users", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FromUserId") + .HasColumnType("integer") + .HasColumnName("from_user_id"); + + b.Property("SteamTradeId") + .HasColumnType("text") + .HasColumnName("steam_trade_id"); + + b.Property("ToUserId") + .HasColumnType("integer") + .HasColumnName("to_user_id"); + + b.Property("TradedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("traded_at"); + + b.HasKey("Id") + .HasName("pk_trades"); + + b.HasIndex("FromUserId") + .HasDatabaseName("ix_trades_from_user_id"); + + b.HasIndex("ToUserId") + .HasDatabaseName("ix_trades_to_user_id"); + + b.ToTable("trades", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.TradeItem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("InventoryItemId") + .HasColumnType("integer") + .HasColumnName("inventory_item_id"); + + b.Property("TradeId") + .HasColumnType("integer") + .HasColumnName("trade_id"); + + b.HasKey("Id") + .HasName("pk_trade_items"); + + b.HasIndex("InventoryItemId") + .HasDatabaseName("ix_trade_items_inventory_item_id"); + + b.HasIndex("TradeId") + .HasDatabaseName("ix_trade_items_trade_id"); + + b.ToTable("trade_items", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Weapon", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("Team") + .IsRequired() + .HasColumnType("text") + .HasColumnName("team"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.HasKey("Id") + .HasName("pk_weapons"); + + b.HasIndex("Name") + .IsUnique() + .HasDatabaseName("ix_weapons_name"); + + b.ToTable("weapons", "skintracker"); + }); + + modelBuilder.Entity("CollectionSkin", b => + { + b.Property("CollectionsId") + .HasColumnType("integer") + .HasColumnName("collections_id"); + + b.Property("SkinsId") + .HasColumnType("integer") + .HasColumnName("skins_id"); + + b.HasKey("CollectionsId", "SkinsId") + .HasName("pk_skin_collections"); + + b.HasIndex("SkinsId") + .HasDatabaseName("ix_skin_collections_skins_id"); + + b.ToTable("skin_collections", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinInstance", "SkinInstance") + .WithMany("InventoryItems") + .HasForeignKey("SkinInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_inventory_items_skin_instances_skin_instance_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "User") + .WithMany("InventoryItems") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_inventory_items_steam_users_user_id"); + + b.Navigation("SkinInstance"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany() + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_listings_skins_skin_id"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") + .WithMany("PriceHistories") + .HasForeignKey("ConditionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_price_histories_skin_conditions_condition_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("PriceHistories") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_price_histories_skins_skin_id"); + + b.Navigation("Condition"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Weapon", "Weapon") + .WithMany("Skins") + .HasForeignKey("WeaponId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skins_weapons_weapon_id"); + + b.Navigation("Weapon"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("Conditions") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_conditions_skins_skin_id"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") + .WithMany("Instances") + .HasForeignKey("ConditionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_skin_instances_skin_conditions_condition_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("Instances") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_instances_skins_skin_id"); + + b.Navigation("Condition"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "FromUser") + .WithMany("TradesSent") + .HasForeignKey("FromUserId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_trades_steam_users_from_user_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "ToUser") + .WithMany("TradesReceived") + .HasForeignKey("ToUserId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_trades_steam_users_to_user_id"); + + b.Navigation("FromUser"); + + b.Navigation("ToUser"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.TradeItem", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.InventoryItem", "InventoryItem") + .WithMany("TradeItems") + .HasForeignKey("InventoryItemId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_trade_items_inventory_items_inventory_item_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Trade", "Trade") + .WithMany("TradeItems") + .HasForeignKey("TradeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_trade_items_trades_trade_id"); + + b.Navigation("InventoryItem"); + + b.Navigation("Trade"); + }); + + modelBuilder.Entity("CollectionSkin", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Collection", null) + .WithMany() + .HasForeignKey("CollectionsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_collections_collections_collections_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", null) + .WithMany() + .HasForeignKey("SkinsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_collections_skins_skins_id"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.Navigation("TradeItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.Navigation("Conditions"); + + b.Navigation("Instances"); + + b.Navigation("PriceHistories"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.Navigation("Instances"); + + b.Navigation("PriceHistories"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.Navigation("InventoryItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => + { + b.Navigation("InventoryItems"); + + b.Navigation("TradesReceived"); + + b.Navigation("TradesSent"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.Navigation("TradeItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Weapon", b => + { + b.Navigation("Skins"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530023217_AddSkinListingsSweptAt.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530023217_AddSkinListingsSweptAt.cs new file mode 100644 index 0000000..821aea4 --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530023217_AddSkinListingsSweptAt.cs @@ -0,0 +1,42 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BlueLaminate.EFCore.Migrations +{ + /// + public partial class AddSkinListingsSweptAt : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "listings_swept_at", + schema: "skintracker", + table: "skins", + type: "timestamp with time zone", + nullable: true); + + migrationBuilder.CreateIndex( + name: "ix_skins_listings_swept_at", + schema: "skintracker", + table: "skins", + column: "listings_swept_at"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropIndex( + name: "ix_skins_listings_swept_at", + schema: "skintracker", + table: "skins"); + + migrationBuilder.DropColumn( + name: "listings_swept_at", + schema: "skintracker", + table: "skins"); + } + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530030305_AddSkinInstanceDupeTrackingModelB.Designer.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530030305_AddSkinInstanceDupeTrackingModelB.Designer.cs new file mode 100644 index 0000000..b86eb99 --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530030305_AddSkinInstanceDupeTrackingModelB.Designer.cs @@ -0,0 +1,868 @@ +// +using System; +using BlueLaminate.EFCore.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace BlueLaminate.EFCore.Migrations +{ + [DbContext(typeof(SkinTrackerDbContext))] + [Migration("20260530030305_AddSkinInstanceDupeTrackingModelB")] + partial class AddSkinInstanceDupeTrackingModelB + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasDefaultSchema("skintracker") + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Collection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("Slug") + .IsRequired() + .HasColumnType("text") + .HasColumnName("slug"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.HasKey("Id") + .HasName("pk_collections"); + + b.HasIndex("Slug") + .IsUnique() + .HasDatabaseName("ix_collections_slug"); + + b.ToTable("collections", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AcquiredAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("acquired_at"); + + b.Property("AssetId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("asset_id"); + + b.Property("SkinInstanceId") + .HasColumnType("integer") + .HasColumnName("skin_instance_id"); + + b.Property("UserId") + .HasColumnType("integer") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("pk_inventory_items"); + + b.HasIndex("AssetId") + .HasDatabaseName("ix_inventory_items_asset_id"); + + b.HasIndex("SkinInstanceId") + .HasDatabaseName("ix_inventory_items_skin_instance_id"); + + b.HasIndex("UserId") + .HasDatabaseName("ix_inventory_items_user_id"); + + b.ToTable("inventory_items", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AssetId") + .HasColumnType("text") + .HasColumnName("asset_id"); + + b.Property("CsFloatListingId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("cs_float_listing_id"); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(20,18)") + .HasColumnName("float_value"); + + b.Property("InspectLink") + .HasColumnType("text") + .HasColumnName("inspect_link"); + + b.Property("IsSouvenir") + .HasColumnType("boolean") + .HasColumnName("is_souvenir"); + + b.Property("IsStatTrak") + .HasColumnType("boolean") + .HasColumnName("is_stat_trak"); + + b.Property("LastSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_at"); + + b.Property("ListedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listed_at"); + + b.Property("MarketHashName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("market_hash_name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("PaintSeed") + .HasColumnType("integer") + .HasColumnName("paint_seed"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RemovedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("removed_at"); + + b.Property("SellerSteamId") + .HasColumnType("text") + .HasColumnName("seller_steam_id"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("SkinInstanceId") + .HasColumnType("integer") + .HasColumnName("skin_instance_id"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text") + .HasColumnName("status"); + + b.Property("StickerCount") + .HasColumnType("integer") + .HasColumnName("sticker_count"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.Property("WearName") + .HasColumnType("text") + .HasColumnName("wear_name"); + + b.HasKey("Id") + .HasName("pk_listings"); + + b.HasIndex("AssetId") + .HasDatabaseName("ix_listings_asset_id"); + + b.HasIndex("CsFloatListingId") + .IsUnique() + .HasDatabaseName("ix_listings_cs_float_listing_id"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_listings_skin_id"); + + b.HasIndex("SkinInstanceId") + .HasDatabaseName("ix_listings_skin_instance_id"); + + b.HasIndex("Status") + .HasDatabaseName("ix_listings_status"); + + b.HasIndex("DefIndex", "PaintIndex") + .HasDatabaseName("ix_listings_def_index_paint_index"); + + b.ToTable("listings", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConditionId") + .HasColumnType("integer") + .HasColumnName("condition_id"); + + b.Property("Currency") + .IsRequired() + .HasColumnType("text") + .HasColumnName("currency"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RecordedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("recorded_at"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Source") + .IsRequired() + .HasColumnType("text") + .HasColumnName("source"); + + b.HasKey("Id") + .HasName("pk_price_histories"); + + b.HasIndex("ConditionId") + .HasDatabaseName("ix_price_histories_condition_id"); + + b.HasIndex("SkinId", "ConditionId", "RecordedAt") + .HasDatabaseName("ix_price_histories_skin_id_condition_id_recorded_at"); + + b.ToTable("price_histories", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.ScrapeRun", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ItemCount") + .HasColumnType("integer") + .HasColumnName("item_count"); + + b.Property("RanAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("ran_at"); + + b.Property("Source") + .IsRequired() + .HasColumnType("text") + .HasColumnName("source"); + + b.HasKey("Id") + .HasName("pk_scrape_runs"); + + b.HasIndex("Source", "RanAt") + .HasDatabaseName("ix_scrape_runs_source_ran_at"); + + b.ToTable("scrape_runs", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("Description") + .HasColumnType("text") + .HasColumnName("description"); + + b.Property("FloatMax") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_max"); + + b.Property("FloatMin") + .HasColumnType("numeric(10,9)") + .HasColumnName("float_min"); + + b.Property("ImageUrl") + .HasColumnType("text") + .HasColumnName("image_url"); + + b.Property("ListingsSweptAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listings_swept_at"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("Rarity") + .IsRequired() + .HasColumnType("text") + .HasColumnName("rarity"); + + b.Property("Slug") + .IsRequired() + .HasColumnType("text") + .HasColumnName("slug"); + + b.Property("SouvenirAvailable") + .HasColumnType("boolean") + .HasColumnName("souvenir_available"); + + b.Property("StatTrakAvailable") + .HasColumnType("boolean") + .HasColumnName("stat_trak_available"); + + b.Property("TrueFloat") + .ValueGeneratedOnAddOrUpdate() + .HasColumnType("boolean") + .HasColumnName("true_float") + .HasComputedColumnSql("float_min = 0.0 AND float_max = 1.0", true); + + b.Property("WeaponId") + .HasColumnType("integer") + .HasColumnName("weapon_id"); + + b.HasKey("Id") + .HasName("pk_skins"); + + b.HasIndex("ListingsSweptAt") + .HasDatabaseName("ix_skins_listings_swept_at"); + + b.HasIndex("Slug") + .IsUnique() + .HasDatabaseName("ix_skins_slug"); + + b.HasIndex("TrueFloat") + .HasDatabaseName("ix_skins_true_float"); + + b.HasIndex("WeaponId") + .HasDatabaseName("ix_skins_weapon_id"); + + b.HasIndex("DefIndex", "PaintIndex") + .IsUnique() + .HasDatabaseName("ix_skins_def_index_paint_index") + .HasFilter("def_index IS NOT NULL AND paint_index IS NOT NULL"); + + b.ToTable("skins", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Condition") + .IsRequired() + .HasColumnType("text") + .HasColumnName("condition"); + + b.Property("MaxFloat") + .HasColumnType("numeric(10,9)") + .HasColumnName("max_float"); + + b.Property("MinFloat") + .HasColumnType("numeric(10,9)") + .HasColumnName("min_float"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.HasKey("Id") + .HasName("pk_skin_conditions"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_skin_conditions_skin_id"); + + b.ToTable("skin_conditions", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConditionId") + .HasColumnType("integer") + .HasColumnName("condition_id"); + + b.Property("DupeFirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("dupe_first_seen_at"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(20,18)") + .HasColumnName("float_value"); + + b.Property("LastSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_at"); + + b.Property("PaintSeed") + .IsRequired() + .HasColumnType("text") + .HasColumnName("paint_seed"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("Souvenir") + .HasColumnType("boolean") + .HasColumnName("souvenir"); + + b.Property("StatTrak") + .HasColumnType("boolean") + .HasColumnName("stat_trak"); + + b.Property("SuspectedDupe") + .HasColumnType("boolean") + .HasColumnName("suspected_dupe"); + + b.HasKey("Id") + .HasName("pk_skin_instances"); + + b.HasIndex("ConditionId") + .HasDatabaseName("ix_skin_instances_condition_id"); + + b.HasIndex("SuspectedDupe") + .HasDatabaseName("ix_skin_instances_suspected_dupe"); + + b.HasIndex("SkinId", "FloatValue", "PaintSeed", "StatTrak", "Souvenir") + .HasDatabaseName("ix_skin_instances_skin_id_float_value_paint_seed_stat_trak_sou"); + + b.ToTable("skin_instances", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("DisplayName") + .HasColumnType("text") + .HasColumnName("display_name"); + + b.Property("LastSyncedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_synced_at"); + + b.Property("SteamId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("steam_id"); + + b.HasKey("Id") + .HasName("pk_steam_users"); + + b.HasIndex("SteamId") + .IsUnique() + .HasDatabaseName("ix_steam_users_steam_id"); + + b.ToTable("steam_users", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FromUserId") + .HasColumnType("integer") + .HasColumnName("from_user_id"); + + b.Property("SteamTradeId") + .HasColumnType("text") + .HasColumnName("steam_trade_id"); + + b.Property("ToUserId") + .HasColumnType("integer") + .HasColumnName("to_user_id"); + + b.Property("TradedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("traded_at"); + + b.HasKey("Id") + .HasName("pk_trades"); + + b.HasIndex("FromUserId") + .HasDatabaseName("ix_trades_from_user_id"); + + b.HasIndex("ToUserId") + .HasDatabaseName("ix_trades_to_user_id"); + + b.ToTable("trades", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.TradeItem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("InventoryItemId") + .HasColumnType("integer") + .HasColumnName("inventory_item_id"); + + b.Property("TradeId") + .HasColumnType("integer") + .HasColumnName("trade_id"); + + b.HasKey("Id") + .HasName("pk_trade_items"); + + b.HasIndex("InventoryItemId") + .HasDatabaseName("ix_trade_items_inventory_item_id"); + + b.HasIndex("TradeId") + .HasDatabaseName("ix_trade_items_trade_id"); + + b.ToTable("trade_items", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Weapon", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.Property("Team") + .IsRequired() + .HasColumnType("text") + .HasColumnName("team"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.HasKey("Id") + .HasName("pk_weapons"); + + b.HasIndex("Name") + .IsUnique() + .HasDatabaseName("ix_weapons_name"); + + b.ToTable("weapons", "skintracker"); + }); + + modelBuilder.Entity("CollectionSkin", b => + { + b.Property("CollectionsId") + .HasColumnType("integer") + .HasColumnName("collections_id"); + + b.Property("SkinsId") + .HasColumnType("integer") + .HasColumnName("skins_id"); + + b.HasKey("CollectionsId", "SkinsId") + .HasName("pk_skin_collections"); + + b.HasIndex("SkinsId") + .HasDatabaseName("ix_skin_collections_skins_id"); + + b.ToTable("skin_collections", "skintracker"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinInstance", "SkinInstance") + .WithMany("InventoryItems") + .HasForeignKey("SkinInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_inventory_items_skin_instances_skin_instance_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "User") + .WithMany("InventoryItems") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_inventory_items_steam_users_user_id"); + + b.Navigation("SkinInstance"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany() + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_listings_skins_skin_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SkinInstance", "SkinInstance") + .WithMany("Listings") + .HasForeignKey("SkinInstanceId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_listings_skin_instances_skin_instance_id"); + + b.Navigation("Skin"); + + b.Navigation("SkinInstance"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") + .WithMany("PriceHistories") + .HasForeignKey("ConditionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_price_histories_skin_conditions_condition_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("PriceHistories") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_price_histories_skins_skin_id"); + + b.Navigation("Condition"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Weapon", "Weapon") + .WithMany("Skins") + .HasForeignKey("WeaponId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skins_weapons_weapon_id"); + + b.Navigation("Weapon"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("Conditions") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_conditions_skins_skin_id"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") + .WithMany("Instances") + .HasForeignKey("ConditionId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_skin_instances_skin_conditions_condition_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany("Instances") + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_instances_skins_skin_id"); + + b.Navigation("Condition"); + + b.Navigation("Skin"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "FromUser") + .WithMany("TradesSent") + .HasForeignKey("FromUserId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_trades_steam_users_from_user_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SteamUser", "ToUser") + .WithMany("TradesReceived") + .HasForeignKey("ToUserId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired() + .HasConstraintName("fk_trades_steam_users_to_user_id"); + + b.Navigation("FromUser"); + + b.Navigation("ToUser"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.TradeItem", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.InventoryItem", "InventoryItem") + .WithMany("TradeItems") + .HasForeignKey("InventoryItemId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_trade_items_inventory_items_inventory_item_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Trade", "Trade") + .WithMany("TradeItems") + .HasForeignKey("TradeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_trade_items_trades_trade_id"); + + b.Navigation("InventoryItem"); + + b.Navigation("Trade"); + }); + + modelBuilder.Entity("CollectionSkin", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Collection", null) + .WithMany() + .HasForeignKey("CollectionsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_collections_collections_collections_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.Skin", null) + .WithMany() + .HasForeignKey("SkinsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("fk_skin_collections_skins_skins_id"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.InventoryItem", b => + { + b.Navigation("TradeItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Skin", b => + { + b.Navigation("Conditions"); + + b.Navigation("Instances"); + + b.Navigation("PriceHistories"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinCondition", b => + { + b.Navigation("Instances"); + + b.Navigation("PriceHistories"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => + { + b.Navigation("InventoryItems"); + + b.Navigation("Listings"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => + { + b.Navigation("InventoryItems"); + + b.Navigation("TradesReceived"); + + b.Navigation("TradesSent"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Trade", b => + { + b.Navigation("TradeItems"); + }); + + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Weapon", b => + { + b.Navigation("Skins"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530030305_AddSkinInstanceDupeTrackingModelB.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530030305_AddSkinInstanceDupeTrackingModelB.cs new file mode 100644 index 0000000..927635f --- /dev/null +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/20260530030305_AddSkinInstanceDupeTrackingModelB.cs @@ -0,0 +1,259 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BlueLaminate.EFCore.Migrations +{ + /// + public partial class AddSkinInstanceDupeTrackingModelB : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "fk_skin_instances_skin_conditions_condition_id", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropIndex( + name: "ix_skin_instances_float_value", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropIndex( + name: "ix_skin_instances_paint_seed", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropIndex( + name: "ix_skin_instances_skin_id", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.AlterColumn( + name: "float_value", + schema: "skintracker", + table: "skin_instances", + type: "numeric(20,18)", + nullable: false, + oldClrType: typeof(decimal), + oldType: "numeric(10,9)"); + + migrationBuilder.AlterColumn( + name: "condition_id", + schema: "skintracker", + table: "skin_instances", + type: "integer", + nullable: true, + oldClrType: typeof(int), + oldType: "integer"); + + migrationBuilder.AddColumn( + name: "dupe_first_seen_at", + schema: "skintracker", + table: "skin_instances", + type: "timestamp with time zone", + nullable: true); + + migrationBuilder.AddColumn( + name: "last_seen_at", + schema: "skintracker", + table: "skin_instances", + type: "timestamp with time zone", + nullable: false, + defaultValue: new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0))); + + migrationBuilder.AddColumn( + name: "suspected_dupe", + schema: "skintracker", + table: "skin_instances", + type: "boolean", + nullable: false, + defaultValue: false); + + migrationBuilder.AlterColumn( + name: "float_value", + schema: "skintracker", + table: "listings", + type: "numeric(20,18)", + nullable: false, + oldClrType: typeof(decimal), + oldType: "numeric(10,9)"); + + migrationBuilder.AddColumn( + name: "asset_id", + schema: "skintracker", + table: "listings", + type: "text", + nullable: true); + + migrationBuilder.AddColumn( + name: "skin_instance_id", + schema: "skintracker", + table: "listings", + type: "integer", + nullable: true); + + migrationBuilder.CreateIndex( + name: "ix_skin_instances_skin_id_float_value_paint_seed_stat_trak_sou", + schema: "skintracker", + table: "skin_instances", + columns: new[] { "skin_id", "float_value", "paint_seed", "stat_trak", "souvenir" }); + + migrationBuilder.CreateIndex( + name: "ix_skin_instances_suspected_dupe", + schema: "skintracker", + table: "skin_instances", + column: "suspected_dupe"); + + migrationBuilder.CreateIndex( + name: "ix_listings_asset_id", + schema: "skintracker", + table: "listings", + column: "asset_id"); + + migrationBuilder.CreateIndex( + name: "ix_listings_skin_instance_id", + schema: "skintracker", + table: "listings", + column: "skin_instance_id"); + + migrationBuilder.AddForeignKey( + name: "fk_listings_skin_instances_skin_instance_id", + schema: "skintracker", + table: "listings", + column: "skin_instance_id", + principalSchema: "skintracker", + principalTable: "skin_instances", + principalColumn: "id", + onDelete: ReferentialAction.SetNull); + + migrationBuilder.AddForeignKey( + name: "fk_skin_instances_skin_conditions_condition_id", + schema: "skintracker", + table: "skin_instances", + column: "condition_id", + principalSchema: "skintracker", + principalTable: "skin_conditions", + principalColumn: "id", + onDelete: ReferentialAction.SetNull); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "fk_listings_skin_instances_skin_instance_id", + schema: "skintracker", + table: "listings"); + + migrationBuilder.DropForeignKey( + name: "fk_skin_instances_skin_conditions_condition_id", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropIndex( + name: "ix_skin_instances_skin_id_float_value_paint_seed_stat_trak_sou", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropIndex( + name: "ix_skin_instances_suspected_dupe", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropIndex( + name: "ix_listings_asset_id", + schema: "skintracker", + table: "listings"); + + migrationBuilder.DropIndex( + name: "ix_listings_skin_instance_id", + schema: "skintracker", + table: "listings"); + + migrationBuilder.DropColumn( + name: "dupe_first_seen_at", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropColumn( + name: "last_seen_at", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropColumn( + name: "suspected_dupe", + schema: "skintracker", + table: "skin_instances"); + + migrationBuilder.DropColumn( + name: "asset_id", + schema: "skintracker", + table: "listings"); + + migrationBuilder.DropColumn( + name: "skin_instance_id", + schema: "skintracker", + table: "listings"); + + migrationBuilder.AlterColumn( + name: "float_value", + schema: "skintracker", + table: "skin_instances", + type: "numeric(10,9)", + nullable: false, + oldClrType: typeof(decimal), + oldType: "numeric(20,18)"); + + migrationBuilder.AlterColumn( + name: "condition_id", + schema: "skintracker", + table: "skin_instances", + type: "integer", + nullable: false, + defaultValue: 0, + oldClrType: typeof(int), + oldType: "integer", + oldNullable: true); + + migrationBuilder.AlterColumn( + name: "float_value", + schema: "skintracker", + table: "listings", + type: "numeric(10,9)", + nullable: false, + oldClrType: typeof(decimal), + oldType: "numeric(20,18)"); + + migrationBuilder.CreateIndex( + name: "ix_skin_instances_float_value", + schema: "skintracker", + table: "skin_instances", + column: "float_value"); + + migrationBuilder.CreateIndex( + name: "ix_skin_instances_paint_seed", + schema: "skintracker", + table: "skin_instances", + column: "paint_seed"); + + migrationBuilder.CreateIndex( + name: "ix_skin_instances_skin_id", + schema: "skintracker", + table: "skin_instances", + column: "skin_id"); + + migrationBuilder.AddForeignKey( + name: "fk_skin_instances_skin_conditions_condition_id", + schema: "skintracker", + table: "skin_instances", + column: "condition_id", + principalSchema: "skintracker", + principalTable: "skin_conditions", + principalColumn: "id", + onDelete: ReferentialAction.Restrict); + } + } +} diff --git a/BlueLaminate/BlueLaminate.EFCore/Migrations/SkinTrackerDbContextModelSnapshot.cs b/BlueLaminate/BlueLaminate.EFCore/Migrations/SkinTrackerDbContextModelSnapshot.cs index 05921e0..6d3e54c 100644 --- a/BlueLaminate/BlueLaminate.EFCore/Migrations/SkinTrackerDbContextModelSnapshot.cs +++ b/BlueLaminate/BlueLaminate.EFCore/Migrations/SkinTrackerDbContextModelSnapshot.cs @@ -98,6 +98,133 @@ namespace BlueLaminate.EFCore.Migrations b.ToTable("inventory_items", "skintracker"); }); + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AssetId") + .HasColumnType("text") + .HasColumnName("asset_id"); + + b.Property("CsFloatListingId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("cs_float_listing_id"); + + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + + b.Property("FirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_at"); + + b.Property("FloatValue") + .HasColumnType("numeric(20,18)") + .HasColumnName("float_value"); + + b.Property("InspectLink") + .HasColumnType("text") + .HasColumnName("inspect_link"); + + b.Property("IsSouvenir") + .HasColumnType("boolean") + .HasColumnName("is_souvenir"); + + b.Property("IsStatTrak") + .HasColumnType("boolean") + .HasColumnName("is_stat_trak"); + + b.Property("LastSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_at"); + + b.Property("ListedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listed_at"); + + b.Property("MarketHashName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("market_hash_name"); + + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + + b.Property("PaintSeed") + .HasColumnType("integer") + .HasColumnName("paint_seed"); + + b.Property("Price") + .HasPrecision(18, 2) + .HasColumnType("numeric(18,2)") + .HasColumnName("price"); + + b.Property("RemovedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("removed_at"); + + b.Property("SellerSteamId") + .HasColumnType("text") + .HasColumnName("seller_steam_id"); + + b.Property("SkinId") + .HasColumnType("integer") + .HasColumnName("skin_id"); + + b.Property("SkinInstanceId") + .HasColumnType("integer") + .HasColumnName("skin_instance_id"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text") + .HasColumnName("status"); + + b.Property("StickerCount") + .HasColumnType("integer") + .HasColumnName("sticker_count"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text") + .HasColumnName("type"); + + b.Property("WearName") + .HasColumnType("text") + .HasColumnName("wear_name"); + + b.HasKey("Id") + .HasName("pk_listings"); + + b.HasIndex("AssetId") + .HasDatabaseName("ix_listings_asset_id"); + + b.HasIndex("CsFloatListingId") + .IsUnique() + .HasDatabaseName("ix_listings_cs_float_listing_id"); + + b.HasIndex("SkinId") + .HasDatabaseName("ix_listings_skin_id"); + + b.HasIndex("SkinInstanceId") + .HasDatabaseName("ix_listings_skin_instance_id"); + + b.HasIndex("Status") + .HasDatabaseName("ix_listings_status"); + + b.HasIndex("DefIndex", "PaintIndex") + .HasDatabaseName("ix_listings_def_index_paint_index"); + + b.ToTable("listings", "skintracker"); + }); + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => { b.Property("Id") @@ -186,6 +313,10 @@ namespace BlueLaminate.EFCore.Migrations NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + b.Property("DefIndex") + .HasColumnType("integer") + .HasColumnName("def_index"); + b.Property("Description") .HasColumnType("text") .HasColumnName("description"); @@ -202,11 +333,19 @@ namespace BlueLaminate.EFCore.Migrations .HasColumnType("text") .HasColumnName("image_url"); + b.Property("ListingsSweptAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("listings_swept_at"); + b.Property("Name") .IsRequired() .HasColumnType("text") .HasColumnName("name"); + b.Property("PaintIndex") + .HasColumnType("integer") + .HasColumnName("paint_index"); + b.Property("Rarity") .IsRequired() .HasColumnType("text") @@ -238,6 +377,9 @@ namespace BlueLaminate.EFCore.Migrations b.HasKey("Id") .HasName("pk_skins"); + b.HasIndex("ListingsSweptAt") + .HasDatabaseName("ix_skins_listings_swept_at"); + b.HasIndex("Slug") .IsUnique() .HasDatabaseName("ix_skins_slug"); @@ -248,6 +390,11 @@ namespace BlueLaminate.EFCore.Migrations b.HasIndex("WeaponId") .HasDatabaseName("ix_skins_weapon_id"); + b.HasIndex("DefIndex", "PaintIndex") + .IsUnique() + .HasDatabaseName("ix_skins_def_index_paint_index") + .HasFilter("def_index IS NOT NULL AND paint_index IS NOT NULL"); + b.ToTable("skins", "skintracker"); }); @@ -295,18 +442,26 @@ namespace BlueLaminate.EFCore.Migrations NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); - b.Property("ConditionId") + b.Property("ConditionId") .HasColumnType("integer") .HasColumnName("condition_id"); + b.Property("DupeFirstSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("dupe_first_seen_at"); + b.Property("FirstSeenAt") .HasColumnType("timestamp with time zone") .HasColumnName("first_seen_at"); b.Property("FloatValue") - .HasColumnType("numeric(10,9)") + .HasColumnType("numeric(20,18)") .HasColumnName("float_value"); + b.Property("LastSeenAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_at"); + b.Property("PaintSeed") .IsRequired() .HasColumnType("text") @@ -324,20 +479,21 @@ namespace BlueLaminate.EFCore.Migrations .HasColumnType("boolean") .HasColumnName("stat_trak"); + b.Property("SuspectedDupe") + .HasColumnType("boolean") + .HasColumnName("suspected_dupe"); + b.HasKey("Id") .HasName("pk_skin_instances"); b.HasIndex("ConditionId") .HasDatabaseName("ix_skin_instances_condition_id"); - b.HasIndex("FloatValue") - .HasDatabaseName("ix_skin_instances_float_value"); + b.HasIndex("SuspectedDupe") + .HasDatabaseName("ix_skin_instances_suspected_dupe"); - b.HasIndex("PaintSeed") - .HasDatabaseName("ix_skin_instances_paint_seed"); - - b.HasIndex("SkinId") - .HasDatabaseName("ix_skin_instances_skin_id"); + b.HasIndex("SkinId", "FloatValue", "PaintSeed", "StatTrak", "Souvenir") + .HasDatabaseName("ix_skin_instances_skin_id_float_value_paint_seed_stat_trak_sou"); b.ToTable("skin_instances", "skintracker"); }); @@ -514,6 +670,25 @@ namespace BlueLaminate.EFCore.Migrations b.Navigation("User"); }); + modelBuilder.Entity("BlueLaminate.EFCore.Entities.Listing", b => + { + b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") + .WithMany() + .HasForeignKey("SkinId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_listings_skins_skin_id"); + + b.HasOne("BlueLaminate.EFCore.Entities.SkinInstance", "SkinInstance") + .WithMany("Listings") + .HasForeignKey("SkinInstanceId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("fk_listings_skin_instances_skin_instance_id"); + + b.Navigation("Skin"); + + b.Navigation("SkinInstance"); + }); + modelBuilder.Entity("BlueLaminate.EFCore.Entities.PriceHistory", b => { b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") @@ -564,8 +739,7 @@ namespace BlueLaminate.EFCore.Migrations b.HasOne("BlueLaminate.EFCore.Entities.SkinCondition", "Condition") .WithMany("Instances") .HasForeignKey("ConditionId") - .OnDelete(DeleteBehavior.Restrict) - .IsRequired() + .OnDelete(DeleteBehavior.SetNull) .HasConstraintName("fk_skin_instances_skin_conditions_condition_id"); b.HasOne("BlueLaminate.EFCore.Entities.Skin", "Skin") @@ -663,6 +837,8 @@ namespace BlueLaminate.EFCore.Migrations modelBuilder.Entity("BlueLaminate.EFCore.Entities.SkinInstance", b => { b.Navigation("InventoryItems"); + + b.Navigation("Listings"); }); modelBuilder.Entity("BlueLaminate.EFCore.Entities.SteamUser", b => diff --git a/BlueLaminate/BlueLaminate.Scraper/BlueLaminate.Scraper.csproj b/BlueLaminate/BlueLaminate.Scraper/BlueLaminate.Scraper.csproj index 9ed914b..0e23381 100644 --- a/BlueLaminate/BlueLaminate.Scraper/BlueLaminate.Scraper.csproj +++ b/BlueLaminate/BlueLaminate.Scraper/BlueLaminate.Scraper.csproj @@ -6,4 +6,9 @@ enable + + + + + diff --git a/BlueLaminate/BlueLaminate.Scraper/Browser/BrowserDriverFactory.cs b/BlueLaminate/BlueLaminate.Scraper/Browser/BrowserDriverFactory.cs new file mode 100644 index 0000000..8b07fe6 --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/Browser/BrowserDriverFactory.cs @@ -0,0 +1,88 @@ +using BlueLaminate.Scraper.Proxies; +using Microsoft.Extensions.Logging; +using OpenQA.Selenium; +using OpenQA.Selenium.Edge; + +namespace BlueLaminate.Scraper.Browser; + +/// +/// Builds a non-headless Edge (Chromium) WebDriver routed through a +/// . Two things make this non-trivial: +/// +/// Proxy authentication. Chromium can't auto-fill the gateway's auth +/// dialog under automation, and the classic extension trick relies on +/// Manifest V2 which current Chromium disables. Instead we answer the proxy's +/// 407 challenge through the DevTools (CDP) auth handler, which works +/// non-headless and needs no extension. +/// Bandwidth. The residential plan is metered per GB, so images are +/// disabled at the content-settings level. Cloudflare gates on JS execution and +/// TLS/behaviour, not whether pictures render, so this stays realistic. +/// +/// Each driver gets a throwaway user-data dir so runs never share cookies and +/// never touch the user's real Edge profile. +/// +public sealed class BrowserDriverFactory +{ + private readonly ILogger _logger; + + public BrowserDriverFactory(ILogger logger) + { + _logger = logger; + } + + public async Task CreateAsync(ProxyLease lease, bool blockImages = true) + { + var options = new EdgeOptions(); + + // Route browser traffic through the gateway via the launch argument + // rather than EdgeOptions.Proxy. Setting Proxy makes Selenium hand the + // gateway to Selenium Manager for the driver *download* too, which fails + // because that step can't authenticate. The arg scopes the proxy to the + // browser only; credentials are answered below via CDP. No scheme = all + // protocols use the gateway. + options.AddArgument($"--proxy-server={lease.Endpoint}"); + + // Reduce the most obvious automation tells; residential exit + a real + // (non-headless) browser do the rest. + options.AddArgument("--disable-blink-features=AutomationControlled"); + options.AddExcludedArgument("enable-automation"); + options.AddArgument("--no-first-run"); + options.AddArgument("--no-default-browser-check"); + options.AddArgument("--start-maximized"); + + // Isolated, disposable profile per launch. + var profileDir = Path.Combine(Path.GetTempPath(), "bluelaminate-edge", Guid.NewGuid().ToString("N")); + Directory.CreateDirectory(profileDir); + options.AddArgument($"--user-data-dir={profileDir}"); + + if (blockImages) + options.AddUserProfilePreference("profile.managed_default_content_settings.images", 2); + + _logger.LogInformation( + "Launching Edge via proxy {Endpoint} (provider {Provider}, session {Session}).", + lease.Endpoint, lease.Provider, lease.SessionId ?? "rotating"); + + var driver = new EdgeDriver(options); + + try + { + // Answer the gateway's proxy-auth (407) challenge with the lease + // credentials. UriMatcher returns true so it applies to every + // request, since the challenge originates from the proxy itself. + var network = driver.Manage().Network; + network.AddAuthenticationHandler(new NetworkAuthenticationHandler + { + UriMatcher = _ => true, + Credentials = new PasswordCredentials(lease.Username, lease.Password), + }); + await network.StartMonitoring(); + } + catch + { + driver.Quit(); + throw; + } + + return driver; + } +} diff --git a/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatCaptureService.cs b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatCaptureService.cs new file mode 100644 index 0000000..716dd99 --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatCaptureService.cs @@ -0,0 +1,139 @@ +using System.Text; +using BlueLaminate.Scraper.Browser; +using BlueLaminate.Scraper.Proxies; +using Microsoft.Extensions.Logging; +using OpenQA.Selenium; + +namespace BlueLaminate.Scraper.CsFloat; + +/// +/// Phase-B discovery tool. Drives a real Edge browser through a residential +/// lease to a CSFloat search page, then records every CSFloat /api/ JSON +/// response to disk while a human clicks around (open a listing → "Latest +/// Sales"). We don't yet know CSFloat's exact endpoints or DOM selectors, so a +/// human-in-the-loop is the cheapest way to surface the real traffic: the tool +/// just listens and dumps, the operator drives the UI in the visible window. +/// Once we can see the captured shapes we can automate navigation and design the +/// tables. +/// +public sealed class CsFloatCaptureService +{ + private readonly IProxyProvider _provider; + private readonly BrowserDriverFactory _factory; + private readonly ILogger _logger; + + public CsFloatCaptureService( + IProxyProvider provider, + BrowserDriverFactory factory, + ILogger logger) + { + _provider = provider; + _factory = factory; + _logger = logger; + } + + /// + /// Opens through the proxy and captures CSFloat API + /// responses to until + /// completes (the CLI ties that to the operator pressing Enter). When + /// is true, every CSFloat-domain response is + /// logged (url + status + type) to reveal where a login wall appears. + /// Returns the number of responses written. + /// + public async Task RunAsync( + string url, + string outputDir, + ProxyRequest request, + bool loadImages, + bool diagnose, + Func browseUntilDone) + { + Directory.CreateDirectory(outputDir); + + var lease = _provider.Acquire(request); + var driver = await _factory.CreateAsync(lease, blockImages: !loadImages); + + var captured = 0; + + void OnResponse(object? sender, NetworkResponseReceivedEventArgs e) + { + var responseUrl = e.ResponseUrl; + if (string.IsNullOrEmpty(responseUrl) + || !responseUrl.Contains("csfloat", StringComparison.OrdinalIgnoreCase)) + { + return; + } + + // Diagnose mode logs every CSFloat-domain response — including the + // SPA shell, redirects and any 401/403 — so we can see exactly where + // a Steam-login wall appears even before any /api/ call fires. + if (diagnose) + { + _logger.LogInformation("[{Status}] {Type} {Url}", + e.ResponseStatusCode, e.ResponseResourceType, responseUrl); + } + + // Only JSON API calls get written to disk; skip the shell, images, + // fonts, analytics, etc. Matches both api.csfloat.com and csfloat.com/api. + if (!responseUrl.Contains("/api/", StringComparison.OrdinalIgnoreCase)) + return; + + var body = e.ResponseBody; + if (string.IsNullOrWhiteSpace(body)) + { + // Body wasn't buffered (e.g. the known Fetch interception race). + // Log the endpoint so we still learn it exists even if empty. + _logger.LogWarning("No body captured for {Url} (status {Status}).", + responseUrl, e.ResponseStatusCode); + return; + } + + try + { + var n = Interlocked.Increment(ref captured); + var fileName = $"{n:D3}_{Sanitize(responseUrl)}.json"; + File.WriteAllText(Path.Combine(outputDir, fileName), body, Encoding.UTF8); + _logger.LogInformation( + "Captured #{N} [{Status}] {Url} → {File} ({Bytes} bytes).", + n, e.ResponseStatusCode, responseUrl, fileName, body.Length); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Failed to write capture for {Url}.", responseUrl); + } + } + + var network = driver.Manage().Network; + network.NetworkResponseReceived += OnResponse; + + try + { + _logger.LogInformation("Navigating to {Url}", url); + driver.Navigate().GoToUrl(url); + await browseUntilDone(); + } + finally + { + network.NetworkResponseReceived -= OnResponse; + driver.Quit(); + } + + return captured; + } + + // Turn a URL into a filesystem-safe, readable, length-capped file stem so the + // captures are self-describing (the endpoint is visible in the filename). + private static string Sanitize(string url) + { + var trimmed = url + .Replace("https://", "", StringComparison.OrdinalIgnoreCase) + .Replace("http://", "", StringComparison.OrdinalIgnoreCase); + + var sb = new StringBuilder(trimmed.Length); + foreach (var c in trimmed) + sb.Append(char.IsLetterOrDigit(c) || c is '-' or '.' ? c : '_'); + + var stem = sb.ToString(); + return stem.Length > 120 ? stem[..120] : stem; + } +} diff --git a/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatListing.cs b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatListing.cs new file mode 100644 index 0000000..872051e --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatListing.cs @@ -0,0 +1,47 @@ +namespace BlueLaminate.Scraper.CsFloat; + +/// +/// A single active CSFloat listing, flattened from the API's listing+item shape +/// to the fields this project cares about. Prices arrive from CSFloat as integer +/// cents and are converted to whole-dollar here so callers +/// never deal in cents. This is a read model for the official, documented +/// GET /api/v1/listings endpoint — active listings only, not sales. +/// +/// CSFloat listing id (stable while the listing is live). +/// When the listing was created. +/// "buy_now" or "auction". +/// Asking price in USD (converted from cents). +/// Canonical item name, e.g. "M4A4 | Cyber Security (Field-Tested)". +/// Weapon definition index (maps to catalog weapon_id). +/// Paint index (maps to catalog paint_index). +/// Pattern seed. +/// Exact float/wear value. +/// Wear bucket name, e.g. "Field-Tested". +/// StatTrak™ variant. +/// Souvenir variant. +/// Number of stickers applied. +/// Seller's SteamID64. +/// In-game inspect link. +/// +/// Steam asset id of this specific copy. Changes when the item trades, so it is +/// NOT a stable item identity — but two live listings sharing a fingerprint +/// (skin+float+seed+ST/souvenir) yet showing different asset ids are the +/// signature of a duplicated ("duped") item. +/// +public sealed record CsFloatListing( + string ListingId, + DateTimeOffset CreatedAt, + string Type, + decimal Price, + string MarketHashName, + int DefIndex, + int PaintIndex, + int PaintSeed, + decimal FloatValue, + string? WearName, + bool IsStatTrak, + bool IsSouvenir, + int StickerCount, + string? SellerSteamId, + string? InspectLink, + string? AssetId); diff --git a/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatListingsClient.cs b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatListingsClient.cs new file mode 100644 index 0000000..b3cf9ff --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatListingsClient.cs @@ -0,0 +1,277 @@ +using System.Net; +using System.Text.Json; +using System.Text.Json.Serialization; +using Microsoft.Extensions.Logging; + +namespace BlueLaminate.Scraper.CsFloat; + +/// +/// Thrown when CSFloat rejects a request (bad/missing key, rate limit, etc.) so +/// the CLI can surface a clear message instead of a raw HTTP failure. +/// +public sealed class CsFloatApiException(HttpStatusCode status, string body) + : Exception($"CSFloat API returned {(int)status} {status}: {body}") +{ + public HttpStatusCode Status { get; } = status; +} + +/// One page of listings plus the opaque cursor for the next page (null at the end). +public sealed record ListingsPageResult(IReadOnlyList Listings, string? Cursor); + +/// +/// Client for CSFloat's official, documented GET /api/v1/listings endpoint +/// (active listings). Authenticates with a developer API key via the +/// Authorization header, filters by def_index/paint_index, and walks the +/// cursor-based pagination. This is the supported path the user opted into — no +/// proxy or browser involved. Docs: https://docs.csfloat.com/ +/// +public sealed class CsFloatListingsClient +{ + private const string BaseUrl = "https://csfloat.com/api/v1/listings"; + private const int MaxLimit = 50; // API hard cap per page. + + private static readonly JsonSerializerOptions Options = new() + { + // CSFloat uses snake_case for item fields (market_hash_name, float_value, + // def_index, …). Without this policy, multi-word fields silently + // deserialize to defaults while single-word ones slip through on + // case-insensitivity — exactly the "prices but no floats/names" symptom. + PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower, + PropertyNameCaseInsensitive = true, + NumberHandling = JsonNumberHandling.AllowReadingFromString, + }; + + private readonly HttpClient _http; + private readonly string _apiKey; + private readonly ILogger _logger; + + public CsFloatListingsClient(HttpClient http, string apiKey, ILogger logger) + { + if (string.IsNullOrWhiteSpace(apiKey)) + throw new ArgumentException("CSFloat API key is required.", nameof(apiKey)); + + _http = http; + _apiKey = apiKey; + _logger = logger; + } + + /// + /// Rate-limit state from the most recent response (success or failure). + /// until the first request completes. + /// + public CsFloatRateLimit LastRateLimit { get; private set; } = CsFloatRateLimit.None; + + /// + /// Fetches active listings for one skin (by def_index/paint_index), following + /// the cursor until there are no more pages or + /// is reached. guards against pulling an + /// unbounded result set during the spike. + /// + public async Task> GetListingsAsync( + int defIndex, + int paintIndex, + string sortBy = "lowest_price", + int maxListings = 50, + string? type = "buy_now", + CancellationToken ct = default) + { + var results = new List(); + string? cursor = null; + + do + { + var remaining = maxListings - results.Count; + var limit = Math.Min(MaxLimit, remaining); + + var page = await FetchPageAsync(defIndex, paintIndex, sortBy, limit, cursor, type, ct); + results.AddRange(page.Listings); + + _logger.LogInformation( + "Fetched {PageCount} listings (total {Total}); cursor {Cursor}.", + page.Listings.Count, results.Count, page.Cursor is null ? "—" : "present"); + + cursor = page.Cursor; + + // Stop when the API signals the end (no cursor) or returns an empty page. + if (string.IsNullOrEmpty(cursor) || page.Listings.Count == 0) + break; + } + while (results.Count < maxListings); + + return results; + } + + /// + /// Fetches a single page of listings and the cursor for the next page. The + /// sweep runner drives this directly so it can decide — between pages — when + /// to stop (already-seen listings) or pace (rate-limit headers). Filters are + /// optional: omit def_index/paint_index for a global sweep across all items. + /// + public Task FetchPageAsync( + int? defIndex, + int? paintIndex, + string sortBy, + int limit, + string? cursor, + string? type = "buy_now", + CancellationToken ct = default) + { + var query = new List + { + $"sort_by={Uri.EscapeDataString(sortBy)}", + $"limit={Math.Clamp(limit, 1, MaxLimit)}", + }; + // Default to fixed-price listings only; auctions have no firm sale price + // and aren't wanted. Pass type=null to include everything. + if (!string.IsNullOrEmpty(type)) + query.Add($"type={Uri.EscapeDataString(type)}"); + if (defIndex is { } def) + query.Add($"def_index={def}"); + if (paintIndex is { } paint) + query.Add($"paint_index={paint}"); + if (!string.IsNullOrEmpty(cursor)) + query.Add($"cursor={Uri.EscapeDataString(cursor)}"); + + return SendPageAsync(query, ct); + } + + private async Task SendPageAsync(List query, CancellationToken ct) + { + var url = $"{BaseUrl}?{string.Join('&', query)}"; + + using var request = new HttpRequestMessage(HttpMethod.Get, url); + // CSFloat expects the raw key in the Authorization header (no scheme). + request.Headers.TryAddWithoutValidation("Authorization", _apiKey); + + using var response = await _http.SendAsync(request, ct); + var body = await response.Content.ReadAsStringAsync(ct); + + // Always record rate-limit state, even on failure — a 429 is exactly when + // these headers (and Retry-After) matter most. + LastRateLimit = ParseRateLimit(response); + _logger.LogInformation("{RateLimit}", LastRateLimit); + + if (!response.IsSuccessStatusCode) + throw new CsFloatApiException(response.StatusCode, Truncate(body)); + + var page = Parse(body); + return new ListingsPageResult(page.Data.Select(Map).ToList(), page.Cursor); + } + + // Pull rate-limit info from response headers without assuming exact names: + // collect every header containing "ratelimit"/"rate-limit" (case-insensitive) + // plus Retry-After, then best-effort map the common remaining/limit/reset + // fields. The full set is kept in Raw so the spike reveals the real names. + private static CsFloatRateLimit ParseRateLimit(HttpResponseMessage response) + { + var raw = new Dictionary(StringComparer.OrdinalIgnoreCase); + + // Scan both response and content headers — servers split them either way. + var all = response.Headers.AsEnumerable(); + if (response.Content is not null) + all = all.Concat(response.Content.Headers); + + foreach (var header in all) + { + var name = header.Key; + var isRateLimit = name.Contains("ratelimit", StringComparison.OrdinalIgnoreCase) + || name.Contains("rate-limit", StringComparison.OrdinalIgnoreCase) + || name.Equals("Retry-After", StringComparison.OrdinalIgnoreCase); + if (isRateLimit) + raw[name] = string.Join(",", header.Value); + } + + if (raw.Count == 0) + return CsFloatRateLimit.None; + + return new CsFloatRateLimit( + Limit: FindInt(raw, "limit"), + Remaining: FindInt(raw, "remaining"), + Reset: Find(raw, "reset"), + RetryAfter: FindInt(raw, "retry-after"), + Raw: raw); + } + + // Matches a header whose name contains the token but is NOT a different + // metric (e.g. "remaining" must not match when looking for "limit"). + private static string? Find(IReadOnlyDictionary raw, string token) => + raw.FirstOrDefault(kv => + kv.Key.Contains(token, StringComparison.OrdinalIgnoreCase) + && !(token == "limit" && kv.Key.Contains("remaining", StringComparison.OrdinalIgnoreCase))) + .Value; + + private static int? FindInt(IReadOnlyDictionary raw, string token) => + int.TryParse(Find(raw, token), out var v) ? v : null; + + // The endpoint may return either a bare array of listings or an object with + // { data, cursor }. Detect which by the first non-whitespace character so the + // spike works regardless of which shape the live API uses. + private static ListingsPage Parse(string body) + { + var trimmed = body.TrimStart(); + if (trimmed.StartsWith('[')) + { + var array = JsonSerializer.Deserialize>(body, Options) ?? []; + return new ListingsPage(array, null); + } + + return JsonSerializer.Deserialize(body, Options) + ?? new ListingsPage([], null); + } + + private static CsFloatListing Map(ListingDto dto) + { + var item = dto.Item ?? new ItemDto(); + return new CsFloatListing( + ListingId: dto.Id ?? "", + CreatedAt: dto.CreatedAt ?? default, + Type: dto.Type ?? "buy_now", + // CSFloat prices are integer cents. + Price: dto.Price / 100m, + MarketHashName: item.MarketHashName ?? "Unknown", + DefIndex: item.DefIndex, + PaintIndex: item.PaintIndex, + PaintSeed: item.PaintSeed, + FloatValue: item.FloatValue, + WearName: item.WearName, + IsStatTrak: item.IsStatTrak, + IsSouvenir: item.IsSouvenir, + StickerCount: item.Stickers?.Count ?? 0, + SellerSteamId: dto.Seller?.SteamId, + InspectLink: item.InspectLink, + AssetId: item.AssetId); + } + + private static string Truncate(string s) => s.Length <= 500 ? s : s[..500]; + + private sealed record ListingsPage( + [property: JsonPropertyName("data")] List Data, + [property: JsonPropertyName("cursor")] string? Cursor); + + private sealed record ListingDto( + string? Id, + DateTimeOffset? CreatedAt, + string? Type, + long Price, + SellerDto? Seller, + ItemDto? Item); + + private sealed record SellerDto(string? SteamId); + + private sealed record ItemDto + { + public string? MarketHashName { get; init; } + public int DefIndex { get; init; } + public int PaintIndex { get; init; } + public int PaintSeed { get; init; } + public decimal FloatValue { get; init; } + public string? WearName { get; init; } + public bool IsStatTrak { get; init; } + public bool IsSouvenir { get; init; } + public string? InspectLink { get; init; } + public string? AssetId { get; init; } + public List? Stickers { get; init; } + } + + private sealed record StickerDto(int StickerId, int Slot, string? Name); +} diff --git a/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatRateLimit.cs b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatRateLimit.cs new file mode 100644 index 0000000..829b767 --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/CsFloat/CsFloatRateLimit.cs @@ -0,0 +1,33 @@ +namespace BlueLaminate.Scraper.CsFloat; + +/// +/// Rate-limit state parsed from a CSFloat API response's headers. The official +/// docs don't pin down the exact header names, so this is populated generically +/// (any header whose name contains "ratelimit"/"rate-limit", plus "retry-after") +/// and keeps the map so the real names surface during the +/// spike. A future catalog sweep uses / +/// to pace requests and avoid 429s. +/// +/// Max requests allowed in the current window, if reported. +/// Requests left in the current window, if reported. +/// Raw reset value as sent (epoch seconds or seconds-until — unverified). +/// Seconds to wait, from a Retry-After header (typically on 429). +/// Every rate-limit-related header, verbatim, for inspection. +public sealed record CsFloatRateLimit( + int? Limit, + int? Remaining, + string? Reset, + int? RetryAfter, + IReadOnlyDictionary Raw) +{ + public static readonly CsFloatRateLimit None = + new(null, null, null, null, new Dictionary()); + + /// True when the API reports zero requests remaining. + public bool IsExhausted => Remaining is <= 0; + + public override string ToString() => + Raw.Count == 0 + ? "rate-limit: (no headers)" + : "rate-limit: " + string.Join(", ", Raw.Select(kv => $"{kv.Key}={kv.Value}")); +} diff --git a/BlueLaminate/BlueLaminate.Scraper/Proxies/IProxyProvider.cs b/BlueLaminate/BlueLaminate.Scraper/Proxies/IProxyProvider.cs new file mode 100644 index 0000000..cce42f7 --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/Proxies/IProxyProvider.cs @@ -0,0 +1,21 @@ +namespace BlueLaminate.Scraper.Proxies; + +/// +/// Source of proxy endpoints. The whole point of this seam is that the rest of +/// the scraper depends only on this interface and , so a +/// different residential provider — or the future C2 that allocates IPs to +/// containers, or a composite "grab-bag" over several providers — drops in +/// without changing any browser or scraping code. +/// +public interface IProxyProvider +{ + /// Identifier recorded on issued leases, e.g. "iproyal". + string Name { get; } + + /// + /// Produce a usable endpoint for the given request. For gateway providers + /// this is pure string composition (no network call); the C2 implementation + /// can override that later with real allocation. + /// + ProxyLease Acquire(ProxyRequest request); +} diff --git a/BlueLaminate/BlueLaminate.Scraper/Proxies/IpRoyalProxyProvider.cs b/BlueLaminate/BlueLaminate.Scraper/Proxies/IpRoyalProxyProvider.cs new file mode 100644 index 0000000..9003621 --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/Proxies/IpRoyalProxyProvider.cs @@ -0,0 +1,70 @@ +namespace BlueLaminate.Scraper.Proxies; + +/// +/// for IPRoyal's residential gateway. IPRoyal keeps +/// one fixed host/port (geo.iproyal.com:12321) and encodes everything else — +/// country, sticky-session id, session lifetime — as underscore-delimited +/// parameters appended to the account password. Example password: +/// "secret_country-us_session-ab12cd_lifetime-30m". The account username is sent +/// unchanged. Docs: https://docs.iproyal.com/proxies/residential/proxy +/// +public sealed class IpRoyalProxyProvider : IProxyProvider +{ + public const string GatewayHost = "geo.iproyal.com"; + public const int GatewayPort = 12321; + + // IPRoyal caps sticky sessions; 30 minutes is a safe default that comfortably + // covers a single scrape pass without forcing an early IP rotation. + private static readonly TimeSpan DefaultLifetime = TimeSpan.FromMinutes(30); + + private readonly string _username; + private readonly string _password; + + public IpRoyalProxyProvider(string username, string password) + { + if (string.IsNullOrWhiteSpace(username)) + throw new ArgumentException("IPRoyal username is required.", nameof(username)); + if (string.IsNullOrWhiteSpace(password)) + throw new ArgumentException("IPRoyal password is required.", nameof(password)); + + _username = username; + _password = password; + } + + public string Name => "iproyal"; + + public ProxyLease Acquire(ProxyRequest request) + { + var password = _password; + string? sessionId = null; + DateTimeOffset? expiresAt = null; + + // Country first; the router picks one at random when several are listed. + if (!string.IsNullOrWhiteSpace(request.Country)) + password += $"_country-{request.Country.Trim().ToLowerInvariant()}"; + + if (request.Sticky) + { + sessionId = request.SessionId ?? NewSessionId(); + var lifetime = request.Lifetime ?? DefaultLifetime; + // IPRoyal expresses lifetime as whole minutes (e.g. "_lifetime-30m"). + var minutes = Math.Max(1, (int)Math.Round(lifetime.TotalMinutes)); + password += $"_session-{sessionId}_lifetime-{minutes}m"; + expiresAt = DateTimeOffset.UtcNow.AddMinutes(minutes); + } + + return new ProxyLease( + Host: GatewayHost, + Port: GatewayPort, + Username: _username, + Password: password, + Provider: Name, + SessionId: sessionId, + ExpiresAt: expiresAt); + } + + // Short, URL/param-safe token. IPRoyal treats the session value opaquely; + // it only needs to be stable for the duration of a sticky lease. + private static string NewSessionId() => + Guid.NewGuid().ToString("N")[..10]; +} diff --git a/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyLease.cs b/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyLease.cs new file mode 100644 index 0000000..18bd06a --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyLease.cs @@ -0,0 +1,29 @@ +namespace BlueLaminate.Scraper.Proxies; + +/// +/// A concrete, ready-to-use proxy endpoint handed back by an +/// . This is the only proxy type the browser layer +/// ever sees, so swapping providers (or mixing several in a grab-bag) never +/// touches the Selenium code. and +/// are the literal credentials to present to the gateway — for providers like +/// IPRoyal the targeting/session parameters are already baked into them. +/// +/// Gateway host, e.g. "geo.iproyal.com". +/// Gateway port, e.g. 12321. +/// Credential username for the gateway. +/// Credential password (may carry encoded session/geo params). +/// Name of the provider that issued this lease. +/// The sticky session key, if this is a pinned IP. +/// When a sticky IP may be recycled; null if rotating/unbounded. +public sealed record ProxyLease( + string Host, + int Port, + string Username, + string Password, + string Provider, + string? SessionId = null, + DateTimeOffset? ExpiresAt = null) +{ + /// "host:port" form used by browser proxy settings. + public string Endpoint => $"{Host}:{Port}"; +} diff --git a/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyProbe.cs b/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyProbe.cs new file mode 100644 index 0000000..7c86e8d --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyProbe.cs @@ -0,0 +1,97 @@ +using System.Text.Json; +using BlueLaminate.Scraper.Browser; +using Microsoft.Extensions.Logging; +using OpenQA.Selenium; + +namespace BlueLaminate.Scraper.Proxies; + +/// The exit IP a proxy lease actually resolves to, per ipinfo.io. +/// +/// ASN + organisation, e.g. "AS7922 Comcast Cable". This is the tell for +/// residential vs. datacenter: a consumer ISP here means a real residential +/// exit; a hosting provider (OVH, Hetzner, AWS…) means datacenter dressed up. +/// +public sealed record ProxyExitInfo( + string? Ip, + string? City, + string? Region, + string? Country, + string? Org, + string? Hostname, + string? Timezone); + +/// +/// Smallest possible end-to-end check of the proxy plumbing: acquire a lease, +/// launch the real browser through it, and read back the exit IP from an +/// IP-echo endpoint. Costs a few KB, so it's the right first thing to run +/// against a metered residential plan — it proves auth works and shows whether +/// the IP is genuinely residential before we spend bandwidth on CSFloat. +/// +public sealed class ProxyProbe +{ + private const string IpEchoUrl = "https://ipinfo.io/json"; + + private static readonly JsonSerializerOptions JsonOptions = new() + { + PropertyNameCaseInsensitive = true, + }; + + private readonly IProxyProvider _provider; + private readonly BrowserDriverFactory _factory; + private readonly ILogger _logger; + + public ProxyProbe( + IProxyProvider provider, + BrowserDriverFactory factory, + ILogger logger) + { + _provider = provider; + _factory = factory; + _logger = logger; + } + + public async Task RunAsync(ProxyRequest request) + { + var lease = _provider.Acquire(request); + _logger.LogInformation( + "Acquired {Provider} lease (exit {Mode}).", + lease.Provider, lease.SessionId is null ? "rotating" : $"sticky:{lease.SessionId}"); + + var driver = await _factory.CreateAsync(lease, blockImages: true); + try + { + driver.Manage().Timeouts().PageLoad = TimeSpan.FromSeconds(60); + driver.Navigate().GoToUrl(IpEchoUrl); + + // Read the document's text rather than the DOM so the browser's + // built-in JSON viewer doesn't get in the way, then carve out the + // JSON object it rendered. + var rendered = ((IJavaScriptExecutor)driver) + .ExecuteScript("return document.documentElement.innerText;") as string + ?? throw new InvalidOperationException("Browser returned no page text."); + + var info = JsonSerializer.Deserialize(ExtractJson(rendered), JsonOptions) + ?? throw new InvalidOperationException("IP-echo response was empty."); + + _logger.LogInformation( + "Exit IP {Ip} — {City}, {Region}, {Country} — {Org}", + info.Ip, info.City, info.Region, info.Country, info.Org); + + return info; + } + finally + { + driver.Quit(); + } + } + + private static string ExtractJson(string text) + { + var start = text.IndexOf('{'); + var end = text.LastIndexOf('}'); + if (start < 0 || end <= start) + throw new InvalidOperationException($"No JSON found in IP-echo response: {text}"); + + return text[start..(end + 1)]; + } +} diff --git a/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyRequest.cs b/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyRequest.cs new file mode 100644 index 0000000..ea198e1 --- /dev/null +++ b/BlueLaminate/BlueLaminate.Scraper/Proxies/ProxyRequest.cs @@ -0,0 +1,30 @@ +namespace BlueLaminate.Scraper.Proxies; + +/// +/// What kind of exit IP the caller wants. Provider-agnostic: each +/// translates these knobs into its own gateway +/// syntax. A sticky request asks the provider to pin one residential IP for the +/// session's lifetime; a non-sticky request lets the IP rotate per connection. +/// +/// +/// Optional ISO 3166-1 alpha-2 code, or a comma-separated list to let the +/// provider pick one at random (e.g. "us" or "us,gb,de"). Null means no +/// geo constraint. +/// +/// +/// True to keep the same exit IP for the whole session; false to rotate. +/// +/// +/// Optional caller-supplied session key for a sticky lease. When null and +/// is true the provider generates one. +/// +/// +/// How long a sticky IP should be held before the provider may recycle it. +/// Ignored when is false. Null lets the provider +/// apply its own default. +/// +public sealed record ProxyRequest( + string? Country = null, + bool Sticky = true, + string? SessionId = null, + TimeSpan? Lifetime = null); diff --git a/BlueLaminate/BlueLaminate.Scraper/Skins/CatalogSkin.cs b/BlueLaminate/BlueLaminate.Scraper/Skins/CatalogSkin.cs index d9776e7..2b33cb6 100644 --- a/BlueLaminate/BlueLaminate.Scraper/Skins/CatalogSkin.cs +++ b/BlueLaminate/BlueLaminate.Scraper/Skins/CatalogSkin.cs @@ -3,6 +3,8 @@ namespace BlueLaminate.Scraper.Skins; /// A single CS2 skin from the CSGO-API static catalogue (skins.json). /// Stable catalogue id, e.g. "skin-e757fd7191f9". Globally unique natural key. /// Owning weapon, e.g. "AK-47", "Hand Wraps", "Bayonet". +/// CS weapon definition index (weapon.weapon_id), e.g. AK-47=7. Null if absent. +/// Paint index identifying the finish, e.g. 985. Null if absent. /// Weapon category, e.g. "Rifles", "Knives", "Gloves". Becomes the weapon type. /// "CT", "T", or "Both". /// Skin/pattern name, e.g. "Dragon Lore"; "Vanilla" for knives with no finish. @@ -17,6 +19,8 @@ namespace BlueLaminate.Scraper.Skins; public sealed record CatalogSkin( string Id, string WeaponName, + int? DefIndex, + int? PaintIndex, string Category, string Team, string Name, diff --git a/BlueLaminate/BlueLaminate.Scraper/Skins/SkinCatalogClient.cs b/BlueLaminate/BlueLaminate.Scraper/Skins/SkinCatalogClient.cs index 34d27cf..617757a 100644 --- a/BlueLaminate/BlueLaminate.Scraper/Skins/SkinCatalogClient.cs +++ b/BlueLaminate/BlueLaminate.Scraper/Skins/SkinCatalogClient.cs @@ -48,6 +48,8 @@ public sealed class SkinCatalogClient return new CatalogSkin( Id: dto.Id, WeaponName: dto.Weapon?.Name ?? "Unknown", + DefIndex: dto.Weapon?.WeaponId, + PaintIndex: dto.PaintIndex, Category: dto.Category?.Name ?? "Unknown", Team: MapTeam(dto.Team?.Id), // Knives with no finish carry a null pattern; "Vanilla" is the community term. @@ -88,9 +90,11 @@ public sealed class SkinCatalogClient string Id, string? Name, string? Description, - NamedDto? Weapon, + WeaponDto? Weapon, NamedDto? Category, NamedDto? Pattern, + // Top-level paint index. AllowReadingFromString handles its string form. + int? PaintIndex, decimal? MinFloat, decimal? MaxFloat, NamedDto? Rarity, @@ -102,4 +106,7 @@ public sealed class SkinCatalogClient List? Crates); private sealed record NamedDto(string? Id, string? Name); + + // Weapon carries a numeric weapon_id (the def_index) alongside id/name. + private sealed record WeaponDto(string? Id, int? WeaponId, string? Name); } diff --git a/BlueLaminate/captures/001_csfloat.com_api_v1_meta_exchange-rates.json b/BlueLaminate/captures/001_csfloat.com_api_v1_meta_exchange-rates.json new file mode 100644 index 0000000..ec0a60f --- /dev/null +++ b/BlueLaminate/captures/001_csfloat.com_api_v1_meta_exchange-rates.json @@ -0,0 +1 @@ +{"data":{"aed":3.67308,"afn":63.8101,"all":81.9632,"amd":368.143,"ang":1.80234,"aoa":918.907,"ars":1408.71,"aud":1.39151,"awg":1.79,"azn":1.69966,"bam":1.68079,"bbd":1.99,"bdt":122.756,"bgn":1.67724,"bhd":0.377063,"bif":2977.25,"bmd":1,"bnd":1.27739,"bob":6.93362,"brl":5.03662,"bsd":1,"btn":94.9823,"bwp":13.4051,"byn":2.76,"bzd":2,"cad":1.38011,"cdf":2303.13,"chf":0.781072,"clp":889.925,"cny":6.76633,"cop":3658.64,"crc":456.323,"cve":94.8541,"czk":20.8256,"djf":177.6,"dkk":6.41027,"dop":58.34,"dzd":132.483,"eek":11.7036,"egp":52.2449,"etb":158.478,"eur":0.85756,"eurc":0.85756,"fjd":2.22183,"fkp":0.743205,"gbp":0.743163,"gel":2.6635,"ghs":11.738,"gip":0.743205,"gmd":71.7,"gnf":8733.01,"gtq":7.62826,"gyd":209.218,"hkd":7.83683,"hnl":26.5919,"hrk":6.46045,"htg":131.051,"huf":303.494,"idr":17846.4,"ils":2.81558,"inr":94.9244,"isk":122.978,"jmd":157.512,"jod":0.709142,"jpy":159.298,"kes":129.43,"kgs":87.4636,"khr":4026.38,"kmf":422.97,"krw":1507.45,"kwd":0.306761,"kyd":0.831626,"kzt":485.776,"lak":21934.5,"lbp":89500,"lkr":330.556,"lrd":182.518,"lsl":16.2382,"ltl":2.85333,"lvl":0.666172,"mad":9.18233,"mdl":17.2495,"mga":4197.32,"mkd":52.9711,"mmk":3658.01,"mnt":3578.79,"mop":8.07515,"mro":357.429,"mur":47.3605,"mvr":15.4615,"mwk":1734.01,"mxn":17.3547,"myr":3.96506,"mzn":63.7022,"nad":16.2435,"ngn":1407.3,"nio":36.6243,"nok":9.25345,"npr":152.04,"nzd":1.67028,"omr":0.385044,"pab":1,"pen":3.4017,"pgk":4.36134,"php":61.5484,"pkr":278.578,"pln":3.62897,"pyg":6017.9,"qar":3.64153,"ron":4.5042,"rsd":100.688,"rub":71.0734,"rwf":1463.11,"sar":3.75298,"sbd":8.0556,"scr":14.4837,"sek":9.24372,"sgd":1.27675,"shp":0.743619,"sle":22.7529,"sll":22791.4,"sos":571.375,"srd":37.1698,"std":20979.6,"svc":8.75278,"szl":16.2358,"thb":32.5267,"tjs":9.25184,"tnd":2.92,"top":2.35974,"try":45.8529,"ttd":6.74984,"twd":31.4269,"tzs":2629.69,"uah":44.2847,"ugx":3771.6,"usd":1,"usdc":1,"usdt":1.0013,"uyu":40.1504,"uzs":12004,"vef":50.1656,"vnd":26311,"vuv":118.053,"wst":2.70421,"xaf":562.45,"xcd":2.6882,"xcg":1.80234,"xof":562.975,"xpf":102.465,"yer":1566.65,"zar":16.2289,"zmw":18.3213}} diff --git a/BlueLaminate/captures/002_csfloat.com_api_v1_meta_location.json b/BlueLaminate/captures/002_csfloat.com_api_v1_meta_location.json new file mode 100644 index 0000000..6206d3f --- /dev/null +++ b/BlueLaminate/captures/002_csfloat.com_api_v1_meta_location.json @@ -0,0 +1 @@ +{"inferred_location":{"short":"US","long":"United States","currency":"USD"}} diff --git a/BlueLaminate/captures/002_csfloat.com_api_v1_schema.json b/BlueLaminate/captures/002_csfloat.com_api_v1_schema.json new file mode 100644 index 0000000..5821350 --- /dev/null +++ b/BlueLaminate/captures/002_csfloat.com_api_v1_schema.json @@ -0,0 +1 @@ +{"collections":[{"key":"set_inferno","name":"The Inferno Collection","has_souvenir":true},{"key":"set_overpass","name":"The Overpass Collection","has_souvenir":true},{"key":"set_baggage","name":"The Baggage Collection"},{"key":"set_norse","name":"The Norse Collection"},{"key":"set_op10_ct","name":"The Control Collection"},{"key":"set_community_31","name":"The Recoil Collection","has_crate":true},{"key":"set_community_36","name":"The Genesis Collection","has_crate":true},{"key":"set_lake","name":"The Lake Collection","has_souvenir":true},{"key":"set_dust","name":"The Dust Collection"},{"key":"set_office","name":"The Office Collection"},{"key":"set_italy","name":"The Italy Collection","has_souvenir":true},{"key":"set_community_11","name":"The Wildfire Collection","has_crate":true},{"key":"set_vertigo_2021","name":"The 2021 Vertigo Collection","has_souvenir":true},{"key":"set_community_29","name":"The Operation Riptide Collection","has_crate":true},{"key":"set_community_37","name":"The Dead Hand Collection","has_crate":true},{"key":"set_community_9","name":"The Shadow Collection","has_crate":true},{"key":"set_community_22","name":"The Prisma Collection","has_crate":true},{"key":"set_timed_drops_cool","name":"The Ascent Collection"},{"key":"set_timed_drops_exuberant","name":"The Harlequin Collection"},{"key":"set_safehouse","name":"The Safehouse Collection","has_souvenir":true},{"key":"set_community_17","name":"The Operation Hydra Collection","has_crate":true},{"key":"set_community_18","name":"The Spectrum 2 Collection","has_crate":true},{"key":"set_community_25","name":"The Prisma 2 Collection","has_crate":true},{"key":"set_weapons_i","name":"The Arms Deal Collection","has_crate":true},{"key":"set_community_7","name":"The Chroma 2 Collection","has_crate":true},{"key":"set_train_2021","name":"The 2021 Train Collection"},{"key":"set_graphic_design","name":"The Graphic Design Collection"},{"key":"set_timed_drops_warm","name":"The Radiant Collection"},{"key":"set_kimono","name":"The Rising Sun Collection"},{"key":"set_gamma_2","name":"The Gamma 2 Collection","has_crate":true},{"key":"set_blacksite","name":"The Blacksite Collection","has_souvenir":true},{"key":"set_op10_ancient","name":"The Ancient Collection","has_souvenir":true},{"key":"set_community_21","name":"The Danger Zone Collection","has_crate":true},{"key":"set_community_24","name":"The CS20 Collection","has_crate":true},{"key":"set_community_30","name":"The Dreams \u0026 Nightmares Collection","has_crate":true},{"key":"set_community_2","name":"The Phoenix Collection","has_crate":true},{"key":"set_community_5","name":"The Vanguard Collection","has_crate":true},{"key":"set_dust_2","name":"The Dust 2 Collection","has_souvenir":true},{"key":"set_gods_and_monsters","name":"The Gods and Monsters Collection"},{"key":"set_community_10","name":"The Revolver Case Collection","has_crate":true},{"key":"set_community_35","name":"The Fever Collection","has_crate":true},{"key":"set_mirage_2021","name":"The 2021 Mirage Collection","has_souvenir":true},{"key":"set_aztec","name":"The Aztec Collection"},{"key":"set_militia","name":"The Militia Collection"},{"key":"set_nuke","name":"The Nuke Collection","has_souvenir":true},{"key":"set_chopshop","name":"The Chop Shop Collection"},{"key":"set_inferno_2","name":"The 2018 Inferno Collection","has_souvenir":true},{"key":"set_dust_2_2021","name":"The 2021 Dust 2 Collection","has_souvenir":true},{"key":"set_community_32","name":"The Revolution Collection","has_crate":true},{"key":"set_community_33","name":"The Kilowatt Collection","has_crate":true},{"key":"set_community_3","name":"The Huntsman Collection","has_crate":true},{"key":"set_assault","name":"The Assault Collection"},{"key":"set_train","name":"The Train Collection","has_souvenir":true},{"key":"set_community_8","name":"The Falchion Collection","has_crate":true},{"key":"set_nuke_2","name":"The 2018 Nuke Collection","has_souvenir":true},{"key":"set_xraymachine","name":"The X-Ray Collection","has_crate":true},{"key":"set_community_16","name":"The Spectrum Collection","has_crate":true},{"key":"set_community_19","name":"The Clutch Collection","has_crate":true},{"key":"set_community_6","name":"The Chroma Collection","has_crate":true},{"key":"set_bank","name":"The Bank Collection"},{"key":"set_cache","name":"The Cache Collection","has_souvenir":true},{"key":"set_community_28","name":"The Snakebite Collection","has_crate":true},{"key":"set_anubis","name":"The Anubis Collection","has_souvenir":true},{"key":"set_overpass_2024","name":"The Overpass 2024 Collection","has_souvenir":true},{"key":"set_timed_drops_achroma","name":"The Achroma Collection"},{"key":"set_train_2025","name":"The Train 2025 Collection","has_souvenir":true},{"key":"set_community_4","name":"The Breakout Collection","has_crate":true},{"key":"set_community_12","name":"The Chroma 3 Collection","has_crate":true},{"key":"set_community_13","name":"The Gamma Collection","has_crate":true},{"key":"set_stmarc","name":"The St. Marc Collection"},{"key":"set_realism_camo","name":"The Sport \u0026 Field Collection"},{"key":"set_timed_drops_neutral","name":"The Boreal Collection"},{"key":"set_xpshop_wpn_01","name":"Limited Edition Item"},{"key":"set_esports_ii","name":"The eSports 2013 Winter Collection","has_crate":true},{"key":"set_mirage","name":"The Mirage Collection","has_souvenir":true},{"key":"set_community_15","name":"The Glove Collection","has_crate":true},{"key":"set_community_20","name":"The Horizon Collection","has_crate":true},{"key":"set_canals","name":"The Canals Collection"},{"key":"set_community_23","name":"The Shattered Web Collection","has_crate":true},{"key":"set_community_26","name":"The Fracture Collection","has_crate":true},{"key":"set_community_27","name":"The Operation Broken Fang Collection","has_crate":true},{"key":"set_esports","name":"The eSports 2013 Collection","has_crate":true},{"key":"set_weapons_ii","name":"The Arms Deal 2 Collection","has_crate":true},{"key":"set_community_1","name":"The Winter Offensive Collection","has_crate":true},{"key":"set_vertigo","name":"The Vertigo Collection","has_souvenir":true},{"key":"set_bravo_ii","name":"The Alpha Collection"},{"key":"set_cobblestone","name":"The Cobblestone Collection","has_souvenir":true},{"key":"set_bravo_i","name":"The Bravo Collection","has_crate":true},{"key":"set_weapons_iii","name":"The Arms Deal 3 Collection","has_crate":true},{"key":"set_esports_iii","name":"The eSports 2014 Summer Collection","has_crate":true},{"key":"set_op10_t","name":"The Havoc Collection"},{"key":"set_community_34","name":"The Gallery Collection","has_crate":true}],"rarities":[{"key":"uncommon","name":"Industrial Grade","value":2},{"key":"mythical","name":"Restricted","value":4},{"key":"ancient","name":"Covert","value":6},{"key":"immortal","name":"Contraband","value":7},{"key":"common","name":"Consumer Grade","value":1},{"key":"rare","name":"Mil-Spec Grade","value":3},{"key":"legendary","name":"Classified","value":5},{"key":"default","name":"Stock","value":0}],"stickers":{"1":{"market_hash_name":"Sticker | Shooter"},"10":{"market_hash_name":"Sticker | Mountain (Foil)"},"100":{"market_hash_name":"Sticker | Gold ESL Skull (Foil) | Katowice 2014"},"1000":{"market_hash_name":"Sticker | The Bomber (Foil)"},"10000":{"market_hash_name":"Sticker | frozen (Holo) | Budapest 2025"},"10001":{"market_hash_name":"Sticker | frozen (Gold) | Budapest 2025"},"10002":{"market_hash_name":"Sticker | jcobbb | Budapest 2025"},"10003":{"market_hash_name":"Sticker | jcobbb (Embroidered) | Budapest 2025"},"10004":{"market_hash_name":"Sticker | jcobbb (Holo) | Budapest 2025"},"10005":{"market_hash_name":"Sticker | jcobbb (Gold) | Budapest 2025"},"10006":{"market_hash_name":"Sticker | karrigan | Budapest 2025"},"10007":{"market_hash_name":"Sticker | karrigan (Embroidered) | Budapest 2025"},"10008":{"market_hash_name":"Sticker | karrigan (Holo) | Budapest 2025"},"10009":{"market_hash_name":"Sticker | karrigan (Gold) | Budapest 2025"},"1001":{"market_hash_name":"Sticker | The Fragger (Foil)"},"10010":{"market_hash_name":"Sticker | rain | Budapest 2025"},"10011":{"market_hash_name":"Sticker | rain (Embroidered) | Budapest 2025"},"10012":{"market_hash_name":"Sticker | rain (Holo) | Budapest 2025"},"10013":{"market_hash_name":"Sticker | rain (Gold) | Budapest 2025"},"10014":{"market_hash_name":"Sticker | alex666 | Budapest 2025"},"10015":{"market_hash_name":"Sticker | alex666 (Embroidered) | Budapest 2025"},"10016":{"market_hash_name":"Sticker | alex666 (Holo) | Budapest 2025"},"10017":{"market_hash_name":"Sticker | alex666 (Gold) | Budapest 2025"},"10018":{"market_hash_name":"Sticker | esenthial | Budapest 2025"},"10019":{"market_hash_name":"Sticker | esenthial (Embroidered) | Budapest 2025"},"1002":{"market_hash_name":"Sticker | The Leader (Foil)"},"10020":{"market_hash_name":"Sticker | esenthial (Holo) | Budapest 2025"},"10021":{"market_hash_name":"Sticker | esenthial (Gold) | Budapest 2025"},"10022":{"market_hash_name":"Sticker | headtr1ck | Budapest 2025"},"10023":{"market_hash_name":"Sticker | headtr1ck (Embroidered) | Budapest 2025"},"10024":{"market_hash_name":"Sticker | headtr1ck (Holo) | Budapest 2025"},"10025":{"market_hash_name":"Sticker | headtr1ck (Gold) | Budapest 2025"},"10026":{"market_hash_name":"Sticker | kensizor | Budapest 2025"},"10027":{"market_hash_name":"Sticker | kensizor (Embroidered) | Budapest 2025"},"10028":{"market_hash_name":"Sticker | kensizor (Holo) | Budapest 2025"},"10029":{"market_hash_name":"Sticker | kensizor (Gold) | Budapest 2025"},"1003":{"market_hash_name":"Sticker | The Nader (Foil)"},"10030":{"market_hash_name":"Sticker | npl | Budapest 2025"},"10031":{"market_hash_name":"Sticker | npl (Embroidered) | Budapest 2025"},"10032":{"market_hash_name":"Sticker | npl (Holo) | Budapest 2025"},"10033":{"market_hash_name":"Sticker | npl (Gold) | Budapest 2025"},"10034":{"market_hash_name":"Sticker | Kursy | Budapest 2025"},"10035":{"market_hash_name":"Sticker | Kursy (Embroidered) | Budapest 2025"},"10036":{"market_hash_name":"Sticker | Kursy (Holo) | Budapest 2025"},"10037":{"market_hash_name":"Sticker | Kursy (Gold) | Budapest 2025"},"10038":{"market_hash_name":"Sticker | PR | Budapest 2025"},"10039":{"market_hash_name":"Sticker | PR (Embroidered) | Budapest 2025"},"1004":{"market_hash_name":"Sticker | Ninja (Foil)"},"10040":{"market_hash_name":"Sticker | PR (Holo) | Budapest 2025"},"10041":{"market_hash_name":"Sticker | PR (Gold) | Budapest 2025"},"10042":{"market_hash_name":"Sticker | REZ | Budapest 2025"},"10043":{"market_hash_name":"Sticker | REZ (Embroidered) | Budapest 2025"},"10044":{"market_hash_name":"Sticker | REZ (Holo) | Budapest 2025"},"10045":{"market_hash_name":"Sticker | REZ (Gold) | Budapest 2025"},"10046":{"market_hash_name":"Sticker | Tauson | Budapest 2025"},"10047":{"market_hash_name":"Sticker | Tauson (Embroidered) | Budapest 2025"},"10048":{"market_hash_name":"Sticker | Tauson (Holo) | Budapest 2025"},"10049":{"market_hash_name":"Sticker | Tauson (Gold) | Budapest 2025"},"1005":{"market_hash_name":"Sticker | The Pro (Foil)"},"10050":{"market_hash_name":"Sticker | ztr | Budapest 2025"},"10051":{"market_hash_name":"Sticker | ztr (Embroidered) | Budapest 2025"},"10052":{"market_hash_name":"Sticker | ztr (Holo) | Budapest 2025"},"10053":{"market_hash_name":"Sticker | ztr (Gold) | Budapest 2025"},"10054":{"market_hash_name":"Sticker | blameF | Budapest 2025"},"10055":{"market_hash_name":"Sticker | blameF (Embroidered) | Budapest 2025"},"10056":{"market_hash_name":"Sticker | blameF (Holo) | Budapest 2025"},"10057":{"market_hash_name":"Sticker | blameF (Gold) | Budapest 2025"},"10058":{"market_hash_name":"Sticker | Cypher | Budapest 2025"},"10059":{"market_hash_name":"Sticker | Cypher (Embroidered) | Budapest 2025"},"1006":{"market_hash_name":"Sticker | Support (Foil)"},"10060":{"market_hash_name":"Sticker | Cypher (Holo) | Budapest 2025"},"10061":{"market_hash_name":"Sticker | Cypher (Gold) | Budapest 2025"},"10062":{"market_hash_name":"Sticker | fEAR | Budapest 2025"},"10063":{"market_hash_name":"Sticker | fEAR (Embroidered) | Budapest 2025"},"10064":{"market_hash_name":"Sticker | fEAR (Holo) | Budapest 2025"},"10065":{"market_hash_name":"Sticker | fEAR (Gold) | Budapest 2025"},"10066":{"market_hash_name":"Sticker | jambo | Budapest 2025"},"10067":{"market_hash_name":"Sticker | jambo (Embroidered) | Budapest 2025"},"10068":{"market_hash_name":"Sticker | jambo (Holo) | Budapest 2025"},"10069":{"market_hash_name":"Sticker | jambo (Gold) | Budapest 2025"},"1007":{"market_hash_name":"Sticker | Ninjas in Pyjamas | MLG Columbus 2016"},"10070":{"market_hash_name":"Sticker | KRIMZ | Budapest 2025"},"10071":{"market_hash_name":"Sticker | KRIMZ (Embroidered) | Budapest 2025"},"10072":{"market_hash_name":"Sticker | KRIMZ (Holo) | Budapest 2025"},"10073":{"market_hash_name":"Sticker | KRIMZ (Gold) | Budapest 2025"},"10074":{"market_hash_name":"Sticker | AW | Budapest 2025"},"10075":{"market_hash_name":"Sticker | AW (Embroidered) | Budapest 2025"},"10076":{"market_hash_name":"Sticker | AW (Holo) | Budapest 2025"},"10077":{"market_hash_name":"Sticker | AW (Gold) | Budapest 2025"},"10078":{"market_hash_name":"Sticker | BELCHONOKK | Budapest 2025"},"10079":{"market_hash_name":"Sticker | BELCHONOKK (Embroidered) | Budapest 2025"},"1008":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | MLG Columbus 2016"},"10080":{"market_hash_name":"Sticker | BELCHONOKK (Holo) | Budapest 2025"},"10081":{"market_hash_name":"Sticker | BELCHONOKK (Gold) | Budapest 2025"},"10082":{"market_hash_name":"Sticker | Jame | Budapest 2025"},"10083":{"market_hash_name":"Sticker | Jame (Embroidered) | Budapest 2025"},"10084":{"market_hash_name":"Sticker | Jame (Holo) | Budapest 2025"},"10085":{"market_hash_name":"Sticker | Jame (Gold) | Budapest 2025"},"10086":{"market_hash_name":"Sticker | nota | Budapest 2025"},"10087":{"market_hash_name":"Sticker | nota (Embroidered) | Budapest 2025"},"10088":{"market_hash_name":"Sticker | nota (Holo) | Budapest 2025"},"10089":{"market_hash_name":"Sticker | nota (Gold) | Budapest 2025"},"1009":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | MLG Columbus 2016"},"10090":{"market_hash_name":"Sticker | xiELO | Budapest 2025"},"10091":{"market_hash_name":"Sticker | xiELO (Embroidered) | Budapest 2025"},"10092":{"market_hash_name":"Sticker | xiELO (Holo) | Budapest 2025"},"10093":{"market_hash_name":"Sticker | xiELO (Gold) | Budapest 2025"},"10094":{"market_hash_name":"Sticker | ewjerkz | Budapest 2025"},"10095":{"market_hash_name":"Sticker | ewjerkz (Embroidered) | Budapest 2025"},"10096":{"market_hash_name":"Sticker | ewjerkz (Holo) | Budapest 2025"},"10097":{"market_hash_name":"Sticker | ewjerkz (Gold) | Budapest 2025"},"10098":{"market_hash_name":"Sticker | r1nkle | Budapest 2025"},"10099":{"market_hash_name":"Sticker | r1nkle (Embroidered) | Budapest 2025"},"101":{"market_hash_name":"Sticker | Backstab"},"1010":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | MLG Columbus 2016"},"10100":{"market_hash_name":"Sticker | r1nkle (Holo) | Budapest 2025"},"10101":{"market_hash_name":"Sticker | r1nkle (Gold) | Budapest 2025"},"10102":{"market_hash_name":"Sticker | sjuush | Budapest 2025"},"10103":{"market_hash_name":"Sticker | sjuush (Embroidered) | Budapest 2025"},"10104":{"market_hash_name":"Sticker | sjuush (Holo) | Budapest 2025"},"10105":{"market_hash_name":"Sticker | sjuush (Gold) | Budapest 2025"},"10106":{"market_hash_name":"Sticker | Snappi | Budapest 2025"},"10107":{"market_hash_name":"Sticker | Snappi (Embroidered) | Budapest 2025"},"10108":{"market_hash_name":"Sticker | Snappi (Holo) | Budapest 2025"},"10109":{"market_hash_name":"Sticker | Snappi (Gold) | Budapest 2025"},"1011":{"market_hash_name":"Sticker | Splyce | MLG Columbus 2016"},"10110":{"market_hash_name":"Sticker | xKacpersky | Budapest 2025"},"10111":{"market_hash_name":"Sticker | xKacpersky (Embroidered) | Budapest 2025"},"10112":{"market_hash_name":"Sticker | xKacpersky (Holo) | Budapest 2025"},"10113":{"market_hash_name":"Sticker | xKacpersky (Gold) | Budapest 2025"},"10114":{"market_hash_name":"Sticker | chelo | Budapest 2025"},"10115":{"market_hash_name":"Sticker | chelo (Embroidered) | Budapest 2025"},"10116":{"market_hash_name":"Sticker | chelo (Holo) | Budapest 2025"},"10117":{"market_hash_name":"Sticker | chelo (Gold) | Budapest 2025"},"10118":{"market_hash_name":"Sticker | noway | Budapest 2025"},"10119":{"market_hash_name":"Sticker | noway (Embroidered) | Budapest 2025"},"1012":{"market_hash_name":"Sticker | Splyce (Holo) | MLG Columbus 2016"},"10120":{"market_hash_name":"Sticker | noway (Holo) | Budapest 2025"},"10121":{"market_hash_name":"Sticker | noway (Gold) | Budapest 2025"},"10122":{"market_hash_name":"Sticker | skullz | Budapest 2025"},"10123":{"market_hash_name":"Sticker | skullz (Embroidered) | Budapest 2025"},"10124":{"market_hash_name":"Sticker | skullz (Holo) | Budapest 2025"},"10125":{"market_hash_name":"Sticker | skullz (Gold) | Budapest 2025"},"10126":{"market_hash_name":"Sticker | TRY | Budapest 2025"},"10127":{"market_hash_name":"Sticker | TRY (Embroidered) | Budapest 2025"},"10128":{"market_hash_name":"Sticker | TRY (Holo) | Budapest 2025"},"10129":{"market_hash_name":"Sticker | TRY (Gold) | Budapest 2025"},"1013":{"market_hash_name":"Sticker | Splyce (Foil) | MLG Columbus 2016"},"10130":{"market_hash_name":"Sticker | VINI | Budapest 2025"},"10131":{"market_hash_name":"Sticker | VINI (Embroidered) | Budapest 2025"},"10132":{"market_hash_name":"Sticker | VINI (Holo) | Budapest 2025"},"10133":{"market_hash_name":"Sticker | VINI (Gold) | Budapest 2025"},"10134":{"market_hash_name":"Sticker | INS | Budapest 2025"},"10135":{"market_hash_name":"Sticker | INS (Embroidered) | Budapest 2025"},"10136":{"market_hash_name":"Sticker | INS (Holo) | Budapest 2025"},"10137":{"market_hash_name":"Sticker | INS (Gold) | Budapest 2025"},"10138":{"market_hash_name":"Sticker | jks | Budapest 2025"},"10139":{"market_hash_name":"Sticker | jks (Embroidered) | Budapest 2025"},"1014":{"market_hash_name":"Sticker | Splyce (Gold) | MLG Columbus 2016"},"10140":{"market_hash_name":"Sticker | jks (Holo) | Budapest 2025"},"10141":{"market_hash_name":"Sticker | jks (Gold) | Budapest 2025"},"10142":{"market_hash_name":"Sticker | nettik | Budapest 2025"},"10143":{"market_hash_name":"Sticker | nettik (Embroidered) | Budapest 2025"},"10144":{"market_hash_name":"Sticker | nettik (Holo) | Budapest 2025"},"10145":{"market_hash_name":"Sticker | nettik (Gold) | Budapest 2025"},"10146":{"market_hash_name":"Sticker | regali | Budapest 2025"},"10147":{"market_hash_name":"Sticker | regali (Embroidered) | Budapest 2025"},"10148":{"market_hash_name":"Sticker | regali (Holo) | Budapest 2025"},"10149":{"market_hash_name":"Sticker | regali (Gold) | Budapest 2025"},"1015":{"market_hash_name":"Sticker | Counter Logic Gaming | MLG Columbus 2016"},"10150":{"market_hash_name":"Sticker | vexite | Budapest 2025"},"10151":{"market_hash_name":"Sticker | vexite (Embroidered) | Budapest 2025"},"10152":{"market_hash_name":"Sticker | vexite (Holo) | Budapest 2025"},"10153":{"market_hash_name":"Sticker | vexite (Gold) | Budapest 2025"},"10154":{"market_hash_name":"Sticker | C4LLM3SU3 | Budapest 2025"},"10155":{"market_hash_name":"Sticker | C4LLM3SU3 (Embroidered) | Budapest 2025"},"10156":{"market_hash_name":"Sticker | C4LLM3SU3 (Holo) | Budapest 2025"},"10157":{"market_hash_name":"Sticker | C4LLM3SU3 (Gold) | Budapest 2025"},"10158":{"market_hash_name":"Sticker | EmiliaQAQ | Budapest 2025"},"10159":{"market_hash_name":"Sticker | EmiliaQAQ (Embroidered) | Budapest 2025"},"1016":{"market_hash_name":"Sticker | Counter Logic Gaming (Holo) | MLG Columbus 2016"},"10160":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Budapest 2025"},"10161":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Budapest 2025"},"10162":{"market_hash_name":"Sticker | Starry | Budapest 2025"},"10163":{"market_hash_name":"Sticker | Starry (Embroidered) | Budapest 2025"},"10164":{"market_hash_name":"Sticker | Starry (Holo) | Budapest 2025"},"10165":{"market_hash_name":"Sticker | Starry (Gold) | Budapest 2025"},"10166":{"market_hash_name":"Sticker | westmelon | Budapest 2025"},"10167":{"market_hash_name":"Sticker | westmelon (Embroidered) | Budapest 2025"},"10168":{"market_hash_name":"Sticker | westmelon (Holo) | Budapest 2025"},"10169":{"market_hash_name":"Sticker | westmelon (Gold) | Budapest 2025"},"1017":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | MLG Columbus 2016"},"10170":{"market_hash_name":"Sticker | z4KR | Budapest 2025"},"10171":{"market_hash_name":"Sticker | z4KR (Embroidered) | Budapest 2025"},"10172":{"market_hash_name":"Sticker | z4KR (Holo) | Budapest 2025"},"10173":{"market_hash_name":"Sticker | z4KR (Gold) | Budapest 2025"},"10174":{"market_hash_name":"Sticker | HexT | Budapest 2025"},"10175":{"market_hash_name":"Sticker | HexT (Embroidered) | Budapest 2025"},"10176":{"market_hash_name":"Sticker | HexT (Holo) | Budapest 2025"},"10177":{"market_hash_name":"Sticker | HexT (Gold) | Budapest 2025"},"10178":{"market_hash_name":"Sticker | Lake | Budapest 2025"},"10179":{"market_hash_name":"Sticker | Lake (Embroidered) | Budapest 2025"},"1018":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | MLG Columbus 2016"},"10180":{"market_hash_name":"Sticker | Lake (Holo) | Budapest 2025"},"10181":{"market_hash_name":"Sticker | Lake (Gold) | Budapest 2025"},"10182":{"market_hash_name":"Sticker | s1n | Budapest 2025"},"10183":{"market_hash_name":"Sticker | s1n (Embroidered) | Budapest 2025"},"10184":{"market_hash_name":"Sticker | s1n (Holo) | Budapest 2025"},"10185":{"market_hash_name":"Sticker | s1n (Gold) | Budapest 2025"},"10186":{"market_hash_name":"Sticker | slaxz- | Budapest 2025"},"10187":{"market_hash_name":"Sticker | slaxz- (Embroidered) | Budapest 2025"},"10188":{"market_hash_name":"Sticker | slaxz- (Holo) | Budapest 2025"},"10189":{"market_hash_name":"Sticker | slaxz- (Gold) | Budapest 2025"},"1019":{"market_hash_name":"Sticker | Gambit Gaming | MLG Columbus 2016"},"10190":{"market_hash_name":"Sticker | Swisher | Budapest 2025"},"10191":{"market_hash_name":"Sticker | Swisher (Embroidered) | Budapest 2025"},"10192":{"market_hash_name":"Sticker | Swisher (Holo) | Budapest 2025"},"10193":{"market_hash_name":"Sticker | Swisher (Gold) | Budapest 2025"},"10194":{"market_hash_name":"Sticker | arT | Budapest 2025"},"10195":{"market_hash_name":"Sticker | arT (Embroidered) | Budapest 2025"},"10196":{"market_hash_name":"Sticker | arT (Holo) | Budapest 2025"},"10197":{"market_hash_name":"Sticker | arT (Gold) | Budapest 2025"},"10198":{"market_hash_name":"Sticker | decenty | Budapest 2025"},"10199":{"market_hash_name":"Sticker | decenty (Embroidered) | Budapest 2025"},"102":{"market_hash_name":"Sticker | King on the Field"},"1020":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | MLG Columbus 2016"},"10200":{"market_hash_name":"Sticker | decenty (Holo) | Budapest 2025"},"10201":{"market_hash_name":"Sticker | decenty (Gold) | Budapest 2025"},"10202":{"market_hash_name":"Sticker | kye | Budapest 2025"},"10203":{"market_hash_name":"Sticker | kye (Embroidered) | Budapest 2025"},"10204":{"market_hash_name":"Sticker | kye (Holo) | Budapest 2025"},"10205":{"market_hash_name":"Sticker | kye (Gold) | Budapest 2025"},"10206":{"market_hash_name":"Sticker | Lucaozy | Budapest 2025"},"10207":{"market_hash_name":"Sticker | Lucaozy (Embroidered) | Budapest 2025"},"10208":{"market_hash_name":"Sticker | Lucaozy (Holo) | Budapest 2025"},"10209":{"market_hash_name":"Sticker | Lucaozy (Gold) | Budapest 2025"},"1021":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | MLG Columbus 2016"},"10210":{"market_hash_name":"Sticker | zevy | Budapest 2025"},"10211":{"market_hash_name":"Sticker | zevy (Embroidered) | Budapest 2025"},"10212":{"market_hash_name":"Sticker | zevy (Holo) | Budapest 2025"},"10213":{"market_hash_name":"Sticker | zevy (Gold) | Budapest 2025"},"10214":{"market_hash_name":"Sticker | chayJESUS | Budapest 2025"},"10215":{"market_hash_name":"Sticker | chayJESUS (Embroidered) | Budapest 2025"},"10216":{"market_hash_name":"Sticker | chayJESUS (Holo) | Budapest 2025"},"10217":{"market_hash_name":"Sticker | chayJESUS (Gold) | Budapest 2025"},"10218":{"market_hash_name":"Sticker | drop | Budapest 2025"},"10219":{"market_hash_name":"Sticker | drop (Embroidered) | Budapest 2025"},"1022":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | MLG Columbus 2016"},"10220":{"market_hash_name":"Sticker | drop (Holo) | Budapest 2025"},"10221":{"market_hash_name":"Sticker | drop (Gold) | Budapest 2025"},"10222":{"market_hash_name":"Sticker | History | Budapest 2025"},"10223":{"market_hash_name":"Sticker | History (Embroidered) | Budapest 2025"},"10224":{"market_hash_name":"Sticker | History (Holo) | Budapest 2025"},"10225":{"market_hash_name":"Sticker | History (Gold) | Budapest 2025"},"10226":{"market_hash_name":"Sticker | kauez | Budapest 2025"},"10227":{"market_hash_name":"Sticker | kauez (Embroidered) | Budapest 2025"},"10228":{"market_hash_name":"Sticker | kauez (Holo) | Budapest 2025"},"10229":{"market_hash_name":"Sticker | kauez (Gold) | Budapest 2025"},"1023":{"market_hash_name":"Sticker | Flipsid3 Tactics | MLG Columbus 2016"},"10230":{"market_hash_name":"Sticker | venomzera | Budapest 2025"},"10231":{"market_hash_name":"Sticker | venomzera (Embroidered) | Budapest 2025"},"10232":{"market_hash_name":"Sticker | venomzera (Holo) | Budapest 2025"},"10233":{"market_hash_name":"Sticker | venomzera (Gold) | Budapest 2025"},"10234":{"market_hash_name":"Sticker | Bart4k | Budapest 2025"},"10235":{"market_hash_name":"Sticker | Bart4k (Embroidered) | Budapest 2025"},"10236":{"market_hash_name":"Sticker | Bart4k (Holo) | Budapest 2025"},"10237":{"market_hash_name":"Sticker | Bart4k (Gold) | Budapest 2025"},"10238":{"market_hash_name":"Sticker | cobra | Budapest 2025"},"10239":{"market_hash_name":"Sticker | cobra (Embroidered) | Budapest 2025"},"1024":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | MLG Columbus 2016"},"10240":{"market_hash_name":"Sticker | cobra (Holo) | Budapest 2025"},"10241":{"market_hash_name":"Sticker | cobra (Gold) | Budapest 2025"},"10242":{"market_hash_name":"Sticker | nin9 | Budapest 2025"},"10243":{"market_hash_name":"Sticker | nin9 (Embroidered) | Budapest 2025"},"10244":{"market_hash_name":"Sticker | nin9 (Holo) | Budapest 2025"},"10245":{"market_hash_name":"Sticker | nin9 (Gold) | Budapest 2025"},"10246":{"market_hash_name":"Sticker | sk0R | Budapest 2025"},"10247":{"market_hash_name":"Sticker | sk0R (Embroidered) | Budapest 2025"},"10248":{"market_hash_name":"Sticker | sk0R (Holo) | Budapest 2025"},"10249":{"market_hash_name":"Sticker | sk0R (Gold) | Budapest 2025"},"1025":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | MLG Columbus 2016"},"10250":{"market_hash_name":"Sticker | xerolte | Budapest 2025"},"10251":{"market_hash_name":"Sticker | xerolte (Embroidered) | Budapest 2025"},"10252":{"market_hash_name":"Sticker | xerolte (Holo) | Budapest 2025"},"10253":{"market_hash_name":"Sticker | xerolte (Gold) | Budapest 2025"},"10254":{"market_hash_name":"Sticker | br0 | Budapest 2025"},"10255":{"market_hash_name":"Sticker | br0 (Embroidered) | Budapest 2025"},"10256":{"market_hash_name":"Sticker | br0 (Holo) | Budapest 2025"},"10257":{"market_hash_name":"Sticker | br0 (Gold) | Budapest 2025"},"10258":{"market_hash_name":"Sticker | jeorge | Budapest 2025"},"10259":{"market_hash_name":"Sticker | jeorge (Embroidered) | Budapest 2025"},"1026":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | MLG Columbus 2016"},"10260":{"market_hash_name":"Sticker | jeorge (Holo) | Budapest 2025"},"10261":{"market_hash_name":"Sticker | jeorge (Gold) | Budapest 2025"},"10262":{"market_hash_name":"Sticker | nitr0 | Budapest 2025"},"10263":{"market_hash_name":"Sticker | nitr0 (Embroidered) | Budapest 2025"},"10264":{"market_hash_name":"Sticker | nitr0 (Holo) | Budapest 2025"},"10265":{"market_hash_name":"Sticker | nitr0 (Gold) | Budapest 2025"},"10266":{"market_hash_name":"Sticker | Sonic | Budapest 2025"},"10267":{"market_hash_name":"Sticker | Sonic (Embroidered) | Budapest 2025"},"10268":{"market_hash_name":"Sticker | Sonic (Holo) | Budapest 2025"},"10269":{"market_hash_name":"Sticker | Sonic (Gold) | Budapest 2025"},"1027":{"market_hash_name":"Sticker | Team Liquid | MLG Columbus 2016"},"10270":{"market_hash_name":"Sticker | XotiC | Budapest 2025"},"10271":{"market_hash_name":"Sticker | XotiC (Embroidered) | Budapest 2025"},"10272":{"market_hash_name":"Sticker | XotiC (Holo) | Budapest 2025"},"10273":{"market_hash_name":"Sticker | XotiC (Gold) | Budapest 2025"},"10274":{"market_hash_name":"Sticker | ChildKing | Budapest 2025"},"10275":{"market_hash_name":"Sticker | ChildKing (Embroidered) | Budapest 2025"},"10276":{"market_hash_name":"Sticker | ChildKing (Holo) | Budapest 2025"},"10277":{"market_hash_name":"Sticker | ChildKing (Gold) | Budapest 2025"},"10278":{"market_hash_name":"Sticker | L1haNg | Budapest 2025"},"10279":{"market_hash_name":"Sticker | L1haNg (Embroidered) | Budapest 2025"},"1028":{"market_hash_name":"Sticker | Team Liquid (Holo) | MLG Columbus 2016"},"10280":{"market_hash_name":"Sticker | L1haNg (Holo) | Budapest 2025"},"10281":{"market_hash_name":"Sticker | L1haNg (Gold) | Budapest 2025"},"10282":{"market_hash_name":"Sticker | Marek | Budapest 2025"},"10283":{"market_hash_name":"Sticker | Marek (Embroidered) | Budapest 2025"},"10284":{"market_hash_name":"Sticker | Marek (Holo) | Budapest 2025"},"10285":{"market_hash_name":"Sticker | Marek (Gold) | Budapest 2025"},"10286":{"market_hash_name":"Sticker | Summer | Budapest 2025"},"10287":{"market_hash_name":"Sticker | Summer (Embroidered) | Budapest 2025"},"10288":{"market_hash_name":"Sticker | Summer (Holo) | Budapest 2025"},"10289":{"market_hash_name":"Sticker | Summer (Gold) | Budapest 2025"},"1029":{"market_hash_name":"Sticker | Team Liquid (Foil) | MLG Columbus 2016"},"10290":{"market_hash_name":"Sticker | Tiger | Budapest 2025"},"10291":{"market_hash_name":"Sticker | Tiger (Embroidered) | Budapest 2025"},"10292":{"market_hash_name":"Sticker | Tiger (Holo) | Budapest 2025"},"10293":{"market_hash_name":"Sticker | Tiger (Gold) | Budapest 2025"},"10294":{"market_hash_name":"Sticker | apEX (Champion) | Budapest 2025"},"10295":{"market_hash_name":"Sticker | apEX (Embroidered, Champion) | Budapest 2025"},"10296":{"market_hash_name":"Sticker | apEX (Holo, Champion) | Budapest 2025"},"10297":{"market_hash_name":"Sticker | apEX (Gold, Champion) | Budapest 2025"},"10298":{"market_hash_name":"Sticker | FlameZ (Champion) | Budapest 2025"},"10299":{"market_hash_name":"Sticker | FlameZ (Embroidered, Champion) | Budapest 2025"},"103":{"market_hash_name":"Sticker | Howling Dawn"},"1030":{"market_hash_name":"Sticker | Team Liquid (Gold) | MLG Columbus 2016"},"10300":{"market_hash_name":"Sticker | FlameZ (Holo, Champion) | Budapest 2025"},"10301":{"market_hash_name":"Sticker | FlameZ (Gold, Champion) | Budapest 2025"},"10302":{"market_hash_name":"Sticker | mezii (Champion) | Budapest 2025"},"10303":{"market_hash_name":"Sticker | mezii (Embroidered, Champion) | Budapest 2025"},"10304":{"market_hash_name":"Sticker | mezii (Holo, Champion) | Budapest 2025"},"10305":{"market_hash_name":"Sticker | mezii (Gold, Champion) | Budapest 2025"},"10306":{"market_hash_name":"Sticker | ropz (Champion) | Budapest 2025"},"10307":{"market_hash_name":"Sticker | ropz (Embroidered, Champion) | Budapest 2025"},"10308":{"market_hash_name":"Sticker | ropz (Holo, Champion) | Budapest 2025"},"10309":{"market_hash_name":"Sticker | ropz (Gold, Champion) | Budapest 2025"},"1031":{"market_hash_name":"Sticker | mousesports | MLG Columbus 2016"},"10310":{"market_hash_name":"Sticker | ZywOo (Champion) | Budapest 2025"},"10311":{"market_hash_name":"Sticker | ZywOo (Embroidered, Champion) | Budapest 2025"},"10312":{"market_hash_name":"Sticker | ZywOo (Holo, Champion) | Budapest 2025"},"10313":{"market_hash_name":"Sticker | ZywOo (Gold, Champion) | Budapest 2025"},"1032":{"market_hash_name":"Sticker | mousesports (Holo) | MLG Columbus 2016"},"1033":{"market_hash_name":"Sticker | mousesports (Foil) | MLG Columbus 2016"},"1034":{"market_hash_name":"Sticker | mousesports (Gold) | MLG Columbus 2016"},"1035":{"market_hash_name":"Sticker | Natus Vincere | MLG Columbus 2016"},"1036":{"market_hash_name":"Sticker | Natus Vincere (Holo) | MLG Columbus 2016"},"10369":{"market_hash_name":"Sticker | Vitality | Cologne 2026"},"1037":{"market_hash_name":"Sticker | Natus Vincere (Foil) | MLG Columbus 2016"},"10370":{"market_hash_name":"Sticker | Vitality (Foil) | Cologne 2026"},"10371":{"market_hash_name":"Sticker | Vitality (Holo) | Cologne 2026"},"10372":{"market_hash_name":"Sticker | Vitality (Gold) | Cologne 2026"},"10373":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2026"},"10374":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2026"},"10375":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Cologne 2026"},"10376":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cologne 2026"},"10377":{"market_hash_name":"Sticker | Falcons | Cologne 2026"},"10378":{"market_hash_name":"Sticker | Falcons (Foil) | Cologne 2026"},"10379":{"market_hash_name":"Sticker | Falcons (Holo) | Cologne 2026"},"1038":{"market_hash_name":"Sticker | Natus Vincere (Gold) | MLG Columbus 2016"},"10380":{"market_hash_name":"Sticker | Falcons (Gold) | Cologne 2026"},"10381":{"market_hash_name":"Sticker | The Mongolz | Cologne 2026"},"10382":{"market_hash_name":"Sticker | The Mongolz (Foil) | Cologne 2026"},"10383":{"market_hash_name":"Sticker | The Mongolz (Holo) | Cologne 2026"},"10384":{"market_hash_name":"Sticker | The Mongolz (Gold) | Cologne 2026"},"10385":{"market_hash_name":"Sticker | PARIVISION | Cologne 2026"},"10386":{"market_hash_name":"Sticker | PARIVISION (Foil) | Cologne 2026"},"10387":{"market_hash_name":"Sticker | PARIVISION (Holo) | Cologne 2026"},"10388":{"market_hash_name":"Sticker | PARIVISION (Gold) | Cologne 2026"},"10389":{"market_hash_name":"Sticker | Aurora | Cologne 2026"},"1039":{"market_hash_name":"Sticker | Virtus.Pro | MLG Columbus 2016"},"10390":{"market_hash_name":"Sticker | Aurora (Foil) | Cologne 2026"},"10391":{"market_hash_name":"Sticker | Aurora (Holo) | Cologne 2026"},"10392":{"market_hash_name":"Sticker | Aurora (Gold) | Cologne 2026"},"10393":{"market_hash_name":"Sticker | FURIA | Cologne 2026"},"10394":{"market_hash_name":"Sticker | FURIA (Foil) | Cologne 2026"},"10395":{"market_hash_name":"Sticker | FURIA (Holo) | Cologne 2026"},"10396":{"market_hash_name":"Sticker | FURIA (Gold) | Cologne 2026"},"10397":{"market_hash_name":"Sticker | MOUZ | Cologne 2026"},"10398":{"market_hash_name":"Sticker | MOUZ (Foil) | Cologne 2026"},"10399":{"market_hash_name":"Sticker | MOUZ (Holo) | Cologne 2026"},"104":{"market_hash_name":"Sticker | Bomb Doge"},"1040":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | MLG Columbus 2016"},"10400":{"market_hash_name":"Sticker | MOUZ (Gold) | Cologne 2026"},"10401":{"market_hash_name":"Sticker | FUT | Cologne 2026"},"10402":{"market_hash_name":"Sticker | FUT (Foil) | Cologne 2026"},"10403":{"market_hash_name":"Sticker | FUT (Holo) | Cologne 2026"},"10404":{"market_hash_name":"Sticker | FUT (Gold) | Cologne 2026"},"10405":{"market_hash_name":"Sticker | Team Spirit | Cologne 2026"},"10406":{"market_hash_name":"Sticker | Team Spirit (Foil) | Cologne 2026"},"10407":{"market_hash_name":"Sticker | Team Spirit (Holo) | Cologne 2026"},"10408":{"market_hash_name":"Sticker | Team Spirit (Gold) | Cologne 2026"},"10409":{"market_hash_name":"Sticker | Astralis | Cologne 2026"},"1041":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | MLG Columbus 2016"},"10410":{"market_hash_name":"Sticker | Astralis (Foil) | Cologne 2026"},"10411":{"market_hash_name":"Sticker | Astralis (Holo) | Cologne 2026"},"10412":{"market_hash_name":"Sticker | Astralis (Gold) | Cologne 2026"},"10413":{"market_hash_name":"Sticker | G2 esports | Cologne 2026"},"10414":{"market_hash_name":"Sticker | G2 esports (Foil) | Cologne 2026"},"10415":{"market_hash_name":"Sticker | G2 esports (Holo) | Cologne 2026"},"10416":{"market_hash_name":"Sticker | G2 esports (Gold) | Cologne 2026"},"10417":{"market_hash_name":"Sticker | Legacy | Cologne 2026"},"10418":{"market_hash_name":"Sticker | Legacy (Foil) | Cologne 2026"},"10419":{"market_hash_name":"Sticker | Legacy (Holo) | Cologne 2026"},"1042":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | MLG Columbus 2016"},"10420":{"market_hash_name":"Sticker | Legacy (Gold) | Cologne 2026"},"10421":{"market_hash_name":"Sticker | paiN Gaming | Cologne 2026"},"10422":{"market_hash_name":"Sticker | paiN Gaming (Foil) | Cologne 2026"},"10423":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Cologne 2026"},"10424":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Cologne 2026"},"10425":{"market_hash_name":"Sticker | Monte | Cologne 2026"},"10426":{"market_hash_name":"Sticker | Monte (Foil) | Cologne 2026"},"10427":{"market_hash_name":"Sticker | Monte (Holo) | Cologne 2026"},"10428":{"market_hash_name":"Sticker | Monte (Gold) | Cologne 2026"},"10429":{"market_hash_name":"Sticker | 9z Team | Cologne 2026"},"1043":{"market_hash_name":"Sticker | Cloud9 | MLG Columbus 2016"},"10430":{"market_hash_name":"Sticker | 9z Team (Foil) | Cologne 2026"},"10431":{"market_hash_name":"Sticker | 9z Team (Holo) | Cologne 2026"},"10432":{"market_hash_name":"Sticker | 9z Team (Gold) | Cologne 2026"},"10433":{"market_hash_name":"Sticker | GamerLegion | Cologne 2026"},"10434":{"market_hash_name":"Sticker | GamerLegion (Foil) | Cologne 2026"},"10435":{"market_hash_name":"Sticker | GamerLegion (Holo) | Cologne 2026"},"10436":{"market_hash_name":"Sticker | GamerLegion (Gold) | Cologne 2026"},"10437":{"market_hash_name":"Sticker | B8 | Cologne 2026"},"10438":{"market_hash_name":"Sticker | B8 (Foil) | Cologne 2026"},"10439":{"market_hash_name":"Sticker | B8 (Holo) | Cologne 2026"},"1044":{"market_hash_name":"Sticker | Cloud9 (Holo) | MLG Columbus 2016"},"10440":{"market_hash_name":"Sticker | B8 (Gold) | Cologne 2026"},"10441":{"market_hash_name":"Sticker | HEROIC | Cologne 2026"},"10442":{"market_hash_name":"Sticker | HEROIC (Foil) | Cologne 2026"},"10443":{"market_hash_name":"Sticker | HEROIC (Holo) | Cologne 2026"},"10444":{"market_hash_name":"Sticker | HEROIC (Gold) | Cologne 2026"},"10445":{"market_hash_name":"Sticker | BetBoom | Cologne 2026"},"10446":{"market_hash_name":"Sticker | BetBoom (Foil) | Cologne 2026"},"10447":{"market_hash_name":"Sticker | BetBoom (Holo) | Cologne 2026"},"10448":{"market_hash_name":"Sticker | BetBoom (Gold) | Cologne 2026"},"10449":{"market_hash_name":"Sticker | BIG | Cologne 2026"},"1045":{"market_hash_name":"Sticker | Cloud9 (Foil) | MLG Columbus 2016"},"10450":{"market_hash_name":"Sticker | BIG (Foil) | Cologne 2026"},"10451":{"market_hash_name":"Sticker | BIG (Holo) | Cologne 2026"},"10452":{"market_hash_name":"Sticker | BIG (Gold) | Cologne 2026"},"10453":{"market_hash_name":"Sticker | M80 | Cologne 2026"},"10454":{"market_hash_name":"Sticker | M80 (Foil) | Cologne 2026"},"10455":{"market_hash_name":"Sticker | M80 (Holo) | Cologne 2026"},"10456":{"market_hash_name":"Sticker | M80 (Gold) | Cologne 2026"},"10457":{"market_hash_name":"Sticker | MIBR | Cologne 2026"},"10458":{"market_hash_name":"Sticker | MIBR (Foil) | Cologne 2026"},"10459":{"market_hash_name":"Sticker | MIBR (Holo) | Cologne 2026"},"1046":{"market_hash_name":"Sticker | Cloud9 (Gold) | MLG Columbus 2016"},"10460":{"market_hash_name":"Sticker | MIBR (Gold) | Cologne 2026"},"10461":{"market_hash_name":"Sticker | SINNERS | Cologne 2026"},"10462":{"market_hash_name":"Sticker | SINNERS (Foil) | Cologne 2026"},"10463":{"market_hash_name":"Sticker | SINNERS (Holo) | Cologne 2026"},"10464":{"market_hash_name":"Sticker | SINNERS (Gold) | Cologne 2026"},"10465":{"market_hash_name":"Sticker | NRG | Cologne 2026"},"10466":{"market_hash_name":"Sticker | NRG (Foil) | Cologne 2026"},"10467":{"market_hash_name":"Sticker | NRG (Holo) | Cologne 2026"},"10468":{"market_hash_name":"Sticker | NRG (Gold) | Cologne 2026"},"10469":{"market_hash_name":"Sticker | TYLOO | Cologne 2026"},"1047":{"market_hash_name":"Sticker | G2 Esports | MLG Columbus 2016"},"10470":{"market_hash_name":"Sticker | TYLOO (Foil) | Cologne 2026"},"10471":{"market_hash_name":"Sticker | TYLOO (Holo) | Cologne 2026"},"10472":{"market_hash_name":"Sticker | TYLOO (Gold) | Cologne 2026"},"10473":{"market_hash_name":"Sticker | Sharks Esports | Cologne 2026"},"10474":{"market_hash_name":"Sticker | Sharks Esports (Foil) | Cologne 2026"},"10475":{"market_hash_name":"Sticker | Sharks Esports (Holo) | Cologne 2026"},"10476":{"market_hash_name":"Sticker | Sharks Esports (Gold) | Cologne 2026"},"10477":{"market_hash_name":"Sticker | Gaimin Gladiators | Cologne 2026"},"10478":{"market_hash_name":"Sticker | Gaimin Gladiators (Foil) | Cologne 2026"},"10479":{"market_hash_name":"Sticker | Gaimin Gladiators (Holo) | Cologne 2026"},"1048":{"market_hash_name":"Sticker | G2 Esports (Holo) | MLG Columbus 2016"},"10480":{"market_hash_name":"Sticker | Gaimin Gladiators (Gold) | Cologne 2026"},"10481":{"market_hash_name":"Sticker | Team Liquid | Cologne 2026"},"10482":{"market_hash_name":"Sticker | Team Liquid (Foil) | Cologne 2026"},"10483":{"market_hash_name":"Sticker | Team Liquid (Holo) | Cologne 2026"},"10484":{"market_hash_name":"Sticker | Team Liquid (Gold) | Cologne 2026"},"10485":{"market_hash_name":"Sticker | Lynn Vision | Cologne 2026"},"10486":{"market_hash_name":"Sticker | Lynn Vision (Foil) | Cologne 2026"},"10487":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Cologne 2026"},"10488":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Cologne 2026"},"10489":{"market_hash_name":"Sticker | THUNDERdOWNUNDER | Cologne 2026"},"1049":{"market_hash_name":"Sticker | G2 Esports (Foil) | MLG Columbus 2016"},"10490":{"market_hash_name":"Sticker | THUNDERdOWNUNDER (Foil) | Cologne 2026"},"10491":{"market_hash_name":"Sticker | THUNDERdOWNUNDER (Holo) | Cologne 2026"},"10492":{"market_hash_name":"Sticker | THUNDERdOWNUNDER (Gold) | Cologne 2026"},"10493":{"market_hash_name":"Sticker | FlyQuest | Cologne 2026"},"10494":{"market_hash_name":"Sticker | FlyQuest (Foil) | Cologne 2026"},"10495":{"market_hash_name":"Sticker | FlyQuest (Holo) | Cologne 2026"},"10496":{"market_hash_name":"Sticker | FlyQuest (Gold) | Cologne 2026"},"10497":{"market_hash_name":"Sticker | IEM | Cologne 2026"},"10498":{"market_hash_name":"Sticker | IEM (Foil) | Cologne 2026"},"10499":{"market_hash_name":"Sticker | IEM (Holo) | Cologne 2026"},"105":{"market_hash_name":"Sticker | Burn Them All"},"1050":{"market_hash_name":"Sticker | G2 Esports (Gold) | MLG Columbus 2016"},"10500":{"market_hash_name":"Sticker | IEM (Gold) | Cologne 2026"},"1051":{"market_hash_name":"Sticker | FaZe Clan | MLG Columbus 2016"},"1052":{"market_hash_name":"Sticker | FaZe Clan (Holo) | MLG Columbus 2016"},"1053":{"market_hash_name":"Sticker | FaZe Clan (Foil) | MLG Columbus 2016"},"10534":{"market_hash_name":"Sticker | ZywOo | Cologne 2026"},"10535":{"market_hash_name":"Sticker | ZywOo (Foil) | Cologne 2026"},"10536":{"market_hash_name":"Sticker | ZywOo (Holo) | Cologne 2026"},"10537":{"market_hash_name":"Sticker | ZywOo (Gold) | Cologne 2026"},"10538":{"market_hash_name":"Sticker | apEX | Cologne 2026"},"10539":{"market_hash_name":"Sticker | apEX (Foil) | Cologne 2026"},"1054":{"market_hash_name":"Sticker | FaZe Clan (Gold) | MLG Columbus 2016"},"10540":{"market_hash_name":"Sticker | apEX (Holo) | Cologne 2026"},"10541":{"market_hash_name":"Sticker | apEX (Gold) | Cologne 2026"},"10542":{"market_hash_name":"Sticker | mezii | Cologne 2026"},"10543":{"market_hash_name":"Sticker | mezii (Foil) | Cologne 2026"},"10544":{"market_hash_name":"Sticker | mezii (Holo) | Cologne 2026"},"10545":{"market_hash_name":"Sticker | mezii (Gold) | Cologne 2026"},"10546":{"market_hash_name":"Sticker | FlameZ | Cologne 2026"},"10547":{"market_hash_name":"Sticker | FlameZ (Foil) | Cologne 2026"},"10548":{"market_hash_name":"Sticker | FlameZ (Holo) | Cologne 2026"},"10549":{"market_hash_name":"Sticker | FlameZ (Gold) | Cologne 2026"},"1055":{"market_hash_name":"Sticker | Astralis | MLG Columbus 2016"},"10550":{"market_hash_name":"Sticker | ropz | Cologne 2026"},"10551":{"market_hash_name":"Sticker | ropz (Foil) | Cologne 2026"},"10552":{"market_hash_name":"Sticker | ropz (Holo) | Cologne 2026"},"10553":{"market_hash_name":"Sticker | ropz (Gold) | Cologne 2026"},"10554":{"market_hash_name":"Sticker | w0nderful | Cologne 2026"},"10555":{"market_hash_name":"Sticker | w0nderful (Foil) | Cologne 2026"},"10556":{"market_hash_name":"Sticker | w0nderful (Holo) | Cologne 2026"},"10557":{"market_hash_name":"Sticker | w0nderful (Gold) | Cologne 2026"},"10558":{"market_hash_name":"Sticker | Aleksib | Cologne 2026"},"10559":{"market_hash_name":"Sticker | Aleksib (Foil) | Cologne 2026"},"1056":{"market_hash_name":"Sticker | Astralis (Holo) | MLG Columbus 2016"},"10560":{"market_hash_name":"Sticker | Aleksib (Holo) | Cologne 2026"},"10561":{"market_hash_name":"Sticker | Aleksib (Gold) | Cologne 2026"},"10562":{"market_hash_name":"Sticker | b1t | Cologne 2026"},"10563":{"market_hash_name":"Sticker | b1t (Foil) | Cologne 2026"},"10564":{"market_hash_name":"Sticker | b1t (Holo) | Cologne 2026"},"10565":{"market_hash_name":"Sticker | b1t (Gold) | Cologne 2026"},"10566":{"market_hash_name":"Sticker | iM | Cologne 2026"},"10567":{"market_hash_name":"Sticker | iM (Foil) | Cologne 2026"},"10568":{"market_hash_name":"Sticker | iM (Holo) | Cologne 2026"},"10569":{"market_hash_name":"Sticker | iM (Gold) | Cologne 2026"},"1057":{"market_hash_name":"Sticker | Astralis (Foil) | MLG Columbus 2016"},"10570":{"market_hash_name":"Sticker | makazze | Cologne 2026"},"10571":{"market_hash_name":"Sticker | makazze (Foil) | Cologne 2026"},"10572":{"market_hash_name":"Sticker | makazze (Holo) | Cologne 2026"},"10573":{"market_hash_name":"Sticker | makazze (Gold) | Cologne 2026"},"10574":{"market_hash_name":"Sticker | NiKo | Cologne 2026"},"10575":{"market_hash_name":"Sticker | NiKo (Foil) | Cologne 2026"},"10576":{"market_hash_name":"Sticker | NiKo (Holo) | Cologne 2026"},"10577":{"market_hash_name":"Sticker | NiKo (Gold) | Cologne 2026"},"10578":{"market_hash_name":"Sticker | kyxsan | Cologne 2026"},"10579":{"market_hash_name":"Sticker | kyxsan (Foil) | Cologne 2026"},"1058":{"market_hash_name":"Sticker | Astralis (Gold) | MLG Columbus 2016"},"10580":{"market_hash_name":"Sticker | kyxsan (Holo) | Cologne 2026"},"10581":{"market_hash_name":"Sticker | kyxsan (Gold) | Cologne 2026"},"10582":{"market_hash_name":"Sticker | m0NESY | Cologne 2026"},"10583":{"market_hash_name":"Sticker | m0NESY (Foil) | Cologne 2026"},"10584":{"market_hash_name":"Sticker | m0NESY (Holo) | Cologne 2026"},"10585":{"market_hash_name":"Sticker | m0NESY (Gold) | Cologne 2026"},"10586":{"market_hash_name":"Sticker | TeSeS | Cologne 2026"},"10587":{"market_hash_name":"Sticker | TeSeS (Foil) | Cologne 2026"},"10588":{"market_hash_name":"Sticker | TeSeS (Holo) | Cologne 2026"},"10589":{"market_hash_name":"Sticker | TeSeS (Gold) | Cologne 2026"},"1059":{"market_hash_name":"Sticker | Team EnVyUs | MLG Columbus 2016"},"10590":{"market_hash_name":"Sticker | kyousuke | Cologne 2026"},"10591":{"market_hash_name":"Sticker | kyousuke (Foil) | Cologne 2026"},"10592":{"market_hash_name":"Sticker | kyousuke (Holo) | Cologne 2026"},"10593":{"market_hash_name":"Sticker | kyousuke (Gold) | Cologne 2026"},"10594":{"market_hash_name":"Sticker | bLitz | Cologne 2026"},"10595":{"market_hash_name":"Sticker | bLitz (Foil) | Cologne 2026"},"10596":{"market_hash_name":"Sticker | bLitz (Holo) | Cologne 2026"},"10597":{"market_hash_name":"Sticker | bLitz (Gold) | Cologne 2026"},"10598":{"market_hash_name":"Sticker | Techno4K | Cologne 2026"},"10599":{"market_hash_name":"Sticker | Techno4K (Foil) | Cologne 2026"},"106":{"market_hash_name":"Sticker | Harp of War (Holo)"},"1060":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | MLG Columbus 2016"},"10600":{"market_hash_name":"Sticker | Techno4K (Holo) | Cologne 2026"},"10601":{"market_hash_name":"Sticker | Techno4K (Gold) | Cologne 2026"},"10602":{"market_hash_name":"Sticker | cobra | Cologne 2026"},"10603":{"market_hash_name":"Sticker | cobra (Foil) | Cologne 2026"},"10604":{"market_hash_name":"Sticker | cobra (Holo) | Cologne 2026"},"10605":{"market_hash_name":"Sticker | cobra (Gold) | Cologne 2026"},"10606":{"market_hash_name":"Sticker | mzinho | Cologne 2026"},"10607":{"market_hash_name":"Sticker | mzinho (Foil) | Cologne 2026"},"10608":{"market_hash_name":"Sticker | mzinho (Holo) | Cologne 2026"},"10609":{"market_hash_name":"Sticker | mzinho (Gold) | Cologne 2026"},"1061":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | MLG Columbus 2016"},"10610":{"market_hash_name":"Sticker | 910 | Cologne 2026"},"10611":{"market_hash_name":"Sticker | 910 (Foil) | Cologne 2026"},"10612":{"market_hash_name":"Sticker | 910 (Holo) | Cologne 2026"},"10613":{"market_hash_name":"Sticker | 910 (Gold) | Cologne 2026"},"10614":{"market_hash_name":"Sticker | Jame | Cologne 2026"},"10615":{"market_hash_name":"Sticker | Jame (Foil) | Cologne 2026"},"10616":{"market_hash_name":"Sticker | Jame (Holo) | Cologne 2026"},"10617":{"market_hash_name":"Sticker | Jame (Gold) | Cologne 2026"},"10618":{"market_hash_name":"Sticker | nota | Cologne 2026"},"10619":{"market_hash_name":"Sticker | nota (Foil) | Cologne 2026"},"1062":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | MLG Columbus 2016"},"10620":{"market_hash_name":"Sticker | nota (Holo) | Cologne 2026"},"10621":{"market_hash_name":"Sticker | nota (Gold) | Cologne 2026"},"10622":{"market_hash_name":"Sticker | xiELO | Cologne 2026"},"10623":{"market_hash_name":"Sticker | xiELO (Foil) | Cologne 2026"},"10624":{"market_hash_name":"Sticker | xiELO (Holo) | Cologne 2026"},"10625":{"market_hash_name":"Sticker | xiELO (Gold) | Cologne 2026"},"10626":{"market_hash_name":"Sticker | BELCHONOKK | Cologne 2026"},"10627":{"market_hash_name":"Sticker | BELCHONOKK (Foil) | Cologne 2026"},"10628":{"market_hash_name":"Sticker | BELCHONOKK (Holo) | Cologne 2026"},"10629":{"market_hash_name":"Sticker | BELCHONOKK (Gold) | Cologne 2026"},"1063":{"market_hash_name":"Sticker | Fnatic | MLG Columbus 2016"},"10630":{"market_hash_name":"Sticker | zweih | Cologne 2026"},"10631":{"market_hash_name":"Sticker | zweih (Foil) | Cologne 2026"},"10632":{"market_hash_name":"Sticker | zweih (Holo) | Cologne 2026"},"10633":{"market_hash_name":"Sticker | zweih (Gold) | Cologne 2026"},"10634":{"market_hash_name":"Sticker | XANTARES | Cologne 2026"},"10635":{"market_hash_name":"Sticker | XANTARES (Foil) | Cologne 2026"},"10636":{"market_hash_name":"Sticker | XANTARES (Holo) | Cologne 2026"},"10637":{"market_hash_name":"Sticker | XANTARES (Gold) | Cologne 2026"},"10638":{"market_hash_name":"Sticker | soulfly | Cologne 2026"},"10639":{"market_hash_name":"Sticker | soulfly (Foil) | Cologne 2026"},"1064":{"market_hash_name":"Sticker | Fnatic (Holo) | MLG Columbus 2016"},"10640":{"market_hash_name":"Sticker | soulfly (Holo) | Cologne 2026"},"10641":{"market_hash_name":"Sticker | soulfly (Gold) | Cologne 2026"},"10642":{"market_hash_name":"Sticker | Wicadia | Cologne 2026"},"10643":{"market_hash_name":"Sticker | Wicadia (Foil) | Cologne 2026"},"10644":{"market_hash_name":"Sticker | Wicadia (Holo) | Cologne 2026"},"10645":{"market_hash_name":"Sticker | Wicadia (Gold) | Cologne 2026"},"10646":{"market_hash_name":"Sticker | MAJ3R | Cologne 2026"},"10647":{"market_hash_name":"Sticker | MAJ3R (Foil) | Cologne 2026"},"10648":{"market_hash_name":"Sticker | MAJ3R (Holo) | Cologne 2026"},"10649":{"market_hash_name":"Sticker | MAJ3R (Gold) | Cologne 2026"},"1065":{"market_hash_name":"Sticker | Fnatic (Foil) | MLG Columbus 2016"},"10650":{"market_hash_name":"Sticker | woxic | Cologne 2026"},"10651":{"market_hash_name":"Sticker | woxic (Foil) | Cologne 2026"},"10652":{"market_hash_name":"Sticker | woxic (Holo) | Cologne 2026"},"10653":{"market_hash_name":"Sticker | woxic (Gold) | Cologne 2026"},"10654":{"market_hash_name":"Sticker | YEKINDAR | Cologne 2026"},"10655":{"market_hash_name":"Sticker | YEKINDAR (Foil) | Cologne 2026"},"10656":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Cologne 2026"},"10657":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Cologne 2026"},"10658":{"market_hash_name":"Sticker | KSCERATO | Cologne 2026"},"10659":{"market_hash_name":"Sticker | KSCERATO (Foil) | Cologne 2026"},"1066":{"market_hash_name":"Sticker | Fnatic (Gold) | MLG Columbus 2016"},"10660":{"market_hash_name":"Sticker | KSCERATO (Holo) | Cologne 2026"},"10661":{"market_hash_name":"Sticker | KSCERATO (Gold) | Cologne 2026"},"10662":{"market_hash_name":"Sticker | FalleN | Cologne 2026"},"10663":{"market_hash_name":"Sticker | FalleN (Foil) | Cologne 2026"},"10664":{"market_hash_name":"Sticker | FalleN (Holo) | Cologne 2026"},"10665":{"market_hash_name":"Sticker | FalleN (Gold) | Cologne 2026"},"10666":{"market_hash_name":"Sticker | molodoy | Cologne 2026"},"10667":{"market_hash_name":"Sticker | molodoy (Foil) | Cologne 2026"},"10668":{"market_hash_name":"Sticker | molodoy (Holo) | Cologne 2026"},"10669":{"market_hash_name":"Sticker | molodoy (Gold) | Cologne 2026"},"1067":{"market_hash_name":"Sticker | Luminosity Gaming | MLG Columbus 2016"},"10670":{"market_hash_name":"Sticker | yuurih | Cologne 2026"},"10671":{"market_hash_name":"Sticker | yuurih (Foil) | Cologne 2026"},"10672":{"market_hash_name":"Sticker | yuurih (Holo) | Cologne 2026"},"10673":{"market_hash_name":"Sticker | yuurih (Gold) | Cologne 2026"},"10674":{"market_hash_name":"Sticker | Jimpphat | Cologne 2026"},"10675":{"market_hash_name":"Sticker | Jimpphat (Foil) | Cologne 2026"},"10676":{"market_hash_name":"Sticker | Jimpphat (Holo) | Cologne 2026"},"10677":{"market_hash_name":"Sticker | Jimpphat (Gold) | Cologne 2026"},"10678":{"market_hash_name":"Sticker | Brollan | Cologne 2026"},"10679":{"market_hash_name":"Sticker | Brollan (Foil) | Cologne 2026"},"1068":{"market_hash_name":"Sticker | Luminosity Gaming (Holo) | MLG Columbus 2016"},"10680":{"market_hash_name":"Sticker | Brollan (Holo) | Cologne 2026"},"10681":{"market_hash_name":"Sticker | Brollan (Gold) | Cologne 2026"},"10682":{"market_hash_name":"Sticker | Spinx | Cologne 2026"},"10683":{"market_hash_name":"Sticker | Spinx (Foil) | Cologne 2026"},"10684":{"market_hash_name":"Sticker | Spinx (Holo) | Cologne 2026"},"10685":{"market_hash_name":"Sticker | Spinx (Gold) | Cologne 2026"},"10686":{"market_hash_name":"Sticker | torzsi | Cologne 2026"},"10687":{"market_hash_name":"Sticker | torzsi (Foil) | Cologne 2026"},"10688":{"market_hash_name":"Sticker | torzsi (Holo) | Cologne 2026"},"10689":{"market_hash_name":"Sticker | torzsi (Gold) | Cologne 2026"},"1069":{"market_hash_name":"Sticker | Luminosity Gaming (Foil) | MLG Columbus 2016"},"10690":{"market_hash_name":"Sticker | xertioN | Cologne 2026"},"10691":{"market_hash_name":"Sticker | xertioN (Foil) | Cologne 2026"},"10692":{"market_hash_name":"Sticker | xertioN (Holo) | Cologne 2026"},"10693":{"market_hash_name":"Sticker | xertioN (Gold) | Cologne 2026"},"10694":{"market_hash_name":"Sticker | dem0n | Cologne 2026"},"10695":{"market_hash_name":"Sticker | dem0n (Foil) | Cologne 2026"},"10696":{"market_hash_name":"Sticker | dem0n (Holo) | Cologne 2026"},"10697":{"market_hash_name":"Sticker | dem0n (Gold) | Cologne 2026"},"10698":{"market_hash_name":"Sticker | lauNX | Cologne 2026"},"10699":{"market_hash_name":"Sticker | lauNX (Foil) | Cologne 2026"},"107":{"market_hash_name":"Sticker | Flammable (Foil)"},"1070":{"market_hash_name":"Sticker | Luminosity Gaming (Gold) | MLG Columbus 2016"},"10700":{"market_hash_name":"Sticker | lauNX (Holo) | Cologne 2026"},"10701":{"market_hash_name":"Sticker | lauNX (Gold) | Cologne 2026"},"10702":{"market_hash_name":"Sticker | Krabeni | Cologne 2026"},"10703":{"market_hash_name":"Sticker | Krabeni (Foil) | Cologne 2026"},"10704":{"market_hash_name":"Sticker | Krabeni (Holo) | Cologne 2026"},"10705":{"market_hash_name":"Sticker | Krabeni (Gold) | Cologne 2026"},"10706":{"market_hash_name":"Sticker | cmtry | Cologne 2026"},"10707":{"market_hash_name":"Sticker | cmtry (Foil) | Cologne 2026"},"10708":{"market_hash_name":"Sticker | cmtry (Holo) | Cologne 2026"},"10709":{"market_hash_name":"Sticker | cmtry (Gold) | Cologne 2026"},"1071":{"market_hash_name":"Sticker | MLG | MLG Columbus 2016"},"10710":{"market_hash_name":"Sticker | dziugss | Cologne 2026"},"10711":{"market_hash_name":"Sticker | dziugss (Foil) | Cologne 2026"},"10712":{"market_hash_name":"Sticker | dziugss (Holo) | Cologne 2026"},"10713":{"market_hash_name":"Sticker | dziugss (Gold) | Cologne 2026"},"10714":{"market_hash_name":"Sticker | tN1R | Cologne 2026"},"10715":{"market_hash_name":"Sticker | tN1R (Foil) | Cologne 2026"},"10716":{"market_hash_name":"Sticker | tN1R (Holo) | Cologne 2026"},"10717":{"market_hash_name":"Sticker | tN1R (Gold) | Cologne 2026"},"10718":{"market_hash_name":"Sticker | donk | Cologne 2026"},"10719":{"market_hash_name":"Sticker | donk (Foil) | Cologne 2026"},"1072":{"market_hash_name":"Sticker | MLG (Holo) | MLG Columbus 2016"},"10720":{"market_hash_name":"Sticker | donk (Holo) | Cologne 2026"},"10721":{"market_hash_name":"Sticker | donk (Gold) | Cologne 2026"},"10722":{"market_hash_name":"Sticker | magixx | Cologne 2026"},"10723":{"market_hash_name":"Sticker | magixx (Foil) | Cologne 2026"},"10724":{"market_hash_name":"Sticker | magixx (Holo) | Cologne 2026"},"10725":{"market_hash_name":"Sticker | magixx (Gold) | Cologne 2026"},"10726":{"market_hash_name":"Sticker | sh1ro | Cologne 2026"},"10727":{"market_hash_name":"Sticker | sh1ro (Foil) | Cologne 2026"},"10728":{"market_hash_name":"Sticker | sh1ro (Holo) | Cologne 2026"},"10729":{"market_hash_name":"Sticker | sh1ro (Gold) | Cologne 2026"},"1073":{"market_hash_name":"Sticker | MLG (Foil) | MLG Columbus 2016"},"10730":{"market_hash_name":"Sticker | zont1x | Cologne 2026"},"10731":{"market_hash_name":"Sticker | zont1x (Foil) | Cologne 2026"},"10732":{"market_hash_name":"Sticker | zont1x (Holo) | Cologne 2026"},"10733":{"market_hash_name":"Sticker | zont1x (Gold) | Cologne 2026"},"10734":{"market_hash_name":"Sticker | HooXi | Cologne 2026"},"10735":{"market_hash_name":"Sticker | HooXi (Foil) | Cologne 2026"},"10736":{"market_hash_name":"Sticker | HooXi (Holo) | Cologne 2026"},"10737":{"market_hash_name":"Sticker | HooXi (Gold) | Cologne 2026"},"10738":{"market_hash_name":"Sticker | phzy | Cologne 2026"},"10739":{"market_hash_name":"Sticker | phzy (Foil) | Cologne 2026"},"1074":{"market_hash_name":"Sticker | MLG (Gold) | MLG Columbus 2016"},"10740":{"market_hash_name":"Sticker | phzy (Holo) | Cologne 2026"},"10741":{"market_hash_name":"Sticker | phzy (Gold) | Cologne 2026"},"10742":{"market_hash_name":"Sticker | ryu | Cologne 2026"},"10743":{"market_hash_name":"Sticker | ryu (Foil) | Cologne 2026"},"10744":{"market_hash_name":"Sticker | ryu (Holo) | Cologne 2026"},"10745":{"market_hash_name":"Sticker | ryu (Gold) | Cologne 2026"},"10746":{"market_hash_name":"Sticker | jabbi | Cologne 2026"},"10747":{"market_hash_name":"Sticker | jabbi (Foil) | Cologne 2026"},"10748":{"market_hash_name":"Sticker | jabbi (Holo) | Cologne 2026"},"10749":{"market_hash_name":"Sticker | jabbi (Gold) | Cologne 2026"},"1075":{"market_hash_name":"Sticker | reltuC | MLG Columbus 2016"},"10750":{"market_hash_name":"Sticker | Staehr | Cologne 2026"},"10751":{"market_hash_name":"Sticker | Staehr (Foil) | Cologne 2026"},"10752":{"market_hash_name":"Sticker | Staehr (Holo) | Cologne 2026"},"10753":{"market_hash_name":"Sticker | Staehr (Gold) | Cologne 2026"},"10754":{"market_hash_name":"Sticker | huNter- | Cologne 2026"},"10755":{"market_hash_name":"Sticker | huNter- (Foil) | Cologne 2026"},"10756":{"market_hash_name":"Sticker | huNter- (Holo) | Cologne 2026"},"10757":{"market_hash_name":"Sticker | huNter- (Gold) | Cologne 2026"},"10758":{"market_hash_name":"Sticker | Heavygod | Cologne 2026"},"10759":{"market_hash_name":"Sticker | Heavygod (Foil) | Cologne 2026"},"1076":{"market_hash_name":"Sticker | reltuC (Foil) | MLG Columbus 2016"},"10760":{"market_hash_name":"Sticker | Heavygod (Holo) | Cologne 2026"},"10761":{"market_hash_name":"Sticker | Heavygod (Gold) | Cologne 2026"},"10762":{"market_hash_name":"Sticker | NertZ | Cologne 2026"},"10763":{"market_hash_name":"Sticker | NertZ (Foil) | Cologne 2026"},"10764":{"market_hash_name":"Sticker | NertZ (Holo) | Cologne 2026"},"10765":{"market_hash_name":"Sticker | NertZ (Gold) | Cologne 2026"},"10766":{"market_hash_name":"Sticker | SunPayus | Cologne 2026"},"10767":{"market_hash_name":"Sticker | SunPayus (Foil) | Cologne 2026"},"10768":{"market_hash_name":"Sticker | SunPayus (Holo) | Cologne 2026"},"10769":{"market_hash_name":"Sticker | SunPayus (Gold) | Cologne 2026"},"1077":{"market_hash_name":"Sticker | reltuC (Gold) | MLG Columbus 2016"},"10770":{"market_hash_name":"Sticker | MATYS | Cologne 2026"},"10771":{"market_hash_name":"Sticker | MATYS (Foil) | Cologne 2026"},"10772":{"market_hash_name":"Sticker | MATYS (Holo) | Cologne 2026"},"10773":{"market_hash_name":"Sticker | MATYS (Gold) | Cologne 2026"},"10774":{"market_hash_name":"Sticker | arT | Cologne 2026"},"10775":{"market_hash_name":"Sticker | arT (Foil) | Cologne 2026"},"10776":{"market_hash_name":"Sticker | arT (Holo) | Cologne 2026"},"10777":{"market_hash_name":"Sticker | arT (Gold) | Cologne 2026"},"10778":{"market_hash_name":"Sticker | latto | Cologne 2026"},"10779":{"market_hash_name":"Sticker | latto (Foil) | Cologne 2026"},"1078":{"market_hash_name":"Sticker | FugLy | MLG Columbus 2016"},"10780":{"market_hash_name":"Sticker | latto (Holo) | Cologne 2026"},"10781":{"market_hash_name":"Sticker | latto (Gold) | Cologne 2026"},"10782":{"market_hash_name":"Sticker | dumau | Cologne 2026"},"10783":{"market_hash_name":"Sticker | dumau (Foil) | Cologne 2026"},"10784":{"market_hash_name":"Sticker | dumau (Holo) | Cologne 2026"},"10785":{"market_hash_name":"Sticker | dumau (Gold) | Cologne 2026"},"10786":{"market_hash_name":"Sticker | saadzin | Cologne 2026"},"10787":{"market_hash_name":"Sticker | saadzin (Foil) | Cologne 2026"},"10788":{"market_hash_name":"Sticker | saadzin (Holo) | Cologne 2026"},"10789":{"market_hash_name":"Sticker | saadzin (Gold) | Cologne 2026"},"1079":{"market_hash_name":"Sticker | FugLy (Foil) | MLG Columbus 2016"},"10790":{"market_hash_name":"Sticker | n1ssim | Cologne 2026"},"10791":{"market_hash_name":"Sticker | n1ssim (Foil) | Cologne 2026"},"10792":{"market_hash_name":"Sticker | n1ssim (Holo) | Cologne 2026"},"10793":{"market_hash_name":"Sticker | n1ssim (Gold) | Cologne 2026"},"10794":{"market_hash_name":"Sticker | biguzera | Cologne 2026"},"10795":{"market_hash_name":"Sticker | biguzera (Foil) | Cologne 2026"},"10796":{"market_hash_name":"Sticker | biguzera (Holo) | Cologne 2026"},"10797":{"market_hash_name":"Sticker | biguzera (Gold) | Cologne 2026"},"10798":{"market_hash_name":"Sticker | NQZ | Cologne 2026"},"10799":{"market_hash_name":"Sticker | NQZ (Foil) | Cologne 2026"},"108":{"market_hash_name":"Sticker | Headhunter (Foil)"},"1080":{"market_hash_name":"Sticker | FugLy (Gold) | MLG Columbus 2016"},"10800":{"market_hash_name":"Sticker | NQZ (Holo) | Cologne 2026"},"10801":{"market_hash_name":"Sticker | NQZ (Gold) | Cologne 2026"},"10802":{"market_hash_name":"Sticker | snow | Cologne 2026"},"10803":{"market_hash_name":"Sticker | snow (Foil) | Cologne 2026"},"10804":{"market_hash_name":"Sticker | snow (Holo) | Cologne 2026"},"10805":{"market_hash_name":"Sticker | snow (Gold) | Cologne 2026"},"10806":{"market_hash_name":"Sticker | piriajr | Cologne 2026"},"10807":{"market_hash_name":"Sticker | piriajr (Foil) | Cologne 2026"},"10808":{"market_hash_name":"Sticker | piriajr (Holo) | Cologne 2026"},"10809":{"market_hash_name":"Sticker | piriajr (Gold) | Cologne 2026"},"1081":{"market_hash_name":"Sticker | hazed | MLG Columbus 2016"},"10810":{"market_hash_name":"Sticker | v$m | Cologne 2026"},"10811":{"market_hash_name":"Sticker | v$m (Foil) | Cologne 2026"},"10812":{"market_hash_name":"Sticker | v$m (Holo) | Cologne 2026"},"10813":{"market_hash_name":"Sticker | v$m (Gold) | Cologne 2026"},"10814":{"market_hash_name":"Sticker | Rainwaker | Cologne 2026"},"10815":{"market_hash_name":"Sticker | Rainwaker (Foil) | Cologne 2026"},"10816":{"market_hash_name":"Sticker | Rainwaker (Holo) | Cologne 2026"},"10817":{"market_hash_name":"Sticker | Rainwaker (Gold) | Cologne 2026"},"10818":{"market_hash_name":"Sticker | Bymas | Cologne 2026"},"10819":{"market_hash_name":"Sticker | Bymas (Foil) | Cologne 2026"},"1082":{"market_hash_name":"Sticker | hazed (Foil) | MLG Columbus 2016"},"10820":{"market_hash_name":"Sticker | Bymas (Holo) | Cologne 2026"},"10821":{"market_hash_name":"Sticker | Bymas (Gold) | Cologne 2026"},"10822":{"market_hash_name":"Sticker | afro | Cologne 2026"},"10823":{"market_hash_name":"Sticker | afro (Foil) | Cologne 2026"},"10824":{"market_hash_name":"Sticker | afro (Holo) | Cologne 2026"},"10825":{"market_hash_name":"Sticker | afro (Gold) | Cologne 2026"},"10826":{"market_hash_name":"Sticker | Gizmy | Cologne 2026"},"10827":{"market_hash_name":"Sticker | Gizmy (Foil) | Cologne 2026"},"10828":{"market_hash_name":"Sticker | Gizmy (Holo) | Cologne 2026"},"10829":{"market_hash_name":"Sticker | Gizmy (Gold) | Cologne 2026"},"1083":{"market_hash_name":"Sticker | hazed (Gold) | MLG Columbus 2016"},"10830":{"market_hash_name":"Sticker | AZUWU | Cologne 2026"},"10831":{"market_hash_name":"Sticker | AZUWU (Foil) | Cologne 2026"},"10832":{"market_hash_name":"Sticker | AZUWU (Holo) | Cologne 2026"},"10833":{"market_hash_name":"Sticker | AZUWU (Gold) | Cologne 2026"},"10834":{"market_hash_name":"Sticker | max | Cologne 2026"},"10835":{"market_hash_name":"Sticker | max (Foil) | Cologne 2026"},"10836":{"market_hash_name":"Sticker | max (Holo) | Cologne 2026"},"10837":{"market_hash_name":"Sticker | max (Gold) | Cologne 2026"},"10838":{"market_hash_name":"Sticker | dgt | Cologne 2026"},"10839":{"market_hash_name":"Sticker | dgt (Foil) | Cologne 2026"},"1084":{"market_hash_name":"Sticker | jdm64 | MLG Columbus 2016"},"10840":{"market_hash_name":"Sticker | dgt (Holo) | Cologne 2026"},"10841":{"market_hash_name":"Sticker | dgt (Gold) | Cologne 2026"},"10842":{"market_hash_name":"Sticker | meyern | Cologne 2026"},"10843":{"market_hash_name":"Sticker | meyern (Foil) | Cologne 2026"},"10844":{"market_hash_name":"Sticker | meyern (Holo) | Cologne 2026"},"10845":{"market_hash_name":"Sticker | meyern (Gold) | Cologne 2026"},"10846":{"market_hash_name":"Sticker | luchov | Cologne 2026"},"10847":{"market_hash_name":"Sticker | luchov (Foil) | Cologne 2026"},"10848":{"market_hash_name":"Sticker | luchov (Holo) | Cologne 2026"},"10849":{"market_hash_name":"Sticker | luchov (Gold) | Cologne 2026"},"1085":{"market_hash_name":"Sticker | jdm64 (Foil) | MLG Columbus 2016"},"10850":{"market_hash_name":"Sticker | HUASOPEEK | Cologne 2026"},"10851":{"market_hash_name":"Sticker | HUASOPEEK (Foil) | Cologne 2026"},"10852":{"market_hash_name":"Sticker | HUASOPEEK (Holo) | Cologne 2026"},"10853":{"market_hash_name":"Sticker | HUASOPEEK (Gold) | Cologne 2026"},"10854":{"market_hash_name":"Sticker | Snax | Cologne 2026"},"10855":{"market_hash_name":"Sticker | Snax (Foil) | Cologne 2026"},"10856":{"market_hash_name":"Sticker | Snax (Holo) | Cologne 2026"},"10857":{"market_hash_name":"Sticker | Snax (Gold) | Cologne 2026"},"10858":{"market_hash_name":"Sticker | REZ | Cologne 2026"},"10859":{"market_hash_name":"Sticker | REZ (Foil) | Cologne 2026"},"1086":{"market_hash_name":"Sticker | jdm64 (Gold) | MLG Columbus 2016"},"10860":{"market_hash_name":"Sticker | REZ (Holo) | Cologne 2026"},"10861":{"market_hash_name":"Sticker | REZ (Gold) | Cologne 2026"},"10862":{"market_hash_name":"Sticker | Tauson | Cologne 2026"},"10863":{"market_hash_name":"Sticker | Tauson (Foil) | Cologne 2026"},"10864":{"market_hash_name":"Sticker | Tauson (Holo) | Cologne 2026"},"10865":{"market_hash_name":"Sticker | Tauson (Gold) | Cologne 2026"},"10866":{"market_hash_name":"Sticker | PR | Cologne 2026"},"10867":{"market_hash_name":"Sticker | PR (Foil) | Cologne 2026"},"10868":{"market_hash_name":"Sticker | PR (Holo) | Cologne 2026"},"10869":{"market_hash_name":"Sticker | PR (Gold) | Cologne 2026"},"1087":{"market_hash_name":"Sticker | tarik | MLG Columbus 2016"},"10870":{"market_hash_name":"Sticker | hypex | Cologne 2026"},"10871":{"market_hash_name":"Sticker | hypex (Foil) | Cologne 2026"},"10872":{"market_hash_name":"Sticker | hypex (Holo) | Cologne 2026"},"10873":{"market_hash_name":"Sticker | hypex (Gold) | Cologne 2026"},"10874":{"market_hash_name":"Sticker | s1zzi | Cologne 2026"},"10875":{"market_hash_name":"Sticker | s1zzi (Foil) | Cologne 2026"},"10876":{"market_hash_name":"Sticker | s1zzi (Holo) | Cologne 2026"},"10877":{"market_hash_name":"Sticker | s1zzi (Gold) | Cologne 2026"},"10878":{"market_hash_name":"Sticker | npl | Cologne 2026"},"10879":{"market_hash_name":"Sticker | npl (Foil) | Cologne 2026"},"1088":{"market_hash_name":"Sticker | tarik (Foil) | MLG Columbus 2016"},"10880":{"market_hash_name":"Sticker | npl (Holo) | Cologne 2026"},"10881":{"market_hash_name":"Sticker | npl (Gold) | Cologne 2026"},"10882":{"market_hash_name":"Sticker | esenthial | Cologne 2026"},"10883":{"market_hash_name":"Sticker | esenthial (Foil) | Cologne 2026"},"10884":{"market_hash_name":"Sticker | esenthial (Holo) | Cologne 2026"},"10885":{"market_hash_name":"Sticker | esenthial (Gold) | Cologne 2026"},"10886":{"market_hash_name":"Sticker | alex666 | Cologne 2026"},"10887":{"market_hash_name":"Sticker | alex666 (Foil) | Cologne 2026"},"10888":{"market_hash_name":"Sticker | alex666 (Holo) | Cologne 2026"},"10889":{"market_hash_name":"Sticker | alex666 (Gold) | Cologne 2026"},"1089":{"market_hash_name":"Sticker | tarik (Gold) | MLG Columbus 2016"},"10890":{"market_hash_name":"Sticker | kensizor | Cologne 2026"},"10891":{"market_hash_name":"Sticker | kensizor (Foil) | Cologne 2026"},"10892":{"market_hash_name":"Sticker | kensizor (Holo) | Cologne 2026"},"10893":{"market_hash_name":"Sticker | kensizor (Gold) | Cologne 2026"},"10894":{"market_hash_name":"Sticker | xfl0ud | Cologne 2026"},"10895":{"market_hash_name":"Sticker | xfl0ud (Foil) | Cologne 2026"},"10896":{"market_hash_name":"Sticker | xfl0ud (Holo) | Cologne 2026"},"10897":{"market_hash_name":"Sticker | xfl0ud (Gold) | Cologne 2026"},"10898":{"market_hash_name":"Sticker | nilo | Cologne 2026"},"10899":{"market_hash_name":"Sticker | nilo (Foil) | Cologne 2026"},"109":{"market_hash_name":"Sticker | Llama Cannon"},"1090":{"market_hash_name":"Sticker | freakazoid | MLG Columbus 2016"},"10900":{"market_hash_name":"Sticker | nilo (Holo) | Cologne 2026"},"10901":{"market_hash_name":"Sticker | nilo (Gold) | Cologne 2026"},"10902":{"market_hash_name":"Sticker | susp | Cologne 2026"},"10903":{"market_hash_name":"Sticker | susp (Foil) | Cologne 2026"},"10904":{"market_hash_name":"Sticker | susp (Holo) | Cologne 2026"},"10905":{"market_hash_name":"Sticker | susp (Gold) | Cologne 2026"},"10906":{"market_hash_name":"Sticker | Chr1zN | Cologne 2026"},"10907":{"market_hash_name":"Sticker | Chr1zN (Foil) | Cologne 2026"},"10908":{"market_hash_name":"Sticker | Chr1zN (Holo) | Cologne 2026"},"10909":{"market_hash_name":"Sticker | Chr1zN (Gold) | Cologne 2026"},"1091":{"market_hash_name":"Sticker | freakazoid (Foil) | MLG Columbus 2016"},"10910":{"market_hash_name":"Sticker | yxngstxr | Cologne 2026"},"10911":{"market_hash_name":"Sticker | yxngstxr (Foil) | Cologne 2026"},"10912":{"market_hash_name":"Sticker | yxngstxr (Holo) | Cologne 2026"},"10913":{"market_hash_name":"Sticker | yxngstxr (Gold) | Cologne 2026"},"10914":{"market_hash_name":"Sticker | Boombl4 | Cologne 2026"},"10915":{"market_hash_name":"Sticker | Boombl4 (Foil) | Cologne 2026"},"10916":{"market_hash_name":"Sticker | Boombl4 (Holo) | Cologne 2026"},"10917":{"market_hash_name":"Sticker | Boombl4 (Gold) | Cologne 2026"},"10918":{"market_hash_name":"Sticker | zorte | Cologne 2026"},"10919":{"market_hash_name":"Sticker | zorte (Foil) | Cologne 2026"},"1092":{"market_hash_name":"Sticker | freakazoid (Gold) | MLG Columbus 2016"},"10920":{"market_hash_name":"Sticker | zorte (Holo) | Cologne 2026"},"10921":{"market_hash_name":"Sticker | zorte (Gold) | Cologne 2026"},"10922":{"market_hash_name":"Sticker | S1ren | Cologne 2026"},"10923":{"market_hash_name":"Sticker | S1ren (Foil) | Cologne 2026"},"10924":{"market_hash_name":"Sticker | S1ren (Holo) | Cologne 2026"},"10925":{"market_hash_name":"Sticker | S1ren (Gold) | Cologne 2026"},"10926":{"market_hash_name":"Sticker | FL4MUS | Cologne 2026"},"10927":{"market_hash_name":"Sticker | FL4MUS (Foil) | Cologne 2026"},"10928":{"market_hash_name":"Sticker | FL4MUS (Holo) | Cologne 2026"},"10929":{"market_hash_name":"Sticker | FL4MUS (Gold) | Cologne 2026"},"1093":{"market_hash_name":"Sticker | Stewie2K | MLG Columbus 2016"},"10930":{"market_hash_name":"Sticker | Magnojez | Cologne 2026"},"10931":{"market_hash_name":"Sticker | Magnojez (Foil) | Cologne 2026"},"10932":{"market_hash_name":"Sticker | Magnojez (Holo) | Cologne 2026"},"10933":{"market_hash_name":"Sticker | Magnojez (Gold) | Cologne 2026"},"10934":{"market_hash_name":"Sticker | tabseN | Cologne 2026"},"10935":{"market_hash_name":"Sticker | tabseN (Foil) | Cologne 2026"},"10936":{"market_hash_name":"Sticker | tabseN (Holo) | Cologne 2026"},"10937":{"market_hash_name":"Sticker | tabseN (Gold) | Cologne 2026"},"10938":{"market_hash_name":"Sticker | JDC | Cologne 2026"},"10939":{"market_hash_name":"Sticker | JDC (Foil) | Cologne 2026"},"1094":{"market_hash_name":"Sticker | Stewie2K (Foil) | MLG Columbus 2016"},"10940":{"market_hash_name":"Sticker | JDC (Holo) | Cologne 2026"},"10941":{"market_hash_name":"Sticker | JDC (Gold) | Cologne 2026"},"10942":{"market_hash_name":"Sticker | faveN | Cologne 2026"},"10943":{"market_hash_name":"Sticker | faveN (Foil) | Cologne 2026"},"10944":{"market_hash_name":"Sticker | faveN (Holo) | Cologne 2026"},"10945":{"market_hash_name":"Sticker | faveN (Gold) | Cologne 2026"},"10946":{"market_hash_name":"Sticker | blameF | Cologne 2026"},"10947":{"market_hash_name":"Sticker | blameF (Foil) | Cologne 2026"},"10948":{"market_hash_name":"Sticker | blameF (Holo) | Cologne 2026"},"10949":{"market_hash_name":"Sticker | blameF (Gold) | Cologne 2026"},"1095":{"market_hash_name":"Sticker | Stewie2K (Gold) | MLG Columbus 2016"},"10950":{"market_hash_name":"Sticker | gr1ks | Cologne 2026"},"10951":{"market_hash_name":"Sticker | gr1ks (Foil) | Cologne 2026"},"10952":{"market_hash_name":"Sticker | gr1ks (Holo) | Cologne 2026"},"10953":{"market_hash_name":"Sticker | gr1ks (Gold) | Cologne 2026"},"10954":{"market_hash_name":"Sticker | Swisher | Cologne 2026"},"10955":{"market_hash_name":"Sticker | Swisher (Foil) | Cologne 2026"},"10956":{"market_hash_name":"Sticker | Swisher (Holo) | Cologne 2026"},"10957":{"market_hash_name":"Sticker | Swisher (Gold) | Cologne 2026"},"10958":{"market_hash_name":"Sticker | Lake | Cologne 2026"},"10959":{"market_hash_name":"Sticker | Lake (Foil) | Cologne 2026"},"1096":{"market_hash_name":"Sticker | shroud | MLG Columbus 2016"},"10960":{"market_hash_name":"Sticker | Lake (Holo) | Cologne 2026"},"10961":{"market_hash_name":"Sticker | Lake (Gold) | Cologne 2026"},"10962":{"market_hash_name":"Sticker | JBa | Cologne 2026"},"10963":{"market_hash_name":"Sticker | JBa (Foil) | Cologne 2026"},"10964":{"market_hash_name":"Sticker | JBa (Holo) | Cologne 2026"},"10965":{"market_hash_name":"Sticker | JBa (Gold) | Cologne 2026"},"10966":{"market_hash_name":"Sticker | s1n | Cologne 2026"},"10967":{"market_hash_name":"Sticker | s1n (Foil) | Cologne 2026"},"10968":{"market_hash_name":"Sticker | s1n (Holo) | Cologne 2026"},"10969":{"market_hash_name":"Sticker | s1n (Gold) | Cologne 2026"},"1097":{"market_hash_name":"Sticker | shroud (Foil) | MLG Columbus 2016"},"10970":{"market_hash_name":"Sticker | slaxz- | Cologne 2026"},"10971":{"market_hash_name":"Sticker | slaxz- (Foil) | Cologne 2026"},"10972":{"market_hash_name":"Sticker | slaxz- (Holo) | Cologne 2026"},"10973":{"market_hash_name":"Sticker | slaxz- (Gold) | Cologne 2026"},"10974":{"market_hash_name":"Sticker | LNZ | Cologne 2026"},"10975":{"market_hash_name":"Sticker | LNZ (Foil) | Cologne 2026"},"10976":{"market_hash_name":"Sticker | LNZ (Holo) | Cologne 2026"},"10977":{"market_hash_name":"Sticker | LNZ (Gold) | Cologne 2026"},"10978":{"market_hash_name":"Sticker | insani | Cologne 2026"},"10979":{"market_hash_name":"Sticker | insani (Foil) | Cologne 2026"},"1098":{"market_hash_name":"Sticker | shroud (Gold) | MLG Columbus 2016"},"10980":{"market_hash_name":"Sticker | insani (Holo) | Cologne 2026"},"10981":{"market_hash_name":"Sticker | insani (Gold) | Cologne 2026"},"10982":{"market_hash_name":"Sticker | brnz4n | Cologne 2026"},"10983":{"market_hash_name":"Sticker | brnz4n (Foil) | Cologne 2026"},"10984":{"market_hash_name":"Sticker | brnz4n (Holo) | Cologne 2026"},"10985":{"market_hash_name":"Sticker | brnz4n (Gold) | Cologne 2026"},"10986":{"market_hash_name":"Sticker | venomzera | Cologne 2026"},"10987":{"market_hash_name":"Sticker | venomzera (Foil) | Cologne 2026"},"10988":{"market_hash_name":"Sticker | venomzera (Holo) | Cologne 2026"},"10989":{"market_hash_name":"Sticker | venomzera (Gold) | Cologne 2026"},"1099":{"market_hash_name":"Sticker | Skadoodle | MLG Columbus 2016"},"10990":{"market_hash_name":"Sticker | kl1m | Cologne 2026"},"10991":{"market_hash_name":"Sticker | kl1m (Foil) | Cologne 2026"},"10992":{"market_hash_name":"Sticker | kl1m (Holo) | Cologne 2026"},"10993":{"market_hash_name":"Sticker | kl1m (Gold) | Cologne 2026"},"10994":{"market_hash_name":"Sticker | beastik | Cologne 2026"},"10995":{"market_hash_name":"Sticker | beastik (Foil) | Cologne 2026"},"10996":{"market_hash_name":"Sticker | beastik (Holo) | Cologne 2026"},"10997":{"market_hash_name":"Sticker | beastik (Gold) | Cologne 2026"},"10998":{"market_hash_name":"Sticker | SHOCK | Cologne 2026"},"10999":{"market_hash_name":"Sticker | SHOCK (Foil) | Cologne 2026"},"11":{"market_hash_name":"Sticker | Frosty the Hitman"},"110":{"market_hash_name":"Sticker | New Sheriff (Foil)"},"1100":{"market_hash_name":"Sticker | Skadoodle (Foil) | MLG Columbus 2016"},"11000":{"market_hash_name":"Sticker | SHOCK (Holo) | Cologne 2026"},"11001":{"market_hash_name":"Sticker | SHOCK (Gold) | Cologne 2026"},"11002":{"market_hash_name":"Sticker | MoDo | Cologne 2026"},"11003":{"market_hash_name":"Sticker | MoDo (Foil) | Cologne 2026"},"11004":{"market_hash_name":"Sticker | MoDo (Holo) | Cologne 2026"},"11005":{"market_hash_name":"Sticker | MoDo (Gold) | Cologne 2026"},"11006":{"market_hash_name":"Sticker | kisserek | Cologne 2026"},"11007":{"market_hash_name":"Sticker | kisserek (Foil) | Cologne 2026"},"11008":{"market_hash_name":"Sticker | kisserek (Holo) | Cologne 2026"},"11009":{"market_hash_name":"Sticker | kisserek (Gold) | Cologne 2026"},"1101":{"market_hash_name":"Sticker | Skadoodle (Gold) | MLG Columbus 2016"},"11010":{"market_hash_name":"Sticker | stressarN | Cologne 2026"},"11011":{"market_hash_name":"Sticker | stressarN (Foil) | Cologne 2026"},"11012":{"market_hash_name":"Sticker | stressarN (Holo) | Cologne 2026"},"11013":{"market_hash_name":"Sticker | stressarN (Gold) | Cologne 2026"},"11014":{"market_hash_name":"Sticker | Grim | Cologne 2026"},"11015":{"market_hash_name":"Sticker | Grim (Foil) | Cologne 2026"},"11016":{"market_hash_name":"Sticker | Grim (Holo) | Cologne 2026"},"11017":{"market_hash_name":"Sticker | Grim (Gold) | Cologne 2026"},"11018":{"market_hash_name":"Sticker | br0 | Cologne 2026"},"11019":{"market_hash_name":"Sticker | br0 (Foil) | Cologne 2026"},"1102":{"market_hash_name":"Sticker | n0thing | MLG Columbus 2016"},"11020":{"market_hash_name":"Sticker | br0 (Holo) | Cologne 2026"},"11021":{"market_hash_name":"Sticker | br0 (Gold) | Cologne 2026"},"11022":{"market_hash_name":"Sticker | oSee | Cologne 2026"},"11023":{"market_hash_name":"Sticker | oSee (Foil) | Cologne 2026"},"11024":{"market_hash_name":"Sticker | oSee (Holo) | Cologne 2026"},"11025":{"market_hash_name":"Sticker | oSee (Gold) | Cologne 2026"},"11026":{"market_hash_name":"Sticker | Sonic | Cologne 2026"},"11027":{"market_hash_name":"Sticker | Sonic (Foil) | Cologne 2026"},"11028":{"market_hash_name":"Sticker | Sonic (Holo) | Cologne 2026"},"11029":{"market_hash_name":"Sticker | Sonic (Gold) | Cologne 2026"},"1103":{"market_hash_name":"Sticker | n0thing (Foil) | MLG Columbus 2016"},"11030":{"market_hash_name":"Sticker | nitr0 | Cologne 2026"},"11031":{"market_hash_name":"Sticker | nitr0 (Foil) | Cologne 2026"},"11032":{"market_hash_name":"Sticker | nitr0 (Holo) | Cologne 2026"},"11033":{"market_hash_name":"Sticker | nitr0 (Gold) | Cologne 2026"},"11034":{"market_hash_name":"Sticker | Mercury | Cologne 2026"},"11035":{"market_hash_name":"Sticker | Mercury (Foil) | Cologne 2026"},"11036":{"market_hash_name":"Sticker | Mercury (Holo) | Cologne 2026"},"11037":{"market_hash_name":"Sticker | Mercury (Gold) | Cologne 2026"},"11038":{"market_hash_name":"Sticker | Jee | Cologne 2026"},"11039":{"market_hash_name":"Sticker | Jee (Foil) | Cologne 2026"},"1104":{"market_hash_name":"Sticker | n0thing (Gold) | MLG Columbus 2016"},"11040":{"market_hash_name":"Sticker | Jee (Holo) | Cologne 2026"},"11041":{"market_hash_name":"Sticker | Jee (Gold) | Cologne 2026"},"11042":{"market_hash_name":"Sticker | JamYoung | Cologne 2026"},"11043":{"market_hash_name":"Sticker | JamYoung (Foil) | Cologne 2026"},"11044":{"market_hash_name":"Sticker | JamYoung (Holo) | Cologne 2026"},"11045":{"market_hash_name":"Sticker | JamYoung (Gold) | Cologne 2026"},"11046":{"market_hash_name":"Sticker | Moseyuh | Cologne 2026"},"11047":{"market_hash_name":"Sticker | Moseyuh (Foil) | Cologne 2026"},"11048":{"market_hash_name":"Sticker | Moseyuh (Holo) | Cologne 2026"},"11049":{"market_hash_name":"Sticker | Moseyuh (Gold) | Cologne 2026"},"1105":{"market_hash_name":"Sticker | apEX | MLG Columbus 2016"},"11050":{"market_hash_name":"Sticker | Zero | Cologne 2026"},"11051":{"market_hash_name":"Sticker | Zero (Foil) | Cologne 2026"},"11052":{"market_hash_name":"Sticker | Zero (Holo) | Cologne 2026"},"11053":{"market_hash_name":"Sticker | Zero (Gold) | Cologne 2026"},"11054":{"market_hash_name":"Sticker | gafolo | Cologne 2026"},"11055":{"market_hash_name":"Sticker | gafolo (Foil) | Cologne 2026"},"11056":{"market_hash_name":"Sticker | gafolo (Holo) | Cologne 2026"},"11057":{"market_hash_name":"Sticker | gafolo (Gold) | Cologne 2026"},"11058":{"market_hash_name":"Sticker | koala | Cologne 2026"},"11059":{"market_hash_name":"Sticker | koala (Foil) | Cologne 2026"},"1106":{"market_hash_name":"Sticker | apEX (Foil) | MLG Columbus 2016"},"11060":{"market_hash_name":"Sticker | koala (Holo) | Cologne 2026"},"11061":{"market_hash_name":"Sticker | koala (Gold) | Cologne 2026"},"11062":{"market_hash_name":"Sticker | maxxkor | Cologne 2026"},"11063":{"market_hash_name":"Sticker | maxxkor (Foil) | Cologne 2026"},"11064":{"market_hash_name":"Sticker | maxxkor (Holo) | Cologne 2026"},"11065":{"market_hash_name":"Sticker | maxxkor (Gold) | Cologne 2026"},"11066":{"market_hash_name":"Sticker | rdnzao | Cologne 2026"},"11067":{"market_hash_name":"Sticker | rdnzao (Foil) | Cologne 2026"},"11068":{"market_hash_name":"Sticker | rdnzao (Holo) | Cologne 2026"},"11069":{"market_hash_name":"Sticker | rdnzao (Gold) | Cologne 2026"},"1107":{"market_hash_name":"Sticker | apEX (Gold) | MLG Columbus 2016"},"11070":{"market_hash_name":"Sticker | doc | Cologne 2026"},"11071":{"market_hash_name":"Sticker | doc (Foil) | Cologne 2026"},"11072":{"market_hash_name":"Sticker | doc (Holo) | Cologne 2026"},"11073":{"market_hash_name":"Sticker | doc (Gold) | Cologne 2026"},"11074":{"market_hash_name":"Sticker | HEN1 | Cologne 2026"},"11075":{"market_hash_name":"Sticker | HEN1 (Foil) | Cologne 2026"},"11076":{"market_hash_name":"Sticker | HEN1 (Holo) | Cologne 2026"},"11077":{"market_hash_name":"Sticker | HEN1 (Gold) | Cologne 2026"},"11078":{"market_hash_name":"Sticker | felps | Cologne 2026"},"11079":{"market_hash_name":"Sticker | felps (Foil) | Cologne 2026"},"1108":{"market_hash_name":"Sticker | Happy | MLG Columbus 2016"},"11080":{"market_hash_name":"Sticker | felps (Holo) | Cologne 2026"},"11081":{"market_hash_name":"Sticker | felps (Gold) | Cologne 2026"},"11082":{"market_hash_name":"Sticker | NEKiZ | Cologne 2026"},"11083":{"market_hash_name":"Sticker | NEKiZ (Foil) | Cologne 2026"},"11084":{"market_hash_name":"Sticker | NEKiZ (Holo) | Cologne 2026"},"11085":{"market_hash_name":"Sticker | NEKiZ (Gold) | Cologne 2026"},"11086":{"market_hash_name":"Sticker | luken | Cologne 2026"},"11087":{"market_hash_name":"Sticker | luken (Foil) | Cologne 2026"},"11088":{"market_hash_name":"Sticker | luken (Holo) | Cologne 2026"},"11089":{"market_hash_name":"Sticker | luken (Gold) | Cologne 2026"},"1109":{"market_hash_name":"Sticker | Happy (Foil) | MLG Columbus 2016"},"11090":{"market_hash_name":"Sticker | JOTA | Cologne 2026"},"11091":{"market_hash_name":"Sticker | JOTA (Foil) | Cologne 2026"},"11092":{"market_hash_name":"Sticker | JOTA (Holo) | Cologne 2026"},"11093":{"market_hash_name":"Sticker | JOTA (Gold) | Cologne 2026"},"11094":{"market_hash_name":"Sticker | EliGE | Cologne 2026"},"11095":{"market_hash_name":"Sticker | EliGE (Foil) | Cologne 2026"},"11096":{"market_hash_name":"Sticker | EliGE (Holo) | Cologne 2026"},"11097":{"market_hash_name":"Sticker | EliGE (Gold) | Cologne 2026"},"11098":{"market_hash_name":"Sticker | ultimate | Cologne 2026"},"11099":{"market_hash_name":"Sticker | ultimate (Foil) | Cologne 2026"},"111":{"market_hash_name":"Sticker | My Other Awp"},"1110":{"market_hash_name":"Sticker | Happy (Gold) | MLG Columbus 2016"},"11100":{"market_hash_name":"Sticker | ultimate (Holo) | Cologne 2026"},"11101":{"market_hash_name":"Sticker | ultimate (Gold) | Cologne 2026"},"11102":{"market_hash_name":"Sticker | malbsMd | Cologne 2026"},"11103":{"market_hash_name":"Sticker | malbsMd (Foil) | Cologne 2026"},"11104":{"market_hash_name":"Sticker | malbsMd (Holo) | Cologne 2026"},"11105":{"market_hash_name":"Sticker | malbsMd (Gold) | Cologne 2026"},"11106":{"market_hash_name":"Sticker | siuhy | Cologne 2026"},"11107":{"market_hash_name":"Sticker | siuhy (Foil) | Cologne 2026"},"11108":{"market_hash_name":"Sticker | siuhy (Holo) | Cologne 2026"},"11109":{"market_hash_name":"Sticker | siuhy (Gold) | Cologne 2026"},"1111":{"market_hash_name":"Sticker | DEVIL | MLG Columbus 2016"},"11110":{"market_hash_name":"Sticker | NAF | Cologne 2026"},"11111":{"market_hash_name":"Sticker | NAF (Foil) | Cologne 2026"},"11112":{"market_hash_name":"Sticker | NAF (Holo) | Cologne 2026"},"11113":{"market_hash_name":"Sticker | NAF (Gold) | Cologne 2026"},"11114":{"market_hash_name":"Sticker | westmelon | Cologne 2026"},"11115":{"market_hash_name":"Sticker | westmelon (Foil) | Cologne 2026"},"11116":{"market_hash_name":"Sticker | westmelon (Holo) | Cologne 2026"},"11117":{"market_hash_name":"Sticker | westmelon (Gold) | Cologne 2026"},"11118":{"market_hash_name":"Sticker | z4KR | Cologne 2026"},"11119":{"market_hash_name":"Sticker | z4KR (Foil) | Cologne 2026"},"1112":{"market_hash_name":"Sticker | DEVIL (Foil) | MLG Columbus 2016"},"11120":{"market_hash_name":"Sticker | z4KR (Holo) | Cologne 2026"},"11121":{"market_hash_name":"Sticker | z4KR (Gold) | Cologne 2026"},"11122":{"market_hash_name":"Sticker | Starry | Cologne 2026"},"11123":{"market_hash_name":"Sticker | Starry (Foil) | Cologne 2026"},"11124":{"market_hash_name":"Sticker | Starry (Holo) | Cologne 2026"},"11125":{"market_hash_name":"Sticker | Starry (Gold) | Cologne 2026"},"11126":{"market_hash_name":"Sticker | EmiliaQAQ | Cologne 2026"},"11127":{"market_hash_name":"Sticker | EmiliaQAQ (Foil) | Cologne 2026"},"11128":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Cologne 2026"},"11129":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Cologne 2026"},"1113":{"market_hash_name":"Sticker | DEVIL (Gold) | MLG Columbus 2016"},"11130":{"market_hash_name":"Sticker | C4LLM3SU3 | Cologne 2026"},"11131":{"market_hash_name":"Sticker | C4LLM3SU3 (Foil) | Cologne 2026"},"11132":{"market_hash_name":"Sticker | C4LLM3SU3 (Holo) | Cologne 2026"},"11133":{"market_hash_name":"Sticker | C4LLM3SU3 (Gold) | Cologne 2026"},"11134":{"market_hash_name":"Sticker | dexter | Cologne 2026"},"11135":{"market_hash_name":"Sticker | dexter (Foil) | Cologne 2026"},"11136":{"market_hash_name":"Sticker | dexter (Holo) | Cologne 2026"},"11137":{"market_hash_name":"Sticker | dexter (Gold) | Cologne 2026"},"11138":{"market_hash_name":"Sticker | Liazz | Cologne 2026"},"11139":{"market_hash_name":"Sticker | Liazz (Foil) | Cologne 2026"},"1114":{"market_hash_name":"Sticker | kennyS | MLG Columbus 2016"},"11140":{"market_hash_name":"Sticker | Liazz (Holo) | Cologne 2026"},"11141":{"market_hash_name":"Sticker | Liazz (Gold) | Cologne 2026"},"11142":{"market_hash_name":"Sticker | aliStair | Cologne 2026"},"11143":{"market_hash_name":"Sticker | aliStair (Foil) | Cologne 2026"},"11144":{"market_hash_name":"Sticker | aliStair (Holo) | Cologne 2026"},"11145":{"market_hash_name":"Sticker | aliStair (Gold) | Cologne 2026"},"11146":{"market_hash_name":"Sticker | asap | Cologne 2026"},"11147":{"market_hash_name":"Sticker | asap (Foil) | Cologne 2026"},"11148":{"market_hash_name":"Sticker | asap (Holo) | Cologne 2026"},"11149":{"market_hash_name":"Sticker | asap (Gold) | Cologne 2026"},"1115":{"market_hash_name":"Sticker | kennyS (Foil) | MLG Columbus 2016"},"11150":{"market_hash_name":"Sticker | TjP | Cologne 2026"},"11151":{"market_hash_name":"Sticker | TjP (Foil) | Cologne 2026"},"11152":{"market_hash_name":"Sticker | TjP (Holo) | Cologne 2026"},"11153":{"market_hash_name":"Sticker | TjP (Gold) | Cologne 2026"},"11154":{"market_hash_name":"Sticker | INS | Cologne 2026"},"11155":{"market_hash_name":"Sticker | INS (Foil) | Cologne 2026"},"11156":{"market_hash_name":"Sticker | INS (Holo) | Cologne 2026"},"11157":{"market_hash_name":"Sticker | INS (Gold) | Cologne 2026"},"11158":{"market_hash_name":"Sticker | jks | Cologne 2026"},"11159":{"market_hash_name":"Sticker | jks (Foil) | Cologne 2026"},"1116":{"market_hash_name":"Sticker | kennyS (Gold) | MLG Columbus 2016"},"11160":{"market_hash_name":"Sticker | jks (Holo) | Cologne 2026"},"11161":{"market_hash_name":"Sticker | jks (Gold) | Cologne 2026"},"11162":{"market_hash_name":"Sticker | vexite | Cologne 2026"},"11163":{"market_hash_name":"Sticker | vexite (Foil) | Cologne 2026"},"11164":{"market_hash_name":"Sticker | vexite (Holo) | Cologne 2026"},"11165":{"market_hash_name":"Sticker | vexite (Gold) | Cologne 2026"},"11166":{"market_hash_name":"Sticker | story | Cologne 2026"},"11167":{"market_hash_name":"Sticker | story (Foil) | Cologne 2026"},"11168":{"market_hash_name":"Sticker | story (Holo) | Cologne 2026"},"11169":{"market_hash_name":"Sticker | story (Gold) | Cologne 2026"},"1117":{"market_hash_name":"Sticker | NBK- | MLG Columbus 2016"},"11170":{"market_hash_name":"Sticker | nettik | Cologne 2026"},"11171":{"market_hash_name":"Sticker | nettik (Foil) | Cologne 2026"},"11172":{"market_hash_name":"Sticker | nettik (Holo) | Cologne 2026"},"11173":{"market_hash_name":"Sticker | nettik (Gold) | Cologne 2026"},"1118":{"market_hash_name":"Sticker | NBK- (Foil) | MLG Columbus 2016"},"1119":{"market_hash_name":"Sticker | NBK- (Gold) | MLG Columbus 2016"},"112":{"market_hash_name":"Sticker | Shave Master"},"1120":{"market_hash_name":"Sticker | B1ad3 | MLG Columbus 2016"},"1121":{"market_hash_name":"Sticker | B1ad3 (Foil) | MLG Columbus 2016"},"1122":{"market_hash_name":"Sticker | B1ad3 (Gold) | MLG Columbus 2016"},"1123":{"market_hash_name":"Sticker | bondik | MLG Columbus 2016"},"1124":{"market_hash_name":"Sticker | bondik (Foil) | MLG Columbus 2016"},"1125":{"market_hash_name":"Sticker | bondik (Gold) | MLG Columbus 2016"},"1126":{"market_hash_name":"Sticker | Shara | MLG Columbus 2016"},"1127":{"market_hash_name":"Sticker | Shara (Foil) | MLG Columbus 2016"},"1128":{"market_hash_name":"Sticker | Shara (Gold) | MLG Columbus 2016"},"1129":{"market_hash_name":"Sticker | markeloff | MLG Columbus 2016"},"113":{"market_hash_name":"Sticker | Rising Skull"},"1130":{"market_hash_name":"Sticker | markeloff (Foil) | MLG Columbus 2016"},"1131":{"market_hash_name":"Sticker | markeloff (Gold) | MLG Columbus 2016"},"1132":{"market_hash_name":"Sticker | WorldEdit | MLG Columbus 2016"},"1133":{"market_hash_name":"Sticker | WorldEdit (Foil) | MLG Columbus 2016"},"1134":{"market_hash_name":"Sticker | WorldEdit (Gold) | MLG Columbus 2016"},"1135":{"market_hash_name":"Sticker | flusha | MLG Columbus 2016"},"1136":{"market_hash_name":"Sticker | flusha (Foil) | MLG Columbus 2016"},"1137":{"market_hash_name":"Sticker | flusha (Gold) | MLG Columbus 2016"},"1138":{"market_hash_name":"Sticker | JW | MLG Columbus 2016"},"1139":{"market_hash_name":"Sticker | JW (Foil) | MLG Columbus 2016"},"114":{"market_hash_name":"Sticker | Sneaky Beaky Like"},"1140":{"market_hash_name":"Sticker | JW (Gold) | MLG Columbus 2016"},"1141":{"market_hash_name":"Sticker | KRIMZ | MLG Columbus 2016"},"1142":{"market_hash_name":"Sticker | KRIMZ (Foil) | MLG Columbus 2016"},"1143":{"market_hash_name":"Sticker | KRIMZ (Gold) | MLG Columbus 2016"},"1144":{"market_hash_name":"Sticker | olofmeister | MLG Columbus 2016"},"1145":{"market_hash_name":"Sticker | olofmeister (Foil) | MLG Columbus 2016"},"1146":{"market_hash_name":"Sticker | olofmeister (Gold) | MLG Columbus 2016"},"1147":{"market_hash_name":"Sticker | dennis | MLG Columbus 2016"},"1148":{"market_hash_name":"Sticker | dennis (Foil) | MLG Columbus 2016"},"1149":{"market_hash_name":"Sticker | dennis (Gold) | MLG Columbus 2016"},"115":{"market_hash_name":"Sticker | Swag (Foil)"},"1150":{"market_hash_name":"Sticker | aizy | MLG Columbus 2016"},"1151":{"market_hash_name":"Sticker | aizy (Foil) | MLG Columbus 2016"},"1152":{"market_hash_name":"Sticker | aizy (Gold) | MLG Columbus 2016"},"1153":{"market_hash_name":"Sticker | fox | MLG Columbus 2016"},"1154":{"market_hash_name":"Sticker | fox (Foil) | MLG Columbus 2016"},"1155":{"market_hash_name":"Sticker | fox (Gold) | MLG Columbus 2016"},"1156":{"market_hash_name":"Sticker | Maikelele | MLG Columbus 2016"},"1157":{"market_hash_name":"Sticker | Maikelele (Foil) | MLG Columbus 2016"},"1158":{"market_hash_name":"Sticker | Maikelele (Gold) | MLG Columbus 2016"},"1159":{"market_hash_name":"Sticker | rain | MLG Columbus 2016"},"116":{"market_hash_name":"Sticker | Teamwork (Holo)"},"1160":{"market_hash_name":"Sticker | rain (Foil) | MLG Columbus 2016"},"1161":{"market_hash_name":"Sticker | rain (Gold) | MLG Columbus 2016"},"1162":{"market_hash_name":"Sticker | jkaem | MLG Columbus 2016"},"1163":{"market_hash_name":"Sticker | jkaem (Foil) | MLG Columbus 2016"},"1164":{"market_hash_name":"Sticker | jkaem (Gold) | MLG Columbus 2016"},"1165":{"market_hash_name":"Sticker | fnx | MLG Columbus 2016"},"1166":{"market_hash_name":"Sticker | fnx (Foil) | MLG Columbus 2016"},"1167":{"market_hash_name":"Sticker | fnx (Gold) | MLG Columbus 2016"},"1168":{"market_hash_name":"Sticker | coldzera | MLG Columbus 2016"},"1169":{"market_hash_name":"Sticker | coldzera (Foil) | MLG Columbus 2016"},"117":{"market_hash_name":"Sticker | To B or not to B"},"1170":{"market_hash_name":"Sticker | coldzera (Gold) | MLG Columbus 2016"},"1171":{"market_hash_name":"Sticker | FalleN | MLG Columbus 2016"},"1172":{"market_hash_name":"Sticker | FalleN (Foil) | MLG Columbus 2016"},"1173":{"market_hash_name":"Sticker | FalleN (Gold) | MLG Columbus 2016"},"1174":{"market_hash_name":"Sticker | fer | MLG Columbus 2016"},"1175":{"market_hash_name":"Sticker | fer (Foil) | MLG Columbus 2016"},"1176":{"market_hash_name":"Sticker | fer (Gold) | MLG Columbus 2016"},"1177":{"market_hash_name":"Sticker | TACO | MLG Columbus 2016"},"1178":{"market_hash_name":"Sticker | TACO (Foil) | MLG Columbus 2016"},"1179":{"market_hash_name":"Sticker | TACO (Gold) | MLG Columbus 2016"},"118":{"market_hash_name":"Sticker | Winged Defuser"},"1180":{"market_hash_name":"Sticker | chrisJ | MLG Columbus 2016"},"1181":{"market_hash_name":"Sticker | chrisJ (Foil) | MLG Columbus 2016"},"1182":{"market_hash_name":"Sticker | chrisJ (Gold) | MLG Columbus 2016"},"1183":{"market_hash_name":"Sticker | denis | MLG Columbus 2016"},"1184":{"market_hash_name":"Sticker | denis (Foil) | MLG Columbus 2016"},"1185":{"market_hash_name":"Sticker | denis (Gold) | MLG Columbus 2016"},"1186":{"market_hash_name":"Sticker | Spiidi | MLG Columbus 2016"},"1187":{"market_hash_name":"Sticker | Spiidi (Foil) | MLG Columbus 2016"},"1188":{"market_hash_name":"Sticker | Spiidi (Gold) | MLG Columbus 2016"},"1189":{"market_hash_name":"Sticker | nex | MLG Columbus 2016"},"119":{"market_hash_name":"Sticker | Pocket BBQ"},"1190":{"market_hash_name":"Sticker | nex (Foil) | MLG Columbus 2016"},"1191":{"market_hash_name":"Sticker | nex (Gold) | MLG Columbus 2016"},"1192":{"market_hash_name":"Sticker | NiKo | MLG Columbus 2016"},"1193":{"market_hash_name":"Sticker | NiKo (Foil) | MLG Columbus 2016"},"1194":{"market_hash_name":"Sticker | NiKo (Gold) | MLG Columbus 2016"},"1195":{"market_hash_name":"Sticker | Edward | MLG Columbus 2016"},"1196":{"market_hash_name":"Sticker | Edward (Foil) | MLG Columbus 2016"},"1197":{"market_hash_name":"Sticker | Edward (Gold) | MLG Columbus 2016"},"1198":{"market_hash_name":"Sticker | flamie | MLG Columbus 2016"},"1199":{"market_hash_name":"Sticker | flamie (Foil) | MLG Columbus 2016"},"12":{"market_hash_name":"Sticker | Frosty the Hitman (Foil)"},"120":{"market_hash_name":"Sticker | Death Comes"},"1200":{"market_hash_name":"Sticker | flamie (Gold) | MLG Columbus 2016"},"1201":{"market_hash_name":"Sticker | GuardiaN | MLG Columbus 2016"},"1202":{"market_hash_name":"Sticker | GuardiaN (Foil) | MLG Columbus 2016"},"1203":{"market_hash_name":"Sticker | GuardiaN (Gold) | MLG Columbus 2016"},"1204":{"market_hash_name":"Sticker | seized | MLG Columbus 2016"},"1205":{"market_hash_name":"Sticker | seized (Foil) | MLG Columbus 2016"},"1206":{"market_hash_name":"Sticker | seized (Gold) | MLG Columbus 2016"},"1207":{"market_hash_name":"Sticker | Zeus | MLG Columbus 2016"},"1208":{"market_hash_name":"Sticker | Zeus (Foil) | MLG Columbus 2016"},"1209":{"market_hash_name":"Sticker | Zeus (Gold) | MLG Columbus 2016"},"121":{"market_hash_name":"Sticker | Rekt (Holo)"},"1210":{"market_hash_name":"Sticker | pyth | MLG Columbus 2016"},"1211":{"market_hash_name":"Sticker | pyth (Foil) | MLG Columbus 2016"},"1212":{"market_hash_name":"Sticker | pyth (Gold) | MLG Columbus 2016"},"1213":{"market_hash_name":"Sticker | f0rest | MLG Columbus 2016"},"1214":{"market_hash_name":"Sticker | f0rest (Foil) | MLG Columbus 2016"},"1215":{"market_hash_name":"Sticker | f0rest (Gold) | MLG Columbus 2016"},"1216":{"market_hash_name":"Sticker | friberg | MLG Columbus 2016"},"1217":{"market_hash_name":"Sticker | friberg (Foil) | MLG Columbus 2016"},"1218":{"market_hash_name":"Sticker | friberg (Gold) | MLG Columbus 2016"},"1219":{"market_hash_name":"Sticker | GeT_RiGhT | MLG Columbus 2016"},"122":{"market_hash_name":"Sticker | Cloud9 | Cologne 2014"},"1220":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | MLG Columbus 2016"},"1221":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | MLG Columbus 2016"},"1222":{"market_hash_name":"Sticker | Xizt | MLG Columbus 2016"},"1223":{"market_hash_name":"Sticker | Xizt (Foil) | MLG Columbus 2016"},"1224":{"market_hash_name":"Sticker | Xizt (Gold) | MLG Columbus 2016"},"1225":{"market_hash_name":"Sticker | jasonR | MLG Columbus 2016"},"1226":{"market_hash_name":"Sticker | jasonR (Foil) | MLG Columbus 2016"},"1227":{"market_hash_name":"Sticker | jasonR (Gold) | MLG Columbus 2016"},"1228":{"market_hash_name":"Sticker | arya | MLG Columbus 2016"},"1229":{"market_hash_name":"Sticker | arya (Foil) | MLG Columbus 2016"},"123":{"market_hash_name":"Sticker | Cloud9 (Holo) | Cologne 2014"},"1230":{"market_hash_name":"Sticker | arya (Gold) | MLG Columbus 2016"},"1231":{"market_hash_name":"Sticker | Professor_Chaos | MLG Columbus 2016"},"1232":{"market_hash_name":"Sticker | Professor_Chaos (Foil) | MLG Columbus 2016"},"1233":{"market_hash_name":"Sticker | Professor_Chaos (Gold) | MLG Columbus 2016"},"1234":{"market_hash_name":"Sticker | DAVEY | MLG Columbus 2016"},"1235":{"market_hash_name":"Sticker | DAVEY (Foil) | MLG Columbus 2016"},"1236":{"market_hash_name":"Sticker | DAVEY (Gold) | MLG Columbus 2016"},"1237":{"market_hash_name":"Sticker | abE | MLG Columbus 2016"},"1238":{"market_hash_name":"Sticker | abE (Foil) | MLG Columbus 2016"},"1239":{"market_hash_name":"Sticker | abE (Gold) | MLG Columbus 2016"},"124":{"market_hash_name":"Sticker | Fnatic | Cologne 2014"},"1240":{"market_hash_name":"Sticker | adreN | MLG Columbus 2016"},"1241":{"market_hash_name":"Sticker | adreN (Foil) | MLG Columbus 2016"},"1242":{"market_hash_name":"Sticker | adreN (Gold) | MLG Columbus 2016"},"1243":{"market_hash_name":"Sticker | EliGE | MLG Columbus 2016"},"1244":{"market_hash_name":"Sticker | EliGE (Foil) | MLG Columbus 2016"},"1245":{"market_hash_name":"Sticker | EliGE (Gold) | MLG Columbus 2016"},"1246":{"market_hash_name":"Sticker | s1mple | MLG Columbus 2016"},"1247":{"market_hash_name":"Sticker | s1mple (Foil) | MLG Columbus 2016"},"1248":{"market_hash_name":"Sticker | s1mple (Gold) | MLG Columbus 2016"},"1249":{"market_hash_name":"Sticker | Hiko | MLG Columbus 2016"},"125":{"market_hash_name":"Sticker | Fnatic (Holo) | Cologne 2014"},"1250":{"market_hash_name":"Sticker | Hiko (Foil) | MLG Columbus 2016"},"1251":{"market_hash_name":"Sticker | Hiko (Gold) | MLG Columbus 2016"},"1252":{"market_hash_name":"Sticker | nitr0 | MLG Columbus 2016"},"1253":{"market_hash_name":"Sticker | nitr0 (Foil) | MLG Columbus 2016"},"1254":{"market_hash_name":"Sticker | nitr0 (Gold) | MLG Columbus 2016"},"1255":{"market_hash_name":"Sticker | Ex6TenZ | MLG Columbus 2016"},"1256":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | MLG Columbus 2016"},"1257":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | MLG Columbus 2016"},"1258":{"market_hash_name":"Sticker | RpK | MLG Columbus 2016"},"1259":{"market_hash_name":"Sticker | RpK (Foil) | MLG Columbus 2016"},"126":{"market_hash_name":"Sticker | HellRaisers | Cologne 2014"},"1260":{"market_hash_name":"Sticker | RpK (Gold) | MLG Columbus 2016"},"1261":{"market_hash_name":"Sticker | ScreaM | MLG Columbus 2016"},"1262":{"market_hash_name":"Sticker | ScreaM (Foil) | MLG Columbus 2016"},"1263":{"market_hash_name":"Sticker | ScreaM (Gold) | MLG Columbus 2016"},"1264":{"market_hash_name":"Sticker | shox | MLG Columbus 2016"},"1265":{"market_hash_name":"Sticker | shox (Foil) | MLG Columbus 2016"},"1266":{"market_hash_name":"Sticker | shox (Gold) | MLG Columbus 2016"},"1267":{"market_hash_name":"Sticker | SmithZz | MLG Columbus 2016"},"1268":{"market_hash_name":"Sticker | SmithZz (Foil) | MLG Columbus 2016"},"1269":{"market_hash_name":"Sticker | SmithZz (Gold) | MLG Columbus 2016"},"127":{"market_hash_name":"Sticker | HellRaisers (Holo) | Cologne 2014"},"1270":{"market_hash_name":"Sticker | cajunb | MLG Columbus 2016"},"1271":{"market_hash_name":"Sticker | cajunb (Foil) | MLG Columbus 2016"},"1272":{"market_hash_name":"Sticker | cajunb (Gold) | MLG Columbus 2016"},"1273":{"market_hash_name":"Sticker | device | MLG Columbus 2016"},"1274":{"market_hash_name":"Sticker | device (Foil) | MLG Columbus 2016"},"1275":{"market_hash_name":"Sticker | device (Gold) | MLG Columbus 2016"},"1276":{"market_hash_name":"Sticker | dupreeh | MLG Columbus 2016"},"1277":{"market_hash_name":"Sticker | dupreeh (Foil) | MLG Columbus 2016"},"1278":{"market_hash_name":"Sticker | dupreeh (Gold) | MLG Columbus 2016"},"1279":{"market_hash_name":"Sticker | karrigan | MLG Columbus 2016"},"128":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cologne 2014"},"1280":{"market_hash_name":"Sticker | karrigan (Foil) | MLG Columbus 2016"},"1281":{"market_hash_name":"Sticker | karrigan (Gold) | MLG Columbus 2016"},"1282":{"market_hash_name":"Sticker | Xyp9x | MLG Columbus 2016"},"1283":{"market_hash_name":"Sticker | Xyp9x (Foil) | MLG Columbus 2016"},"1284":{"market_hash_name":"Sticker | Xyp9x (Gold) | MLG Columbus 2016"},"1285":{"market_hash_name":"Sticker | wayLander | MLG Columbus 2016"},"1286":{"market_hash_name":"Sticker | wayLander (Foil) | MLG Columbus 2016"},"1287":{"market_hash_name":"Sticker | wayLander (Gold) | MLG Columbus 2016"},"1288":{"market_hash_name":"Sticker | Dosia | MLG Columbus 2016"},"1289":{"market_hash_name":"Sticker | Dosia (Foil) | MLG Columbus 2016"},"129":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Cologne 2014"},"1290":{"market_hash_name":"Sticker | Dosia (Gold) | MLG Columbus 2016"},"1291":{"market_hash_name":"Sticker | hooch | MLG Columbus 2016"},"1292":{"market_hash_name":"Sticker | hooch (Foil) | MLG Columbus 2016"},"1293":{"market_hash_name":"Sticker | hooch (Gold) | MLG Columbus 2016"},"1294":{"market_hash_name":"Sticker | mou | MLG Columbus 2016"},"1295":{"market_hash_name":"Sticker | mou (Foil) | MLG Columbus 2016"},"1296":{"market_hash_name":"Sticker | mou (Gold) | MLG Columbus 2016"},"1297":{"market_hash_name":"Sticker | AdreN | MLG Columbus 2016"},"1298":{"market_hash_name":"Sticker | AdreN (Foil) | MLG Columbus 2016"},"1299":{"market_hash_name":"Sticker | AdreN (Gold) | MLG Columbus 2016"},"13":{"market_hash_name":"Sticker | Lucky 13"},"130":{"market_hash_name":"Sticker | Team Dignitas | Cologne 2014"},"1300":{"market_hash_name":"Sticker | byali | MLG Columbus 2016"},"1301":{"market_hash_name":"Sticker | byali (Foil) | MLG Columbus 2016"},"1302":{"market_hash_name":"Sticker | byali (Gold) | MLG Columbus 2016"},"1303":{"market_hash_name":"Sticker | NEO | MLG Columbus 2016"},"1304":{"market_hash_name":"Sticker | NEO (Foil) | MLG Columbus 2016"},"1305":{"market_hash_name":"Sticker | NEO (Gold) | MLG Columbus 2016"},"1306":{"market_hash_name":"Sticker | pashaBiceps | MLG Columbus 2016"},"1307":{"market_hash_name":"Sticker | pashaBiceps (Foil) | MLG Columbus 2016"},"1308":{"market_hash_name":"Sticker | pashaBiceps (Gold) | MLG Columbus 2016"},"1309":{"market_hash_name":"Sticker | Snax | MLG Columbus 2016"},"131":{"market_hash_name":"Sticker | Team Dignitas (Holo) | Cologne 2014"},"1310":{"market_hash_name":"Sticker | Snax (Foil) | MLG Columbus 2016"},"1311":{"market_hash_name":"Sticker | Snax (Gold) | MLG Columbus 2016"},"1312":{"market_hash_name":"Sticker | TaZ | MLG Columbus 2016"},"1313":{"market_hash_name":"Sticker | TaZ (Foil) | MLG Columbus 2016"},"1314":{"market_hash_name":"Sticker | TaZ (Gold) | MLG Columbus 2016"},"1315":{"market_hash_name":"Sticker | All-Stars Orange (Holo)"},"1316":{"market_hash_name":"Sticker | All-Stars Blue (Holo)"},"1317":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cologne 2016"},"1318":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Cologne 2016"},"1319":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cologne 2016"},"132":{"market_hash_name":"Sticker | Team LDLC.com | Cologne 2014"},"1320":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Cologne 2016"},"1321":{"market_hash_name":"Sticker | OpTic Gaming | Cologne 2016"},"1322":{"market_hash_name":"Sticker | OpTic Gaming (Holo) | Cologne 2016"},"1323":{"market_hash_name":"Sticker | OpTic Gaming (Foil) | Cologne 2016"},"1324":{"market_hash_name":"Sticker | OpTic Gaming (Gold) | Cologne 2016"},"1325":{"market_hash_name":"Sticker | Counter Logic Gaming | Cologne 2016"},"1326":{"market_hash_name":"Sticker | Counter Logic Gaming (Holo) | Cologne 2016"},"1327":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Cologne 2016"},"1328":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Cologne 2016"},"1329":{"market_hash_name":"Sticker | Gambit Gaming | Cologne 2016"},"133":{"market_hash_name":"Sticker | Team LDLC.com (Holo) | Cologne 2014"},"1330":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | Cologne 2016"},"1331":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | Cologne 2016"},"1332":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | Cologne 2016"},"1333":{"market_hash_name":"Sticker | Flipsid3 Tactics | Cologne 2016"},"1334":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Cologne 2016"},"1335":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Cologne 2016"},"1336":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Cologne 2016"},"1337":{"market_hash_name":"Sticker | Team Liquid | Cologne 2016"},"1338":{"market_hash_name":"Sticker | Team Liquid (Holo) | Cologne 2016"},"1339":{"market_hash_name":"Sticker | Team Liquid (Foil) | Cologne 2016"},"134":{"market_hash_name":"Sticker | Virtus.Pro | Cologne 2014"},"1340":{"market_hash_name":"Sticker | Team Liquid (Gold) | Cologne 2016"},"1341":{"market_hash_name":"Sticker | mousesports | Cologne 2016"},"1342":{"market_hash_name":"Sticker | mousesports (Holo) | Cologne 2016"},"1343":{"market_hash_name":"Sticker | mousesports (Foil) | Cologne 2016"},"1344":{"market_hash_name":"Sticker | mousesports (Gold) | Cologne 2016"},"1345":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2016"},"1346":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Cologne 2016"},"1347":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2016"},"1348":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cologne 2016"},"1349":{"market_hash_name":"Sticker | Virtus.Pro | Cologne 2016"},"135":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Cologne 2014"},"1350":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Cologne 2016"},"1351":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cologne 2016"},"1352":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Cologne 2016"},"1353":{"market_hash_name":"Sticker | SK Gaming | Cologne 2016"},"1354":{"market_hash_name":"Sticker | SK Gaming (Holo) | Cologne 2016"},"1355":{"market_hash_name":"Sticker | SK Gaming (Foil) | Cologne 2016"},"1356":{"market_hash_name":"Sticker | SK Gaming (Gold) | Cologne 2016"},"1357":{"market_hash_name":"Sticker | G2 Esports | Cologne 2016"},"1358":{"market_hash_name":"Sticker | G2 Esports (Holo) | Cologne 2016"},"1359":{"market_hash_name":"Sticker | G2 Esports (Foil) | Cologne 2016"},"136":{"market_hash_name":"Sticker | Copenhagen Wolves | Cologne 2014"},"1360":{"market_hash_name":"Sticker | G2 Esports (Gold) | Cologne 2016"},"1361":{"market_hash_name":"Sticker | FaZe Clan | Cologne 2016"},"1362":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Cologne 2016"},"1363":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Cologne 2016"},"1364":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Cologne 2016"},"1365":{"market_hash_name":"Sticker | Astralis | Cologne 2016"},"1366":{"market_hash_name":"Sticker | Astralis (Holo) | Cologne 2016"},"1367":{"market_hash_name":"Sticker | Astralis (Foil) | Cologne 2016"},"1368":{"market_hash_name":"Sticker | Astralis (Gold) | Cologne 2016"},"1369":{"market_hash_name":"Sticker | Team EnVyUs | Cologne 2016"},"137":{"market_hash_name":"Sticker | Copenhagen Wolves (Holo) | Cologne 2014"},"1370":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Cologne 2016"},"1371":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Cologne 2016"},"1372":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Cologne 2016"},"1373":{"market_hash_name":"Sticker | Fnatic | Cologne 2016"},"1374":{"market_hash_name":"Sticker | Fnatic (Holo) | Cologne 2016"},"1375":{"market_hash_name":"Sticker | Fnatic (Foil) | Cologne 2016"},"1376":{"market_hash_name":"Sticker | Fnatic (Gold) | Cologne 2016"},"1377":{"market_hash_name":"Sticker | Team Dignitas | Cologne 2016"},"1378":{"market_hash_name":"Sticker | Team Dignitas (Holo) | Cologne 2016"},"1379":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Cologne 2016"},"138":{"market_hash_name":"Sticker | dAT team | Cologne 2014"},"1380":{"market_hash_name":"Sticker | Team Dignitas (Gold) | Cologne 2016"},"1381":{"market_hash_name":"Sticker | ESL | Cologne 2016"},"1382":{"market_hash_name":"Sticker | ESL (Holo) | Cologne 2016"},"1383":{"market_hash_name":"Sticker | ESL (Foil) | Cologne 2016"},"1384":{"market_hash_name":"Sticker | ESL (Gold) | Cologne 2016"},"1385":{"market_hash_name":"Sticker | reltuC | Cologne 2016"},"1386":{"market_hash_name":"Sticker | reltuC (Foil) | Cologne 2016"},"1387":{"market_hash_name":"Sticker | reltuC (Gold) | Cologne 2016"},"1388":{"market_hash_name":"Sticker | koosta | Cologne 2016"},"1389":{"market_hash_name":"Sticker | koosta (Foil) | Cologne 2016"},"139":{"market_hash_name":"Sticker | dAT team (Holo) | Cologne 2014"},"1390":{"market_hash_name":"Sticker | koosta (Gold) | Cologne 2016"},"1391":{"market_hash_name":"Sticker | hazed | Cologne 2016"},"1392":{"market_hash_name":"Sticker | hazed (Foil) | Cologne 2016"},"1393":{"market_hash_name":"Sticker | hazed (Gold) | Cologne 2016"},"1394":{"market_hash_name":"Sticker | pita | Cologne 2016"},"1395":{"market_hash_name":"Sticker | pita (Foil) | Cologne 2016"},"1396":{"market_hash_name":"Sticker | pita (Gold) | Cologne 2016"},"1397":{"market_hash_name":"Sticker | tarik | Cologne 2016"},"1398":{"market_hash_name":"Sticker | tarik (Foil) | Cologne 2016"},"1399":{"market_hash_name":"Sticker | tarik (Gold) | Cologne 2016"},"14":{"market_hash_name":"Sticker | Aces High"},"140":{"market_hash_name":"Sticker | Epsilon eSports | Cologne 2014"},"1400":{"market_hash_name":"Sticker | daps | Cologne 2016"},"1401":{"market_hash_name":"Sticker | daps (Foil) | Cologne 2016"},"1402":{"market_hash_name":"Sticker | daps (Gold) | Cologne 2016"},"1403":{"market_hash_name":"Sticker | mixwell | Cologne 2016"},"1404":{"market_hash_name":"Sticker | mixwell (Foil) | Cologne 2016"},"1405":{"market_hash_name":"Sticker | mixwell (Gold) | Cologne 2016"},"1406":{"market_hash_name":"Sticker | NAF | Cologne 2016"},"1407":{"market_hash_name":"Sticker | NAF (Foil) | Cologne 2016"},"1408":{"market_hash_name":"Sticker | NAF (Gold) | Cologne 2016"},"1409":{"market_hash_name":"Sticker | RUSH | Cologne 2016"},"141":{"market_hash_name":"Sticker | Epsilon eSports (Holo) | Cologne 2014"},"1410":{"market_hash_name":"Sticker | RUSH (Foil) | Cologne 2016"},"1411":{"market_hash_name":"Sticker | RUSH (Gold) | Cologne 2016"},"1412":{"market_hash_name":"Sticker | stanislaw | Cologne 2016"},"1413":{"market_hash_name":"Sticker | stanislaw (Foil) | Cologne 2016"},"1414":{"market_hash_name":"Sticker | stanislaw (Gold) | Cologne 2016"},"1415":{"market_hash_name":"Sticker | apEX | Cologne 2016"},"1416":{"market_hash_name":"Sticker | apEX (Foil) | Cologne 2016"},"1417":{"market_hash_name":"Sticker | apEX (Gold) | Cologne 2016"},"1418":{"market_hash_name":"Sticker | Happy | Cologne 2016"},"1419":{"market_hash_name":"Sticker | Happy (Foil) | Cologne 2016"},"142":{"market_hash_name":"Sticker | iBUYPOWER | Cologne 2014"},"1420":{"market_hash_name":"Sticker | Happy (Gold) | Cologne 2016"},"1421":{"market_hash_name":"Sticker | DEVIL | Cologne 2016"},"1422":{"market_hash_name":"Sticker | DEVIL (Foil) | Cologne 2016"},"1423":{"market_hash_name":"Sticker | DEVIL (Gold) | Cologne 2016"},"1424":{"market_hash_name":"Sticker | kennyS | Cologne 2016"},"1425":{"market_hash_name":"Sticker | kennyS (Foil) | Cologne 2016"},"1426":{"market_hash_name":"Sticker | kennyS (Gold) | Cologne 2016"},"1427":{"market_hash_name":"Sticker | NBK- | Cologne 2016"},"1428":{"market_hash_name":"Sticker | NBK- (Foil) | Cologne 2016"},"1429":{"market_hash_name":"Sticker | NBK- (Gold) | Cologne 2016"},"143":{"market_hash_name":"Sticker | iBUYPOWER (Holo) | Cologne 2014"},"1430":{"market_hash_name":"Sticker | B1ad3 | Cologne 2016"},"1431":{"market_hash_name":"Sticker | B1ad3 (Foil) | Cologne 2016"},"1432":{"market_hash_name":"Sticker | B1ad3 (Gold) | Cologne 2016"},"1433":{"market_hash_name":"Sticker | wayLander | Cologne 2016"},"1434":{"market_hash_name":"Sticker | wayLander (Foil) | Cologne 2016"},"1435":{"market_hash_name":"Sticker | wayLander (Gold) | Cologne 2016"},"1436":{"market_hash_name":"Sticker | Shara | Cologne 2016"},"1437":{"market_hash_name":"Sticker | Shara (Foil) | Cologne 2016"},"1438":{"market_hash_name":"Sticker | Shara (Gold) | Cologne 2016"},"1439":{"market_hash_name":"Sticker | markeloff | Cologne 2016"},"144":{"market_hash_name":"Sticker | London Conspiracy | Cologne 2014"},"1440":{"market_hash_name":"Sticker | markeloff (Foil) | Cologne 2016"},"1441":{"market_hash_name":"Sticker | markeloff (Gold) | Cologne 2016"},"1442":{"market_hash_name":"Sticker | WorldEdit | Cologne 2016"},"1443":{"market_hash_name":"Sticker | WorldEdit (Foil) | Cologne 2016"},"1444":{"market_hash_name":"Sticker | WorldEdit (Gold) | Cologne 2016"},"1445":{"market_hash_name":"Sticker | flusha | Cologne 2016"},"1446":{"market_hash_name":"Sticker | flusha (Foil) | Cologne 2016"},"1447":{"market_hash_name":"Sticker | flusha (Gold) | Cologne 2016"},"1448":{"market_hash_name":"Sticker | JW | Cologne 2016"},"1449":{"market_hash_name":"Sticker | JW (Foil) | Cologne 2016"},"145":{"market_hash_name":"Sticker | London Conspiracy (Holo) | Cologne 2014"},"1450":{"market_hash_name":"Sticker | JW (Gold) | Cologne 2016"},"1451":{"market_hash_name":"Sticker | KRIMZ | Cologne 2016"},"1452":{"market_hash_name":"Sticker | KRIMZ (Foil) | Cologne 2016"},"1453":{"market_hash_name":"Sticker | KRIMZ (Gold) | Cologne 2016"},"1454":{"market_hash_name":"Sticker | olofmeister | Cologne 2016"},"1455":{"market_hash_name":"Sticker | olofmeister (Foil) | Cologne 2016"},"1456":{"market_hash_name":"Sticker | olofmeister (Gold) | Cologne 2016"},"1457":{"market_hash_name":"Sticker | dennis | Cologne 2016"},"1458":{"market_hash_name":"Sticker | dennis (Foil) | Cologne 2016"},"1459":{"market_hash_name":"Sticker | dennis (Gold) | Cologne 2016"},"146":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2014"},"1460":{"market_hash_name":"Sticker | aizy | Cologne 2016"},"1461":{"market_hash_name":"Sticker | aizy (Foil) | Cologne 2016"},"1462":{"market_hash_name":"Sticker | aizy (Gold) | Cologne 2016"},"1463":{"market_hash_name":"Sticker | fox | Cologne 2016"},"1464":{"market_hash_name":"Sticker | fox (Foil) | Cologne 2016"},"1465":{"market_hash_name":"Sticker | fox (Gold) | Cologne 2016"},"1466":{"market_hash_name":"Sticker | kioShiMa | Cologne 2016"},"1467":{"market_hash_name":"Sticker | kioShiMa (Foil) | Cologne 2016"},"1468":{"market_hash_name":"Sticker | kioShiMa (Gold) | Cologne 2016"},"1469":{"market_hash_name":"Sticker | rain | Cologne 2016"},"147":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Cologne 2014"},"1470":{"market_hash_name":"Sticker | rain (Foil) | Cologne 2016"},"1471":{"market_hash_name":"Sticker | rain (Gold) | Cologne 2016"},"1472":{"market_hash_name":"Sticker | jkaem | Cologne 2016"},"1473":{"market_hash_name":"Sticker | jkaem (Foil) | Cologne 2016"},"1474":{"market_hash_name":"Sticker | jkaem (Gold) | Cologne 2016"},"1475":{"market_hash_name":"Sticker | coldzera | Cologne 2016"},"1476":{"market_hash_name":"Sticker | coldzera (Foil) | Cologne 2016"},"1477":{"market_hash_name":"Sticker | coldzera (Gold) | Cologne 2016"},"1478":{"market_hash_name":"Sticker | FalleN | Cologne 2016"},"1479":{"market_hash_name":"Sticker | FalleN (Foil) | Cologne 2016"},"148":{"market_hash_name":"Sticker | Titan | Cologne 2014"},"1480":{"market_hash_name":"Sticker | FalleN (Gold) | Cologne 2016"},"1481":{"market_hash_name":"Sticker | fer | Cologne 2016"},"1482":{"market_hash_name":"Sticker | fer (Foil) | Cologne 2016"},"1483":{"market_hash_name":"Sticker | fer (Gold) | Cologne 2016"},"1484":{"market_hash_name":"Sticker | fnx | Cologne 2016"},"1485":{"market_hash_name":"Sticker | fnx (Foil) | Cologne 2016"},"1486":{"market_hash_name":"Sticker | fnx (Gold) | Cologne 2016"},"1487":{"market_hash_name":"Sticker | TACO | Cologne 2016"},"1488":{"market_hash_name":"Sticker | TACO (Foil) | Cologne 2016"},"1489":{"market_hash_name":"Sticker | TACO (Gold) | Cologne 2016"},"149":{"market_hash_name":"Sticker | Titan (Holo) | Cologne 2014"},"1490":{"market_hash_name":"Sticker | chrisJ | Cologne 2016"},"1491":{"market_hash_name":"Sticker | chrisJ (Foil) | Cologne 2016"},"1492":{"market_hash_name":"Sticker | chrisJ (Gold) | Cologne 2016"},"1493":{"market_hash_name":"Sticker | denis | Cologne 2016"},"1494":{"market_hash_name":"Sticker | denis (Foil) | Cologne 2016"},"1495":{"market_hash_name":"Sticker | denis (Gold) | Cologne 2016"},"1496":{"market_hash_name":"Sticker | Spiidi | Cologne 2016"},"1497":{"market_hash_name":"Sticker | Spiidi (Foil) | Cologne 2016"},"1498":{"market_hash_name":"Sticker | Spiidi (Gold) | Cologne 2016"},"1499":{"market_hash_name":"Sticker | nex | Cologne 2016"},"15":{"market_hash_name":"Sticker | Aces High (Holo)"},"150":{"market_hash_name":"Sticker | Vox Eminor | Cologne 2014"},"1500":{"market_hash_name":"Sticker | nex (Foil) | Cologne 2016"},"1501":{"market_hash_name":"Sticker | nex (Gold) | Cologne 2016"},"1502":{"market_hash_name":"Sticker | NiKo | Cologne 2016"},"1503":{"market_hash_name":"Sticker | NiKo (Foil) | Cologne 2016"},"1504":{"market_hash_name":"Sticker | NiKo (Gold) | Cologne 2016"},"1505":{"market_hash_name":"Sticker | Edward | Cologne 2016"},"1506":{"market_hash_name":"Sticker | Edward (Foil) | Cologne 2016"},"1507":{"market_hash_name":"Sticker | Edward (Gold) | Cologne 2016"},"1508":{"market_hash_name":"Sticker | flamie | Cologne 2016"},"1509":{"market_hash_name":"Sticker | flamie (Foil) | Cologne 2016"},"151":{"market_hash_name":"Sticker | Vox Eminor (Holo) | Cologne 2014"},"1510":{"market_hash_name":"Sticker | flamie (Gold) | Cologne 2016"},"1511":{"market_hash_name":"Sticker | GuardiaN | Cologne 2016"},"1512":{"market_hash_name":"Sticker | GuardiaN (Foil) | Cologne 2016"},"1513":{"market_hash_name":"Sticker | GuardiaN (Gold) | Cologne 2016"},"1514":{"market_hash_name":"Sticker | seized | Cologne 2016"},"1515":{"market_hash_name":"Sticker | seized (Foil) | Cologne 2016"},"1516":{"market_hash_name":"Sticker | seized (Gold) | Cologne 2016"},"1517":{"market_hash_name":"Sticker | Zeus | Cologne 2016"},"1518":{"market_hash_name":"Sticker | Zeus (Foil) | Cologne 2016"},"1519":{"market_hash_name":"Sticker | Zeus (Gold) | Cologne 2016"},"152":{"market_hash_name":"Sticker | MTS GameGod Wolf | Cologne 2014"},"1520":{"market_hash_name":"Sticker | pyth | Cologne 2016"},"1521":{"market_hash_name":"Sticker | pyth (Foil) | Cologne 2016"},"1522":{"market_hash_name":"Sticker | pyth (Gold) | Cologne 2016"},"1523":{"market_hash_name":"Sticker | f0rest | Cologne 2016"},"1524":{"market_hash_name":"Sticker | f0rest (Foil) | Cologne 2016"},"1525":{"market_hash_name":"Sticker | f0rest (Gold) | Cologne 2016"},"1526":{"market_hash_name":"Sticker | friberg | Cologne 2016"},"1527":{"market_hash_name":"Sticker | friberg (Foil) | Cologne 2016"},"1528":{"market_hash_name":"Sticker | friberg (Gold) | Cologne 2016"},"1529":{"market_hash_name":"Sticker | GeT_RiGhT | Cologne 2016"},"153":{"market_hash_name":"Sticker | MTS GameGod Wolf (Holo) | Cologne 2014"},"1530":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Cologne 2016"},"1531":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Cologne 2016"},"1532":{"market_hash_name":"Sticker | Xizt | Cologne 2016"},"1533":{"market_hash_name":"Sticker | Xizt (Foil) | Cologne 2016"},"1534":{"market_hash_name":"Sticker | Xizt (Gold) | Cologne 2016"},"1535":{"market_hash_name":"Sticker | cajunb | Cologne 2016"},"1536":{"market_hash_name":"Sticker | cajunb (Foil) | Cologne 2016"},"1537":{"market_hash_name":"Sticker | cajunb (Gold) | Cologne 2016"},"1538":{"market_hash_name":"Sticker | MSL | Cologne 2016"},"1539":{"market_hash_name":"Sticker | MSL (Foil) | Cologne 2016"},"154":{"market_hash_name":"Sticker | ESL One Cologne 2014 (Blue)"},"1540":{"market_hash_name":"Sticker | MSL (Gold) | Cologne 2016"},"1541":{"market_hash_name":"Sticker | TENZKI | Cologne 2016"},"1542":{"market_hash_name":"Sticker | TENZKI (Foil) | Cologne 2016"},"1543":{"market_hash_name":"Sticker | TENZKI (Gold) | Cologne 2016"},"1544":{"market_hash_name":"Sticker | RUBINO | Cologne 2016"},"1545":{"market_hash_name":"Sticker | RUBINO (Foil) | Cologne 2016"},"1546":{"market_hash_name":"Sticker | RUBINO (Gold) | Cologne 2016"},"1547":{"market_hash_name":"Sticker | k0nfig | Cologne 2016"},"1548":{"market_hash_name":"Sticker | k0nfig (Foil) | Cologne 2016"},"1549":{"market_hash_name":"Sticker | k0nfig (Gold) | Cologne 2016"},"155":{"market_hash_name":"Sticker | ESL One Cologne 2014 (Red)"},"1550":{"market_hash_name":"Sticker | jdm64 | Cologne 2016"},"1551":{"market_hash_name":"Sticker | jdm64 (Foil) | Cologne 2016"},"1552":{"market_hash_name":"Sticker | jdm64 (Gold) | Cologne 2016"},"1553":{"market_hash_name":"Sticker | EliGE | Cologne 2016"},"1554":{"market_hash_name":"Sticker | EliGE (Foil) | Cologne 2016"},"1555":{"market_hash_name":"Sticker | EliGE (Gold) | Cologne 2016"},"1556":{"market_hash_name":"Sticker | s1mple | Cologne 2016"},"1557":{"market_hash_name":"Sticker | s1mple (Foil) | Cologne 2016"},"1558":{"market_hash_name":"Sticker | s1mple (Gold) | Cologne 2016"},"1559":{"market_hash_name":"Sticker | Hiko | Cologne 2016"},"156":{"market_hash_name":"Sticker | Cloud9 (Foil) | Cologne 2014"},"1560":{"market_hash_name":"Sticker | Hiko (Foil) | Cologne 2016"},"1561":{"market_hash_name":"Sticker | Hiko (Gold) | Cologne 2016"},"1562":{"market_hash_name":"Sticker | nitr0 | Cologne 2016"},"1563":{"market_hash_name":"Sticker | nitr0 (Foil) | Cologne 2016"},"1564":{"market_hash_name":"Sticker | nitr0 (Gold) | Cologne 2016"},"1565":{"market_hash_name":"Sticker | bodyy | Cologne 2016"},"1566":{"market_hash_name":"Sticker | bodyy (Foil) | Cologne 2016"},"1567":{"market_hash_name":"Sticker | bodyy (Gold) | Cologne 2016"},"1568":{"market_hash_name":"Sticker | RpK | Cologne 2016"},"1569":{"market_hash_name":"Sticker | RpK (Foil) | Cologne 2016"},"157":{"market_hash_name":"Sticker | Fnatic (Foil) | Cologne 2014"},"1570":{"market_hash_name":"Sticker | RpK (Gold) | Cologne 2016"},"1571":{"market_hash_name":"Sticker | ScreaM | Cologne 2016"},"1572":{"market_hash_name":"Sticker | ScreaM (Foil) | Cologne 2016"},"1573":{"market_hash_name":"Sticker | ScreaM (Gold) | Cologne 2016"},"1574":{"market_hash_name":"Sticker | shox | Cologne 2016"},"1575":{"market_hash_name":"Sticker | shox (Foil) | Cologne 2016"},"1576":{"market_hash_name":"Sticker | shox (Gold) | Cologne 2016"},"1577":{"market_hash_name":"Sticker | SmithZz | Cologne 2016"},"1578":{"market_hash_name":"Sticker | SmithZz (Foil) | Cologne 2016"},"1579":{"market_hash_name":"Sticker | SmithZz (Gold) | Cologne 2016"},"158":{"market_hash_name":"Sticker | HellRaisers (Foil) | Cologne 2014"},"1580":{"market_hash_name":"Sticker | gla1ve | Cologne 2016"},"1581":{"market_hash_name":"Sticker | gla1ve (Foil) | Cologne 2016"},"1582":{"market_hash_name":"Sticker | gla1ve (Gold) | Cologne 2016"},"1583":{"market_hash_name":"Sticker | device | Cologne 2016"},"1584":{"market_hash_name":"Sticker | device (Foil) | Cologne 2016"},"1585":{"market_hash_name":"Sticker | device (Gold) | Cologne 2016"},"1586":{"market_hash_name":"Sticker | dupreeh | Cologne 2016"},"1587":{"market_hash_name":"Sticker | dupreeh (Foil) | Cologne 2016"},"1588":{"market_hash_name":"Sticker | dupreeh (Gold) | Cologne 2016"},"1589":{"market_hash_name":"Sticker | karrigan | Cologne 2016"},"159":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cologne 2014"},"1590":{"market_hash_name":"Sticker | karrigan (Foil) | Cologne 2016"},"1591":{"market_hash_name":"Sticker | karrigan (Gold) | Cologne 2016"},"1592":{"market_hash_name":"Sticker | Xyp9x | Cologne 2016"},"1593":{"market_hash_name":"Sticker | Xyp9x (Foil) | Cologne 2016"},"1594":{"market_hash_name":"Sticker | Xyp9x (Gold) | Cologne 2016"},"1595":{"market_hash_name":"Sticker | spaze | Cologne 2016"},"1596":{"market_hash_name":"Sticker | spaze (Foil) | Cologne 2016"},"1597":{"market_hash_name":"Sticker | spaze (Gold) | Cologne 2016"},"1598":{"market_hash_name":"Sticker | Dosia | Cologne 2016"},"1599":{"market_hash_name":"Sticker | Dosia (Foil) | Cologne 2016"},"16":{"market_hash_name":"Sticker | I Conquered"},"160":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Cologne 2014"},"1600":{"market_hash_name":"Sticker | Dosia (Gold) | Cologne 2016"},"1601":{"market_hash_name":"Sticker | hooch | Cologne 2016"},"1602":{"market_hash_name":"Sticker | hooch (Foil) | Cologne 2016"},"1603":{"market_hash_name":"Sticker | hooch (Gold) | Cologne 2016"},"1604":{"market_hash_name":"Sticker | mou | Cologne 2016"},"1605":{"market_hash_name":"Sticker | mou (Foil) | Cologne 2016"},"1606":{"market_hash_name":"Sticker | mou (Gold) | Cologne 2016"},"1607":{"market_hash_name":"Sticker | AdreN | Cologne 2016"},"1608":{"market_hash_name":"Sticker | AdreN (Foil) | Cologne 2016"},"1609":{"market_hash_name":"Sticker | AdreN (Gold) | Cologne 2016"},"161":{"market_hash_name":"Sticker | Team LDLC.com (Foil) | Cologne 2014"},"1610":{"market_hash_name":"Sticker | byali | Cologne 2016"},"1611":{"market_hash_name":"Sticker | byali (Foil) | Cologne 2016"},"1612":{"market_hash_name":"Sticker | byali (Gold) | Cologne 2016"},"1613":{"market_hash_name":"Sticker | NEO | Cologne 2016"},"1614":{"market_hash_name":"Sticker | NEO (Foil) | Cologne 2016"},"1615":{"market_hash_name":"Sticker | NEO (Gold) | Cologne 2016"},"1616":{"market_hash_name":"Sticker | pashaBiceps | Cologne 2016"},"1617":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Cologne 2016"},"1618":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Cologne 2016"},"1619":{"market_hash_name":"Sticker | Snax | Cologne 2016"},"162":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cologne 2014"},"1620":{"market_hash_name":"Sticker | Snax (Foil) | Cologne 2016"},"1621":{"market_hash_name":"Sticker | Snax (Gold) | Cologne 2016"},"1622":{"market_hash_name":"Sticker | TaZ | Cologne 2016"},"1623":{"market_hash_name":"Sticker | TaZ (Foil) | Cologne 2016"},"1624":{"market_hash_name":"Sticker | TaZ (Gold) | Cologne 2016"},"1625":{"market_hash_name":"Sticker | Boris"},"1626":{"market_hash_name":"Sticker | Max"},"1627":{"market_hash_name":"Sticker | Stan"},"1628":{"market_hash_name":"Sticker | Jack"},"1629":{"market_hash_name":"Sticker | Perry"},"163":{"market_hash_name":"Sticker | Copenhagen Wolves (Foil) | Cologne 2014"},"1630":{"market_hash_name":"Sticker | Viggo"},"1631":{"market_hash_name":"Sticker | Joan"},"1632":{"market_hash_name":"Sticker | Boris (Holo)"},"1633":{"market_hash_name":"Sticker | Max (Holo)"},"1634":{"market_hash_name":"Sticker | Stan (Holo)"},"1635":{"market_hash_name":"Sticker | Jack (Holo)"},"1636":{"market_hash_name":"Sticker | Perry (Holo)"},"1637":{"market_hash_name":"Sticker | Viggo (Holo)"},"1638":{"market_hash_name":"Sticker | Joan (Holo)"},"1639":{"market_hash_name":"Sticker | Basilisk"},"164":{"market_hash_name":"Sticker | dAT team (Foil) | Cologne 2014"},"1640":{"market_hash_name":"Sticker | Dragon"},"1641":{"market_hash_name":"Sticker | Hippocamp"},"1642":{"market_hash_name":"Sticker | Manticore"},"1643":{"market_hash_name":"Sticker | Pegasus"},"1644":{"market_hash_name":"Sticker | Phoenix Reborn"},"1645":{"market_hash_name":"Sticker | Sphinx"},"1646":{"market_hash_name":"Sticker | Hippocamp (Holo)"},"1647":{"market_hash_name":"Sticker | Manticore (Holo)"},"1648":{"market_hash_name":"Sticker | Pegasus (Holo)"},"1649":{"market_hash_name":"Sticker | Sphinx (Holo)"},"165":{"market_hash_name":"Sticker | Epsilon eSports (Foil) | Cologne 2014"},"1650":{"market_hash_name":"Sticker | Basilisk (Foil)"},"1651":{"market_hash_name":"Sticker | Dragon (Foil)"},"1652":{"market_hash_name":"Sticker | Phoenix Reborn (Foil)"},"166":{"market_hash_name":"Sticker | iBUYPOWER (Foil) | Cologne 2014"},"167":{"market_hash_name":"Sticker | London Conspiracy (Foil) | Cologne 2014"},"168":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2014"},"1689":{"market_hash_name":"Sticker | Ancient (Gold)"},"169":{"market_hash_name":"Sticker | Titan (Foil) | Cologne 2014"},"1690":{"market_hash_name":"Sticker | Dust II (Gold)"},"1691":{"market_hash_name":"Sticker | Inferno (Gold)"},"1692":{"market_hash_name":"Sticker | Mirage (Gold)"},"1693":{"market_hash_name":"Sticker | Nuke (Gold)"},"1694":{"market_hash_name":"Sticker | Overpass (Gold)"},"1695":{"market_hash_name":"Sticker | Vertigo (Gold)"},"17":{"market_hash_name":"Sticker | Seek \u0026 Destroy"},"170":{"market_hash_name":"Sticker | Vox Eminor (Foil) | Cologne 2014"},"171":{"market_hash_name":"Sticker | MTS GameGod Wolf (Foil) | Cologne 2014"},"172":{"market_hash_name":"Sticker | ESL One Cologne 2014 (Gold)"},"173":{"market_hash_name":"Sticker | Bossy Burger"},"1738":{"market_hash_name":"Sticker | Astralis | Atlanta 2017"},"1739":{"market_hash_name":"Sticker | Astralis (Holo) | Atlanta 2017"},"174":{"market_hash_name":"Sticker | Cat Call"},"1740":{"market_hash_name":"Sticker | Astralis (Foil) | Atlanta 2017"},"1741":{"market_hash_name":"Sticker | Astralis (Gold) | Atlanta 2017"},"1742":{"market_hash_name":"Sticker | Team EnVyUs | Atlanta 2017"},"1743":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Atlanta 2017"},"1744":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Atlanta 2017"},"1745":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Atlanta 2017"},"1746":{"market_hash_name":"Sticker | FaZe Clan | Atlanta 2017"},"1747":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Atlanta 2017"},"1748":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Atlanta 2017"},"1749":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Atlanta 2017"},"175":{"market_hash_name":"Sticker | Chicken Strike"},"1750":{"market_hash_name":"Sticker | Flipsid3 Tactics | Atlanta 2017"},"1751":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Atlanta 2017"},"1752":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Atlanta 2017"},"1753":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Atlanta 2017"},"1754":{"market_hash_name":"Sticker | Fnatic | Atlanta 2017"},"1755":{"market_hash_name":"Sticker | Fnatic (Holo) | Atlanta 2017"},"1756":{"market_hash_name":"Sticker | Fnatic (Foil) | Atlanta 2017"},"1757":{"market_hash_name":"Sticker | Fnatic (Gold) | Atlanta 2017"},"1758":{"market_hash_name":"Sticker | G2 Esports | Atlanta 2017"},"1759":{"market_hash_name":"Sticker | G2 Esports (Holo) | Atlanta 2017"},"176":{"market_hash_name":"Sticker | CT in Banana"},"1760":{"market_hash_name":"Sticker | G2 Esports (Foil) | Atlanta 2017"},"1761":{"market_hash_name":"Sticker | G2 Esports (Gold) | Atlanta 2017"},"1762":{"market_hash_name":"Sticker | Gambit Gaming | Atlanta 2017"},"1763":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | Atlanta 2017"},"1764":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | Atlanta 2017"},"1765":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | Atlanta 2017"},"1766":{"market_hash_name":"Sticker | GODSENT | Atlanta 2017"},"1767":{"market_hash_name":"Sticker | GODSENT (Holo) | Atlanta 2017"},"1768":{"market_hash_name":"Sticker | GODSENT (Foil) | Atlanta 2017"},"1769":{"market_hash_name":"Sticker | GODSENT (Gold) | Atlanta 2017"},"177":{"market_hash_name":"Sticker | Don't Worry, I'm Pro"},"1770":{"market_hash_name":"Sticker | HellRaisers | Atlanta 2017"},"1771":{"market_hash_name":"Sticker | HellRaisers (Holo) | Atlanta 2017"},"1772":{"market_hash_name":"Sticker | HellRaisers (Foil) | Atlanta 2017"},"1773":{"market_hash_name":"Sticker | HellRaisers (Gold) | Atlanta 2017"},"1774":{"market_hash_name":"Sticker | mousesports | Atlanta 2017"},"1775":{"market_hash_name":"Sticker | mousesports (Holo) | Atlanta 2017"},"1776":{"market_hash_name":"Sticker | mousesports (Foil) | Atlanta 2017"},"1777":{"market_hash_name":"Sticker | mousesports (Gold) | Atlanta 2017"},"1778":{"market_hash_name":"Sticker | Natus Vincere | Atlanta 2017"},"1779":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Atlanta 2017"},"178":{"market_hash_name":"Sticker | Fight like a Girl"},"1780":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Atlanta 2017"},"1781":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Atlanta 2017"},"1782":{"market_hash_name":"Sticker | North | Atlanta 2017"},"1783":{"market_hash_name":"Sticker | North (Holo) | Atlanta 2017"},"1784":{"market_hash_name":"Sticker | North (Foil) | Atlanta 2017"},"1785":{"market_hash_name":"Sticker | North (Gold) | Atlanta 2017"},"1786":{"market_hash_name":"Sticker | OpTic Gaming | Atlanta 2017"},"1787":{"market_hash_name":"Sticker | OpTic Gaming (Holo) | Atlanta 2017"},"1788":{"market_hash_name":"Sticker | OpTic Gaming (Foil) | Atlanta 2017"},"1789":{"market_hash_name":"Sticker | OpTic Gaming (Gold) | Atlanta 2017"},"179":{"market_hash_name":"Sticker | Flashbang"},"1790":{"market_hash_name":"Sticker | SK Gaming | Atlanta 2017"},"1791":{"market_hash_name":"Sticker | SK Gaming (Holo) | Atlanta 2017"},"1792":{"market_hash_name":"Sticker | SK Gaming (Foil) | Atlanta 2017"},"1793":{"market_hash_name":"Sticker | SK Gaming (Gold) | Atlanta 2017"},"1794":{"market_hash_name":"Sticker | Team Liquid | Atlanta 2017"},"1795":{"market_hash_name":"Sticker | Team Liquid (Holo) | Atlanta 2017"},"1796":{"market_hash_name":"Sticker | Team Liquid (Foil) | Atlanta 2017"},"1797":{"market_hash_name":"Sticker | Team Liquid (Gold) | Atlanta 2017"},"1798":{"market_hash_name":"Sticker | Virtus.Pro | Atlanta 2017"},"1799":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Atlanta 2017"},"18":{"market_hash_name":"Sticker | Black Dog"},"180":{"market_hash_name":"Sticker | Kawaii Killer CT"},"1800":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Atlanta 2017"},"1801":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Atlanta 2017"},"1802":{"market_hash_name":"Sticker | ELEAGUE | Atlanta 2017"},"1803":{"market_hash_name":"Sticker | ELEAGUE (Holo) | Atlanta 2017"},"1804":{"market_hash_name":"Sticker | ELEAGUE (Foil) | Atlanta 2017"},"1805":{"market_hash_name":"Sticker | ELEAGUE (Gold) | Atlanta 2017"},"181":{"market_hash_name":"Sticker | Nelu the Bear"},"182":{"market_hash_name":"Sticker | One Shot One Kill"},"1823":{"market_hash_name":"Sticker | STYKO | Atlanta 2017"},"1824":{"market_hash_name":"Sticker | STYKO (Foil) | Atlanta 2017"},"1825":{"market_hash_name":"Sticker | STYKO (Gold) | Atlanta 2017"},"1826":{"market_hash_name":"Sticker | Zero | Atlanta 2017"},"1827":{"market_hash_name":"Sticker | Zero (Foil) | Atlanta 2017"},"1828":{"market_hash_name":"Sticker | Zero (Gold) | Atlanta 2017"},"1829":{"market_hash_name":"Sticker | DeadFox | Atlanta 2017"},"183":{"market_hash_name":"Sticker | Shooting Star Return"},"1830":{"market_hash_name":"Sticker | DeadFox (Foil) | Atlanta 2017"},"1831":{"market_hash_name":"Sticker | DeadFox (Gold) | Atlanta 2017"},"1832":{"market_hash_name":"Sticker | bondik | Atlanta 2017"},"1833":{"market_hash_name":"Sticker | bondik (Foil) | Atlanta 2017"},"1834":{"market_hash_name":"Sticker | bondik (Gold) | Atlanta 2017"},"1835":{"market_hash_name":"Sticker | ANGE1 | Atlanta 2017"},"1836":{"market_hash_name":"Sticker | ANGE1 (Foil) | Atlanta 2017"},"1837":{"market_hash_name":"Sticker | ANGE1 (Gold) | Atlanta 2017"},"1838":{"market_hash_name":"Sticker | tarik | Atlanta 2017"},"1839":{"market_hash_name":"Sticker | tarik (Foil) | Atlanta 2017"},"184":{"market_hash_name":"Sticker | T On Cat"},"1840":{"market_hash_name":"Sticker | tarik (Gold) | Atlanta 2017"},"1841":{"market_hash_name":"Sticker | mixwell | Atlanta 2017"},"1842":{"market_hash_name":"Sticker | mixwell (Foil) | Atlanta 2017"},"1843":{"market_hash_name":"Sticker | mixwell (Gold) | Atlanta 2017"},"1844":{"market_hash_name":"Sticker | NAF | Atlanta 2017"},"1845":{"market_hash_name":"Sticker | NAF (Foil) | Atlanta 2017"},"1846":{"market_hash_name":"Sticker | NAF (Gold) | Atlanta 2017"},"1847":{"market_hash_name":"Sticker | RUSH | Atlanta 2017"},"1848":{"market_hash_name":"Sticker | RUSH (Foil) | Atlanta 2017"},"1849":{"market_hash_name":"Sticker | RUSH (Gold) | Atlanta 2017"},"185":{"market_hash_name":"Sticker | War Penguin"},"1850":{"market_hash_name":"Sticker | stanislaw | Atlanta 2017"},"1851":{"market_hash_name":"Sticker | stanislaw (Foil) | Atlanta 2017"},"1852":{"market_hash_name":"Sticker | stanislaw (Gold) | Atlanta 2017"},"1853":{"market_hash_name":"Sticker | apEX | Atlanta 2017"},"1854":{"market_hash_name":"Sticker | apEX (Foil) | Atlanta 2017"},"1855":{"market_hash_name":"Sticker | apEX (Gold) | Atlanta 2017"},"1856":{"market_hash_name":"Sticker | Happy | Atlanta 2017"},"1857":{"market_hash_name":"Sticker | Happy (Foil) | Atlanta 2017"},"1858":{"market_hash_name":"Sticker | Happy (Gold) | Atlanta 2017"},"1859":{"market_hash_name":"Sticker | SIXER | Atlanta 2017"},"186":{"market_hash_name":"Sticker | Windy Walking Club"},"1860":{"market_hash_name":"Sticker | SIXER (Foil) | Atlanta 2017"},"1861":{"market_hash_name":"Sticker | SIXER (Gold) | Atlanta 2017"},"1862":{"market_hash_name":"Sticker | kennyS | Atlanta 2017"},"1863":{"market_hash_name":"Sticker | kennyS (Foil) | Atlanta 2017"},"1864":{"market_hash_name":"Sticker | kennyS (Gold) | Atlanta 2017"},"1865":{"market_hash_name":"Sticker | NBK- | Atlanta 2017"},"1866":{"market_hash_name":"Sticker | NBK- (Foil) | Atlanta 2017"},"1867":{"market_hash_name":"Sticker | NBK- (Gold) | Atlanta 2017"},"1868":{"market_hash_name":"Sticker | B1ad3 | Atlanta 2017"},"1869":{"market_hash_name":"Sticker | B1ad3 (Foil) | Atlanta 2017"},"187":{"market_hash_name":"Sticker | Blitzkrieg"},"1870":{"market_hash_name":"Sticker | B1ad3 (Gold) | Atlanta 2017"},"1871":{"market_hash_name":"Sticker | wayLander | Atlanta 2017"},"1872":{"market_hash_name":"Sticker | wayLander (Foil) | Atlanta 2017"},"1873":{"market_hash_name":"Sticker | wayLander (Gold) | Atlanta 2017"},"1874":{"market_hash_name":"Sticker | electronic | Atlanta 2017"},"1875":{"market_hash_name":"Sticker | electronic (Foil) | Atlanta 2017"},"1876":{"market_hash_name":"Sticker | electronic (Gold) | Atlanta 2017"},"1877":{"market_hash_name":"Sticker | markeloff | Atlanta 2017"},"1878":{"market_hash_name":"Sticker | markeloff (Foil) | Atlanta 2017"},"1879":{"market_hash_name":"Sticker | markeloff (Gold) | Atlanta 2017"},"188":{"market_hash_name":"Sticker | Pigeon Master"},"1880":{"market_hash_name":"Sticker | WorldEdit | Atlanta 2017"},"1881":{"market_hash_name":"Sticker | WorldEdit (Foil) | Atlanta 2017"},"1882":{"market_hash_name":"Sticker | WorldEdit (Gold) | Atlanta 2017"},"1883":{"market_hash_name":"Sticker | twist | Atlanta 2017"},"1884":{"market_hash_name":"Sticker | twist (Foil) | Atlanta 2017"},"1885":{"market_hash_name":"Sticker | twist (Gold) | Atlanta 2017"},"1886":{"market_hash_name":"Sticker | disco doplan | Atlanta 2017"},"1887":{"market_hash_name":"Sticker | disco doplan (Foil) | Atlanta 2017"},"1888":{"market_hash_name":"Sticker | disco doplan (Gold) | Atlanta 2017"},"1889":{"market_hash_name":"Sticker | KRIMZ | Atlanta 2017"},"189":{"market_hash_name":"Sticker | Terrorized"},"1890":{"market_hash_name":"Sticker | KRIMZ (Foil) | Atlanta 2017"},"1891":{"market_hash_name":"Sticker | KRIMZ (Gold) | Atlanta 2017"},"1892":{"market_hash_name":"Sticker | olofmeister | Atlanta 2017"},"1893":{"market_hash_name":"Sticker | olofmeister (Foil) | Atlanta 2017"},"1894":{"market_hash_name":"Sticker | olofmeister (Gold) | Atlanta 2017"},"1895":{"market_hash_name":"Sticker | dennis | Atlanta 2017"},"1896":{"market_hash_name":"Sticker | dennis (Foil) | Atlanta 2017"},"1897":{"market_hash_name":"Sticker | dennis (Gold) | Atlanta 2017"},"1898":{"market_hash_name":"Sticker | aizy | Atlanta 2017"},"1899":{"market_hash_name":"Sticker | aizy (Foil) | Atlanta 2017"},"19":{"market_hash_name":"Sticker | Fearsome"},"190":{"market_hash_name":"Sticker | Till Death Do Us Part"},"1900":{"market_hash_name":"Sticker | aizy (Gold) | Atlanta 2017"},"1901":{"market_hash_name":"Sticker | allu | Atlanta 2017"},"1902":{"market_hash_name":"Sticker | allu (Foil) | Atlanta 2017"},"1903":{"market_hash_name":"Sticker | allu (Gold) | Atlanta 2017"},"1904":{"market_hash_name":"Sticker | kioShiMa | Atlanta 2017"},"1905":{"market_hash_name":"Sticker | kioShiMa (Foil) | Atlanta 2017"},"1906":{"market_hash_name":"Sticker | kioShiMa (Gold) | Atlanta 2017"},"1907":{"market_hash_name":"Sticker | rain | Atlanta 2017"},"1908":{"market_hash_name":"Sticker | rain (Foil) | Atlanta 2017"},"1909":{"market_hash_name":"Sticker | rain (Gold) | Atlanta 2017"},"191":{"market_hash_name":"Sticker | Stay Frosty"},"1910":{"market_hash_name":"Sticker | karrigan | Atlanta 2017"},"1911":{"market_hash_name":"Sticker | karrigan (Foil) | Atlanta 2017"},"1912":{"market_hash_name":"Sticker | karrigan (Gold) | Atlanta 2017"},"1913":{"market_hash_name":"Sticker | coldzera | Atlanta 2017"},"1914":{"market_hash_name":"Sticker | coldzera (Foil) | Atlanta 2017"},"1915":{"market_hash_name":"Sticker | coldzera (Gold) | Atlanta 2017"},"1916":{"market_hash_name":"Sticker | FalleN | Atlanta 2017"},"1917":{"market_hash_name":"Sticker | FalleN (Foil) | Atlanta 2017"},"1918":{"market_hash_name":"Sticker | FalleN (Gold) | Atlanta 2017"},"1919":{"market_hash_name":"Sticker | fer | Atlanta 2017"},"192":{"market_hash_name":"Sticker | Doomed"},"1920":{"market_hash_name":"Sticker | fer (Foil) | Atlanta 2017"},"1921":{"market_hash_name":"Sticker | fer (Gold) | Atlanta 2017"},"1922":{"market_hash_name":"Sticker | fox | Atlanta 2017"},"1923":{"market_hash_name":"Sticker | fox (Foil) | Atlanta 2017"},"1924":{"market_hash_name":"Sticker | fox (Gold) | Atlanta 2017"},"1925":{"market_hash_name":"Sticker | TACO | Atlanta 2017"},"1926":{"market_hash_name":"Sticker | TACO (Foil) | Atlanta 2017"},"1927":{"market_hash_name":"Sticker | TACO (Gold) | Atlanta 2017"},"1928":{"market_hash_name":"Sticker | chrisJ | Atlanta 2017"},"1929":{"market_hash_name":"Sticker | chrisJ (Foil) | Atlanta 2017"},"193":{"market_hash_name":"Sticker | Queen Of Pain"},"1930":{"market_hash_name":"Sticker | chrisJ (Gold) | Atlanta 2017"},"1931":{"market_hash_name":"Sticker | denis | Atlanta 2017"},"1932":{"market_hash_name":"Sticker | denis (Foil) | Atlanta 2017"},"1933":{"market_hash_name":"Sticker | denis (Gold) | Atlanta 2017"},"1934":{"market_hash_name":"Sticker | Spiidi | Atlanta 2017"},"1935":{"market_hash_name":"Sticker | Spiidi (Foil) | Atlanta 2017"},"1936":{"market_hash_name":"Sticker | Spiidi (Gold) | Atlanta 2017"},"1937":{"market_hash_name":"Sticker | loWel | Atlanta 2017"},"1938":{"market_hash_name":"Sticker | loWel (Foil) | Atlanta 2017"},"1939":{"market_hash_name":"Sticker | loWel (Gold) | Atlanta 2017"},"194":{"market_hash_name":"Sticker | Trick Or Threat"},"1940":{"market_hash_name":"Sticker | NiKo | Atlanta 2017"},"1941":{"market_hash_name":"Sticker | NiKo (Foil) | Atlanta 2017"},"1942":{"market_hash_name":"Sticker | NiKo (Gold) | Atlanta 2017"},"1943":{"market_hash_name":"Sticker | Edward | Atlanta 2017"},"1944":{"market_hash_name":"Sticker | Edward (Foil) | Atlanta 2017"},"1945":{"market_hash_name":"Sticker | Edward (Gold) | Atlanta 2017"},"1946":{"market_hash_name":"Sticker | flamie | Atlanta 2017"},"1947":{"market_hash_name":"Sticker | flamie (Foil) | Atlanta 2017"},"1948":{"market_hash_name":"Sticker | flamie (Gold) | Atlanta 2017"},"1949":{"market_hash_name":"Sticker | GuardiaN | Atlanta 2017"},"195":{"market_hash_name":"Sticker | Trick Or Treat"},"1950":{"market_hash_name":"Sticker | GuardiaN (Foil) | Atlanta 2017"},"1951":{"market_hash_name":"Sticker | GuardiaN (Gold) | Atlanta 2017"},"1952":{"market_hash_name":"Sticker | seized | Atlanta 2017"},"1953":{"market_hash_name":"Sticker | seized (Foil) | Atlanta 2017"},"1954":{"market_hash_name":"Sticker | seized (Gold) | Atlanta 2017"},"1955":{"market_hash_name":"Sticker | s1mple | Atlanta 2017"},"1956":{"market_hash_name":"Sticker | s1mple (Foil) | Atlanta 2017"},"1957":{"market_hash_name":"Sticker | s1mple (Gold) | Atlanta 2017"},"1958":{"market_hash_name":"Sticker | znajder | Atlanta 2017"},"1959":{"market_hash_name":"Sticker | znajder (Foil) | Atlanta 2017"},"196":{"market_hash_name":"Sticker | Witch"},"1960":{"market_hash_name":"Sticker | znajder (Gold) | Atlanta 2017"},"1961":{"market_hash_name":"Sticker | Lekr0 | Atlanta 2017"},"1962":{"market_hash_name":"Sticker | Lekr0 (Foil) | Atlanta 2017"},"1963":{"market_hash_name":"Sticker | Lekr0 (Gold) | Atlanta 2017"},"1964":{"market_hash_name":"Sticker | pronax | Atlanta 2017"},"1965":{"market_hash_name":"Sticker | pronax (Foil) | Atlanta 2017"},"1966":{"market_hash_name":"Sticker | pronax (Gold) | Atlanta 2017"},"1967":{"market_hash_name":"Sticker | JW | Atlanta 2017"},"1968":{"market_hash_name":"Sticker | JW (Foil) | Atlanta 2017"},"1969":{"market_hash_name":"Sticker | JW (Gold) | Atlanta 2017"},"197":{"market_hash_name":"Sticker | Zombie Lover"},"1970":{"market_hash_name":"Sticker | flusha | Atlanta 2017"},"1971":{"market_hash_name":"Sticker | flusha (Foil) | Atlanta 2017"},"1972":{"market_hash_name":"Sticker | flusha (Gold) | Atlanta 2017"},"1973":{"market_hash_name":"Sticker | cajunb | Atlanta 2017"},"1974":{"market_hash_name":"Sticker | cajunb (Foil) | Atlanta 2017"},"1975":{"market_hash_name":"Sticker | cajunb (Gold) | Atlanta 2017"},"1976":{"market_hash_name":"Sticker | MSL | Atlanta 2017"},"1977":{"market_hash_name":"Sticker | MSL (Foil) | Atlanta 2017"},"1978":{"market_hash_name":"Sticker | MSL (Gold) | Atlanta 2017"},"1979":{"market_hash_name":"Sticker | Magisk | Atlanta 2017"},"198":{"market_hash_name":"Sticker | Fnatic | DreamHack 2014"},"1980":{"market_hash_name":"Sticker | Magisk (Foil) | Atlanta 2017"},"1981":{"market_hash_name":"Sticker | Magisk (Gold) | Atlanta 2017"},"1982":{"market_hash_name":"Sticker | RUBINO | Atlanta 2017"},"1983":{"market_hash_name":"Sticker | RUBINO (Foil) | Atlanta 2017"},"1984":{"market_hash_name":"Sticker | RUBINO (Gold) | Atlanta 2017"},"1985":{"market_hash_name":"Sticker | k0nfig | Atlanta 2017"},"1986":{"market_hash_name":"Sticker | k0nfig (Foil) | Atlanta 2017"},"1987":{"market_hash_name":"Sticker | k0nfig (Gold) | Atlanta 2017"},"1988":{"market_hash_name":"Sticker | jdm64 | Atlanta 2017"},"1989":{"market_hash_name":"Sticker | jdm64 (Foil) | Atlanta 2017"},"199":{"market_hash_name":"Sticker | Fnatic (Holo) | DreamHack 2014"},"1990":{"market_hash_name":"Sticker | jdm64 (Gold) | Atlanta 2017"},"1991":{"market_hash_name":"Sticker | EliGE | Atlanta 2017"},"1992":{"market_hash_name":"Sticker | EliGE (Foil) | Atlanta 2017"},"1993":{"market_hash_name":"Sticker | EliGE (Gold) | Atlanta 2017"},"1994":{"market_hash_name":"Sticker | Pimp | Atlanta 2017"},"1995":{"market_hash_name":"Sticker | Pimp (Foil) | Atlanta 2017"},"1996":{"market_hash_name":"Sticker | Pimp (Gold) | Atlanta 2017"},"1997":{"market_hash_name":"Sticker | Hiko | Atlanta 2017"},"1998":{"market_hash_name":"Sticker | Hiko (Foil) | Atlanta 2017"},"1999":{"market_hash_name":"Sticker | Hiko (Gold) | Atlanta 2017"},"2":{"market_hash_name":"Sticker | Shooter (Foil)"},"20":{"market_hash_name":"Sticker | Fearsome (Holo)"},"200":{"market_hash_name":"Sticker | Fnatic (Foil) | DreamHack 2014"},"2000":{"market_hash_name":"Sticker | nitr0 | Atlanta 2017"},"2001":{"market_hash_name":"Sticker | nitr0 (Foil) | Atlanta 2017"},"2002":{"market_hash_name":"Sticker | nitr0 (Gold) | Atlanta 2017"},"2003":{"market_hash_name":"Sticker | bodyy | Atlanta 2017"},"2004":{"market_hash_name":"Sticker | bodyy (Foil) | Atlanta 2017"},"2005":{"market_hash_name":"Sticker | bodyy (Gold) | Atlanta 2017"},"2006":{"market_hash_name":"Sticker | RpK | Atlanta 2017"},"2007":{"market_hash_name":"Sticker | RpK (Foil) | Atlanta 2017"},"2008":{"market_hash_name":"Sticker | RpK (Gold) | Atlanta 2017"},"2009":{"market_hash_name":"Sticker | ScreaM | Atlanta 2017"},"201":{"market_hash_name":"Sticker | Cloud9 | DreamHack 2014"},"2010":{"market_hash_name":"Sticker | ScreaM (Foil) | Atlanta 2017"},"2011":{"market_hash_name":"Sticker | ScreaM (Gold) | Atlanta 2017"},"2012":{"market_hash_name":"Sticker | shox | Atlanta 2017"},"2013":{"market_hash_name":"Sticker | shox (Foil) | Atlanta 2017"},"2014":{"market_hash_name":"Sticker | shox (Gold) | Atlanta 2017"},"2015":{"market_hash_name":"Sticker | SmithZz | Atlanta 2017"},"2016":{"market_hash_name":"Sticker | SmithZz (Foil) | Atlanta 2017"},"2017":{"market_hash_name":"Sticker | SmithZz (Gold) | Atlanta 2017"},"2018":{"market_hash_name":"Sticker | gla1ve | Atlanta 2017"},"2019":{"market_hash_name":"Sticker | gla1ve (Foil) | Atlanta 2017"},"202":{"market_hash_name":"Sticker | Cloud9 (Holo) | DreamHack 2014"},"2020":{"market_hash_name":"Sticker | gla1ve (Gold) | Atlanta 2017"},"2021":{"market_hash_name":"Sticker | device | Atlanta 2017"},"2022":{"market_hash_name":"Sticker | device (Foil) | Atlanta 2017"},"2023":{"market_hash_name":"Sticker | device (Gold) | Atlanta 2017"},"2024":{"market_hash_name":"Sticker | dupreeh | Atlanta 2017"},"2025":{"market_hash_name":"Sticker | dupreeh (Foil) | Atlanta 2017"},"2026":{"market_hash_name":"Sticker | dupreeh (Gold) | Atlanta 2017"},"2027":{"market_hash_name":"Sticker | Kjaerbye | Atlanta 2017"},"2028":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Atlanta 2017"},"2029":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Atlanta 2017"},"203":{"market_hash_name":"Sticker | Cloud9 (Foil) | DreamHack 2014"},"2030":{"market_hash_name":"Sticker | Xyp9x | Atlanta 2017"},"2031":{"market_hash_name":"Sticker | Xyp9x (Foil) | Atlanta 2017"},"2032":{"market_hash_name":"Sticker | Xyp9x (Gold) | Atlanta 2017"},"2033":{"market_hash_name":"Sticker | Zeus | Atlanta 2017"},"2034":{"market_hash_name":"Sticker | Zeus (Foil) | Atlanta 2017"},"2035":{"market_hash_name":"Sticker | Zeus (Gold) | Atlanta 2017"},"2036":{"market_hash_name":"Sticker | Dosia | Atlanta 2017"},"2037":{"market_hash_name":"Sticker | Dosia (Foil) | Atlanta 2017"},"2038":{"market_hash_name":"Sticker | Dosia (Gold) | Atlanta 2017"},"2039":{"market_hash_name":"Sticker | Hobbit | Atlanta 2017"},"2040":{"market_hash_name":"Sticker | Hobbit (Foil) | Atlanta 2017"},"2041":{"market_hash_name":"Sticker | Hobbit (Gold) | Atlanta 2017"},"2042":{"market_hash_name":"Sticker | mou | Atlanta 2017"},"2043":{"market_hash_name":"Sticker | mou (Foil) | Atlanta 2017"},"2044":{"market_hash_name":"Sticker | mou (Gold) | Atlanta 2017"},"2045":{"market_hash_name":"Sticker | AdreN | Atlanta 2017"},"2046":{"market_hash_name":"Sticker | AdreN (Foil) | Atlanta 2017"},"2047":{"market_hash_name":"Sticker | AdreN (Gold) | Atlanta 2017"},"2048":{"market_hash_name":"Sticker | byali | Atlanta 2017"},"2049":{"market_hash_name":"Sticker | byali (Foil) | Atlanta 2017"},"2050":{"market_hash_name":"Sticker | byali (Gold) | Atlanta 2017"},"2051":{"market_hash_name":"Sticker | NEO | Atlanta 2017"},"2052":{"market_hash_name":"Sticker | NEO (Foil) | Atlanta 2017"},"2053":{"market_hash_name":"Sticker | NEO (Gold) | Atlanta 2017"},"2054":{"market_hash_name":"Sticker | pashaBiceps | Atlanta 2017"},"2055":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Atlanta 2017"},"2056":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Atlanta 2017"},"2057":{"market_hash_name":"Sticker | Snax | Atlanta 2017"},"2058":{"market_hash_name":"Sticker | Snax (Foil) | Atlanta 2017"},"2059":{"market_hash_name":"Sticker | Snax (Gold) | Atlanta 2017"},"2060":{"market_hash_name":"Sticker | TaZ | Atlanta 2017"},"2061":{"market_hash_name":"Sticker | TaZ (Foil) | Atlanta 2017"},"2062":{"market_hash_name":"Sticker | TaZ (Gold) | Atlanta 2017"},"2063":{"market_hash_name":"Sticker | Astralis | Krakow 2017"},"2064":{"market_hash_name":"Sticker | Astralis (Holo) | Krakow 2017"},"2065":{"market_hash_name":"Sticker | Astralis (Foil) | Krakow 2017"},"2066":{"market_hash_name":"Sticker | Astralis (Gold) | Krakow 2017"},"2067":{"market_hash_name":"Sticker | Virtus.Pro | Krakow 2017"},"2068":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Krakow 2017"},"2069":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Krakow 2017"},"207":{"market_hash_name":"Sticker | Virtus.Pro | DreamHack 2014"},"2070":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Krakow 2017"},"2071":{"market_hash_name":"Sticker | Fnatic | Krakow 2017"},"2072":{"market_hash_name":"Sticker | Fnatic (Holo) | Krakow 2017"},"2073":{"market_hash_name":"Sticker | Fnatic (Foil) | Krakow 2017"},"2074":{"market_hash_name":"Sticker | Fnatic (Gold) | Krakow 2017"},"2075":{"market_hash_name":"Sticker | SK Gaming | Krakow 2017"},"2076":{"market_hash_name":"Sticker | SK Gaming (Holo) | Krakow 2017"},"2077":{"market_hash_name":"Sticker | SK Gaming (Foil) | Krakow 2017"},"2078":{"market_hash_name":"Sticker | SK Gaming (Gold) | Krakow 2017"},"2079":{"market_hash_name":"Sticker | Natus Vincere | Krakow 2017"},"208":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | DreamHack 2014"},"2080":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Krakow 2017"},"2081":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Krakow 2017"},"2082":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Krakow 2017"},"2083":{"market_hash_name":"Sticker | Gambit | Krakow 2017"},"2084":{"market_hash_name":"Sticker | Gambit (Holo) | Krakow 2017"},"2085":{"market_hash_name":"Sticker | Gambit (Foil) | Krakow 2017"},"2086":{"market_hash_name":"Sticker | Gambit (Gold) | Krakow 2017"},"2087":{"market_hash_name":"Sticker | North | Krakow 2017"},"2088":{"market_hash_name":"Sticker | North (Holo) | Krakow 2017"},"2089":{"market_hash_name":"Sticker | North (Foil) | Krakow 2017"},"209":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | DreamHack 2014"},"2090":{"market_hash_name":"Sticker | North (Gold) | Krakow 2017"},"2091":{"market_hash_name":"Sticker | FaZe Clan | Krakow 2017"},"2092":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Krakow 2017"},"2093":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Krakow 2017"},"2094":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Krakow 2017"},"2095":{"market_hash_name":"Sticker | mousesports | Krakow 2017"},"2096":{"market_hash_name":"Sticker | mousesports (Holo) | Krakow 2017"},"2097":{"market_hash_name":"Sticker | mousesports (Foil) | Krakow 2017"},"2098":{"market_hash_name":"Sticker | mousesports (Gold) | Krakow 2017"},"2099":{"market_hash_name":"Sticker | G2 Esports | Krakow 2017"},"21":{"market_hash_name":"Sticker | Cerberus"},"210":{"market_hash_name":"Sticker | Ninjas in Pyjamas | DreamHack 2014"},"2100":{"market_hash_name":"Sticker | G2 Esports (Holo) | Krakow 2017"},"2101":{"market_hash_name":"Sticker | G2 Esports (Foil) | Krakow 2017"},"2102":{"market_hash_name":"Sticker | G2 Esports (Gold) | Krakow 2017"},"2103":{"market_hash_name":"Sticker | BIG | Krakow 2017"},"2104":{"market_hash_name":"Sticker | BIG (Holo) | Krakow 2017"},"2105":{"market_hash_name":"Sticker | BIG (Foil) | Krakow 2017"},"2106":{"market_hash_name":"Sticker | BIG (Gold) | Krakow 2017"},"2107":{"market_hash_name":"Sticker | Cloud9 | Krakow 2017"},"2108":{"market_hash_name":"Sticker | Cloud9 (Holo) | Krakow 2017"},"2109":{"market_hash_name":"Sticker | Cloud9 (Foil) | Krakow 2017"},"211":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | DreamHack 2014"},"2110":{"market_hash_name":"Sticker | Cloud9 (Gold) | Krakow 2017"},"2111":{"market_hash_name":"Sticker | PENTA Sports | Krakow 2017"},"2112":{"market_hash_name":"Sticker | PENTA Sports (Holo) | Krakow 2017"},"2113":{"market_hash_name":"Sticker | PENTA Sports (Foil) | Krakow 2017"},"2114":{"market_hash_name":"Sticker | PENTA Sports (Gold) | Krakow 2017"},"2115":{"market_hash_name":"Sticker | Flipsid3 Tactics | Krakow 2017"},"2116":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Krakow 2017"},"2117":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Krakow 2017"},"2118":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Krakow 2017"},"2119":{"market_hash_name":"Sticker | Immortals | Krakow 2017"},"212":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | DreamHack 2014"},"2120":{"market_hash_name":"Sticker | Immortals (Holo) | Krakow 2017"},"2121":{"market_hash_name":"Sticker | Immortals (Foil) | Krakow 2017"},"2122":{"market_hash_name":"Sticker | Immortals (Gold) | Krakow 2017"},"2123":{"market_hash_name":"Sticker | Vega Squadron | Krakow 2017"},"2124":{"market_hash_name":"Sticker | Vega Squadron (Holo) | Krakow 2017"},"2125":{"market_hash_name":"Sticker | Vega Squadron (Foil) | Krakow 2017"},"2126":{"market_hash_name":"Sticker | Vega Squadron (Gold) | Krakow 2017"},"2127":{"market_hash_name":"Sticker | PGL | Krakow 2017"},"2128":{"market_hash_name":"Sticker | PGL (Holo) | Krakow 2017"},"2129":{"market_hash_name":"Sticker | PGL (Foil) | Krakow 2017"},"213":{"market_hash_name":"Sticker | Natus Vincere | DreamHack 2014"},"2130":{"market_hash_name":"Sticker | PGL (Gold) | Krakow 2017"},"214":{"market_hash_name":"Sticker | Natus Vincere (Holo) | DreamHack 2014"},"2148":{"market_hash_name":"Sticker | device | Krakow 2017"},"2149":{"market_hash_name":"Sticker | device (Foil) | Krakow 2017"},"215":{"market_hash_name":"Sticker | Natus Vincere (Foil) | DreamHack 2014"},"2150":{"market_hash_name":"Sticker | device (Gold) | Krakow 2017"},"2151":{"market_hash_name":"Sticker | dupreeh | Krakow 2017"},"2152":{"market_hash_name":"Sticker | dupreeh (Foil) | Krakow 2017"},"2153":{"market_hash_name":"Sticker | dupreeh (Gold) | Krakow 2017"},"2154":{"market_hash_name":"Sticker | gla1ve | Krakow 2017"},"2155":{"market_hash_name":"Sticker | gla1ve (Foil) | Krakow 2017"},"2156":{"market_hash_name":"Sticker | gla1ve (Gold) | Krakow 2017"},"2157":{"market_hash_name":"Sticker | Kjaerbye | Krakow 2017"},"2158":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Krakow 2017"},"2159":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Krakow 2017"},"2160":{"market_hash_name":"Sticker | Xyp9x | Krakow 2017"},"2161":{"market_hash_name":"Sticker | Xyp9x (Foil) | Krakow 2017"},"2162":{"market_hash_name":"Sticker | Xyp9x (Gold) | Krakow 2017"},"2163":{"market_hash_name":"Sticker | byali | Krakow 2017"},"2164":{"market_hash_name":"Sticker | byali (Foil) | Krakow 2017"},"2165":{"market_hash_name":"Sticker | byali (Gold) | Krakow 2017"},"2166":{"market_hash_name":"Sticker | NEO | Krakow 2017"},"2167":{"market_hash_name":"Sticker | NEO (Foil) | Krakow 2017"},"2168":{"market_hash_name":"Sticker | NEO (Gold) | Krakow 2017"},"2169":{"market_hash_name":"Sticker | pashaBiceps | Krakow 2017"},"2170":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Krakow 2017"},"2171":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Krakow 2017"},"2172":{"market_hash_name":"Sticker | Snax | Krakow 2017"},"2173":{"market_hash_name":"Sticker | Snax (Foil) | Krakow 2017"},"2174":{"market_hash_name":"Sticker | Snax (Gold) | Krakow 2017"},"2175":{"market_hash_name":"Sticker | TaZ | Krakow 2017"},"2176":{"market_hash_name":"Sticker | TaZ (Foil) | Krakow 2017"},"2177":{"market_hash_name":"Sticker | TaZ (Gold) | Krakow 2017"},"2178":{"market_hash_name":"Sticker | dennis | Krakow 2017"},"2179":{"market_hash_name":"Sticker | dennis (Foil) | Krakow 2017"},"2180":{"market_hash_name":"Sticker | dennis (Gold) | Krakow 2017"},"2181":{"market_hash_name":"Sticker | flusha | Krakow 2017"},"2182":{"market_hash_name":"Sticker | flusha (Foil) | Krakow 2017"},"2183":{"market_hash_name":"Sticker | flusha (Gold) | Krakow 2017"},"2184":{"market_hash_name":"Sticker | JW | Krakow 2017"},"2185":{"market_hash_name":"Sticker | JW (Foil) | Krakow 2017"},"2186":{"market_hash_name":"Sticker | JW (Gold) | Krakow 2017"},"2187":{"market_hash_name":"Sticker | KRIMZ | Krakow 2017"},"2188":{"market_hash_name":"Sticker | KRIMZ (Foil) | Krakow 2017"},"2189":{"market_hash_name":"Sticker | KRIMZ (Gold) | Krakow 2017"},"219":{"market_hash_name":"Sticker | Team Dignitas | DreamHack 2014"},"2190":{"market_hash_name":"Sticker | olofmeister | Krakow 2017"},"2191":{"market_hash_name":"Sticker | olofmeister (Foil) | Krakow 2017"},"2192":{"market_hash_name":"Sticker | olofmeister (Gold) | Krakow 2017"},"2193":{"market_hash_name":"Sticker | coldzera | Krakow 2017"},"2194":{"market_hash_name":"Sticker | coldzera (Foil) | Krakow 2017"},"2195":{"market_hash_name":"Sticker | coldzera (Gold) | Krakow 2017"},"2196":{"market_hash_name":"Sticker | FalleN | Krakow 2017"},"2197":{"market_hash_name":"Sticker | FalleN (Foil) | Krakow 2017"},"2198":{"market_hash_name":"Sticker | FalleN (Gold) | Krakow 2017"},"2199":{"market_hash_name":"Sticker | felps | Krakow 2017"},"22":{"market_hash_name":"Sticker | Easy Peasy"},"220":{"market_hash_name":"Sticker | Team Dignitas (Holo) | DreamHack 2014"},"2200":{"market_hash_name":"Sticker | felps (Foil) | Krakow 2017"},"2201":{"market_hash_name":"Sticker | felps (Gold) | Krakow 2017"},"2202":{"market_hash_name":"Sticker | fer | Krakow 2017"},"2203":{"market_hash_name":"Sticker | fer (Foil) | Krakow 2017"},"2204":{"market_hash_name":"Sticker | fer (Gold) | Krakow 2017"},"2205":{"market_hash_name":"Sticker | TACO | Krakow 2017"},"2206":{"market_hash_name":"Sticker | TACO (Foil) | Krakow 2017"},"2207":{"market_hash_name":"Sticker | TACO (Gold) | Krakow 2017"},"2208":{"market_hash_name":"Sticker | Edward | Krakow 2017"},"2209":{"market_hash_name":"Sticker | Edward (Foil) | Krakow 2017"},"221":{"market_hash_name":"Sticker | Team Dignitas (Foil) | DreamHack 2014"},"2210":{"market_hash_name":"Sticker | Edward (Gold) | Krakow 2017"},"2211":{"market_hash_name":"Sticker | flamie | Krakow 2017"},"2212":{"market_hash_name":"Sticker | flamie (Foil) | Krakow 2017"},"2213":{"market_hash_name":"Sticker | flamie (Gold) | Krakow 2017"},"2214":{"market_hash_name":"Sticker | GuardiaN | Krakow 2017"},"2215":{"market_hash_name":"Sticker | GuardiaN (Foil) | Krakow 2017"},"2216":{"market_hash_name":"Sticker | GuardiaN (Gold) | Krakow 2017"},"2217":{"market_hash_name":"Sticker | s1mple | Krakow 2017"},"2218":{"market_hash_name":"Sticker | s1mple (Foil) | Krakow 2017"},"2219":{"market_hash_name":"Sticker | s1mple (Gold) | Krakow 2017"},"222":{"market_hash_name":"Sticker | Bravado Gaming | DreamHack 2014"},"2220":{"market_hash_name":"Sticker | seized | Krakow 2017"},"2221":{"market_hash_name":"Sticker | seized (Foil) | Krakow 2017"},"2222":{"market_hash_name":"Sticker | seized (Gold) | Krakow 2017"},"2223":{"market_hash_name":"Sticker | AdreN | Krakow 2017"},"2224":{"market_hash_name":"Sticker | AdreN (Foil) | Krakow 2017"},"2225":{"market_hash_name":"Sticker | AdreN (Gold) | Krakow 2017"},"2226":{"market_hash_name":"Sticker | Dosia | Krakow 2017"},"2227":{"market_hash_name":"Sticker | Dosia (Foil) | Krakow 2017"},"2228":{"market_hash_name":"Sticker | Dosia (Gold) | Krakow 2017"},"2229":{"market_hash_name":"Sticker | Hobbit | Krakow 2017"},"223":{"market_hash_name":"Sticker | ESC Gaming | DreamHack 2014"},"2230":{"market_hash_name":"Sticker | Hobbit (Foil) | Krakow 2017"},"2231":{"market_hash_name":"Sticker | Hobbit (Gold) | Krakow 2017"},"2232":{"market_hash_name":"Sticker | mou | Krakow 2017"},"2233":{"market_hash_name":"Sticker | mou (Foil) | Krakow 2017"},"2234":{"market_hash_name":"Sticker | mou (Gold) | Krakow 2017"},"2235":{"market_hash_name":"Sticker | Zeus | Krakow 2017"},"2236":{"market_hash_name":"Sticker | Zeus (Foil) | Krakow 2017"},"2237":{"market_hash_name":"Sticker | Zeus (Gold) | Krakow 2017"},"2238":{"market_hash_name":"Sticker | aizy | Krakow 2017"},"2239":{"market_hash_name":"Sticker | aizy (Foil) | Krakow 2017"},"224":{"market_hash_name":"Sticker | HellRaisers | DreamHack 2014"},"2240":{"market_hash_name":"Sticker | aizy (Gold) | Krakow 2017"},"2241":{"market_hash_name":"Sticker | cajunb | Krakow 2017"},"2242":{"market_hash_name":"Sticker | cajunb (Foil) | Krakow 2017"},"2243":{"market_hash_name":"Sticker | cajunb (Gold) | Krakow 2017"},"2244":{"market_hash_name":"Sticker | k0nfig | Krakow 2017"},"2245":{"market_hash_name":"Sticker | k0nfig (Foil) | Krakow 2017"},"2246":{"market_hash_name":"Sticker | k0nfig (Gold) | Krakow 2017"},"2247":{"market_hash_name":"Sticker | Magisk | Krakow 2017"},"2248":{"market_hash_name":"Sticker | Magisk (Foil) | Krakow 2017"},"2249":{"market_hash_name":"Sticker | Magisk (Gold) | Krakow 2017"},"225":{"market_hash_name":"Sticker | iBUYPOWER | DreamHack 2014"},"2250":{"market_hash_name":"Sticker | MSL | Krakow 2017"},"2251":{"market_hash_name":"Sticker | MSL (Foil) | Krakow 2017"},"2252":{"market_hash_name":"Sticker | MSL (Gold) | Krakow 2017"},"2253":{"market_hash_name":"Sticker | allu | Krakow 2017"},"2254":{"market_hash_name":"Sticker | allu (Foil) | Krakow 2017"},"2255":{"market_hash_name":"Sticker | allu (Gold) | Krakow 2017"},"2256":{"market_hash_name":"Sticker | karrigan | Krakow 2017"},"2257":{"market_hash_name":"Sticker | karrigan (Foil) | Krakow 2017"},"2258":{"market_hash_name":"Sticker | karrigan (Gold) | Krakow 2017"},"2259":{"market_hash_name":"Sticker | kioShiMa | Krakow 2017"},"226":{"market_hash_name":"Sticker | PENTA Sports | DreamHack 2014"},"2260":{"market_hash_name":"Sticker | kioShiMa (Foil) | Krakow 2017"},"2261":{"market_hash_name":"Sticker | kioShiMa (Gold) | Krakow 2017"},"2262":{"market_hash_name":"Sticker | NiKo | Krakow 2017"},"2263":{"market_hash_name":"Sticker | NiKo (Foil) | Krakow 2017"},"2264":{"market_hash_name":"Sticker | NiKo (Gold) | Krakow 2017"},"2265":{"market_hash_name":"Sticker | rain | Krakow 2017"},"2266":{"market_hash_name":"Sticker | rain (Foil) | Krakow 2017"},"2267":{"market_hash_name":"Sticker | rain (Gold) | Krakow 2017"},"2268":{"market_hash_name":"Sticker | chrisJ | Krakow 2017"},"2269":{"market_hash_name":"Sticker | chrisJ (Foil) | Krakow 2017"},"227":{"market_hash_name":"Sticker | Planetkey Dynamics | DreamHack 2014"},"2270":{"market_hash_name":"Sticker | chrisJ (Gold) | Krakow 2017"},"2271":{"market_hash_name":"Sticker | denis | Krakow 2017"},"2272":{"market_hash_name":"Sticker | denis (Foil) | Krakow 2017"},"2273":{"market_hash_name":"Sticker | denis (Gold) | Krakow 2017"},"2274":{"market_hash_name":"Sticker | loWel | Krakow 2017"},"2275":{"market_hash_name":"Sticker | loWel (Foil) | Krakow 2017"},"2276":{"market_hash_name":"Sticker | loWel (Gold) | Krakow 2017"},"2277":{"market_hash_name":"Sticker | oskar | Krakow 2017"},"2278":{"market_hash_name":"Sticker | oskar (Foil) | Krakow 2017"},"2279":{"market_hash_name":"Sticker | oskar (Gold) | Krakow 2017"},"228":{"market_hash_name":"Sticker | Team LDLC.com | DreamHack 2014"},"2280":{"market_hash_name":"Sticker | ropz | Krakow 2017"},"2281":{"market_hash_name":"Sticker | ropz (Foil) | Krakow 2017"},"2282":{"market_hash_name":"Sticker | ropz (Gold) | Krakow 2017"},"2283":{"market_hash_name":"Sticker | apEX | Krakow 2017"},"2284":{"market_hash_name":"Sticker | apEX (Foil) | Krakow 2017"},"2285":{"market_hash_name":"Sticker | apEX (Gold) | Krakow 2017"},"2286":{"market_hash_name":"Sticker | bodyy | Krakow 2017"},"2287":{"market_hash_name":"Sticker | bodyy (Foil) | Krakow 2017"},"2288":{"market_hash_name":"Sticker | bodyy (Gold) | Krakow 2017"},"2289":{"market_hash_name":"Sticker | kennyS | Krakow 2017"},"229":{"market_hash_name":"Sticker | myXMG | DreamHack 2014"},"2290":{"market_hash_name":"Sticker | kennyS (Foil) | Krakow 2017"},"2291":{"market_hash_name":"Sticker | kennyS (Gold) | Krakow 2017"},"2292":{"market_hash_name":"Sticker | NBK- | Krakow 2017"},"2293":{"market_hash_name":"Sticker | NBK- (Foil) | Krakow 2017"},"2294":{"market_hash_name":"Sticker | NBK- (Gold) | Krakow 2017"},"2295":{"market_hash_name":"Sticker | shox | Krakow 2017"},"2296":{"market_hash_name":"Sticker | shox (Foil) | Krakow 2017"},"2297":{"market_hash_name":"Sticker | shox (Gold) | Krakow 2017"},"2298":{"market_hash_name":"Sticker | gob b | Krakow 2017"},"2299":{"market_hash_name":"Sticker | gob b (Foil) | Krakow 2017"},"23":{"market_hash_name":"Sticker | Luck Skill"},"230":{"market_hash_name":"Sticker | DreamHack Winter 2014"},"2300":{"market_hash_name":"Sticker | gob b (Gold) | Krakow 2017"},"2301":{"market_hash_name":"Sticker | keev | Krakow 2017"},"2302":{"market_hash_name":"Sticker | keev (Foil) | Krakow 2017"},"2303":{"market_hash_name":"Sticker | keev (Gold) | Krakow 2017"},"2304":{"market_hash_name":"Sticker | LEGIJA | Krakow 2017"},"2305":{"market_hash_name":"Sticker | LEGIJA (Foil) | Krakow 2017"},"2306":{"market_hash_name":"Sticker | LEGIJA (Gold) | Krakow 2017"},"2307":{"market_hash_name":"Sticker | nex | Krakow 2017"},"2308":{"market_hash_name":"Sticker | nex (Foil) | Krakow 2017"},"2309":{"market_hash_name":"Sticker | nex (Gold) | Krakow 2017"},"231":{"market_hash_name":"Sticker | DreamHack Winter 2014 (Foil)"},"2310":{"market_hash_name":"Sticker | tabseN | Krakow 2017"},"2311":{"market_hash_name":"Sticker | tabseN (Foil) | Krakow 2017"},"2312":{"market_hash_name":"Sticker | tabseN (Gold) | Krakow 2017"},"2313":{"market_hash_name":"Sticker | autimatic | Krakow 2017"},"2314":{"market_hash_name":"Sticker | autimatic (Foil) | Krakow 2017"},"2315":{"market_hash_name":"Sticker | autimatic (Gold) | Krakow 2017"},"2316":{"market_hash_name":"Sticker | n0thing | Krakow 2017"},"2317":{"market_hash_name":"Sticker | n0thing (Foil) | Krakow 2017"},"2318":{"market_hash_name":"Sticker | n0thing (Gold) | Krakow 2017"},"2319":{"market_hash_name":"Sticker | shroud | Krakow 2017"},"232":{"market_hash_name":"Sticker | 3DMAX | DreamHack 2014"},"2320":{"market_hash_name":"Sticker | shroud (Foil) | Krakow 2017"},"2321":{"market_hash_name":"Sticker | shroud (Gold) | Krakow 2017"},"2322":{"market_hash_name":"Sticker | Skadoodle | Krakow 2017"},"2323":{"market_hash_name":"Sticker | Skadoodle (Foil) | Krakow 2017"},"2324":{"market_hash_name":"Sticker | Skadoodle (Gold) | Krakow 2017"},"2325":{"market_hash_name":"Sticker | Stewie2K | Krakow 2017"},"2326":{"market_hash_name":"Sticker | Stewie2K (Foil) | Krakow 2017"},"2327":{"market_hash_name":"Sticker | Stewie2K (Gold) | Krakow 2017"},"2328":{"market_hash_name":"Sticker | HS | Krakow 2017"},"2329":{"market_hash_name":"Sticker | HS (Foil) | Krakow 2017"},"233":{"market_hash_name":"Sticker | Copenhagen Wolves | DreamHack 2014"},"2330":{"market_hash_name":"Sticker | HS (Gold) | Krakow 2017"},"2331":{"market_hash_name":"Sticker | innocent | Krakow 2017"},"2332":{"market_hash_name":"Sticker | innocent (Foil) | Krakow 2017"},"2333":{"market_hash_name":"Sticker | innocent (Gold) | Krakow 2017"},"2334":{"market_hash_name":"Sticker | kRYSTAL | Krakow 2017"},"2335":{"market_hash_name":"Sticker | kRYSTAL (Foil) | Krakow 2017"},"2336":{"market_hash_name":"Sticker | kRYSTAL (Gold) | Krakow 2017"},"2337":{"market_hash_name":"Sticker | suNny | Krakow 2017"},"2338":{"market_hash_name":"Sticker | suNny (Foil) | Krakow 2017"},"2339":{"market_hash_name":"Sticker | suNny (Gold) | Krakow 2017"},"234":{"market_hash_name":"Sticker | dAT team | DreamHack 2014"},"2340":{"market_hash_name":"Sticker | zehN | Krakow 2017"},"2341":{"market_hash_name":"Sticker | zehN (Foil) | Krakow 2017"},"2342":{"market_hash_name":"Sticker | zehN (Gold) | Krakow 2017"},"2343":{"market_hash_name":"Sticker | B1ad3 | Krakow 2017"},"2344":{"market_hash_name":"Sticker | B1ad3 (Foil) | Krakow 2017"},"2345":{"market_hash_name":"Sticker | B1ad3 (Gold) | Krakow 2017"},"2346":{"market_hash_name":"Sticker | electronic | Krakow 2017"},"2347":{"market_hash_name":"Sticker | electronic (Foil) | Krakow 2017"},"2348":{"market_hash_name":"Sticker | electronic (Gold) | Krakow 2017"},"2349":{"market_hash_name":"Sticker | markeloff | Krakow 2017"},"235":{"market_hash_name":"Sticker | London Conspiracy | DreamHack 2014"},"2350":{"market_hash_name":"Sticker | markeloff (Foil) | Krakow 2017"},"2351":{"market_hash_name":"Sticker | markeloff (Gold) | Krakow 2017"},"2352":{"market_hash_name":"Sticker | wayLander | Krakow 2017"},"2353":{"market_hash_name":"Sticker | wayLander (Foil) | Krakow 2017"},"2354":{"market_hash_name":"Sticker | wayLander (Gold) | Krakow 2017"},"2355":{"market_hash_name":"Sticker | WorldEdit | Krakow 2017"},"2356":{"market_hash_name":"Sticker | WorldEdit (Foil) | Krakow 2017"},"2357":{"market_hash_name":"Sticker | WorldEdit (Gold) | Krakow 2017"},"2358":{"market_hash_name":"Sticker | boltz | Krakow 2017"},"2359":{"market_hash_name":"Sticker | boltz (Foil) | Krakow 2017"},"236":{"market_hash_name":"Sticker | mousesports | DreamHack 2014"},"2360":{"market_hash_name":"Sticker | boltz (Gold) | Krakow 2017"},"2361":{"market_hash_name":"Sticker | HEN1 | Krakow 2017"},"2362":{"market_hash_name":"Sticker | HEN1 (Foil) | Krakow 2017"},"2363":{"market_hash_name":"Sticker | HEN1 (Gold) | Krakow 2017"},"2364":{"market_hash_name":"Sticker | kNgV- | Krakow 2017"},"2365":{"market_hash_name":"Sticker | kNgV- (Foil) | Krakow 2017"},"2366":{"market_hash_name":"Sticker | kNgV- (Gold) | Krakow 2017"},"2367":{"market_hash_name":"Sticker | LUCAS1 | Krakow 2017"},"2368":{"market_hash_name":"Sticker | LUCAS1 (Foil) | Krakow 2017"},"2369":{"market_hash_name":"Sticker | LUCAS1 (Gold) | Krakow 2017"},"237":{"market_hash_name":"Sticker | 3DMAX (Gold) | DreamHack 2014"},"2370":{"market_hash_name":"Sticker | steel | Krakow 2017"},"2371":{"market_hash_name":"Sticker | steel (Foil) | Krakow 2017"},"2372":{"market_hash_name":"Sticker | steel (Gold) | Krakow 2017"},"2373":{"market_hash_name":"Sticker | chopper | Krakow 2017"},"2374":{"market_hash_name":"Sticker | chopper (Foil) | Krakow 2017"},"2375":{"market_hash_name":"Sticker | chopper (Gold) | Krakow 2017"},"2376":{"market_hash_name":"Sticker | hutji | Krakow 2017"},"2377":{"market_hash_name":"Sticker | hutji (Foil) | Krakow 2017"},"2378":{"market_hash_name":"Sticker | hutji (Gold) | Krakow 2017"},"2379":{"market_hash_name":"Sticker | jR | Krakow 2017"},"238":{"market_hash_name":"Sticker | Bravado Gaming (Gold) | DreamHack 2014"},"2380":{"market_hash_name":"Sticker | jR (Foil) | Krakow 2017"},"2381":{"market_hash_name":"Sticker | jR (Gold) | Krakow 2017"},"2382":{"market_hash_name":"Sticker | keshandr | Krakow 2017"},"2383":{"market_hash_name":"Sticker | keshandr (Foil) | Krakow 2017"},"2384":{"market_hash_name":"Sticker | keshandr (Gold) | Krakow 2017"},"2385":{"market_hash_name":"Sticker | mir | Krakow 2017"},"2386":{"market_hash_name":"Sticker | mir (Foil) | Krakow 2017"},"2387":{"market_hash_name":"Sticker | mir (Gold) | Krakow 2017"},"2388":{"market_hash_name":"Sticker | Water Gun"},"2389":{"market_hash_name":"Sticker | Cheongsam"},"239":{"market_hash_name":"Sticker | Cloud9 (Gold) | DreamHack 2014"},"2390":{"market_hash_name":"Sticker | Cheongsam (Holo)"},"2391":{"market_hash_name":"Sticker | Fancy Koi"},"2392":{"market_hash_name":"Sticker | Fancy Koi (Foil)"},"2393":{"market_hash_name":"Sticker | Guardian Dragon"},"2394":{"market_hash_name":"Sticker | Guardian Dragon (Foil)"},"2395":{"market_hash_name":"Sticker | Hotpot"},"2396":{"market_hash_name":"Sticker | Noodles"},"2397":{"market_hash_name":"Sticker | Rice Bomb"},"2398":{"market_hash_name":"Sticker | Terror Rice"},"2399":{"market_hash_name":"Sticker | Mahjong Fa"},"24":{"market_hash_name":"Sticker | Vigilance"},"240":{"market_hash_name":"Sticker | Copenhagen Wolves (Gold) | DreamHack 2014"},"2400":{"market_hash_name":"Sticker | Mahjong Rooster"},"2401":{"market_hash_name":"Sticker | Mahjong Zhong"},"2402":{"market_hash_name":"Sticker | Toy Tiger"},"2403":{"market_hash_name":"Sticker | God of Fortune"},"2404":{"market_hash_name":"Sticker | Huaji"},"2405":{"market_hash_name":"Sticker | Nezha"},"2406":{"market_hash_name":"Sticker | Rage"},"2407":{"market_hash_name":"Sticker | Longevity"},"2408":{"market_hash_name":"Sticker | Longevity (Foil)"},"2409":{"market_hash_name":"Sticker | Non-Veg"},"241":{"market_hash_name":"Sticker | dAT team (Gold) | DreamHack 2014"},"2410":{"market_hash_name":"Sticker | Pixiu"},"2411":{"market_hash_name":"Sticker | Pixiu (Foil)"},"2412":{"market_hash_name":"Sticker | Twin Koi"},"2413":{"market_hash_name":"Sticker | Twin Koi (Holo)"},"2414":{"market_hash_name":"Sticker | Shaolin"},"2415":{"market_hash_name":"Sticker | Green Swallow"},"2416":{"market_hash_name":"Sticker | Blue Swallow"},"2417":{"market_hash_name":"Sticker | Zombie Hop"},"242":{"market_hash_name":"Sticker | Team Dignitas (Gold) | DreamHack 2014"},"243":{"market_hash_name":"Sticker | ESC Gaming (Gold) | DreamHack 2014"},"2436":{"market_hash_name":"Sticker | Gambit Esports | Boston 2018"},"2437":{"market_hash_name":"Sticker | Gambit Esports (Holo) | Boston 2018"},"2438":{"market_hash_name":"Sticker | Gambit Esports (Foil) | Boston 2018"},"2439":{"market_hash_name":"Sticker | Gambit Esports (Gold) | Boston 2018"},"244":{"market_hash_name":"Sticker | Fnatic (Gold) | DreamHack 2014"},"2440":{"market_hash_name":"Sticker | 100 Thieves | Boston 2018"},"2441":{"market_hash_name":"Sticker | 100 Thieves (Holo) | Boston 2018"},"2442":{"market_hash_name":"Sticker | 100 Thieves (Foil) | Boston 2018"},"2443":{"market_hash_name":"Sticker | 100 Thieves (Gold) | Boston 2018"},"2444":{"market_hash_name":"Sticker | Astralis | Boston 2018"},"2445":{"market_hash_name":"Sticker | Astralis (Holo) | Boston 2018"},"2446":{"market_hash_name":"Sticker | Astralis (Foil) | Boston 2018"},"2447":{"market_hash_name":"Sticker | Astralis (Gold) | Boston 2018"},"2448":{"market_hash_name":"Sticker | Virtus.Pro | Boston 2018"},"2449":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Boston 2018"},"245":{"market_hash_name":"Sticker | HellRaisers (Gold) | DreamHack 2014"},"2450":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Boston 2018"},"2451":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Boston 2018"},"2452":{"market_hash_name":"Sticker | Fnatic | Boston 2018"},"2453":{"market_hash_name":"Sticker | Fnatic (Holo) | Boston 2018"},"2454":{"market_hash_name":"Sticker | Fnatic (Foil) | Boston 2018"},"2455":{"market_hash_name":"Sticker | Fnatic (Gold) | Boston 2018"},"2456":{"market_hash_name":"Sticker | SK Gaming | Boston 2018"},"2457":{"market_hash_name":"Sticker | SK Gaming (Holo) | Boston 2018"},"2458":{"market_hash_name":"Sticker | SK Gaming (Foil) | Boston 2018"},"2459":{"market_hash_name":"Sticker | SK Gaming (Gold) | Boston 2018"},"246":{"market_hash_name":"Sticker | iBUYPOWER (Gold) | DreamHack 2014"},"2460":{"market_hash_name":"Sticker | BIG | Boston 2018"},"2461":{"market_hash_name":"Sticker | BIG (Holo) | Boston 2018"},"2462":{"market_hash_name":"Sticker | BIG (Foil) | Boston 2018"},"2463":{"market_hash_name":"Sticker | BIG (Gold) | Boston 2018"},"2464":{"market_hash_name":"Sticker | North | Boston 2018"},"2465":{"market_hash_name":"Sticker | North (Holo) | Boston 2018"},"2466":{"market_hash_name":"Sticker | North (Foil) | Boston 2018"},"2467":{"market_hash_name":"Sticker | North (Gold) | Boston 2018"},"2468":{"market_hash_name":"Sticker | G2 Esports | Boston 2018"},"2469":{"market_hash_name":"Sticker | G2 Esports (Holo) | Boston 2018"},"247":{"market_hash_name":"Sticker | London Conspiracy (Gold) | DreamHack 2014"},"2470":{"market_hash_name":"Sticker | G2 Esports (Foil) | Boston 2018"},"2471":{"market_hash_name":"Sticker | G2 Esports (Gold) | Boston 2018"},"2472":{"market_hash_name":"Sticker | Cloud9 | Boston 2018"},"2473":{"market_hash_name":"Sticker | Cloud9 (Holo) | Boston 2018"},"2474":{"market_hash_name":"Sticker | Cloud9 (Foil) | Boston 2018"},"2475":{"market_hash_name":"Sticker | Cloud9 (Gold) | Boston 2018"},"2476":{"market_hash_name":"Sticker | Flipsid3 Tactics | Boston 2018"},"2477":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Boston 2018"},"2478":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Boston 2018"},"2479":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Boston 2018"},"248":{"market_hash_name":"Sticker | mousesports (Gold) | DreamHack 2014"},"2480":{"market_hash_name":"Sticker | Natus Vincere | Boston 2018"},"2481":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Boston 2018"},"2482":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Boston 2018"},"2483":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Boston 2018"},"2484":{"market_hash_name":"Sticker | mousesports | Boston 2018"},"2485":{"market_hash_name":"Sticker | mousesports (Holo) | Boston 2018"},"2486":{"market_hash_name":"Sticker | mousesports (Foil) | Boston 2018"},"2487":{"market_hash_name":"Sticker | mousesports (Gold) | Boston 2018"},"2488":{"market_hash_name":"Sticker | Sprout Esports | Boston 2018"},"2489":{"market_hash_name":"Sticker | Sprout Esports (Holo) | Boston 2018"},"249":{"market_hash_name":"Sticker | myXMG (Gold) | DreamHack 2014"},"2490":{"market_hash_name":"Sticker | Sprout Esports (Foil) | Boston 2018"},"2491":{"market_hash_name":"Sticker | Sprout Esports (Gold) | Boston 2018"},"2492":{"market_hash_name":"Sticker | FaZe Clan | Boston 2018"},"2493":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Boston 2018"},"2494":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Boston 2018"},"2495":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Boston 2018"},"2496":{"market_hash_name":"Sticker | Vega Squadron | Boston 2018"},"2497":{"market_hash_name":"Sticker | Vega Squadron (Holo) | Boston 2018"},"2498":{"market_hash_name":"Sticker | Vega Squadron (Foil) | Boston 2018"},"2499":{"market_hash_name":"Sticker | Vega Squadron (Gold) | Boston 2018"},"25":{"market_hash_name":"Sticker | Vigilance (Holo)"},"250":{"market_hash_name":"Sticker | Natus Vincere (Gold) | DreamHack 2014"},"2500":{"market_hash_name":"Sticker | Space Soldiers | Boston 2018"},"2501":{"market_hash_name":"Sticker | Space Soldiers (Holo) | Boston 2018"},"2502":{"market_hash_name":"Sticker | Space Soldiers (Foil) | Boston 2018"},"2503":{"market_hash_name":"Sticker | Space Soldiers (Gold) | Boston 2018"},"2504":{"market_hash_name":"Sticker | Team Liquid | Boston 2018"},"2505":{"market_hash_name":"Sticker | Team Liquid (Holo) | Boston 2018"},"2506":{"market_hash_name":"Sticker | Team Liquid (Foil) | Boston 2018"},"2507":{"market_hash_name":"Sticker | Team Liquid (Gold) | Boston 2018"},"2508":{"market_hash_name":"Sticker | Avangar | Boston 2018"},"2509":{"market_hash_name":"Sticker | Avangar (Holo) | Boston 2018"},"251":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | DreamHack 2014"},"2510":{"market_hash_name":"Sticker | Avangar (Foil) | Boston 2018"},"2511":{"market_hash_name":"Sticker | Avangar (Gold) | Boston 2018"},"2512":{"market_hash_name":"Sticker | Renegades | Boston 2018"},"2513":{"market_hash_name":"Sticker | Renegades (Holo) | Boston 2018"},"2514":{"market_hash_name":"Sticker | Renegades (Foil) | Boston 2018"},"2515":{"market_hash_name":"Sticker | Renegades (Gold) | Boston 2018"},"2516":{"market_hash_name":"Sticker | Team EnVyUs | Boston 2018"},"2517":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Boston 2018"},"2518":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Boston 2018"},"2519":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Boston 2018"},"252":{"market_hash_name":"Sticker | PENTA Sports (Gold) | DreamHack 2014"},"2520":{"market_hash_name":"Sticker | Misfits Gaming | Boston 2018"},"2521":{"market_hash_name":"Sticker | Misfits Gaming (Holo) | Boston 2018"},"2522":{"market_hash_name":"Sticker | Misfits Gaming (Foil) | Boston 2018"},"2523":{"market_hash_name":"Sticker | Misfits Gaming (Gold) | Boston 2018"},"2524":{"market_hash_name":"Sticker | Quantum Bellator Fire | Boston 2018"},"2525":{"market_hash_name":"Sticker | Quantum Bellator Fire (Holo) | Boston 2018"},"2526":{"market_hash_name":"Sticker | Quantum Bellator Fire (Foil) | Boston 2018"},"2527":{"market_hash_name":"Sticker | Quantum Bellator Fire (Gold) | Boston 2018"},"2528":{"market_hash_name":"Sticker | Tyloo | Boston 2018"},"2529":{"market_hash_name":"Sticker | Tyloo (Holo) | Boston 2018"},"253":{"market_hash_name":"Sticker | Planetkey Dynamics (Gold) | DreamHack 2014"},"2530":{"market_hash_name":"Sticker | Tyloo (Foil) | Boston 2018"},"2531":{"market_hash_name":"Sticker | Tyloo (Gold) | Boston 2018"},"2532":{"market_hash_name":"Sticker | ELEAGUE | Boston 2018"},"2533":{"market_hash_name":"Sticker | ELEAGUE (Holo) | Boston 2018"},"2534":{"market_hash_name":"Sticker | ELEAGUE (Foil) | Boston 2018"},"2535":{"market_hash_name":"Sticker | ELEAGUE (Gold) | Boston 2018"},"254":{"market_hash_name":"Sticker | Team LDLC.com (Gold) | DreamHack 2014"},"255":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | DreamHack 2014"},"256":{"market_hash_name":"Sticker | Flipsid3 Tactics | DreamHack 2014"},"2561":{"market_hash_name":"Sticker | AdreN | Boston 2018"},"2562":{"market_hash_name":"Sticker | AdreN (Foil) | Boston 2018"},"2563":{"market_hash_name":"Sticker | AdreN (Gold) | Boston 2018"},"2564":{"market_hash_name":"Sticker | Dosia | Boston 2018"},"2565":{"market_hash_name":"Sticker | Dosia (Foil) | Boston 2018"},"2566":{"market_hash_name":"Sticker | Dosia (Gold) | Boston 2018"},"2567":{"market_hash_name":"Sticker | fitch | Boston 2018"},"2568":{"market_hash_name":"Sticker | fitch (Foil) | Boston 2018"},"2569":{"market_hash_name":"Sticker | fitch (Gold) | Boston 2018"},"257":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | DreamHack 2014"},"2570":{"market_hash_name":"Sticker | Hobbit | Boston 2018"},"2571":{"market_hash_name":"Sticker | Hobbit (Foil) | Boston 2018"},"2572":{"market_hash_name":"Sticker | Hobbit (Gold) | Boston 2018"},"2573":{"market_hash_name":"Sticker | mou | Boston 2018"},"2574":{"market_hash_name":"Sticker | mou (Foil) | Boston 2018"},"2575":{"market_hash_name":"Sticker | mou (Gold) | Boston 2018"},"2576":{"market_hash_name":"Sticker | BIT | Boston 2018"},"2577":{"market_hash_name":"Sticker | BIT (Foil) | Boston 2018"},"2578":{"market_hash_name":"Sticker | BIT (Gold) | Boston 2018"},"2579":{"market_hash_name":"Sticker | fnx | Boston 2018"},"258":{"market_hash_name":"Sticker | Blood Boiler"},"2580":{"market_hash_name":"Sticker | fnx (Foil) | Boston 2018"},"2581":{"market_hash_name":"Sticker | fnx (Gold) | Boston 2018"},"2582":{"market_hash_name":"Sticker | HEN1 | Boston 2018"},"2583":{"market_hash_name":"Sticker | HEN1 (Foil) | Boston 2018"},"2584":{"market_hash_name":"Sticker | HEN1 (Gold) | Boston 2018"},"2585":{"market_hash_name":"Sticker | kNgV- | Boston 2018"},"2586":{"market_hash_name":"Sticker | kNgV- (Foil) | Boston 2018"},"2587":{"market_hash_name":"Sticker | kNgV- (Gold) | Boston 2018"},"2588":{"market_hash_name":"Sticker | LUCAS1 | Boston 2018"},"2589":{"market_hash_name":"Sticker | LUCAS1 (Foil) | Boston 2018"},"259":{"market_hash_name":"Sticker | Dinked"},"2590":{"market_hash_name":"Sticker | LUCAS1 (Gold) | Boston 2018"},"2591":{"market_hash_name":"Sticker | device | Boston 2018"},"2592":{"market_hash_name":"Sticker | device (Foil) | Boston 2018"},"2593":{"market_hash_name":"Sticker | device (Gold) | Boston 2018"},"2594":{"market_hash_name":"Sticker | dupreeh | Boston 2018"},"2595":{"market_hash_name":"Sticker | dupreeh (Foil) | Boston 2018"},"2596":{"market_hash_name":"Sticker | dupreeh (Gold) | Boston 2018"},"2597":{"market_hash_name":"Sticker | gla1ve | Boston 2018"},"2598":{"market_hash_name":"Sticker | gla1ve (Foil) | Boston 2018"},"2599":{"market_hash_name":"Sticker | gla1ve (Gold) | Boston 2018"},"26":{"market_hash_name":"Sticker | Lucky 13 (Foil)"},"260":{"market_hash_name":"Sticker | Drug War Veteran"},"2600":{"market_hash_name":"Sticker | Kjaerbye | Boston 2018"},"2601":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Boston 2018"},"2602":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Boston 2018"},"2603":{"market_hash_name":"Sticker | Xyp9x | Boston 2018"},"2604":{"market_hash_name":"Sticker | Xyp9x (Foil) | Boston 2018"},"2605":{"market_hash_name":"Sticker | Xyp9x (Gold) | Boston 2018"},"2606":{"market_hash_name":"Sticker | byali | Boston 2018"},"2607":{"market_hash_name":"Sticker | byali (Foil) | Boston 2018"},"2608":{"market_hash_name":"Sticker | byali (Gold) | Boston 2018"},"2609":{"market_hash_name":"Sticker | NEO | Boston 2018"},"261":{"market_hash_name":"Sticker | Ho Ho Ho"},"2610":{"market_hash_name":"Sticker | NEO (Foil) | Boston 2018"},"2611":{"market_hash_name":"Sticker | NEO (Gold) | Boston 2018"},"2612":{"market_hash_name":"Sticker | pashaBiceps | Boston 2018"},"2613":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Boston 2018"},"2614":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Boston 2018"},"2615":{"market_hash_name":"Sticker | Snax | Boston 2018"},"2616":{"market_hash_name":"Sticker | Snax (Foil) | Boston 2018"},"2617":{"market_hash_name":"Sticker | Snax (Gold) | Boston 2018"},"2618":{"market_hash_name":"Sticker | TaZ | Boston 2018"},"2619":{"market_hash_name":"Sticker | TaZ (Foil) | Boston 2018"},"262":{"market_hash_name":"Sticker | Massive Pear"},"2620":{"market_hash_name":"Sticker | TaZ (Gold) | Boston 2018"},"2621":{"market_hash_name":"Sticker | flusha | Boston 2018"},"2622":{"market_hash_name":"Sticker | flusha (Foil) | Boston 2018"},"2623":{"market_hash_name":"Sticker | flusha (Gold) | Boston 2018"},"2624":{"market_hash_name":"Sticker | Golden | Boston 2018"},"2625":{"market_hash_name":"Sticker | Golden (Foil) | Boston 2018"},"2626":{"market_hash_name":"Sticker | Golden (Gold) | Boston 2018"},"2627":{"market_hash_name":"Sticker | JW | Boston 2018"},"2628":{"market_hash_name":"Sticker | JW (Foil) | Boston 2018"},"2629":{"market_hash_name":"Sticker | JW (Gold) | Boston 2018"},"263":{"market_hash_name":"Sticker | My Little Friend"},"2630":{"market_hash_name":"Sticker | KRIMZ | Boston 2018"},"2631":{"market_hash_name":"Sticker | KRIMZ (Foil) | Boston 2018"},"2632":{"market_hash_name":"Sticker | KRIMZ (Gold) | Boston 2018"},"2633":{"market_hash_name":"Sticker | Lekr0 | Boston 2018"},"2634":{"market_hash_name":"Sticker | Lekr0 (Foil) | Boston 2018"},"2635":{"market_hash_name":"Sticker | Lekr0 (Gold) | Boston 2018"},"2636":{"market_hash_name":"Sticker | coldzera | Boston 2018"},"2637":{"market_hash_name":"Sticker | coldzera (Foil) | Boston 2018"},"2638":{"market_hash_name":"Sticker | coldzera (Gold) | Boston 2018"},"2639":{"market_hash_name":"Sticker | FalleN | Boston 2018"},"264":{"market_hash_name":"Sticker | Pandamonium"},"2640":{"market_hash_name":"Sticker | FalleN (Foil) | Boston 2018"},"2641":{"market_hash_name":"Sticker | FalleN (Gold) | Boston 2018"},"2642":{"market_hash_name":"Sticker | felps | Boston 2018"},"2643":{"market_hash_name":"Sticker | felps (Foil) | Boston 2018"},"2644":{"market_hash_name":"Sticker | felps (Gold) | Boston 2018"},"2645":{"market_hash_name":"Sticker | fer | Boston 2018"},"2646":{"market_hash_name":"Sticker | fer (Foil) | Boston 2018"},"2647":{"market_hash_name":"Sticker | fer (Gold) | Boston 2018"},"2648":{"market_hash_name":"Sticker | TACO | Boston 2018"},"2649":{"market_hash_name":"Sticker | TACO (Foil) | Boston 2018"},"265":{"market_hash_name":"Sticker | Piece Of Cake"},"2650":{"market_hash_name":"Sticker | TACO (Gold) | Boston 2018"},"2651":{"market_hash_name":"Sticker | gob b | Boston 2018"},"2652":{"market_hash_name":"Sticker | gob b (Foil) | Boston 2018"},"2653":{"market_hash_name":"Sticker | gob b (Gold) | Boston 2018"},"2654":{"market_hash_name":"Sticker | keev | Boston 2018"},"2655":{"market_hash_name":"Sticker | keev (Foil) | Boston 2018"},"2656":{"market_hash_name":"Sticker | keev (Gold) | Boston 2018"},"2657":{"market_hash_name":"Sticker | LEGIJA | Boston 2018"},"2658":{"market_hash_name":"Sticker | LEGIJA (Foil) | Boston 2018"},"2659":{"market_hash_name":"Sticker | LEGIJA (Gold) | Boston 2018"},"266":{"market_hash_name":"Sticker | SAS Chicken"},"2660":{"market_hash_name":"Sticker | nex | Boston 2018"},"2661":{"market_hash_name":"Sticker | nex (Foil) | Boston 2018"},"2662":{"market_hash_name":"Sticker | nex (Gold) | Boston 2018"},"2663":{"market_hash_name":"Sticker | tabseN | Boston 2018"},"2664":{"market_hash_name":"Sticker | tabseN (Foil) | Boston 2018"},"2665":{"market_hash_name":"Sticker | tabseN (Gold) | Boston 2018"},"2666":{"market_hash_name":"Sticker | aizy | Boston 2018"},"2667":{"market_hash_name":"Sticker | aizy (Foil) | Boston 2018"},"2668":{"market_hash_name":"Sticker | aizy (Gold) | Boston 2018"},"2669":{"market_hash_name":"Sticker | cajunb | Boston 2018"},"267":{"market_hash_name":"Sticker | Thug Life"},"2670":{"market_hash_name":"Sticker | cajunb (Foil) | Boston 2018"},"2671":{"market_hash_name":"Sticker | cajunb (Gold) | Boston 2018"},"2672":{"market_hash_name":"Sticker | k0nfig | Boston 2018"},"2673":{"market_hash_name":"Sticker | k0nfig (Foil) | Boston 2018"},"2674":{"market_hash_name":"Sticker | k0nfig (Gold) | Boston 2018"},"2675":{"market_hash_name":"Sticker | MSL | Boston 2018"},"2676":{"market_hash_name":"Sticker | MSL (Foil) | Boston 2018"},"2677":{"market_hash_name":"Sticker | MSL (Gold) | Boston 2018"},"2678":{"market_hash_name":"Sticker | v4lde | Boston 2018"},"2679":{"market_hash_name":"Sticker | v4lde (Foil) | Boston 2018"},"268":{"market_hash_name":"Sticker | T-Rekt"},"2680":{"market_hash_name":"Sticker | v4lde (Gold) | Boston 2018"},"2681":{"market_hash_name":"Sticker | apEX | Boston 2018"},"2682":{"market_hash_name":"Sticker | apEX (Foil) | Boston 2018"},"2683":{"market_hash_name":"Sticker | apEX (Gold) | Boston 2018"},"2684":{"market_hash_name":"Sticker | bodyy | Boston 2018"},"2685":{"market_hash_name":"Sticker | bodyy (Foil) | Boston 2018"},"2686":{"market_hash_name":"Sticker | bodyy (Gold) | Boston 2018"},"2687":{"market_hash_name":"Sticker | kennyS | Boston 2018"},"2688":{"market_hash_name":"Sticker | kennyS (Foil) | Boston 2018"},"2689":{"market_hash_name":"Sticker | kennyS (Gold) | Boston 2018"},"269":{"market_hash_name":"Sticker | Warowl"},"2690":{"market_hash_name":"Sticker | NBK- | Boston 2018"},"2691":{"market_hash_name":"Sticker | NBK- (Foil) | Boston 2018"},"2692":{"market_hash_name":"Sticker | NBK- (Gold) | Boston 2018"},"2693":{"market_hash_name":"Sticker | shox | Boston 2018"},"2694":{"market_hash_name":"Sticker | shox (Foil) | Boston 2018"},"2695":{"market_hash_name":"Sticker | shox (Gold) | Boston 2018"},"2696":{"market_hash_name":"Sticker | autimatic | Boston 2018"},"2697":{"market_hash_name":"Sticker | autimatic (Foil) | Boston 2018"},"2698":{"market_hash_name":"Sticker | autimatic (Gold) | Boston 2018"},"2699":{"market_hash_name":"Sticker | RUSH | Boston 2018"},"27":{"market_hash_name":"Sticker | Luck Skill (Foil)"},"270":{"market_hash_name":"Sticker | Work For Ammo"},"2700":{"market_hash_name":"Sticker | RUSH (Foil) | Boston 2018"},"2701":{"market_hash_name":"Sticker | RUSH (Gold) | Boston 2018"},"2702":{"market_hash_name":"Sticker | Skadoodle | Boston 2018"},"2703":{"market_hash_name":"Sticker | Skadoodle (Foil) | Boston 2018"},"2704":{"market_hash_name":"Sticker | Skadoodle (Gold) | Boston 2018"},"2705":{"market_hash_name":"Sticker | Stewie2K | Boston 2018"},"2706":{"market_hash_name":"Sticker | Stewie2K (Foil) | Boston 2018"},"2707":{"market_hash_name":"Sticker | Stewie2K (Gold) | Boston 2018"},"2708":{"market_hash_name":"Sticker | tarik | Boston 2018"},"2709":{"market_hash_name":"Sticker | tarik (Foil) | Boston 2018"},"271":{"market_hash_name":"Sticker | Phoenix (Foil)"},"2710":{"market_hash_name":"Sticker | tarik (Gold) | Boston 2018"},"2711":{"market_hash_name":"Sticker | B1ad3 | Boston 2018"},"2712":{"market_hash_name":"Sticker | B1ad3 (Foil) | Boston 2018"},"2713":{"market_hash_name":"Sticker | B1ad3 (Gold) | Boston 2018"},"2714":{"market_hash_name":"Sticker | markeloff | Boston 2018"},"2715":{"market_hash_name":"Sticker | markeloff (Foil) | Boston 2018"},"2716":{"market_hash_name":"Sticker | markeloff (Gold) | Boston 2018"},"2717":{"market_hash_name":"Sticker | seized | Boston 2018"},"2718":{"market_hash_name":"Sticker | seized (Foil) | Boston 2018"},"2719":{"market_hash_name":"Sticker | seized (Gold) | Boston 2018"},"272":{"market_hash_name":"Sticker | Bomb Squad (Foil)"},"2720":{"market_hash_name":"Sticker | wayLander | Boston 2018"},"2721":{"market_hash_name":"Sticker | wayLander (Foil) | Boston 2018"},"2722":{"market_hash_name":"Sticker | wayLander (Gold) | Boston 2018"},"2723":{"market_hash_name":"Sticker | WorldEdit | Boston 2018"},"2724":{"market_hash_name":"Sticker | WorldEdit (Foil) | Boston 2018"},"2725":{"market_hash_name":"Sticker | WorldEdit (Gold) | Boston 2018"},"2726":{"market_hash_name":"Sticker | Edward | Boston 2018"},"2727":{"market_hash_name":"Sticker | Edward (Foil) | Boston 2018"},"2728":{"market_hash_name":"Sticker | Edward (Gold) | Boston 2018"},"2729":{"market_hash_name":"Sticker | electronic | Boston 2018"},"273":{"market_hash_name":"Sticker | Flickshot"},"2730":{"market_hash_name":"Sticker | electronic (Foil) | Boston 2018"},"2731":{"market_hash_name":"Sticker | electronic (Gold) | Boston 2018"},"2732":{"market_hash_name":"Sticker | flamie | Boston 2018"},"2733":{"market_hash_name":"Sticker | flamie (Foil) | Boston 2018"},"2734":{"market_hash_name":"Sticker | flamie (Gold) | Boston 2018"},"2735":{"market_hash_name":"Sticker | s1mple | Boston 2018"},"2736":{"market_hash_name":"Sticker | s1mple (Foil) | Boston 2018"},"2737":{"market_hash_name":"Sticker | s1mple (Gold) | Boston 2018"},"2738":{"market_hash_name":"Sticker | Zeus | Boston 2018"},"2739":{"market_hash_name":"Sticker | Zeus (Foil) | Boston 2018"},"274":{"market_hash_name":"Sticker | Headshot Guarantee"},"2740":{"market_hash_name":"Sticker | Zeus (Gold) | Boston 2018"},"2741":{"market_hash_name":"Sticker | chrisJ | Boston 2018"},"2742":{"market_hash_name":"Sticker | chrisJ (Foil) | Boston 2018"},"2743":{"market_hash_name":"Sticker | chrisJ (Gold) | Boston 2018"},"2744":{"market_hash_name":"Sticker | oskar | Boston 2018"},"2745":{"market_hash_name":"Sticker | oskar (Foil) | Boston 2018"},"2746":{"market_hash_name":"Sticker | oskar (Gold) | Boston 2018"},"2747":{"market_hash_name":"Sticker | ropz | Boston 2018"},"2748":{"market_hash_name":"Sticker | ropz (Foil) | Boston 2018"},"2749":{"market_hash_name":"Sticker | ropz (Gold) | Boston 2018"},"275":{"market_hash_name":"Sticker | Eco Rush"},"2750":{"market_hash_name":"Sticker | STYKO | Boston 2018"},"2751":{"market_hash_name":"Sticker | STYKO (Foil) | Boston 2018"},"2752":{"market_hash_name":"Sticker | STYKO (Gold) | Boston 2018"},"2753":{"market_hash_name":"Sticker | suNny | Boston 2018"},"2754":{"market_hash_name":"Sticker | suNny (Foil) | Boston 2018"},"2755":{"market_hash_name":"Sticker | suNny (Gold) | Boston 2018"},"2756":{"market_hash_name":"Sticker | denis | Boston 2018"},"2757":{"market_hash_name":"Sticker | denis (Foil) | Boston 2018"},"2758":{"market_hash_name":"Sticker | denis (Gold) | Boston 2018"},"2759":{"market_hash_name":"Sticker | innocent | Boston 2018"},"276":{"market_hash_name":"Sticker | Just Trolling"},"2760":{"market_hash_name":"Sticker | innocent (Foil) | Boston 2018"},"2761":{"market_hash_name":"Sticker | innocent (Gold) | Boston 2018"},"2762":{"market_hash_name":"Sticker | kRYSTAL | Boston 2018"},"2763":{"market_hash_name":"Sticker | kRYSTAL (Foil) | Boston 2018"},"2764":{"market_hash_name":"Sticker | kRYSTAL (Gold) | Boston 2018"},"2765":{"market_hash_name":"Sticker | Spiidi | Boston 2018"},"2766":{"market_hash_name":"Sticker | Spiidi (Foil) | Boston 2018"},"2767":{"market_hash_name":"Sticker | Spiidi (Gold) | Boston 2018"},"2768":{"market_hash_name":"Sticker | zehN | Boston 2018"},"2769":{"market_hash_name":"Sticker | zehN (Foil) | Boston 2018"},"2770":{"market_hash_name":"Sticker | zehN (Gold) | Boston 2018"},"2771":{"market_hash_name":"Sticker | GuardiaN | Boston 2018"},"2772":{"market_hash_name":"Sticker | GuardiaN (Foil) | Boston 2018"},"2773":{"market_hash_name":"Sticker | GuardiaN (Gold) | Boston 2018"},"2774":{"market_hash_name":"Sticker | karrigan | Boston 2018"},"2775":{"market_hash_name":"Sticker | karrigan (Foil) | Boston 2018"},"2776":{"market_hash_name":"Sticker | karrigan (Gold) | Boston 2018"},"2777":{"market_hash_name":"Sticker | NiKo | Boston 2018"},"2778":{"market_hash_name":"Sticker | NiKo (Foil) | Boston 2018"},"2779":{"market_hash_name":"Sticker | NiKo (Gold) | Boston 2018"},"278":{"market_hash_name":"Sticker | Firestarter (Holo)"},"2780":{"market_hash_name":"Sticker | olofmeister | Boston 2018"},"2781":{"market_hash_name":"Sticker | olofmeister (Foil) | Boston 2018"},"2782":{"market_hash_name":"Sticker | olofmeister (Gold) | Boston 2018"},"2783":{"market_hash_name":"Sticker | rain | Boston 2018"},"2784":{"market_hash_name":"Sticker | rain (Foil) | Boston 2018"},"2785":{"market_hash_name":"Sticker | rain (Gold) | Boston 2018"},"2786":{"market_hash_name":"Sticker | chopper | Boston 2018"},"2787":{"market_hash_name":"Sticker | chopper (Foil) | Boston 2018"},"2788":{"market_hash_name":"Sticker | chopper (Gold) | Boston 2018"},"2789":{"market_hash_name":"Sticker | hutji | Boston 2018"},"279":{"market_hash_name":"Sticker | Lucky Cat (Foil)"},"2790":{"market_hash_name":"Sticker | hutji (Foil) | Boston 2018"},"2791":{"market_hash_name":"Sticker | hutji (Gold) | Boston 2018"},"2792":{"market_hash_name":"Sticker | jR | Boston 2018"},"2793":{"market_hash_name":"Sticker | jR (Foil) | Boston 2018"},"2794":{"market_hash_name":"Sticker | jR (Gold) | Boston 2018"},"2795":{"market_hash_name":"Sticker | keshandr | Boston 2018"},"2796":{"market_hash_name":"Sticker | keshandr (Foil) | Boston 2018"},"2797":{"market_hash_name":"Sticker | keshandr (Gold) | Boston 2018"},"2798":{"market_hash_name":"Sticker | mir | Boston 2018"},"2799":{"market_hash_name":"Sticker | mir (Foil) | Boston 2018"},"28":{"market_hash_name":"Sticker | Blacksite (Foil)"},"280":{"market_hash_name":"Sticker | Robo"},"2800":{"market_hash_name":"Sticker | mir (Gold) | Boston 2018"},"2801":{"market_hash_name":"Sticker | Calyx | Boston 2018"},"2802":{"market_hash_name":"Sticker | Calyx (Foil) | Boston 2018"},"2803":{"market_hash_name":"Sticker | Calyx (Gold) | Boston 2018"},"2804":{"market_hash_name":"Sticker | MAJ3R | Boston 2018"},"2805":{"market_hash_name":"Sticker | MAJ3R (Foil) | Boston 2018"},"2806":{"market_hash_name":"Sticker | MAJ3R (Gold) | Boston 2018"},"2807":{"market_hash_name":"Sticker | ngiN | Boston 2018"},"2808":{"market_hash_name":"Sticker | ngiN (Foil) | Boston 2018"},"2809":{"market_hash_name":"Sticker | ngiN (Gold) | Boston 2018"},"281":{"market_hash_name":"Sticker | Witchcraft"},"2810":{"market_hash_name":"Sticker | paz | Boston 2018"},"2811":{"market_hash_name":"Sticker | paz (Foil) | Boston 2018"},"2812":{"market_hash_name":"Sticker | paz (Gold) | Boston 2018"},"2813":{"market_hash_name":"Sticker | XANTARES | Boston 2018"},"2814":{"market_hash_name":"Sticker | XANTARES (Foil) | Boston 2018"},"2815":{"market_hash_name":"Sticker | XANTARES (Gold) | Boston 2018"},"2816":{"market_hash_name":"Sticker | EliGE | Boston 2018"},"2817":{"market_hash_name":"Sticker | EliGE (Foil) | Boston 2018"},"2818":{"market_hash_name":"Sticker | EliGE (Gold) | Boston 2018"},"2819":{"market_hash_name":"Sticker | jdm64 | Boston 2018"},"282":{"market_hash_name":"Sticker | Wanna Fight"},"2820":{"market_hash_name":"Sticker | jdm64 (Foil) | Boston 2018"},"2821":{"market_hash_name":"Sticker | jdm64 (Gold) | Boston 2018"},"2822":{"market_hash_name":"Sticker | nitr0 | Boston 2018"},"2823":{"market_hash_name":"Sticker | nitr0 (Foil) | Boston 2018"},"2824":{"market_hash_name":"Sticker | nitr0 (Gold) | Boston 2018"},"2825":{"market_hash_name":"Sticker | stanislaw | Boston 2018"},"2826":{"market_hash_name":"Sticker | stanislaw (Foil) | Boston 2018"},"2827":{"market_hash_name":"Sticker | stanislaw (Gold) | Boston 2018"},"2828":{"market_hash_name":"Sticker | Twistzz | Boston 2018"},"2829":{"market_hash_name":"Sticker | Twistzz (Foil) | Boston 2018"},"283":{"market_hash_name":"Sticker | Hostage Rescue"},"2830":{"market_hash_name":"Sticker | Twistzz (Gold) | Boston 2018"},"2831":{"market_hash_name":"Sticker | buster | Boston 2018"},"2832":{"market_hash_name":"Sticker | buster (Foil) | Boston 2018"},"2833":{"market_hash_name":"Sticker | buster (Gold) | Boston 2018"},"2834":{"market_hash_name":"Sticker | dimasick | Boston 2018"},"2835":{"market_hash_name":"Sticker | dimasick (Foil) | Boston 2018"},"2836":{"market_hash_name":"Sticker | dimasick (Gold) | Boston 2018"},"2837":{"market_hash_name":"Sticker | Jame | Boston 2018"},"2838":{"market_hash_name":"Sticker | Jame (Foil) | Boston 2018"},"2839":{"market_hash_name":"Sticker | Jame (Gold) | Boston 2018"},"284":{"market_hash_name":"Sticker | Hamster Hawk"},"2840":{"market_hash_name":"Sticker | KrizzeN | Boston 2018"},"2841":{"market_hash_name":"Sticker | KrizzeN (Foil) | Boston 2018"},"2842":{"market_hash_name":"Sticker | KrizzeN (Gold) | Boston 2018"},"2843":{"market_hash_name":"Sticker | qikert | Boston 2018"},"2844":{"market_hash_name":"Sticker | qikert (Foil) | Boston 2018"},"2845":{"market_hash_name":"Sticker | qikert (Gold) | Boston 2018"},"2846":{"market_hash_name":"Sticker | AZR | Boston 2018"},"2847":{"market_hash_name":"Sticker | AZR (Foil) | Boston 2018"},"2848":{"market_hash_name":"Sticker | AZR (Gold) | Boston 2018"},"2849":{"market_hash_name":"Sticker | jks | Boston 2018"},"285":{"market_hash_name":"Sticker | Headless Chicken"},"2850":{"market_hash_name":"Sticker | jks (Foil) | Boston 2018"},"2851":{"market_hash_name":"Sticker | jks (Gold) | Boston 2018"},"2852":{"market_hash_name":"Sticker | NAF | Boston 2018"},"2853":{"market_hash_name":"Sticker | NAF (Foil) | Boston 2018"},"2854":{"market_hash_name":"Sticker | NAF (Gold) | Boston 2018"},"2855":{"market_hash_name":"Sticker | Nifty | Boston 2018"},"2856":{"market_hash_name":"Sticker | Nifty (Foil) | Boston 2018"},"2857":{"market_hash_name":"Sticker | Nifty (Gold) | Boston 2018"},"2858":{"market_hash_name":"Sticker | USTILO | Boston 2018"},"2859":{"market_hash_name":"Sticker | USTILO (Foil) | Boston 2018"},"286":{"market_hash_name":"Sticker | 3DMAX | Katowice 2015"},"2860":{"market_hash_name":"Sticker | USTILO (Gold) | Boston 2018"},"2861":{"market_hash_name":"Sticker | Happy | Boston 2018"},"2862":{"market_hash_name":"Sticker | Happy (Foil) | Boston 2018"},"2863":{"market_hash_name":"Sticker | Happy (Gold) | Boston 2018"},"2864":{"market_hash_name":"Sticker | RpK | Boston 2018"},"2865":{"market_hash_name":"Sticker | RpK (Foil) | Boston 2018"},"2866":{"market_hash_name":"Sticker | RpK (Gold) | Boston 2018"},"2867":{"market_hash_name":"Sticker | ScreaM | Boston 2018"},"2868":{"market_hash_name":"Sticker | ScreaM (Foil) | Boston 2018"},"2869":{"market_hash_name":"Sticker | ScreaM (Gold) | Boston 2018"},"287":{"market_hash_name":"Sticker | 3DMAX (Holo) | Katowice 2015"},"2870":{"market_hash_name":"Sticker | SIXER | Boston 2018"},"2871":{"market_hash_name":"Sticker | SIXER (Foil) | Boston 2018"},"2872":{"market_hash_name":"Sticker | SIXER (Gold) | Boston 2018"},"2873":{"market_hash_name":"Sticker | xms | Boston 2018"},"2874":{"market_hash_name":"Sticker | xms (Foil) | Boston 2018"},"2875":{"market_hash_name":"Sticker | xms (Gold) | Boston 2018"},"2876":{"market_hash_name":"Sticker | AmaNEk | Boston 2018"},"2877":{"market_hash_name":"Sticker | AmaNEk (Foil) | Boston 2018"},"2878":{"market_hash_name":"Sticker | AmaNEk (Gold) | Boston 2018"},"2879":{"market_hash_name":"Sticker | devoduvek | Boston 2018"},"288":{"market_hash_name":"Sticker | 3DMAX (Foil) | Katowice 2015"},"2880":{"market_hash_name":"Sticker | devoduvek (Foil) | Boston 2018"},"2881":{"market_hash_name":"Sticker | devoduvek (Gold) | Boston 2018"},"2882":{"market_hash_name":"Sticker | seang@res | Boston 2018"},"2883":{"market_hash_name":"Sticker | seang@res (Foil) | Boston 2018"},"2884":{"market_hash_name":"Sticker | seang@res (Gold) | Boston 2018"},"2885":{"market_hash_name":"Sticker | ShahZaM | Boston 2018"},"2886":{"market_hash_name":"Sticker | ShahZaM (Foil) | Boston 2018"},"2887":{"market_hash_name":"Sticker | ShahZaM (Gold) | Boston 2018"},"2888":{"market_hash_name":"Sticker | SicK | Boston 2018"},"2889":{"market_hash_name":"Sticker | SicK (Foil) | Boston 2018"},"289":{"market_hash_name":"Sticker | 3DMAX (Gold) | Katowice 2015"},"2890":{"market_hash_name":"Sticker | SicK (Gold) | Boston 2018"},"2891":{"market_hash_name":"Sticker | balblna | Boston 2018"},"2892":{"market_hash_name":"Sticker | balblna (Foil) | Boston 2018"},"2893":{"market_hash_name":"Sticker | balblna (Gold) | Boston 2018"},"2894":{"market_hash_name":"Sticker | Boombl4 | Boston 2018"},"2895":{"market_hash_name":"Sticker | Boombl4 (Foil) | Boston 2018"},"2896":{"market_hash_name":"Sticker | Boombl4 (Gold) | Boston 2018"},"2897":{"market_hash_name":"Sticker | jmqa | Boston 2018"},"2898":{"market_hash_name":"Sticker | jmqa (Foil) | Boston 2018"},"2899":{"market_hash_name":"Sticker | jmqa (Gold) | Boston 2018"},"290":{"market_hash_name":"Sticker | Cloud9 G2A | Katowice 2015"},"2900":{"market_hash_name":"Sticker | Kvik | Boston 2018"},"2901":{"market_hash_name":"Sticker | Kvik (Foil) | Boston 2018"},"2902":{"market_hash_name":"Sticker | Kvik (Gold) | Boston 2018"},"2903":{"market_hash_name":"Sticker | waterfaLLZ | Boston 2018"},"2904":{"market_hash_name":"Sticker | waterfaLLZ (Foil) | Boston 2018"},"2905":{"market_hash_name":"Sticker | waterfaLLZ (Gold) | Boston 2018"},"2906":{"market_hash_name":"Sticker | BnTeT | Boston 2018"},"2907":{"market_hash_name":"Sticker | BnTeT (Foil) | Boston 2018"},"2908":{"market_hash_name":"Sticker | BnTeT (Gold) | Boston 2018"},"2909":{"market_hash_name":"Sticker | bondik | Boston 2018"},"291":{"market_hash_name":"Sticker | Cloud9 G2A (Holo) | Katowice 2015"},"2910":{"market_hash_name":"Sticker | bondik (Foil) | Boston 2018"},"2911":{"market_hash_name":"Sticker | bondik (Gold) | Boston 2018"},"2912":{"market_hash_name":"Sticker | captainMo | Boston 2018"},"2913":{"market_hash_name":"Sticker | captainMo (Foil) | Boston 2018"},"2914":{"market_hash_name":"Sticker | captainMo (Gold) | Boston 2018"},"2915":{"market_hash_name":"Sticker | DD | Boston 2018"},"2916":{"market_hash_name":"Sticker | DD (Foil) | Boston 2018"},"2917":{"market_hash_name":"Sticker | DD (Gold) | Boston 2018"},"2918":{"market_hash_name":"Sticker | somebody | Boston 2018"},"2919":{"market_hash_name":"Sticker | somebody (Foil) | Boston 2018"},"292":{"market_hash_name":"Sticker | Cloud9 G2A (Foil) | Katowice 2015"},"2920":{"market_hash_name":"Sticker | somebody (Gold) | Boston 2018"},"2921":{"market_hash_name":"Sticker | Bullet Rain"},"2922":{"market_hash_name":"Sticker | Camper"},"2923":{"market_hash_name":"Sticker | Dessert Eagle"},"2924":{"market_hash_name":"Sticker | Devouring Flame"},"2925":{"market_hash_name":"Sticker | Entry Fragger"},"2926":{"market_hash_name":"Sticker | Friendly Fire"},"2927":{"market_hash_name":"Sticker | Retake Expert"},"2928":{"market_hash_name":"Sticker | Small Arms"},"2929":{"market_hash_name":"Sticker | Devouring Flame (Holo)"},"293":{"market_hash_name":"Sticker | Cloud9 G2A (Gold) | Katowice 2015"},"2930":{"market_hash_name":"Sticker | Friendly Fire (Holo)"},"2931":{"market_hash_name":"Sticker | Retake Expert (Holo)"},"2932":{"market_hash_name":"Sticker | Small Arms (Holo)"},"2933":{"market_hash_name":"Sticker | Bullet Rain (Foil)"},"2934":{"market_hash_name":"Sticker | Camper (Foil)"},"2935":{"market_hash_name":"Sticker | Flash Gaming | Boston 2018"},"2936":{"market_hash_name":"Sticker | Flash Gaming (Holo) | Boston 2018"},"2937":{"market_hash_name":"Sticker | Flash Gaming (Foil) | Boston 2018"},"2938":{"market_hash_name":"Sticker | Flash Gaming (Gold) | Boston 2018"},"294":{"market_hash_name":"Sticker | Counter Logic Gaming | Katowice 2015"},"2940":{"market_hash_name":"Sticker | Attacker | Boston 2018"},"2941":{"market_hash_name":"Sticker | Attacker (Foil) | Boston 2018"},"2942":{"market_hash_name":"Sticker | Attacker (Gold) | Boston 2018"},"2943":{"market_hash_name":"Sticker | Karsa | Boston 2018"},"2944":{"market_hash_name":"Sticker | Karsa (Foil) | Boston 2018"},"2945":{"market_hash_name":"Sticker | Karsa (Gold) | Boston 2018"},"2946":{"market_hash_name":"Sticker | Kaze | Boston 2018"},"2947":{"market_hash_name":"Sticker | Kaze (Foil) | Boston 2018"},"2948":{"market_hash_name":"Sticker | Kaze (Gold) | Boston 2018"},"2949":{"market_hash_name":"Sticker | LoveYY | Boston 2018"},"295":{"market_hash_name":"Sticker | Counter Logic Gaming (Holo) | Katowice 2015"},"2950":{"market_hash_name":"Sticker | LoveYY (Foil) | Boston 2018"},"2951":{"market_hash_name":"Sticker | LoveYY (Gold) | Boston 2018"},"2952":{"market_hash_name":"Sticker | Summer | Boston 2018"},"2953":{"market_hash_name":"Sticker | Summer (Foil) | Boston 2018"},"2954":{"market_hash_name":"Sticker | Summer (Gold) | Boston 2018"},"2955":{"market_hash_name":"Sticker | Cloud9 | London 2018"},"2956":{"market_hash_name":"Sticker | Cloud9 (Holo) | London 2018"},"2957":{"market_hash_name":"Sticker | Cloud9 (Foil) | London 2018"},"2958":{"market_hash_name":"Sticker | Cloud9 (Gold) | London 2018"},"2959":{"market_hash_name":"Sticker | FaZe Clan | London 2018"},"296":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Katowice 2015"},"2960":{"market_hash_name":"Sticker | FaZe Clan (Holo) | London 2018"},"2961":{"market_hash_name":"Sticker | FaZe Clan (Foil) | London 2018"},"2962":{"market_hash_name":"Sticker | FaZe Clan (Gold) | London 2018"},"2963":{"market_hash_name":"Sticker | Natus Vincere | London 2018"},"2964":{"market_hash_name":"Sticker | Natus Vincere (Holo) | London 2018"},"2965":{"market_hash_name":"Sticker | Natus Vincere (Foil) | London 2018"},"2966":{"market_hash_name":"Sticker | Natus Vincere (Gold) | London 2018"},"2967":{"market_hash_name":"Sticker | MIBR | London 2018"},"2968":{"market_hash_name":"Sticker | MIBR (Holo) | London 2018"},"2969":{"market_hash_name":"Sticker | MIBR (Foil) | London 2018"},"297":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Katowice 2015"},"2970":{"market_hash_name":"Sticker | MIBR (Gold) | London 2018"},"2971":{"market_hash_name":"Sticker | mousesports | London 2018"},"2972":{"market_hash_name":"Sticker | mousesports (Holo) | London 2018"},"2973":{"market_hash_name":"Sticker | mousesports (Foil) | London 2018"},"2974":{"market_hash_name":"Sticker | mousesports (Gold) | London 2018"},"2975":{"market_hash_name":"Sticker | Winstrike Team | London 2018"},"2976":{"market_hash_name":"Sticker | Winstrike Team (Holo) | London 2018"},"2977":{"market_hash_name":"Sticker | Winstrike Team (Foil) | London 2018"},"2978":{"market_hash_name":"Sticker | Winstrike Team (Gold) | London 2018"},"2979":{"market_hash_name":"Sticker | G2 Esports | London 2018"},"2980":{"market_hash_name":"Sticker | G2 Esports (Holo) | London 2018"},"2981":{"market_hash_name":"Sticker | G2 Esports (Foil) | London 2018"},"2982":{"market_hash_name":"Sticker | G2 Esports (Gold) | London 2018"},"2983":{"market_hash_name":"Sticker | Fnatic | London 2018"},"2984":{"market_hash_name":"Sticker | Fnatic (Holo) | London 2018"},"2985":{"market_hash_name":"Sticker | Fnatic (Foil) | London 2018"},"2986":{"market_hash_name":"Sticker | Fnatic (Gold) | London 2018"},"2987":{"market_hash_name":"Sticker | Gambit Esports | London 2018"},"2988":{"market_hash_name":"Sticker | Gambit Esports (Holo) | London 2018"},"2989":{"market_hash_name":"Sticker | Gambit Esports (Foil) | London 2018"},"2990":{"market_hash_name":"Sticker | Gambit Esports (Gold) | London 2018"},"2991":{"market_hash_name":"Sticker | Vega Squadron | London 2018"},"2992":{"market_hash_name":"Sticker | Vega Squadron (Holo) | London 2018"},"2993":{"market_hash_name":"Sticker | Vega Squadron (Foil) | London 2018"},"2994":{"market_hash_name":"Sticker | Vega Squadron (Gold) | London 2018"},"2995":{"market_hash_name":"Sticker | Space Soldiers | London 2018"},"2996":{"market_hash_name":"Sticker | Space Soldiers (Holo) | London 2018"},"2997":{"market_hash_name":"Sticker | Space Soldiers (Foil) | London 2018"},"2998":{"market_hash_name":"Sticker | Space Soldiers (Gold) | London 2018"},"2999":{"market_hash_name":"Sticker | BIG | London 2018"},"3":{"market_hash_name":"Sticker | Shooter Close"},"300":{"market_hash_name":"Sticker | ESL One (Foil) | Katowice 2015"},"3000":{"market_hash_name":"Sticker | BIG (Holo) | London 2018"},"3001":{"market_hash_name":"Sticker | BIG (Foil) | London 2018"},"3002":{"market_hash_name":"Sticker | BIG (Gold) | London 2018"},"3003":{"market_hash_name":"Sticker | Astralis | London 2018"},"3004":{"market_hash_name":"Sticker | Astralis (Holo) | London 2018"},"3005":{"market_hash_name":"Sticker | Astralis (Foil) | London 2018"},"3006":{"market_hash_name":"Sticker | Astralis (Gold) | London 2018"},"3007":{"market_hash_name":"Sticker | Team Liquid | London 2018"},"3008":{"market_hash_name":"Sticker | Team Liquid (Holo) | London 2018"},"3009":{"market_hash_name":"Sticker | Team Liquid (Foil) | London 2018"},"301":{"market_hash_name":"Sticker | ESL One (Gold) | Katowice 2015"},"3010":{"market_hash_name":"Sticker | Team Liquid (Gold) | London 2018"},"3011":{"market_hash_name":"Sticker | North | London 2018"},"3012":{"market_hash_name":"Sticker | North (Holo) | London 2018"},"3013":{"market_hash_name":"Sticker | North (Foil) | London 2018"},"3014":{"market_hash_name":"Sticker | North (Gold) | London 2018"},"3015":{"market_hash_name":"Sticker | Virtus.Pro | London 2018"},"3016":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | London 2018"},"3017":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | London 2018"},"3018":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | London 2018"},"3019":{"market_hash_name":"Sticker | Ninjas in Pyjamas | London 2018"},"302":{"market_hash_name":"Sticker | Flipsid3 Tactics | Katowice 2015"},"3020":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | London 2018"},"3021":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | London 2018"},"3022":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | London 2018"},"3023":{"market_hash_name":"Sticker | compLexity Gaming | London 2018"},"3024":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | London 2018"},"3025":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | London 2018"},"3026":{"market_hash_name":"Sticker | compLexity Gaming (Gold) | London 2018"},"3027":{"market_hash_name":"Sticker | HellRaisers | London 2018"},"3028":{"market_hash_name":"Sticker | HellRaisers (Holo) | London 2018"},"3029":{"market_hash_name":"Sticker | HellRaisers (Foil) | London 2018"},"303":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Katowice 2015"},"3030":{"market_hash_name":"Sticker | HellRaisers (Gold) | London 2018"},"3031":{"market_hash_name":"Sticker | Renegades | London 2018"},"3032":{"market_hash_name":"Sticker | Renegades (Holo) | London 2018"},"3033":{"market_hash_name":"Sticker | Renegades (Foil) | London 2018"},"3034":{"market_hash_name":"Sticker | Renegades (Gold) | London 2018"},"3035":{"market_hash_name":"Sticker | OpTic Gaming | London 2018"},"3036":{"market_hash_name":"Sticker | OpTic Gaming (Holo) | London 2018"},"3037":{"market_hash_name":"Sticker | OpTic Gaming (Foil) | London 2018"},"3038":{"market_hash_name":"Sticker | OpTic Gaming (Gold) | London 2018"},"3039":{"market_hash_name":"Sticker | Rogue | London 2018"},"304":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Katowice 2015"},"3040":{"market_hash_name":"Sticker | Rogue (Holo) | London 2018"},"3041":{"market_hash_name":"Sticker | Rogue (Foil) | London 2018"},"3042":{"market_hash_name":"Sticker | Rogue (Gold) | London 2018"},"3043":{"market_hash_name":"Sticker | Team Spirit | London 2018"},"3044":{"market_hash_name":"Sticker | Team Spirit (Holo) | London 2018"},"3045":{"market_hash_name":"Sticker | Team Spirit (Foil) | London 2018"},"3046":{"market_hash_name":"Sticker | Team Spirit (Gold) | London 2018"},"3047":{"market_hash_name":"Sticker | Tyloo | London 2018"},"3048":{"market_hash_name":"Sticker | Tyloo (Holo) | London 2018"},"3049":{"market_hash_name":"Sticker | Tyloo (Foil) | London 2018"},"305":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Katowice 2015"},"3050":{"market_hash_name":"Sticker | Tyloo (Gold) | London 2018"},"3051":{"market_hash_name":"Sticker | FACEIT | London 2018"},"3052":{"market_hash_name":"Sticker | FACEIT (Holo) | London 2018"},"3053":{"market_hash_name":"Sticker | FACEIT (Foil) | London 2018"},"3054":{"market_hash_name":"Sticker | FACEIT (Gold) | London 2018"},"306":{"market_hash_name":"Sticker | Fnatic | Katowice 2015"},"307":{"market_hash_name":"Sticker | Fnatic (Holo) | Katowice 2015"},"308":{"market_hash_name":"Sticker | Fnatic (Foil) | Katowice 2015"},"3080":{"market_hash_name":"Sticker | Golden | London 2018"},"3081":{"market_hash_name":"Sticker | Golden (Foil) | London 2018"},"3082":{"market_hash_name":"Sticker | Golden (Gold) | London 2018"},"3083":{"market_hash_name":"Sticker | autimatic | London 2018"},"3084":{"market_hash_name":"Sticker | autimatic (Foil) | London 2018"},"3085":{"market_hash_name":"Sticker | autimatic (Gold) | London 2018"},"3086":{"market_hash_name":"Sticker | RUSH | London 2018"},"3087":{"market_hash_name":"Sticker | RUSH (Foil) | London 2018"},"3088":{"market_hash_name":"Sticker | RUSH (Gold) | London 2018"},"3089":{"market_hash_name":"Sticker | STYKO | London 2018"},"309":{"market_hash_name":"Sticker | Fnatic (Gold) | Katowice 2015"},"3090":{"market_hash_name":"Sticker | STYKO (Foil) | London 2018"},"3091":{"market_hash_name":"Sticker | STYKO (Gold) | London 2018"},"3092":{"market_hash_name":"Sticker | Skadoodle | London 2018"},"3093":{"market_hash_name":"Sticker | Skadoodle (Foil) | London 2018"},"3094":{"market_hash_name":"Sticker | Skadoodle (Gold) | London 2018"},"3095":{"market_hash_name":"Sticker | GuardiaN | London 2018"},"3096":{"market_hash_name":"Sticker | GuardiaN (Foil) | London 2018"},"3097":{"market_hash_name":"Sticker | GuardiaN (Gold) | London 2018"},"3098":{"market_hash_name":"Sticker | olofmeister | London 2018"},"3099":{"market_hash_name":"Sticker | olofmeister (Foil) | London 2018"},"31":{"market_hash_name":"Sticker | Bish (Holo)"},"310":{"market_hash_name":"Sticker | HellRaisers | Katowice 2015"},"3100":{"market_hash_name":"Sticker | olofmeister (Gold) | London 2018"},"3101":{"market_hash_name":"Sticker | karrigan | London 2018"},"3102":{"market_hash_name":"Sticker | karrigan (Foil) | London 2018"},"3103":{"market_hash_name":"Sticker | karrigan (Gold) | London 2018"},"3104":{"market_hash_name":"Sticker | rain | London 2018"},"3105":{"market_hash_name":"Sticker | rain (Foil) | London 2018"},"3106":{"market_hash_name":"Sticker | rain (Gold) | London 2018"},"3107":{"market_hash_name":"Sticker | NiKo | London 2018"},"3108":{"market_hash_name":"Sticker | NiKo (Foil) | London 2018"},"3109":{"market_hash_name":"Sticker | NiKo (Gold) | London 2018"},"311":{"market_hash_name":"Sticker | HellRaisers (Holo) | Katowice 2015"},"3110":{"market_hash_name":"Sticker | electronic | London 2018"},"3111":{"market_hash_name":"Sticker | electronic (Foil) | London 2018"},"3112":{"market_hash_name":"Sticker | electronic (Gold) | London 2018"},"3113":{"market_hash_name":"Sticker | Zeus | London 2018"},"3114":{"market_hash_name":"Sticker | Zeus (Foil) | London 2018"},"3115":{"market_hash_name":"Sticker | Zeus (Gold) | London 2018"},"3116":{"market_hash_name":"Sticker | s1mple | London 2018"},"3117":{"market_hash_name":"Sticker | s1mple (Foil) | London 2018"},"3118":{"market_hash_name":"Sticker | s1mple (Gold) | London 2018"},"3119":{"market_hash_name":"Sticker | Edward | London 2018"},"312":{"market_hash_name":"Sticker | HellRaisers (Foil) | Katowice 2015"},"3120":{"market_hash_name":"Sticker | Edward (Foil) | London 2018"},"3121":{"market_hash_name":"Sticker | Edward (Gold) | London 2018"},"3122":{"market_hash_name":"Sticker | flamie | London 2018"},"3123":{"market_hash_name":"Sticker | flamie (Foil) | London 2018"},"3124":{"market_hash_name":"Sticker | flamie (Gold) | London 2018"},"3125":{"market_hash_name":"Sticker | coldzera | London 2018"},"3126":{"market_hash_name":"Sticker | coldzera (Foil) | London 2018"},"3127":{"market_hash_name":"Sticker | coldzera (Gold) | London 2018"},"3128":{"market_hash_name":"Sticker | FalleN | London 2018"},"3129":{"market_hash_name":"Sticker | FalleN (Foil) | London 2018"},"313":{"market_hash_name":"Sticker | HellRaisers (Gold) | Katowice 2015"},"3130":{"market_hash_name":"Sticker | FalleN (Gold) | London 2018"},"3131":{"market_hash_name":"Sticker | tarik | London 2018"},"3132":{"market_hash_name":"Sticker | tarik (Foil) | London 2018"},"3133":{"market_hash_name":"Sticker | tarik (Gold) | London 2018"},"3134":{"market_hash_name":"Sticker | Stewie2K | London 2018"},"3135":{"market_hash_name":"Sticker | Stewie2K (Foil) | London 2018"},"3136":{"market_hash_name":"Sticker | Stewie2K (Gold) | London 2018"},"3137":{"market_hash_name":"Sticker | fer | London 2018"},"3138":{"market_hash_name":"Sticker | fer (Foil) | London 2018"},"3139":{"market_hash_name":"Sticker | fer (Gold) | London 2018"},"314":{"market_hash_name":"Sticker | Keyd Stars | Katowice 2015"},"3140":{"market_hash_name":"Sticker | Snax | London 2018"},"3141":{"market_hash_name":"Sticker | Snax (Foil) | London 2018"},"3142":{"market_hash_name":"Sticker | Snax (Gold) | London 2018"},"3143":{"market_hash_name":"Sticker | chrisJ | London 2018"},"3144":{"market_hash_name":"Sticker | chrisJ (Foil) | London 2018"},"3145":{"market_hash_name":"Sticker | chrisJ (Gold) | London 2018"},"3146":{"market_hash_name":"Sticker | ropz | London 2018"},"3147":{"market_hash_name":"Sticker | ropz (Foil) | London 2018"},"3148":{"market_hash_name":"Sticker | ropz (Gold) | London 2018"},"3149":{"market_hash_name":"Sticker | suNny | London 2018"},"315":{"market_hash_name":"Sticker | Keyd Stars (Holo) | Katowice 2015"},"3150":{"market_hash_name":"Sticker | suNny (Foil) | London 2018"},"3151":{"market_hash_name":"Sticker | suNny (Gold) | London 2018"},"3152":{"market_hash_name":"Sticker | oskar | London 2018"},"3153":{"market_hash_name":"Sticker | oskar (Foil) | London 2018"},"3154":{"market_hash_name":"Sticker | oskar (Gold) | London 2018"},"3155":{"market_hash_name":"Sticker | jmqa | London 2018"},"3156":{"market_hash_name":"Sticker | jmqa (Foil) | London 2018"},"3157":{"market_hash_name":"Sticker | jmqa (Gold) | London 2018"},"3158":{"market_hash_name":"Sticker | Kvik | London 2018"},"3159":{"market_hash_name":"Sticker | Kvik (Foil) | London 2018"},"316":{"market_hash_name":"Sticker | Keyd Stars (Foil) | Katowice 2015"},"3160":{"market_hash_name":"Sticker | Kvik (Gold) | London 2018"},"3161":{"market_hash_name":"Sticker | balblna | London 2018"},"3162":{"market_hash_name":"Sticker | balblna (Foil) | London 2018"},"3163":{"market_hash_name":"Sticker | balblna (Gold) | London 2018"},"3164":{"market_hash_name":"Sticker | waterfaLLZ | London 2018"},"3165":{"market_hash_name":"Sticker | waterfaLLZ (Foil) | London 2018"},"3166":{"market_hash_name":"Sticker | waterfaLLZ (Gold) | London 2018"},"3167":{"market_hash_name":"Sticker | Boombl4 | London 2018"},"3168":{"market_hash_name":"Sticker | Boombl4 (Foil) | London 2018"},"3169":{"market_hash_name":"Sticker | Boombl4 (Gold) | London 2018"},"317":{"market_hash_name":"Sticker | Keyd Stars (Gold) | Katowice 2015"},"3170":{"market_hash_name":"Sticker | kennyS | London 2018"},"3171":{"market_hash_name":"Sticker | kennyS (Foil) | London 2018"},"3172":{"market_hash_name":"Sticker | kennyS (Gold) | London 2018"},"3173":{"market_hash_name":"Sticker | bodyy | London 2018"},"3174":{"market_hash_name":"Sticker | bodyy (Foil) | London 2018"},"3175":{"market_hash_name":"Sticker | bodyy (Gold) | London 2018"},"3176":{"market_hash_name":"Sticker | shox | London 2018"},"3177":{"market_hash_name":"Sticker | shox (Foil) | London 2018"},"3178":{"market_hash_name":"Sticker | shox (Gold) | London 2018"},"3179":{"market_hash_name":"Sticker | Ex6TenZ | London 2018"},"318":{"market_hash_name":"Sticker | LGB eSports | Katowice 2015"},"3180":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | London 2018"},"3181":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | London 2018"},"3182":{"market_hash_name":"Sticker | SmithZz | London 2018"},"3183":{"market_hash_name":"Sticker | SmithZz (Foil) | London 2018"},"3184":{"market_hash_name":"Sticker | SmithZz (Gold) | London 2018"},"3185":{"market_hash_name":"Sticker | draken | London 2018"},"3186":{"market_hash_name":"Sticker | draken (Foil) | London 2018"},"3187":{"market_hash_name":"Sticker | draken (Gold) | London 2018"},"3188":{"market_hash_name":"Sticker | JW | London 2018"},"3189":{"market_hash_name":"Sticker | JW (Foil) | London 2018"},"319":{"market_hash_name":"Sticker | LGB eSports (Holo) | Katowice 2015"},"3190":{"market_hash_name":"Sticker | JW (Gold) | London 2018"},"3191":{"market_hash_name":"Sticker | KRIMZ | London 2018"},"3192":{"market_hash_name":"Sticker | KRIMZ (Foil) | London 2018"},"3193":{"market_hash_name":"Sticker | KRIMZ (Gold) | London 2018"},"3194":{"market_hash_name":"Sticker | flusha | London 2018"},"3195":{"market_hash_name":"Sticker | flusha (Foil) | London 2018"},"3196":{"market_hash_name":"Sticker | flusha (Gold) | London 2018"},"3197":{"market_hash_name":"Sticker | Xizt | London 2018"},"3198":{"market_hash_name":"Sticker | Xizt (Foil) | London 2018"},"3199":{"market_hash_name":"Sticker | Xizt (Gold) | London 2018"},"32":{"market_hash_name":"Sticker | Bash (Holo)"},"320":{"market_hash_name":"Sticker | LGB eSports (Foil) | Katowice 2015"},"3200":{"market_hash_name":"Sticker | mir | London 2018"},"3201":{"market_hash_name":"Sticker | mir (Foil) | London 2018"},"3202":{"market_hash_name":"Sticker | mir (Gold) | London 2018"},"3203":{"market_hash_name":"Sticker | Dosia | London 2018"},"3204":{"market_hash_name":"Sticker | Dosia (Foil) | London 2018"},"3205":{"market_hash_name":"Sticker | Dosia (Gold) | London 2018"},"3206":{"market_hash_name":"Sticker | Hobbit | London 2018"},"3207":{"market_hash_name":"Sticker | Hobbit (Foil) | London 2018"},"3208":{"market_hash_name":"Sticker | Hobbit (Gold) | London 2018"},"3209":{"market_hash_name":"Sticker | mou | London 2018"},"321":{"market_hash_name":"Sticker | LGB eSports (Gold) | Katowice 2015"},"3210":{"market_hash_name":"Sticker | mou (Foil) | London 2018"},"3211":{"market_hash_name":"Sticker | mou (Gold) | London 2018"},"3212":{"market_hash_name":"Sticker | AdreN | London 2018"},"3213":{"market_hash_name":"Sticker | AdreN (Foil) | London 2018"},"3214":{"market_hash_name":"Sticker | AdreN (Gold) | London 2018"},"3215":{"market_hash_name":"Sticker | tonyblack | London 2018"},"3216":{"market_hash_name":"Sticker | tonyblack (Foil) | London 2018"},"3217":{"market_hash_name":"Sticker | tonyblack (Gold) | London 2018"},"3218":{"market_hash_name":"Sticker | crush | London 2018"},"3219":{"market_hash_name":"Sticker | crush (Foil) | London 2018"},"322":{"market_hash_name":"Sticker | Natus Vincere | Katowice 2015"},"3220":{"market_hash_name":"Sticker | crush (Gold) | London 2018"},"3221":{"market_hash_name":"Sticker | hutji | London 2018"},"3222":{"market_hash_name":"Sticker | hutji (Foil) | London 2018"},"3223":{"market_hash_name":"Sticker | hutji (Gold) | London 2018"},"3224":{"market_hash_name":"Sticker | jR | London 2018"},"3225":{"market_hash_name":"Sticker | jR (Foil) | London 2018"},"3226":{"market_hash_name":"Sticker | jR (Gold) | London 2018"},"3227":{"market_hash_name":"Sticker | chopper | London 2018"},"3228":{"market_hash_name":"Sticker | chopper (Foil) | London 2018"},"3229":{"market_hash_name":"Sticker | chopper (Gold) | London 2018"},"323":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Katowice 2015"},"3230":{"market_hash_name":"Sticker | XANTARES | London 2018"},"3231":{"market_hash_name":"Sticker | XANTARES (Foil) | London 2018"},"3232":{"market_hash_name":"Sticker | XANTARES (Gold) | London 2018"},"3233":{"market_hash_name":"Sticker | Calyx | London 2018"},"3234":{"market_hash_name":"Sticker | Calyx (Foil) | London 2018"},"3235":{"market_hash_name":"Sticker | Calyx (Gold) | London 2018"},"3236":{"market_hash_name":"Sticker | paz | London 2018"},"3237":{"market_hash_name":"Sticker | paz (Foil) | London 2018"},"3238":{"market_hash_name":"Sticker | paz (Gold) | London 2018"},"3239":{"market_hash_name":"Sticker | ngiN | London 2018"},"324":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Katowice 2015"},"3240":{"market_hash_name":"Sticker | ngiN (Foil) | London 2018"},"3241":{"market_hash_name":"Sticker | ngiN (Gold) | London 2018"},"3242":{"market_hash_name":"Sticker | MAJ3R | London 2018"},"3243":{"market_hash_name":"Sticker | MAJ3R (Foil) | London 2018"},"3244":{"market_hash_name":"Sticker | MAJ3R (Gold) | London 2018"},"3245":{"market_hash_name":"Sticker | tiziaN | London 2018"},"3246":{"market_hash_name":"Sticker | tiziaN (Foil) | London 2018"},"3247":{"market_hash_name":"Sticker | tiziaN (Gold) | London 2018"},"3248":{"market_hash_name":"Sticker | gob b | London 2018"},"3249":{"market_hash_name":"Sticker | gob b (Foil) | London 2018"},"325":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Katowice 2015"},"3250":{"market_hash_name":"Sticker | gob b (Gold) | London 2018"},"3251":{"market_hash_name":"Sticker | tabseN | London 2018"},"3252":{"market_hash_name":"Sticker | tabseN (Foil) | London 2018"},"3253":{"market_hash_name":"Sticker | tabseN (Gold) | London 2018"},"3254":{"market_hash_name":"Sticker | nex | London 2018"},"3255":{"market_hash_name":"Sticker | nex (Foil) | London 2018"},"3256":{"market_hash_name":"Sticker | nex (Gold) | London 2018"},"3257":{"market_hash_name":"Sticker | smooya | London 2018"},"3258":{"market_hash_name":"Sticker | smooya (Foil) | London 2018"},"3259":{"market_hash_name":"Sticker | smooya (Gold) | London 2018"},"326":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Katowice 2015"},"3260":{"market_hash_name":"Sticker | dupreeh | London 2018"},"3261":{"market_hash_name":"Sticker | dupreeh (Foil) | London 2018"},"3262":{"market_hash_name":"Sticker | dupreeh (Gold) | London 2018"},"3263":{"market_hash_name":"Sticker | gla1ve | London 2018"},"3264":{"market_hash_name":"Sticker | gla1ve (Foil) | London 2018"},"3265":{"market_hash_name":"Sticker | gla1ve (Gold) | London 2018"},"3266":{"market_hash_name":"Sticker | device | London 2018"},"3267":{"market_hash_name":"Sticker | device (Foil) | London 2018"},"3268":{"market_hash_name":"Sticker | device (Gold) | London 2018"},"3269":{"market_hash_name":"Sticker | Magisk | London 2018"},"327":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Katowice 2015"},"3270":{"market_hash_name":"Sticker | Magisk (Foil) | London 2018"},"3271":{"market_hash_name":"Sticker | Magisk (Gold) | London 2018"},"3272":{"market_hash_name":"Sticker | Xyp9x | London 2018"},"3273":{"market_hash_name":"Sticker | Xyp9x (Foil) | London 2018"},"3274":{"market_hash_name":"Sticker | Xyp9x (Gold) | London 2018"},"3275":{"market_hash_name":"Sticker | EliGE | London 2018"},"3276":{"market_hash_name":"Sticker | EliGE (Foil) | London 2018"},"3277":{"market_hash_name":"Sticker | EliGE (Gold) | London 2018"},"3278":{"market_hash_name":"Sticker | TACO | London 2018"},"3279":{"market_hash_name":"Sticker | TACO (Foil) | London 2018"},"328":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Katowice 2015"},"3280":{"market_hash_name":"Sticker | TACO (Gold) | London 2018"},"3281":{"market_hash_name":"Sticker | Twistzz | London 2018"},"3282":{"market_hash_name":"Sticker | Twistzz (Foil) | London 2018"},"3283":{"market_hash_name":"Sticker | Twistzz (Gold) | London 2018"},"3284":{"market_hash_name":"Sticker | NAF | London 2018"},"3285":{"market_hash_name":"Sticker | NAF (Foil) | London 2018"},"3286":{"market_hash_name":"Sticker | NAF (Gold) | London 2018"},"3287":{"market_hash_name":"Sticker | nitr0 | London 2018"},"3288":{"market_hash_name":"Sticker | nitr0 (Foil) | London 2018"},"3289":{"market_hash_name":"Sticker | nitr0 (Gold) | London 2018"},"329":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Katowice 2015"},"3290":{"market_hash_name":"Sticker | MSL | London 2018"},"3291":{"market_hash_name":"Sticker | MSL (Foil) | London 2018"},"3292":{"market_hash_name":"Sticker | MSL (Gold) | London 2018"},"3293":{"market_hash_name":"Sticker | niko | London 2018"},"3294":{"market_hash_name":"Sticker | niko (Foil) | London 2018"},"3295":{"market_hash_name":"Sticker | niko (Gold) | London 2018"},"3296":{"market_hash_name":"Sticker | Kjaerbye | London 2018"},"3297":{"market_hash_name":"Sticker | Kjaerbye (Foil) | London 2018"},"3298":{"market_hash_name":"Sticker | Kjaerbye (Gold) | London 2018"},"3299":{"market_hash_name":"Sticker | aizy | London 2018"},"33":{"market_hash_name":"Sticker | Bosh (Holo)"},"330":{"market_hash_name":"Sticker | PENTA Sports | Katowice 2015"},"3300":{"market_hash_name":"Sticker | aizy (Foil) | London 2018"},"3301":{"market_hash_name":"Sticker | aizy (Gold) | London 2018"},"3302":{"market_hash_name":"Sticker | v4lde | London 2018"},"3303":{"market_hash_name":"Sticker | v4lde (Foil) | London 2018"},"3304":{"market_hash_name":"Sticker | v4lde (Gold) | London 2018"},"3305":{"market_hash_name":"Sticker | byali | London 2018"},"3306":{"market_hash_name":"Sticker | byali (Foil) | London 2018"},"3307":{"market_hash_name":"Sticker | byali (Gold) | London 2018"},"3308":{"market_hash_name":"Sticker | pashaBiceps | London 2018"},"3309":{"market_hash_name":"Sticker | pashaBiceps (Foil) | London 2018"},"331":{"market_hash_name":"Sticker | PENTA Sports (Holo) | Katowice 2015"},"3310":{"market_hash_name":"Sticker | pashaBiceps (Gold) | London 2018"},"3311":{"market_hash_name":"Sticker | NEO | London 2018"},"3312":{"market_hash_name":"Sticker | NEO (Foil) | London 2018"},"3313":{"market_hash_name":"Sticker | NEO (Gold) | London 2018"},"3314":{"market_hash_name":"Sticker | MICHU | London 2018"},"3315":{"market_hash_name":"Sticker | MICHU (Foil) | London 2018"},"3316":{"market_hash_name":"Sticker | MICHU (Gold) | London 2018"},"3317":{"market_hash_name":"Sticker | snatchie | London 2018"},"3318":{"market_hash_name":"Sticker | snatchie (Foil) | London 2018"},"3319":{"market_hash_name":"Sticker | snatchie (Gold) | London 2018"},"332":{"market_hash_name":"Sticker | PENTA Sports (Foil) | Katowice 2015"},"3320":{"market_hash_name":"Sticker | GeT_RiGhT | London 2018"},"3321":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | London 2018"},"3322":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | London 2018"},"3323":{"market_hash_name":"Sticker | f0rest | London 2018"},"3324":{"market_hash_name":"Sticker | f0rest (Foil) | London 2018"},"3325":{"market_hash_name":"Sticker | f0rest (Gold) | London 2018"},"3326":{"market_hash_name":"Sticker | Lekr0 | London 2018"},"3327":{"market_hash_name":"Sticker | Lekr0 (Foil) | London 2018"},"3328":{"market_hash_name":"Sticker | Lekr0 (Gold) | London 2018"},"3329":{"market_hash_name":"Sticker | REZ | London 2018"},"333":{"market_hash_name":"Sticker | PENTA Sports (Gold) | Katowice 2015"},"3330":{"market_hash_name":"Sticker | REZ (Foil) | London 2018"},"3331":{"market_hash_name":"Sticker | REZ (Gold) | London 2018"},"3332":{"market_hash_name":"Sticker | dennis | London 2018"},"3333":{"market_hash_name":"Sticker | dennis (Foil) | London 2018"},"3334":{"market_hash_name":"Sticker | dennis (Gold) | London 2018"},"3335":{"market_hash_name":"Sticker | ANDROID | London 2018"},"3336":{"market_hash_name":"Sticker | ANDROID (Foil) | London 2018"},"3337":{"market_hash_name":"Sticker | ANDROID (Gold) | London 2018"},"3338":{"market_hash_name":"Sticker | stanislaw | London 2018"},"3339":{"market_hash_name":"Sticker | stanislaw (Foil) | London 2018"},"334":{"market_hash_name":"Sticker | Team EnVyUs | Katowice 2015"},"3340":{"market_hash_name":"Sticker | stanislaw (Gold) | London 2018"},"3341":{"market_hash_name":"Sticker | dephh | London 2018"},"3342":{"market_hash_name":"Sticker | dephh (Foil) | London 2018"},"3343":{"market_hash_name":"Sticker | dephh (Gold) | London 2018"},"3344":{"market_hash_name":"Sticker | yay | London 2018"},"3345":{"market_hash_name":"Sticker | yay (Foil) | London 2018"},"3346":{"market_hash_name":"Sticker | yay (Gold) | London 2018"},"3347":{"market_hash_name":"Sticker | ShahZaM | London 2018"},"3348":{"market_hash_name":"Sticker | ShahZaM (Foil) | London 2018"},"3349":{"market_hash_name":"Sticker | ShahZaM (Gold) | London 2018"},"335":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Katowice 2015"},"3350":{"market_hash_name":"Sticker | woxic | London 2018"},"3351":{"market_hash_name":"Sticker | woxic (Foil) | London 2018"},"3352":{"market_hash_name":"Sticker | woxic (Gold) | London 2018"},"3353":{"market_hash_name":"Sticker | ISSAA | London 2018"},"3354":{"market_hash_name":"Sticker | ISSAA (Foil) | London 2018"},"3355":{"market_hash_name":"Sticker | ISSAA (Gold) | London 2018"},"3356":{"market_hash_name":"Sticker | bondik | London 2018"},"3357":{"market_hash_name":"Sticker | bondik (Foil) | London 2018"},"3358":{"market_hash_name":"Sticker | bondik (Gold) | London 2018"},"3359":{"market_hash_name":"Sticker | ANGE1 | London 2018"},"336":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Katowice 2015"},"3360":{"market_hash_name":"Sticker | ANGE1 (Foil) | London 2018"},"3361":{"market_hash_name":"Sticker | ANGE1 (Gold) | London 2018"},"3362":{"market_hash_name":"Sticker | DeadFox | London 2018"},"3363":{"market_hash_name":"Sticker | DeadFox (Foil) | London 2018"},"3364":{"market_hash_name":"Sticker | DeadFox (Gold) | London 2018"},"3365":{"market_hash_name":"Sticker | Nifty | London 2018"},"3366":{"market_hash_name":"Sticker | Nifty (Foil) | London 2018"},"3367":{"market_hash_name":"Sticker | Nifty (Gold) | London 2018"},"3368":{"market_hash_name":"Sticker | jkaem | London 2018"},"3369":{"market_hash_name":"Sticker | jkaem (Foil) | London 2018"},"337":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Katowice 2015"},"3370":{"market_hash_name":"Sticker | jkaem (Gold) | London 2018"},"3371":{"market_hash_name":"Sticker | jks | London 2018"},"3372":{"market_hash_name":"Sticker | jks (Foil) | London 2018"},"3373":{"market_hash_name":"Sticker | jks (Gold) | London 2018"},"3374":{"market_hash_name":"Sticker | USTILO | London 2018"},"3375":{"market_hash_name":"Sticker | USTILO (Foil) | London 2018"},"3376":{"market_hash_name":"Sticker | USTILO (Gold) | London 2018"},"3377":{"market_hash_name":"Sticker | AZR | London 2018"},"3378":{"market_hash_name":"Sticker | AZR (Foil) | London 2018"},"3379":{"market_hash_name":"Sticker | AZR (Gold) | London 2018"},"338":{"market_hash_name":"Sticker | TSM Kinguin | Katowice 2015"},"3380":{"market_hash_name":"Sticker | cajunb | London 2018"},"3381":{"market_hash_name":"Sticker | cajunb (Foil) | London 2018"},"3382":{"market_hash_name":"Sticker | cajunb (Gold) | London 2018"},"3383":{"market_hash_name":"Sticker | k0nfig | London 2018"},"3384":{"market_hash_name":"Sticker | k0nfig (Foil) | London 2018"},"3385":{"market_hash_name":"Sticker | k0nfig (Gold) | London 2018"},"3386":{"market_hash_name":"Sticker | gade | London 2018"},"3387":{"market_hash_name":"Sticker | gade (Foil) | London 2018"},"3388":{"market_hash_name":"Sticker | gade (Gold) | London 2018"},"3389":{"market_hash_name":"Sticker | Snappi | London 2018"},"339":{"market_hash_name":"Sticker | TSM Kinguin (Holo) | Katowice 2015"},"3390":{"market_hash_name":"Sticker | Snappi (Foil) | London 2018"},"3391":{"market_hash_name":"Sticker | Snappi (Gold) | London 2018"},"3392":{"market_hash_name":"Sticker | JUGi | London 2018"},"3393":{"market_hash_name":"Sticker | JUGi (Foil) | London 2018"},"3394":{"market_hash_name":"Sticker | JUGi (Gold) | London 2018"},"3395":{"market_hash_name":"Sticker | SicK | London 2018"},"3396":{"market_hash_name":"Sticker | SicK (Foil) | London 2018"},"3397":{"market_hash_name":"Sticker | SicK (Gold) | London 2018"},"3398":{"market_hash_name":"Sticker | Hiko | London 2018"},"3399":{"market_hash_name":"Sticker | Hiko (Foil) | London 2018"},"34":{"market_hash_name":"Sticker | Banana"},"340":{"market_hash_name":"Sticker | TSM Kinguin (Foil) | Katowice 2015"},"3400":{"market_hash_name":"Sticker | Hiko (Gold) | London 2018"},"3401":{"market_hash_name":"Sticker | Rickeh | London 2018"},"3402":{"market_hash_name":"Sticker | Rickeh (Foil) | London 2018"},"3403":{"market_hash_name":"Sticker | Rickeh (Gold) | London 2018"},"3404":{"market_hash_name":"Sticker | cadiaN | London 2018"},"3405":{"market_hash_name":"Sticker | cadiaN (Foil) | London 2018"},"3406":{"market_hash_name":"Sticker | cadiaN (Gold) | London 2018"},"3407":{"market_hash_name":"Sticker | vice | London 2018"},"3408":{"market_hash_name":"Sticker | vice (Foil) | London 2018"},"3409":{"market_hash_name":"Sticker | vice (Gold) | London 2018"},"341":{"market_hash_name":"Sticker | TSM Kinguin (Gold) | Katowice 2015"},"3410":{"market_hash_name":"Sticker | COLDYY1 | London 2018"},"3411":{"market_hash_name":"Sticker | COLDYY1 (Foil) | London 2018"},"3412":{"market_hash_name":"Sticker | COLDYY1 (Gold) | London 2018"},"3413":{"market_hash_name":"Sticker | Dima | London 2018"},"3414":{"market_hash_name":"Sticker | Dima (Foil) | London 2018"},"3415":{"market_hash_name":"Sticker | Dima (Gold) | London 2018"},"3416":{"market_hash_name":"Sticker | sdy | London 2018"},"3417":{"market_hash_name":"Sticker | sdy (Foil) | London 2018"},"3418":{"market_hash_name":"Sticker | sdy (Gold) | London 2018"},"3419":{"market_hash_name":"Sticker | S0tF1k | London 2018"},"342":{"market_hash_name":"Sticker | Titan | Katowice 2015"},"3420":{"market_hash_name":"Sticker | S0tF1k (Foil) | London 2018"},"3421":{"market_hash_name":"Sticker | S0tF1k (Gold) | London 2018"},"3422":{"market_hash_name":"Sticker | DavCost | London 2018"},"3423":{"market_hash_name":"Sticker | DavCost (Foil) | London 2018"},"3424":{"market_hash_name":"Sticker | DavCost (Gold) | London 2018"},"3425":{"market_hash_name":"Sticker | somebody | London 2018"},"3426":{"market_hash_name":"Sticker | somebody (Foil) | London 2018"},"3427":{"market_hash_name":"Sticker | somebody (Gold) | London 2018"},"3428":{"market_hash_name":"Sticker | captainMo | London 2018"},"3429":{"market_hash_name":"Sticker | captainMo (Foil) | London 2018"},"343":{"market_hash_name":"Sticker | Titan (Holo) | Katowice 2015"},"3430":{"market_hash_name":"Sticker | captainMo (Gold) | London 2018"},"3431":{"market_hash_name":"Sticker | BnTeT | London 2018"},"3432":{"market_hash_name":"Sticker | BnTeT (Foil) | London 2018"},"3433":{"market_hash_name":"Sticker | BnTeT (Gold) | London 2018"},"3434":{"market_hash_name":"Sticker | DD | London 2018"},"3435":{"market_hash_name":"Sticker | DD (Foil) | London 2018"},"3436":{"market_hash_name":"Sticker | DD (Gold) | London 2018"},"3437":{"market_hash_name":"Sticker | xccurate | London 2018"},"3438":{"market_hash_name":"Sticker | xccurate (Foil) | London 2018"},"3439":{"market_hash_name":"Sticker | xccurate (Gold) | London 2018"},"344":{"market_hash_name":"Sticker | Titan (Foil) | Katowice 2015"},"3440":{"market_hash_name":"Sticker | Silver"},"3441":{"market_hash_name":"Sticker | Silver (Foil)"},"3442":{"market_hash_name":"Sticker | Gold Nova"},"3443":{"market_hash_name":"Sticker | Gold Nova (Holo)"},"3444":{"market_hash_name":"Sticker | Master Guardian"},"3445":{"market_hash_name":"Sticker | Master Guardian (Holo)"},"3446":{"market_hash_name":"Sticker | Master Guardian Elite"},"3447":{"market_hash_name":"Sticker | Master Guardian Elite (Holo)"},"3448":{"market_hash_name":"Sticker | Distinguished Master Guardian"},"3449":{"market_hash_name":"Sticker | Distinguished Master Guardian (Holo)"},"345":{"market_hash_name":"Sticker | Titan (Gold) | Katowice 2015"},"3450":{"market_hash_name":"Sticker | Legendary Eagle"},"3451":{"market_hash_name":"Sticker | Legendary Eagle (Holo)"},"3452":{"market_hash_name":"Sticker | Legendary Eagle Master"},"3453":{"market_hash_name":"Sticker | Legendary Eagle Master (Holo)"},"3454":{"market_hash_name":"Sticker | Supreme Master First Class"},"3455":{"market_hash_name":"Sticker | Supreme Master First Class (Holo)"},"3456":{"market_hash_name":"Sticker | Global Elite"},"3457":{"market_hash_name":"Sticker | Global Elite (Foil)"},"346":{"market_hash_name":"Sticker | Virtus.pro | Katowice 2015"},"3460":{"market_hash_name":"Sticker | Astralis | Katowice 2019"},"3461":{"market_hash_name":"Sticker | Astralis (Holo) | Katowice 2019"},"3462":{"market_hash_name":"Sticker | Astralis (Foil) | Katowice 2019"},"3463":{"market_hash_name":"Sticker | Astralis (Gold) | Katowice 2019"},"3464":{"market_hash_name":"Sticker | Avangar | Katowice 2019"},"3465":{"market_hash_name":"Sticker | Avangar (Holo) | Katowice 2019"},"3466":{"market_hash_name":"Sticker | Avangar (Foil) | Katowice 2019"},"3467":{"market_hash_name":"Sticker | Avangar (Gold) | Katowice 2019"},"3468":{"market_hash_name":"Sticker | BIG | Katowice 2019"},"3469":{"market_hash_name":"Sticker | BIG (Holo) | Katowice 2019"},"347":{"market_hash_name":"Sticker | Virtus.pro (Holo) | Katowice 2015"},"3470":{"market_hash_name":"Sticker | BIG (Foil) | Katowice 2019"},"3471":{"market_hash_name":"Sticker | BIG (Gold) | Katowice 2019"},"3472":{"market_hash_name":"Sticker | Cloud9 | Katowice 2019"},"3473":{"market_hash_name":"Sticker | Cloud9 (Holo) | Katowice 2019"},"3474":{"market_hash_name":"Sticker | Cloud9 (Foil) | Katowice 2019"},"3475":{"market_hash_name":"Sticker | Cloud9 (Gold) | Katowice 2019"},"3476":{"market_hash_name":"Sticker | compLexity Gaming | Katowice 2019"},"3477":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | Katowice 2019"},"3478":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | Katowice 2019"},"3479":{"market_hash_name":"Sticker | compLexity Gaming (Gold) | Katowice 2019"},"348":{"market_hash_name":"Sticker | Virtus.pro (Foil) | Katowice 2015"},"3480":{"market_hash_name":"Sticker | ENCE | Katowice 2019"},"3481":{"market_hash_name":"Sticker | ENCE (Holo) | Katowice 2019"},"3482":{"market_hash_name":"Sticker | ENCE (Foil) | Katowice 2019"},"3483":{"market_hash_name":"Sticker | ENCE (Gold) | Katowice 2019"},"3484":{"market_hash_name":"Sticker | FaZe Clan | Katowice 2019"},"3485":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Katowice 2019"},"3486":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Katowice 2019"},"3487":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Katowice 2019"},"3488":{"market_hash_name":"Sticker | Fnatic | Katowice 2019"},"3489":{"market_hash_name":"Sticker | Fnatic (Holo) | Katowice 2019"},"349":{"market_hash_name":"Sticker | Virtus.pro (Gold) | Katowice 2015"},"3490":{"market_hash_name":"Sticker | Fnatic (Foil) | Katowice 2019"},"3491":{"market_hash_name":"Sticker | Fnatic (Gold) | Katowice 2019"},"3492":{"market_hash_name":"Sticker | FURIA | Katowice 2019"},"3493":{"market_hash_name":"Sticker | FURIA (Holo) | Katowice 2019"},"3494":{"market_hash_name":"Sticker | FURIA (Foil) | Katowice 2019"},"3495":{"market_hash_name":"Sticker | FURIA (Gold) | Katowice 2019"},"3496":{"market_hash_name":"Sticker | G2 Esports | Katowice 2019"},"3497":{"market_hash_name":"Sticker | G2 Esports (Holo) | Katowice 2019"},"3498":{"market_hash_name":"Sticker | G2 Esports (Foil) | Katowice 2019"},"3499":{"market_hash_name":"Sticker | G2 Esports (Gold) | Katowice 2019"},"35":{"market_hash_name":"Sticker | Bomb Code"},"350":{"market_hash_name":"Sticker | Vox Eminor | Katowice 2015"},"3500":{"market_hash_name":"Sticker | Grayhound Gaming | Katowice 2019"},"3501":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Katowice 2019"},"3502":{"market_hash_name":"Sticker | Grayhound Gaming (Foil) | Katowice 2019"},"3503":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Katowice 2019"},"3504":{"market_hash_name":"Sticker | HellRaisers | Katowice 2019"},"3505":{"market_hash_name":"Sticker | HellRaisers (Holo) | Katowice 2019"},"3506":{"market_hash_name":"Sticker | HellRaisers (Foil) | Katowice 2019"},"3507":{"market_hash_name":"Sticker | HellRaisers (Gold) | Katowice 2019"},"3508":{"market_hash_name":"Sticker | MIBR | Katowice 2019"},"3509":{"market_hash_name":"Sticker | MIBR (Holo) | Katowice 2019"},"351":{"market_hash_name":"Sticker | Vox Eminor (Holo) | Katowice 2015"},"3510":{"market_hash_name":"Sticker | MIBR (Foil) | Katowice 2019"},"3511":{"market_hash_name":"Sticker | MIBR (Gold) | Katowice 2019"},"3512":{"market_hash_name":"Sticker | Natus Vincere | Katowice 2019"},"3513":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Katowice 2019"},"3514":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Katowice 2019"},"3515":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Katowice 2019"},"3516":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Katowice 2019"},"3517":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Katowice 2019"},"3518":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Katowice 2019"},"3519":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Katowice 2019"},"352":{"market_hash_name":"Sticker | Vox Eminor (Foil) | Katowice 2015"},"3520":{"market_hash_name":"Sticker | NRG | Katowice 2019"},"3521":{"market_hash_name":"Sticker | NRG (Holo) | Katowice 2019"},"3522":{"market_hash_name":"Sticker | NRG (Foil) | Katowice 2019"},"3523":{"market_hash_name":"Sticker | NRG (Gold) | Katowice 2019"},"3524":{"market_hash_name":"Sticker | Renegades | Katowice 2019"},"3525":{"market_hash_name":"Sticker | Renegades (Holo) | Katowice 2019"},"3526":{"market_hash_name":"Sticker | Renegades (Foil) | Katowice 2019"},"3527":{"market_hash_name":"Sticker | Renegades (Gold) | Katowice 2019"},"3528":{"market_hash_name":"Sticker | Team Liquid | Katowice 2019"},"3529":{"market_hash_name":"Sticker | Team Liquid (Holo) | Katowice 2019"},"353":{"market_hash_name":"Sticker | Vox Eminor (Gold) | Katowice 2015"},"3530":{"market_hash_name":"Sticker | Team Liquid (Foil) | Katowice 2019"},"3531":{"market_hash_name":"Sticker | Team Liquid (Gold) | Katowice 2019"},"3532":{"market_hash_name":"Sticker | Team Spirit | Katowice 2019"},"3533":{"market_hash_name":"Sticker | Team Spirit (Holo) | Katowice 2019"},"3534":{"market_hash_name":"Sticker | Team Spirit (Foil) | Katowice 2019"},"3535":{"market_hash_name":"Sticker | Team Spirit (Gold) | Katowice 2019"},"3536":{"market_hash_name":"Sticker | Tyloo | Katowice 2019"},"3537":{"market_hash_name":"Sticker | Tyloo (Holo) | Katowice 2019"},"3538":{"market_hash_name":"Sticker | Tyloo (Foil) | Katowice 2019"},"3539":{"market_hash_name":"Sticker | Tyloo (Gold) | Katowice 2019"},"354":{"market_hash_name":"Sticker | ESL One | Katowice 2015"},"3540":{"market_hash_name":"Sticker | Vega Squadron | Katowice 2019"},"3541":{"market_hash_name":"Sticker | Vega Squadron (Holo) | Katowice 2019"},"3542":{"market_hash_name":"Sticker | Vega Squadron (Foil) | Katowice 2019"},"3543":{"market_hash_name":"Sticker | Vega Squadron (Gold) | Katowice 2019"},"3544":{"market_hash_name":"Sticker | ViCi Gaming | Katowice 2019"},"3545":{"market_hash_name":"Sticker | ViCi Gaming (Holo) | Katowice 2019"},"3546":{"market_hash_name":"Sticker | ViCi Gaming (Foil) | Katowice 2019"},"3547":{"market_hash_name":"Sticker | ViCi Gaming (Gold) | Katowice 2019"},"3548":{"market_hash_name":"Sticker | Vitality | Katowice 2019"},"3549":{"market_hash_name":"Sticker | Vitality (Holo) | Katowice 2019"},"355":{"market_hash_name":"Sticker | Chabo"},"3550":{"market_hash_name":"Sticker | Vitality (Foil) | Katowice 2019"},"3551":{"market_hash_name":"Sticker | Vitality (Gold) | Katowice 2019"},"3552":{"market_hash_name":"Sticker | Winstrike Team | Katowice 2019"},"3553":{"market_hash_name":"Sticker | Winstrike Team (Holo) | Katowice 2019"},"3554":{"market_hash_name":"Sticker | Winstrike Team (Foil) | Katowice 2019"},"3555":{"market_hash_name":"Sticker | Winstrike Team (Gold) | Katowice 2019"},"3556":{"market_hash_name":"Sticker | IEM | Katowice 2019"},"3557":{"market_hash_name":"Sticker | IEM (Holo) | Katowice 2019"},"3558":{"market_hash_name":"Sticker | IEM (Foil) | Katowice 2019"},"3559":{"market_hash_name":"Sticker | IEM (Gold) | Katowice 2019"},"356":{"market_hash_name":"Sticker | Bombsquad"},"357":{"market_hash_name":"Sticker | Bombsquad (Foil)"},"358":{"market_hash_name":"Sticker | The Guru"},"3585":{"market_hash_name":"Sticker | Magisk | Katowice 2019"},"3586":{"market_hash_name":"Sticker | Magisk (Foil) | Katowice 2019"},"3587":{"market_hash_name":"Sticker | Magisk (Gold) | Katowice 2019"},"3588":{"market_hash_name":"Sticker | device | Katowice 2019"},"3589":{"market_hash_name":"Sticker | device (Foil) | Katowice 2019"},"359":{"market_hash_name":"Sticker | Silent Ninja"},"3590":{"market_hash_name":"Sticker | device (Gold) | Katowice 2019"},"3591":{"market_hash_name":"Sticker | Xyp9x | Katowice 2019"},"3592":{"market_hash_name":"Sticker | Xyp9x (Foil) | Katowice 2019"},"3593":{"market_hash_name":"Sticker | Xyp9x (Gold) | Katowice 2019"},"3594":{"market_hash_name":"Sticker | dupreeh | Katowice 2019"},"3595":{"market_hash_name":"Sticker | dupreeh (Foil) | Katowice 2019"},"3596":{"market_hash_name":"Sticker | dupreeh (Gold) | Katowice 2019"},"3597":{"market_hash_name":"Sticker | gla1ve | Katowice 2019"},"3598":{"market_hash_name":"Sticker | gla1ve (Foil) | Katowice 2019"},"3599":{"market_hash_name":"Sticker | gla1ve (Gold) | Katowice 2019"},"36":{"market_hash_name":"Sticker | Chicken Lover"},"360":{"market_hash_name":"Sticker | Silent Ninja (Foil)"},"3600":{"market_hash_name":"Sticker | fitch | Katowice 2019"},"3601":{"market_hash_name":"Sticker | fitch (Foil) | Katowice 2019"},"3602":{"market_hash_name":"Sticker | fitch (Gold) | Katowice 2019"},"3603":{"market_hash_name":"Sticker | Jame | Katowice 2019"},"3604":{"market_hash_name":"Sticker | Jame (Foil) | Katowice 2019"},"3605":{"market_hash_name":"Sticker | Jame (Gold) | Katowice 2019"},"3606":{"market_hash_name":"Sticker | KrizzeN | Katowice 2019"},"3607":{"market_hash_name":"Sticker | KrizzeN (Foil) | Katowice 2019"},"3608":{"market_hash_name":"Sticker | KrizzeN (Gold) | Katowice 2019"},"3609":{"market_hash_name":"Sticker | qikert | Katowice 2019"},"361":{"market_hash_name":"Sticker | The Samurai"},"3610":{"market_hash_name":"Sticker | qikert (Foil) | Katowice 2019"},"3611":{"market_hash_name":"Sticker | qikert (Gold) | Katowice 2019"},"3612":{"market_hash_name":"Sticker | buster | Katowice 2019"},"3613":{"market_hash_name":"Sticker | buster (Foil) | Katowice 2019"},"3614":{"market_hash_name":"Sticker | buster (Gold) | Katowice 2019"},"3615":{"market_hash_name":"Sticker | gob b | Katowice 2019"},"3616":{"market_hash_name":"Sticker | gob b (Foil) | Katowice 2019"},"3617":{"market_hash_name":"Sticker | gob b (Gold) | Katowice 2019"},"3618":{"market_hash_name":"Sticker | tabseN | Katowice 2019"},"3619":{"market_hash_name":"Sticker | tabseN (Foil) | Katowice 2019"},"362":{"market_hash_name":"Sticker | Skull Lil Boney"},"3620":{"market_hash_name":"Sticker | tabseN (Gold) | Katowice 2019"},"3621":{"market_hash_name":"Sticker | tiziaN | Katowice 2019"},"3622":{"market_hash_name":"Sticker | tiziaN (Foil) | Katowice 2019"},"3623":{"market_hash_name":"Sticker | tiziaN (Gold) | Katowice 2019"},"3624":{"market_hash_name":"Sticker | XANTARES | Katowice 2019"},"3625":{"market_hash_name":"Sticker | XANTARES (Foil) | Katowice 2019"},"3626":{"market_hash_name":"Sticker | XANTARES (Gold) | Katowice 2019"},"3627":{"market_hash_name":"Sticker | smooya | Katowice 2019"},"3628":{"market_hash_name":"Sticker | smooya (Foil) | Katowice 2019"},"3629":{"market_hash_name":"Sticker | smooya (Gold) | Katowice 2019"},"363":{"market_hash_name":"Sticker | Skulltorgeist"},"3630":{"market_hash_name":"Sticker | flusha | Katowice 2019"},"3631":{"market_hash_name":"Sticker | flusha (Foil) | Katowice 2019"},"3632":{"market_hash_name":"Sticker | flusha (Gold) | Katowice 2019"},"3633":{"market_hash_name":"Sticker | kioShiMa | Katowice 2019"},"3634":{"market_hash_name":"Sticker | kioShiMa (Foil) | Katowice 2019"},"3635":{"market_hash_name":"Sticker | kioShiMa (Gold) | Katowice 2019"},"3636":{"market_hash_name":"Sticker | RUSH | Katowice 2019"},"3637":{"market_hash_name":"Sticker | RUSH (Foil) | Katowice 2019"},"3638":{"market_hash_name":"Sticker | RUSH (Gold) | Katowice 2019"},"3639":{"market_hash_name":"Sticker | autimatic | Katowice 2019"},"364":{"market_hash_name":"Sticker | Skull Troop"},"3640":{"market_hash_name":"Sticker | autimatic (Foil) | Katowice 2019"},"3641":{"market_hash_name":"Sticker | autimatic (Gold) | Katowice 2019"},"3642":{"market_hash_name":"Sticker | Golden | Katowice 2019"},"3643":{"market_hash_name":"Sticker | Golden (Foil) | Katowice 2019"},"3644":{"market_hash_name":"Sticker | Golden (Gold) | Katowice 2019"},"3645":{"market_hash_name":"Sticker | n0thing | Katowice 2019"},"3646":{"market_hash_name":"Sticker | n0thing (Foil) | Katowice 2019"},"3647":{"market_hash_name":"Sticker | n0thing (Gold) | Katowice 2019"},"3648":{"market_hash_name":"Sticker | Rickeh | Katowice 2019"},"3649":{"market_hash_name":"Sticker | Rickeh (Foil) | Katowice 2019"},"365":{"market_hash_name":"Sticker | Salute!"},"3650":{"market_hash_name":"Sticker | Rickeh (Gold) | Katowice 2019"},"3651":{"market_hash_name":"Sticker | stanislaw | Katowice 2019"},"3652":{"market_hash_name":"Sticker | stanislaw (Foil) | Katowice 2019"},"3653":{"market_hash_name":"Sticker | stanislaw (Gold) | Katowice 2019"},"3654":{"market_hash_name":"Sticker | dephh | Katowice 2019"},"3655":{"market_hash_name":"Sticker | dephh (Foil) | Katowice 2019"},"3656":{"market_hash_name":"Sticker | dephh (Gold) | Katowice 2019"},"3657":{"market_hash_name":"Sticker | ShahZaM | Katowice 2019"},"3658":{"market_hash_name":"Sticker | ShahZaM (Foil) | Katowice 2019"},"3659":{"market_hash_name":"Sticker | ShahZaM (Gold) | Katowice 2019"},"366":{"market_hash_name":"Sticker | The Spartan"},"3660":{"market_hash_name":"Sticker | allu | Katowice 2019"},"3661":{"market_hash_name":"Sticker | allu (Foil) | Katowice 2019"},"3662":{"market_hash_name":"Sticker | allu (Gold) | Katowice 2019"},"3663":{"market_hash_name":"Sticker | Aerial | Katowice 2019"},"3664":{"market_hash_name":"Sticker | Aerial (Foil) | Katowice 2019"},"3665":{"market_hash_name":"Sticker | Aerial (Gold) | Katowice 2019"},"3666":{"market_hash_name":"Sticker | xseveN | Katowice 2019"},"3667":{"market_hash_name":"Sticker | xseveN (Foil) | Katowice 2019"},"3668":{"market_hash_name":"Sticker | xseveN (Gold) | Katowice 2019"},"3669":{"market_hash_name":"Sticker | Aleksib | Katowice 2019"},"367":{"market_hash_name":"Sticker | Unicorn"},"3670":{"market_hash_name":"Sticker | Aleksib (Foil) | Katowice 2019"},"3671":{"market_hash_name":"Sticker | Aleksib (Gold) | Katowice 2019"},"3672":{"market_hash_name":"Sticker | sergej | Katowice 2019"},"3673":{"market_hash_name":"Sticker | sergej (Foil) | Katowice 2019"},"3674":{"market_hash_name":"Sticker | sergej (Gold) | Katowice 2019"},"3675":{"market_hash_name":"Sticker | GuardiaN | Katowice 2019"},"3676":{"market_hash_name":"Sticker | GuardiaN (Foil) | Katowice 2019"},"3677":{"market_hash_name":"Sticker | GuardiaN (Gold) | Katowice 2019"},"3678":{"market_hash_name":"Sticker | olofmeister | Katowice 2019"},"3679":{"market_hash_name":"Sticker | olofmeister (Foil) | Katowice 2019"},"368":{"market_hash_name":"Sticker | Unicorn (Holo)"},"3680":{"market_hash_name":"Sticker | olofmeister (Gold) | Katowice 2019"},"3681":{"market_hash_name":"Sticker | rain | Katowice 2019"},"3682":{"market_hash_name":"Sticker | rain (Foil) | Katowice 2019"},"3683":{"market_hash_name":"Sticker | rain (Gold) | Katowice 2019"},"3684":{"market_hash_name":"Sticker | AdreN | Katowice 2019"},"3685":{"market_hash_name":"Sticker | AdreN (Foil) | Katowice 2019"},"3686":{"market_hash_name":"Sticker | AdreN (Gold) | Katowice 2019"},"3687":{"market_hash_name":"Sticker | NiKo | Katowice 2019"},"3688":{"market_hash_name":"Sticker | NiKo (Foil) | Katowice 2019"},"3689":{"market_hash_name":"Sticker | NiKo (Gold) | Katowice 2019"},"369":{"market_hash_name":"Sticker | The Zombie"},"3690":{"market_hash_name":"Sticker | twist | Katowice 2019"},"3691":{"market_hash_name":"Sticker | twist (Foil) | Katowice 2019"},"3692":{"market_hash_name":"Sticker | twist (Gold) | Katowice 2019"},"3693":{"market_hash_name":"Sticker | Xizt | Katowice 2019"},"3694":{"market_hash_name":"Sticker | Xizt (Foil) | Katowice 2019"},"3695":{"market_hash_name":"Sticker | Xizt (Gold) | Katowice 2019"},"3696":{"market_hash_name":"Sticker | JW | Katowice 2019"},"3697":{"market_hash_name":"Sticker | JW (Foil) | Katowice 2019"},"3698":{"market_hash_name":"Sticker | JW (Gold) | Katowice 2019"},"3699":{"market_hash_name":"Sticker | KRIMZ | Katowice 2019"},"37":{"market_hash_name":"Sticker | Crown (Foil)"},"370":{"market_hash_name":"Sticker | Awp Country"},"3700":{"market_hash_name":"Sticker | KRIMZ (Foil) | Katowice 2019"},"3701":{"market_hash_name":"Sticker | KRIMZ (Gold) | Katowice 2019"},"3702":{"market_hash_name":"Sticker | Brollan | Katowice 2019"},"3703":{"market_hash_name":"Sticker | Brollan (Foil) | Katowice 2019"},"3704":{"market_hash_name":"Sticker | Brollan (Gold) | Katowice 2019"},"3705":{"market_hash_name":"Sticker | VINI | Katowice 2019"},"3706":{"market_hash_name":"Sticker | VINI (Foil) | Katowice 2019"},"3707":{"market_hash_name":"Sticker | VINI (Gold) | Katowice 2019"},"3708":{"market_hash_name":"Sticker | ableJ | Katowice 2019"},"3709":{"market_hash_name":"Sticker | ableJ (Foil) | Katowice 2019"},"371":{"market_hash_name":"Sticker | Chi Bomb"},"3710":{"market_hash_name":"Sticker | ableJ (Gold) | Katowice 2019"},"3711":{"market_hash_name":"Sticker | arT | Katowice 2019"},"3712":{"market_hash_name":"Sticker | arT (Foil) | Katowice 2019"},"3713":{"market_hash_name":"Sticker | arT (Gold) | Katowice 2019"},"3714":{"market_hash_name":"Sticker | KSCERATO | Katowice 2019"},"3715":{"market_hash_name":"Sticker | KSCERATO (Foil) | Katowice 2019"},"3716":{"market_hash_name":"Sticker | KSCERATO (Gold) | Katowice 2019"},"3717":{"market_hash_name":"Sticker | yuurih | Katowice 2019"},"3718":{"market_hash_name":"Sticker | yuurih (Foil) | Katowice 2019"},"3719":{"market_hash_name":"Sticker | yuurih (Gold) | Katowice 2019"},"372":{"market_hash_name":"Sticker | Doru The Fox"},"3720":{"market_hash_name":"Sticker | JaCkz | Katowice 2019"},"3721":{"market_hash_name":"Sticker | JaCkz (Foil) | Katowice 2019"},"3722":{"market_hash_name":"Sticker | JaCkz (Gold) | Katowice 2019"},"3723":{"market_hash_name":"Sticker | shox | Katowice 2019"},"3724":{"market_hash_name":"Sticker | shox (Foil) | Katowice 2019"},"3725":{"market_hash_name":"Sticker | shox (Gold) | Katowice 2019"},"3726":{"market_hash_name":"Sticker | bodyy | Katowice 2019"},"3727":{"market_hash_name":"Sticker | bodyy (Foil) | Katowice 2019"},"3728":{"market_hash_name":"Sticker | bodyy (Gold) | Katowice 2019"},"3729":{"market_hash_name":"Sticker | kennyS | Katowice 2019"},"373":{"market_hash_name":"Sticker | Knife Club"},"3730":{"market_hash_name":"Sticker | kennyS (Foil) | Katowice 2019"},"3731":{"market_hash_name":"Sticker | kennyS (Gold) | Katowice 2019"},"3732":{"market_hash_name":"Sticker | Lucky | Katowice 2019"},"3733":{"market_hash_name":"Sticker | Lucky (Foil) | Katowice 2019"},"3734":{"market_hash_name":"Sticker | Lucky (Gold) | Katowice 2019"},"3735":{"market_hash_name":"Sticker | sterling | Katowice 2019"},"3736":{"market_hash_name":"Sticker | sterling (Foil) | Katowice 2019"},"3737":{"market_hash_name":"Sticker | sterling (Gold) | Katowice 2019"},"3738":{"market_hash_name":"Sticker | dexter | Katowice 2019"},"3739":{"market_hash_name":"Sticker | dexter (Foil) | Katowice 2019"},"374":{"market_hash_name":"Sticker | CS On The Mind"},"3740":{"market_hash_name":"Sticker | dexter (Gold) | Katowice 2019"},"3741":{"market_hash_name":"Sticker | erkaSt | Katowice 2019"},"3742":{"market_hash_name":"Sticker | erkaSt (Foil) | Katowice 2019"},"3743":{"market_hash_name":"Sticker | erkaSt (Gold) | Katowice 2019"},"3744":{"market_hash_name":"Sticker | malta | Katowice 2019"},"3745":{"market_hash_name":"Sticker | malta (Foil) | Katowice 2019"},"3746":{"market_hash_name":"Sticker | malta (Gold) | Katowice 2019"},"3747":{"market_hash_name":"Sticker | DickStacy | Katowice 2019"},"3748":{"market_hash_name":"Sticker | DickStacy (Foil) | Katowice 2019"},"3749":{"market_hash_name":"Sticker | DickStacy (Gold) | Katowice 2019"},"375":{"market_hash_name":"Sticker | Ninja Defuse"},"3750":{"market_hash_name":"Sticker | DeadFox | Katowice 2019"},"3751":{"market_hash_name":"Sticker | DeadFox (Foil) | Katowice 2019"},"3752":{"market_hash_name":"Sticker | DeadFox (Gold) | Katowice 2019"},"3753":{"market_hash_name":"Sticker | ANGE1 | Katowice 2019"},"3754":{"market_hash_name":"Sticker | ANGE1 (Foil) | Katowice 2019"},"3755":{"market_hash_name":"Sticker | ANGE1 (Gold) | Katowice 2019"},"3756":{"market_hash_name":"Sticker | Hobbit | Katowice 2019"},"3757":{"market_hash_name":"Sticker | Hobbit (Foil) | Katowice 2019"},"3758":{"market_hash_name":"Sticker | Hobbit (Gold) | Katowice 2019"},"3759":{"market_hash_name":"Sticker | ISSAA | Katowice 2019"},"376":{"market_hash_name":"Sticker | Pros Don't Fake"},"3760":{"market_hash_name":"Sticker | ISSAA (Foil) | Katowice 2019"},"3761":{"market_hash_name":"Sticker | ISSAA (Gold) | Katowice 2019"},"3762":{"market_hash_name":"Sticker | woxic | Katowice 2019"},"3763":{"market_hash_name":"Sticker | woxic (Foil) | Katowice 2019"},"3764":{"market_hash_name":"Sticker | woxic (Gold) | Katowice 2019"},"3765":{"market_hash_name":"Sticker | FalleN | Katowice 2019"},"3766":{"market_hash_name":"Sticker | FalleN (Foil) | Katowice 2019"},"3767":{"market_hash_name":"Sticker | FalleN (Gold) | Katowice 2019"},"3768":{"market_hash_name":"Sticker | felps | Katowice 2019"},"3769":{"market_hash_name":"Sticker | felps (Foil) | Katowice 2019"},"377":{"market_hash_name":"Sticker | Kawaii Killer Terrorist"},"3770":{"market_hash_name":"Sticker | felps (Gold) | Katowice 2019"},"3771":{"market_hash_name":"Sticker | fer | Katowice 2019"},"3772":{"market_hash_name":"Sticker | fer (Foil) | Katowice 2019"},"3773":{"market_hash_name":"Sticker | fer (Gold) | Katowice 2019"},"3774":{"market_hash_name":"Sticker | TACO | Katowice 2019"},"3775":{"market_hash_name":"Sticker | TACO (Foil) | Katowice 2019"},"3776":{"market_hash_name":"Sticker | TACO (Gold) | Katowice 2019"},"3777":{"market_hash_name":"Sticker | coldzera | Katowice 2019"},"3778":{"market_hash_name":"Sticker | coldzera (Foil) | Katowice 2019"},"3779":{"market_hash_name":"Sticker | coldzera (Gold) | Katowice 2019"},"378":{"market_hash_name":"Sticker | Baaa-ckstabber!"},"3780":{"market_hash_name":"Sticker | Edward | Katowice 2019"},"3781":{"market_hash_name":"Sticker | Edward (Foil) | Katowice 2019"},"3782":{"market_hash_name":"Sticker | Edward (Gold) | Katowice 2019"},"3783":{"market_hash_name":"Sticker | Zeus | Katowice 2019"},"3784":{"market_hash_name":"Sticker | Zeus (Foil) | Katowice 2019"},"3785":{"market_hash_name":"Sticker | Zeus (Gold) | Katowice 2019"},"3786":{"market_hash_name":"Sticker | s1mple | Katowice 2019"},"3787":{"market_hash_name":"Sticker | s1mple (Foil) | Katowice 2019"},"3788":{"market_hash_name":"Sticker | s1mple (Gold) | Katowice 2019"},"3789":{"market_hash_name":"Sticker | electronic | Katowice 2019"},"379":{"market_hash_name":"Sticker | Delicious Tears"},"3790":{"market_hash_name":"Sticker | electronic (Foil) | Katowice 2019"},"3791":{"market_hash_name":"Sticker | electronic (Gold) | Katowice 2019"},"3792":{"market_hash_name":"Sticker | flamie | Katowice 2019"},"3793":{"market_hash_name":"Sticker | flamie (Foil) | Katowice 2019"},"3794":{"market_hash_name":"Sticker | flamie (Gold) | Katowice 2019"},"3795":{"market_hash_name":"Sticker | f0rest | Katowice 2019"},"3796":{"market_hash_name":"Sticker | f0rest (Foil) | Katowice 2019"},"3797":{"market_hash_name":"Sticker | f0rest (Gold) | Katowice 2019"},"3798":{"market_hash_name":"Sticker | Lekr0 | Katowice 2019"},"3799":{"market_hash_name":"Sticker | Lekr0 (Foil) | Katowice 2019"},"38":{"market_hash_name":"Sticker | Good Game"},"380":{"market_hash_name":"Sticker | pronax | Cologne 2015"},"3800":{"market_hash_name":"Sticker | Lekr0 (Gold) | Katowice 2019"},"3801":{"market_hash_name":"Sticker | GeT_RiGhT | Katowice 2019"},"3802":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Katowice 2019"},"3803":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Katowice 2019"},"3804":{"market_hash_name":"Sticker | REZ | Katowice 2019"},"3805":{"market_hash_name":"Sticker | REZ (Foil) | Katowice 2019"},"3806":{"market_hash_name":"Sticker | REZ (Gold) | Katowice 2019"},"3807":{"market_hash_name":"Sticker | dennis | Katowice 2019"},"3808":{"market_hash_name":"Sticker | dennis (Foil) | Katowice 2019"},"3809":{"market_hash_name":"Sticker | dennis (Gold) | Katowice 2019"},"381":{"market_hash_name":"Sticker | pronax (Foil) | Cologne 2015"},"3810":{"market_hash_name":"Sticker | daps | Katowice 2019"},"3811":{"market_hash_name":"Sticker | daps (Foil) | Katowice 2019"},"3812":{"market_hash_name":"Sticker | daps (Gold) | Katowice 2019"},"3813":{"market_hash_name":"Sticker | Brehze | Katowice 2019"},"3814":{"market_hash_name":"Sticker | Brehze (Foil) | Katowice 2019"},"3815":{"market_hash_name":"Sticker | Brehze (Gold) | Katowice 2019"},"3816":{"market_hash_name":"Sticker | FugLy | Katowice 2019"},"3817":{"market_hash_name":"Sticker | FugLy (Foil) | Katowice 2019"},"3818":{"market_hash_name":"Sticker | FugLy (Gold) | Katowice 2019"},"3819":{"market_hash_name":"Sticker | Ethan | Katowice 2019"},"382":{"market_hash_name":"Sticker | pronax (Gold) | Cologne 2015"},"3820":{"market_hash_name":"Sticker | Ethan (Foil) | Katowice 2019"},"3821":{"market_hash_name":"Sticker | Ethan (Gold) | Katowice 2019"},"3822":{"market_hash_name":"Sticker | CeRq | Katowice 2019"},"3823":{"market_hash_name":"Sticker | CeRq (Foil) | Katowice 2019"},"3824":{"market_hash_name":"Sticker | CeRq (Gold) | Katowice 2019"},"3825":{"market_hash_name":"Sticker | Gratisfaction | Katowice 2019"},"3826":{"market_hash_name":"Sticker | Gratisfaction (Foil) | Katowice 2019"},"3827":{"market_hash_name":"Sticker | Gratisfaction (Gold) | Katowice 2019"},"3828":{"market_hash_name":"Sticker | jks | Katowice 2019"},"3829":{"market_hash_name":"Sticker | jks (Foil) | Katowice 2019"},"383":{"market_hash_name":"Sticker | flusha | Cologne 2015"},"3830":{"market_hash_name":"Sticker | jks (Gold) | Katowice 2019"},"3831":{"market_hash_name":"Sticker | AZR | Katowice 2019"},"3832":{"market_hash_name":"Sticker | AZR (Foil) | Katowice 2019"},"3833":{"market_hash_name":"Sticker | AZR (Gold) | Katowice 2019"},"3834":{"market_hash_name":"Sticker | jkaem | Katowice 2019"},"3835":{"market_hash_name":"Sticker | jkaem (Foil) | Katowice 2019"},"3836":{"market_hash_name":"Sticker | jkaem (Gold) | Katowice 2019"},"3837":{"market_hash_name":"Sticker | Liazz | Katowice 2019"},"3838":{"market_hash_name":"Sticker | Liazz (Foil) | Katowice 2019"},"3839":{"market_hash_name":"Sticker | Liazz (Gold) | Katowice 2019"},"384":{"market_hash_name":"Sticker | flusha (Foil) | Cologne 2015"},"3840":{"market_hash_name":"Sticker | nitr0 | Katowice 2019"},"3841":{"market_hash_name":"Sticker | nitr0 (Foil) | Katowice 2019"},"3842":{"market_hash_name":"Sticker | nitr0 (Gold) | Katowice 2019"},"3843":{"market_hash_name":"Sticker | Stewie2K | Katowice 2019"},"3844":{"market_hash_name":"Sticker | Stewie2K (Foil) | Katowice 2019"},"3845":{"market_hash_name":"Sticker | Stewie2K (Gold) | Katowice 2019"},"3846":{"market_hash_name":"Sticker | NAF | Katowice 2019"},"3847":{"market_hash_name":"Sticker | NAF (Foil) | Katowice 2019"},"3848":{"market_hash_name":"Sticker | NAF (Gold) | Katowice 2019"},"3849":{"market_hash_name":"Sticker | Twistzz | Katowice 2019"},"385":{"market_hash_name":"Sticker | flusha (Gold) | Cologne 2015"},"3850":{"market_hash_name":"Sticker | Twistzz (Foil) | Katowice 2019"},"3851":{"market_hash_name":"Sticker | Twistzz (Gold) | Katowice 2019"},"3852":{"market_hash_name":"Sticker | EliGE | Katowice 2019"},"3853":{"market_hash_name":"Sticker | EliGE (Foil) | Katowice 2019"},"3854":{"market_hash_name":"Sticker | EliGE (Gold) | Katowice 2019"},"3855":{"market_hash_name":"Sticker | DavCost | Katowice 2019"},"3856":{"market_hash_name":"Sticker | DavCost (Foil) | Katowice 2019"},"3857":{"market_hash_name":"Sticker | DavCost (Gold) | Katowice 2019"},"3858":{"market_hash_name":"Sticker | COLDYY1 | Katowice 2019"},"3859":{"market_hash_name":"Sticker | COLDYY1 (Foil) | Katowice 2019"},"386":{"market_hash_name":"Sticker | JW | Cologne 2015"},"3860":{"market_hash_name":"Sticker | COLDYY1 (Gold) | Katowice 2019"},"3861":{"market_hash_name":"Sticker | Dima | Katowice 2019"},"3862":{"market_hash_name":"Sticker | Dima (Foil) | Katowice 2019"},"3863":{"market_hash_name":"Sticker | Dima (Gold) | Katowice 2019"},"3864":{"market_hash_name":"Sticker | sdy | Katowice 2019"},"3865":{"market_hash_name":"Sticker | sdy (Foil) | Katowice 2019"},"3866":{"market_hash_name":"Sticker | sdy (Gold) | Katowice 2019"},"3867":{"market_hash_name":"Sticker | S0tF1k | Katowice 2019"},"3868":{"market_hash_name":"Sticker | S0tF1k (Foil) | Katowice 2019"},"3869":{"market_hash_name":"Sticker | S0tF1k (Gold) | Katowice 2019"},"387":{"market_hash_name":"Sticker | JW (Foil) | Cologne 2015"},"3870":{"market_hash_name":"Sticker | Summer | Katowice 2019"},"3871":{"market_hash_name":"Sticker | Summer (Foil) | Katowice 2019"},"3872":{"market_hash_name":"Sticker | Summer (Gold) | Katowice 2019"},"3873":{"market_hash_name":"Sticker | somebody | Katowice 2019"},"3874":{"market_hash_name":"Sticker | somebody (Foil) | Katowice 2019"},"3875":{"market_hash_name":"Sticker | somebody (Gold) | Katowice 2019"},"3876":{"market_hash_name":"Sticker | Attacker | Katowice 2019"},"3877":{"market_hash_name":"Sticker | Attacker (Foil) | Katowice 2019"},"3878":{"market_hash_name":"Sticker | Attacker (Gold) | Katowice 2019"},"3879":{"market_hash_name":"Sticker | BnTeT | Katowice 2019"},"388":{"market_hash_name":"Sticker | JW (Gold) | Cologne 2015"},"3880":{"market_hash_name":"Sticker | BnTeT (Foil) | Katowice 2019"},"3881":{"market_hash_name":"Sticker | BnTeT (Gold) | Katowice 2019"},"3882":{"market_hash_name":"Sticker | xccurate | Katowice 2019"},"3883":{"market_hash_name":"Sticker | xccurate (Foil) | Katowice 2019"},"3884":{"market_hash_name":"Sticker | xccurate (Gold) | Katowice 2019"},"3885":{"market_hash_name":"Sticker | tonyblack | Katowice 2019"},"3886":{"market_hash_name":"Sticker | tonyblack (Foil) | Katowice 2019"},"3887":{"market_hash_name":"Sticker | tonyblack (Gold) | Katowice 2019"},"3888":{"market_hash_name":"Sticker | crush | Katowice 2019"},"3889":{"market_hash_name":"Sticker | crush (Foil) | Katowice 2019"},"389":{"market_hash_name":"Sticker | KRIMZ | Cologne 2015"},"3890":{"market_hash_name":"Sticker | crush (Gold) | Katowice 2019"},"3891":{"market_hash_name":"Sticker | jR | Katowice 2019"},"3892":{"market_hash_name":"Sticker | jR (Foil) | Katowice 2019"},"3893":{"market_hash_name":"Sticker | jR (Gold) | Katowice 2019"},"3894":{"market_hash_name":"Sticker | hutji | Katowice 2019"},"3895":{"market_hash_name":"Sticker | hutji (Foil) | Katowice 2019"},"3896":{"market_hash_name":"Sticker | hutji (Gold) | Katowice 2019"},"3897":{"market_hash_name":"Sticker | chopper | Katowice 2019"},"3898":{"market_hash_name":"Sticker | chopper (Foil) | Katowice 2019"},"3899":{"market_hash_name":"Sticker | chopper (Gold) | Katowice 2019"},"39":{"market_hash_name":"Sticker | Good Luck"},"390":{"market_hash_name":"Sticker | KRIMZ (Foil) | Cologne 2015"},"3900":{"market_hash_name":"Sticker | Kaze | Katowice 2019"},"3901":{"market_hash_name":"Sticker | Kaze (Foil) | Katowice 2019"},"3902":{"market_hash_name":"Sticker | Kaze (Gold) | Katowice 2019"},"3903":{"market_hash_name":"Sticker | advent | Katowice 2019"},"3904":{"market_hash_name":"Sticker | advent (Foil) | Katowice 2019"},"3905":{"market_hash_name":"Sticker | advent (Gold) | Katowice 2019"},"3906":{"market_hash_name":"Sticker | aumaN | Katowice 2019"},"3907":{"market_hash_name":"Sticker | aumaN (Foil) | Katowice 2019"},"3908":{"market_hash_name":"Sticker | aumaN (Gold) | Katowice 2019"},"3909":{"market_hash_name":"Sticker | zhokiNg | Katowice 2019"},"391":{"market_hash_name":"Sticker | KRIMZ (Gold) | Cologne 2015"},"3910":{"market_hash_name":"Sticker | zhokiNg (Foil) | Katowice 2019"},"3911":{"market_hash_name":"Sticker | zhokiNg (Gold) | Katowice 2019"},"3912":{"market_hash_name":"Sticker | Freeman | Katowice 2019"},"3913":{"market_hash_name":"Sticker | Freeman (Foil) | Katowice 2019"},"3914":{"market_hash_name":"Sticker | Freeman (Gold) | Katowice 2019"},"3915":{"market_hash_name":"Sticker | NBK- | Katowice 2019"},"3916":{"market_hash_name":"Sticker | NBK- (Foil) | Katowice 2019"},"3917":{"market_hash_name":"Sticker | NBK- (Gold) | Katowice 2019"},"3918":{"market_hash_name":"Sticker | apEX | Katowice 2019"},"3919":{"market_hash_name":"Sticker | apEX (Foil) | Katowice 2019"},"392":{"market_hash_name":"Sticker | olofmeister | Cologne 2015"},"3920":{"market_hash_name":"Sticker | apEX (Gold) | Katowice 2019"},"3921":{"market_hash_name":"Sticker | ALEX | Katowice 2019"},"3922":{"market_hash_name":"Sticker | ALEX (Foil) | Katowice 2019"},"3923":{"market_hash_name":"Sticker | ALEX (Gold) | Katowice 2019"},"3924":{"market_hash_name":"Sticker | RpK | Katowice 2019"},"3925":{"market_hash_name":"Sticker | RpK (Foil) | Katowice 2019"},"3926":{"market_hash_name":"Sticker | RpK (Gold) | Katowice 2019"},"3927":{"market_hash_name":"Sticker | ZywOo | Katowice 2019"},"3928":{"market_hash_name":"Sticker | ZywOo (Foil) | Katowice 2019"},"3929":{"market_hash_name":"Sticker | ZywOo (Gold) | Katowice 2019"},"393":{"market_hash_name":"Sticker | olofmeister (Foil) | Cologne 2015"},"3930":{"market_hash_name":"Sticker | WorldEdit | Katowice 2019"},"3931":{"market_hash_name":"Sticker | WorldEdit (Foil) | Katowice 2019"},"3932":{"market_hash_name":"Sticker | WorldEdit (Gold) | Katowice 2019"},"3933":{"market_hash_name":"Sticker | wayLander | Katowice 2019"},"3934":{"market_hash_name":"Sticker | wayLander (Foil) | Katowice 2019"},"3935":{"market_hash_name":"Sticker | wayLander (Gold) | Katowice 2019"},"3936":{"market_hash_name":"Sticker | Kvik | Katowice 2019"},"3937":{"market_hash_name":"Sticker | Kvik (Foil) | Katowice 2019"},"3938":{"market_hash_name":"Sticker | Kvik (Gold) | Katowice 2019"},"3939":{"market_hash_name":"Sticker | Boombl4 | Katowice 2019"},"394":{"market_hash_name":"Sticker | olofmeister (Gold) | Cologne 2015"},"3940":{"market_hash_name":"Sticker | Boombl4 (Foil) | Katowice 2019"},"3941":{"market_hash_name":"Sticker | Boombl4 (Gold) | Katowice 2019"},"3942":{"market_hash_name":"Sticker | n0rb3r7 | Katowice 2019"},"3943":{"market_hash_name":"Sticker | n0rb3r7 (Foil) | Katowice 2019"},"3944":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Katowice 2019"},"3945":{"market_hash_name":"Sticker | Baited"},"3946":{"market_hash_name":"Sticker | Baited (Holo)"},"3947":{"market_hash_name":"Sticker | Bite Me"},"3949":{"market_hash_name":"Sticker | Bite Me (Foil)"},"395":{"market_hash_name":"Sticker | FalleN | Cologne 2015"},"3950":{"market_hash_name":"Sticker | Cluck"},"3951":{"market_hash_name":"Sticker | Cluck (Holo)"},"3952":{"market_hash_name":"Sticker | First Blood"},"3953":{"market_hash_name":"Sticker | First Blood (Holo)"},"3954":{"market_hash_name":"Sticker | Free Hugs"},"3955":{"market_hash_name":"Sticker | Free Hugs (Holo)"},"3956":{"market_hash_name":"Sticker | Lurker"},"3958":{"market_hash_name":"Sticker | Lurker (Foil)"},"3959":{"market_hash_name":"Sticker | One Sting"},"396":{"market_hash_name":"Sticker | FalleN (Foil) | Cologne 2015"},"3960":{"market_hash_name":"Sticker | One Sting (Holo)"},"3961":{"market_hash_name":"Sticker | Scavenger"},"3962":{"market_hash_name":"Sticker | Scavenger (Holo)"},"3963":{"market_hash_name":"Sticker | Toxic"},"3965":{"market_hash_name":"Sticker | Toxic (Foil)"},"3966":{"market_hash_name":"Sticker | Big Clucks"},"3967":{"market_hash_name":"Sticker | Bonehead"},"3968":{"market_hash_name":"Sticker | BukAWP"},"3969":{"market_hash_name":"Sticker | Double Dip"},"397":{"market_hash_name":"Sticker | FalleN (Gold) | Cologne 2015"},"3970":{"market_hash_name":"Sticker | Fowl Play"},"3971":{"market_hash_name":"Sticker | Heads Up"},"3972":{"market_hash_name":"Sticker | Hot Wings"},"3973":{"market_hash_name":"Sticker | Nest Egg"},"3974":{"market_hash_name":"Sticker | Roosty Boosty"},"3975":{"market_hash_name":"Sticker | What What"},"3976":{"market_hash_name":"Sticker | Bonehead (Holo)"},"3977":{"market_hash_name":"Sticker | Double Dip (Holo)"},"3978":{"market_hash_name":"Sticker | Fowl Play (Holo)"},"3979":{"market_hash_name":"Sticker | Hot Wings (Holo)"},"398":{"market_hash_name":"Sticker | steel | Cologne 2015"},"3980":{"market_hash_name":"Sticker | Nest Egg (Holo)"},"3981":{"market_hash_name":"Sticker | Big Clucks (Foil)"},"3982":{"market_hash_name":"Sticker | Roosty Boosty (Foil)"},"399":{"market_hash_name":"Sticker | steel (Foil) | Cologne 2015"},"4":{"market_hash_name":"Sticker | Shooter Close (Foil)"},"40":{"market_hash_name":"Sticker | Have Fun"},"400":{"market_hash_name":"Sticker | steel (Gold) | Cologne 2015"},"401":{"market_hash_name":"Sticker | fer | Cologne 2015"},"4019":{"market_hash_name":"Sticker | Astralis | Berlin 2019"},"402":{"market_hash_name":"Sticker | fer (Foil) | Cologne 2015"},"4020":{"market_hash_name":"Sticker | Astralis (Holo) | Berlin 2019"},"4021":{"market_hash_name":"Sticker | Astralis (Foil) | Berlin 2019"},"4022":{"market_hash_name":"Sticker | Astralis (Gold) | Berlin 2019"},"4023":{"market_hash_name":"Sticker | ENCE | Berlin 2019"},"4024":{"market_hash_name":"Sticker | ENCE (Holo) | Berlin 2019"},"4025":{"market_hash_name":"Sticker | ENCE (Foil) | Berlin 2019"},"4026":{"market_hash_name":"Sticker | ENCE (Gold) | Berlin 2019"},"4027":{"market_hash_name":"Sticker | MIBR | Berlin 2019"},"4028":{"market_hash_name":"Sticker | MIBR (Holo) | Berlin 2019"},"4029":{"market_hash_name":"Sticker | MIBR (Foil) | Berlin 2019"},"403":{"market_hash_name":"Sticker | fer (Gold) | Cologne 2015"},"4030":{"market_hash_name":"Sticker | MIBR (Gold) | Berlin 2019"},"4031":{"market_hash_name":"Sticker | Natus Vincere | Berlin 2019"},"4032":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Berlin 2019"},"4033":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Berlin 2019"},"4034":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Berlin 2019"},"4035":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Berlin 2019"},"4036":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Berlin 2019"},"4037":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Berlin 2019"},"4038":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Berlin 2019"},"4039":{"market_hash_name":"Sticker | FaZe Clan | Berlin 2019"},"404":{"market_hash_name":"Sticker | boltz | Cologne 2015"},"4040":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Berlin 2019"},"4041":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Berlin 2019"},"4042":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Berlin 2019"},"4043":{"market_hash_name":"Sticker | Team Liquid | Berlin 2019"},"4044":{"market_hash_name":"Sticker | Team Liquid (Holo) | Berlin 2019"},"4045":{"market_hash_name":"Sticker | Team Liquid (Foil) | Berlin 2019"},"4046":{"market_hash_name":"Sticker | Team Liquid (Gold) | Berlin 2019"},"4047":{"market_hash_name":"Sticker | Renegades | Berlin 2019"},"4048":{"market_hash_name":"Sticker | Renegades (Holo) | Berlin 2019"},"4049":{"market_hash_name":"Sticker | Renegades (Foil) | Berlin 2019"},"405":{"market_hash_name":"Sticker | boltz (Foil) | Cologne 2015"},"4050":{"market_hash_name":"Sticker | Renegades (Gold) | Berlin 2019"},"4051":{"market_hash_name":"Sticker | compLexity Gaming | Berlin 2019"},"4052":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | Berlin 2019"},"4053":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | Berlin 2019"},"4054":{"market_hash_name":"Sticker | compLexity Gaming (Gold) | Berlin 2019"},"4055":{"market_hash_name":"Sticker | HellRaisers | Berlin 2019"},"4056":{"market_hash_name":"Sticker | HellRaisers (Holo) | Berlin 2019"},"4057":{"market_hash_name":"Sticker | HellRaisers (Foil) | Berlin 2019"},"4058":{"market_hash_name":"Sticker | HellRaisers (Gold) | Berlin 2019"},"4059":{"market_hash_name":"Sticker | Avangar | Berlin 2019"},"406":{"market_hash_name":"Sticker | boltz (Gold) | Cologne 2015"},"4060":{"market_hash_name":"Sticker | Avangar (Holo) | Berlin 2019"},"4061":{"market_hash_name":"Sticker | Avangar (Foil) | Berlin 2019"},"4062":{"market_hash_name":"Sticker | Avangar (Gold) | Berlin 2019"},"4063":{"market_hash_name":"Sticker | G2 Esports | Berlin 2019"},"4064":{"market_hash_name":"Sticker | G2 Esports (Holo) | Berlin 2019"},"4065":{"market_hash_name":"Sticker | G2 Esports (Foil) | Berlin 2019"},"4066":{"market_hash_name":"Sticker | G2 Esports (Gold) | Berlin 2019"},"4067":{"market_hash_name":"Sticker | Vitality | Berlin 2019"},"4068":{"market_hash_name":"Sticker | Vitality (Holo) | Berlin 2019"},"4069":{"market_hash_name":"Sticker | Vitality (Foil) | Berlin 2019"},"407":{"market_hash_name":"Sticker | coldzera | Cologne 2015"},"4070":{"market_hash_name":"Sticker | Vitality (Gold) | Berlin 2019"},"4071":{"market_hash_name":"Sticker | Grayhound Gaming | Berlin 2019"},"4072":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Berlin 2019"},"4073":{"market_hash_name":"Sticker | Grayhound Gaming (Foil) | Berlin 2019"},"4074":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Berlin 2019"},"4075":{"market_hash_name":"Sticker | mousesports | Berlin 2019"},"4076":{"market_hash_name":"Sticker | mousesports (Holo) | Berlin 2019"},"4077":{"market_hash_name":"Sticker | mousesports (Foil) | Berlin 2019"},"4078":{"market_hash_name":"Sticker | mousesports (Gold) | Berlin 2019"},"4079":{"market_hash_name":"Sticker | forZe eSports | Berlin 2019"},"408":{"market_hash_name":"Sticker | coldzera (Foil) | Cologne 2015"},"4080":{"market_hash_name":"Sticker | forZe eSports (Holo) | Berlin 2019"},"4081":{"market_hash_name":"Sticker | forZe eSports (Foil) | Berlin 2019"},"4082":{"market_hash_name":"Sticker | forZe eSports (Gold) | Berlin 2019"},"4083":{"market_hash_name":"Sticker | NRG | Berlin 2019"},"4084":{"market_hash_name":"Sticker | NRG (Holo) | Berlin 2019"},"4085":{"market_hash_name":"Sticker | NRG (Foil) | Berlin 2019"},"4086":{"market_hash_name":"Sticker | NRG (Gold) | Berlin 2019"},"4087":{"market_hash_name":"Sticker | Tyloo | Berlin 2019"},"4088":{"market_hash_name":"Sticker | Tyloo (Holo) | Berlin 2019"},"4089":{"market_hash_name":"Sticker | Tyloo (Foil) | Berlin 2019"},"409":{"market_hash_name":"Sticker | coldzera (Gold) | Cologne 2015"},"4090":{"market_hash_name":"Sticker | Tyloo (Gold) | Berlin 2019"},"4091":{"market_hash_name":"Sticker | FURIA | Berlin 2019"},"4092":{"market_hash_name":"Sticker | FURIA (Holo) | Berlin 2019"},"4093":{"market_hash_name":"Sticker | FURIA (Foil) | Berlin 2019"},"4094":{"market_hash_name":"Sticker | FURIA (Gold) | Berlin 2019"},"4095":{"market_hash_name":"Sticker | CR4ZY | Berlin 2019"},"4096":{"market_hash_name":"Sticker | CR4ZY (Holo) | Berlin 2019"},"4097":{"market_hash_name":"Sticker | CR4ZY (Foil) | Berlin 2019"},"4098":{"market_hash_name":"Sticker | CR4ZY (Gold) | Berlin 2019"},"4099":{"market_hash_name":"Sticker | Syman Gaming | Berlin 2019"},"41":{"market_hash_name":"Sticker | Let's Roll-oll"},"410":{"market_hash_name":"Sticker | GuardiaN | Cologne 2015"},"4100":{"market_hash_name":"Sticker | Syman Gaming (Holo) | Berlin 2019"},"4101":{"market_hash_name":"Sticker | Syman Gaming (Foil) | Berlin 2019"},"4102":{"market_hash_name":"Sticker | Syman Gaming (Gold) | Berlin 2019"},"4103":{"market_hash_name":"Sticker | North | Berlin 2019"},"4104":{"market_hash_name":"Sticker | North (Holo) | Berlin 2019"},"4105":{"market_hash_name":"Sticker | North (Foil) | Berlin 2019"},"4106":{"market_hash_name":"Sticker | North (Gold) | Berlin 2019"},"4107":{"market_hash_name":"Sticker | DreamEaters | Berlin 2019"},"4108":{"market_hash_name":"Sticker | DreamEaters (Holo) | Berlin 2019"},"4109":{"market_hash_name":"Sticker | DreamEaters (Foil) | Berlin 2019"},"411":{"market_hash_name":"Sticker | GuardiaN (Foil) | Cologne 2015"},"4110":{"market_hash_name":"Sticker | DreamEaters (Gold) | Berlin 2019"},"4111":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB | Berlin 2019"},"4112":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB (Holo) | Berlin 2019"},"4113":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB (Foil) | Berlin 2019"},"4114":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB (Gold) | Berlin 2019"},"4115":{"market_hash_name":"Sticker | StarLadder | Berlin 2019"},"4116":{"market_hash_name":"Sticker | StarLadder (Holo) | Berlin 2019"},"4117":{"market_hash_name":"Sticker | StarLadder (Foil) | Berlin 2019"},"4118":{"market_hash_name":"Sticker | StarLadder (Gold) | Berlin 2019"},"412":{"market_hash_name":"Sticker | GuardiaN (Gold) | Cologne 2015"},"413":{"market_hash_name":"Sticker | Zeus | Cologne 2015"},"414":{"market_hash_name":"Sticker | Zeus (Foil) | Cologne 2015"},"4144":{"market_hash_name":"Sticker | Magisk | Berlin 2019"},"4145":{"market_hash_name":"Sticker | Magisk (Foil) | Berlin 2019"},"4146":{"market_hash_name":"Sticker | Magisk (Gold) | Berlin 2019"},"4147":{"market_hash_name":"Sticker | device | Berlin 2019"},"4148":{"market_hash_name":"Sticker | device (Foil) | Berlin 2019"},"4149":{"market_hash_name":"Sticker | device (Gold) | Berlin 2019"},"415":{"market_hash_name":"Sticker | Zeus (Gold) | Cologne 2015"},"4150":{"market_hash_name":"Sticker | Xyp9x | Berlin 2019"},"4151":{"market_hash_name":"Sticker | Xyp9x (Foil) | Berlin 2019"},"4152":{"market_hash_name":"Sticker | Xyp9x (Gold) | Berlin 2019"},"4153":{"market_hash_name":"Sticker | dupreeh | Berlin 2019"},"4154":{"market_hash_name":"Sticker | dupreeh (Foil) | Berlin 2019"},"4155":{"market_hash_name":"Sticker | dupreeh (Gold) | Berlin 2019"},"4156":{"market_hash_name":"Sticker | gla1ve | Berlin 2019"},"4157":{"market_hash_name":"Sticker | gla1ve (Foil) | Berlin 2019"},"4158":{"market_hash_name":"Sticker | gla1ve (Gold) | Berlin 2019"},"4159":{"market_hash_name":"Sticker | allu | Berlin 2019"},"416":{"market_hash_name":"Sticker | seized | Cologne 2015"},"4160":{"market_hash_name":"Sticker | allu (Foil) | Berlin 2019"},"4161":{"market_hash_name":"Sticker | allu (Gold) | Berlin 2019"},"4162":{"market_hash_name":"Sticker | Aerial | Berlin 2019"},"4163":{"market_hash_name":"Sticker | Aerial (Foil) | Berlin 2019"},"4164":{"market_hash_name":"Sticker | Aerial (Gold) | Berlin 2019"},"4165":{"market_hash_name":"Sticker | xseveN | Berlin 2019"},"4166":{"market_hash_name":"Sticker | xseveN (Foil) | Berlin 2019"},"4167":{"market_hash_name":"Sticker | xseveN (Gold) | Berlin 2019"},"4168":{"market_hash_name":"Sticker | Aleksib | Berlin 2019"},"4169":{"market_hash_name":"Sticker | Aleksib (Foil) | Berlin 2019"},"417":{"market_hash_name":"Sticker | seized (Foil) | Cologne 2015"},"4170":{"market_hash_name":"Sticker | Aleksib (Gold) | Berlin 2019"},"4171":{"market_hash_name":"Sticker | sergej | Berlin 2019"},"4172":{"market_hash_name":"Sticker | sergej (Foil) | Berlin 2019"},"4173":{"market_hash_name":"Sticker | sergej (Gold) | Berlin 2019"},"4174":{"market_hash_name":"Sticker | FalleN | Berlin 2019"},"4175":{"market_hash_name":"Sticker | FalleN (Foil) | Berlin 2019"},"4176":{"market_hash_name":"Sticker | FalleN (Gold) | Berlin 2019"},"4177":{"market_hash_name":"Sticker | LUCAS1 | Berlin 2019"},"4178":{"market_hash_name":"Sticker | LUCAS1 (Foil) | Berlin 2019"},"4179":{"market_hash_name":"Sticker | LUCAS1 (Gold) | Berlin 2019"},"418":{"market_hash_name":"Sticker | seized (Gold) | Cologne 2015"},"4180":{"market_hash_name":"Sticker | fer | Berlin 2019"},"4181":{"market_hash_name":"Sticker | fer (Foil) | Berlin 2019"},"4182":{"market_hash_name":"Sticker | fer (Gold) | Berlin 2019"},"4183":{"market_hash_name":"Sticker | TACO | Berlin 2019"},"4184":{"market_hash_name":"Sticker | TACO (Foil) | Berlin 2019"},"4185":{"market_hash_name":"Sticker | TACO (Gold) | Berlin 2019"},"4186":{"market_hash_name":"Sticker | coldzera | Berlin 2019"},"4187":{"market_hash_name":"Sticker | coldzera (Foil) | Berlin 2019"},"4188":{"market_hash_name":"Sticker | coldzera (Gold) | Berlin 2019"},"4189":{"market_hash_name":"Sticker | Zeus | Berlin 2019"},"419":{"market_hash_name":"Sticker | Edward | Cologne 2015"},"4190":{"market_hash_name":"Sticker | Zeus (Foil) | Berlin 2019"},"4191":{"market_hash_name":"Sticker | Zeus (Gold) | Berlin 2019"},"4192":{"market_hash_name":"Sticker | s1mple | Berlin 2019"},"4193":{"market_hash_name":"Sticker | s1mple (Foil) | Berlin 2019"},"4194":{"market_hash_name":"Sticker | s1mple (Gold) | Berlin 2019"},"4195":{"market_hash_name":"Sticker | electronic | Berlin 2019"},"4196":{"market_hash_name":"Sticker | electronic (Foil) | Berlin 2019"},"4197":{"market_hash_name":"Sticker | electronic (Gold) | Berlin 2019"},"4198":{"market_hash_name":"Sticker | flamie | Berlin 2019"},"4199":{"market_hash_name":"Sticker | flamie (Foil) | Berlin 2019"},"42":{"market_hash_name":"Sticker | Let's Roll-oll (Holo)"},"420":{"market_hash_name":"Sticker | Edward (Foil) | Cologne 2015"},"4200":{"market_hash_name":"Sticker | flamie (Gold) | Berlin 2019"},"4201":{"market_hash_name":"Sticker | Boombl4 | Berlin 2019"},"4202":{"market_hash_name":"Sticker | Boombl4 (Foil) | Berlin 2019"},"4203":{"market_hash_name":"Sticker | Boombl4 (Gold) | Berlin 2019"},"4204":{"market_hash_name":"Sticker | f0rest | Berlin 2019"},"4205":{"market_hash_name":"Sticker | f0rest (Foil) | Berlin 2019"},"4206":{"market_hash_name":"Sticker | f0rest (Gold) | Berlin 2019"},"4207":{"market_hash_name":"Sticker | Lekr0 | Berlin 2019"},"4208":{"market_hash_name":"Sticker | Lekr0 (Foil) | Berlin 2019"},"4209":{"market_hash_name":"Sticker | Lekr0 (Gold) | Berlin 2019"},"421":{"market_hash_name":"Sticker | Edward (Gold) | Cologne 2015"},"4210":{"market_hash_name":"Sticker | GeT_RiGhT | Berlin 2019"},"4211":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Berlin 2019"},"4212":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Berlin 2019"},"4213":{"market_hash_name":"Sticker | REZ | Berlin 2019"},"4214":{"market_hash_name":"Sticker | REZ (Foil) | Berlin 2019"},"4215":{"market_hash_name":"Sticker | REZ (Gold) | Berlin 2019"},"4216":{"market_hash_name":"Sticker | Golden | Berlin 2019"},"4217":{"market_hash_name":"Sticker | Golden (Foil) | Berlin 2019"},"4218":{"market_hash_name":"Sticker | Golden (Gold) | Berlin 2019"},"4219":{"market_hash_name":"Sticker | NEO | Berlin 2019"},"422":{"market_hash_name":"Sticker | flamie | Cologne 2015"},"4220":{"market_hash_name":"Sticker | NEO (Foil) | Berlin 2019"},"4221":{"market_hash_name":"Sticker | NEO (Gold) | Berlin 2019"},"4222":{"market_hash_name":"Sticker | GuardiaN | Berlin 2019"},"4223":{"market_hash_name":"Sticker | GuardiaN (Foil) | Berlin 2019"},"4224":{"market_hash_name":"Sticker | GuardiaN (Gold) | Berlin 2019"},"4225":{"market_hash_name":"Sticker | olofmeister | Berlin 2019"},"4226":{"market_hash_name":"Sticker | olofmeister (Foil) | Berlin 2019"},"4227":{"market_hash_name":"Sticker | olofmeister (Gold) | Berlin 2019"},"4228":{"market_hash_name":"Sticker | rain | Berlin 2019"},"4229":{"market_hash_name":"Sticker | rain (Foil) | Berlin 2019"},"423":{"market_hash_name":"Sticker | flamie (Foil) | Cologne 2015"},"4230":{"market_hash_name":"Sticker | rain (Gold) | Berlin 2019"},"4231":{"market_hash_name":"Sticker | NiKo | Berlin 2019"},"4232":{"market_hash_name":"Sticker | NiKo (Foil) | Berlin 2019"},"4233":{"market_hash_name":"Sticker | NiKo (Gold) | Berlin 2019"},"4234":{"market_hash_name":"Sticker | nitr0 | Berlin 2019"},"4235":{"market_hash_name":"Sticker | nitr0 (Foil) | Berlin 2019"},"4236":{"market_hash_name":"Sticker | nitr0 (Gold) | Berlin 2019"},"4237":{"market_hash_name":"Sticker | Stewie2K | Berlin 2019"},"4238":{"market_hash_name":"Sticker | Stewie2K (Foil) | Berlin 2019"},"4239":{"market_hash_name":"Sticker | Stewie2K (Gold) | Berlin 2019"},"424":{"market_hash_name":"Sticker | flamie (Gold) | Cologne 2015"},"4240":{"market_hash_name":"Sticker | NAF | Berlin 2019"},"4241":{"market_hash_name":"Sticker | NAF (Foil) | Berlin 2019"},"4242":{"market_hash_name":"Sticker | NAF (Gold) | Berlin 2019"},"4243":{"market_hash_name":"Sticker | Twistzz | Berlin 2019"},"4244":{"market_hash_name":"Sticker | Twistzz (Foil) | Berlin 2019"},"4245":{"market_hash_name":"Sticker | Twistzz (Gold) | Berlin 2019"},"4246":{"market_hash_name":"Sticker | EliGE | Berlin 2019"},"4247":{"market_hash_name":"Sticker | EliGE (Foil) | Berlin 2019"},"4248":{"market_hash_name":"Sticker | EliGE (Gold) | Berlin 2019"},"4249":{"market_hash_name":"Sticker | Gratisfaction | Berlin 2019"},"425":{"market_hash_name":"Sticker | Xizt | Cologne 2015"},"4250":{"market_hash_name":"Sticker | Gratisfaction (Foil) | Berlin 2019"},"4251":{"market_hash_name":"Sticker | Gratisfaction (Gold) | Berlin 2019"},"4252":{"market_hash_name":"Sticker | jks | Berlin 2019"},"4253":{"market_hash_name":"Sticker | jks (Foil) | Berlin 2019"},"4254":{"market_hash_name":"Sticker | jks (Gold) | Berlin 2019"},"4255":{"market_hash_name":"Sticker | AZR | Berlin 2019"},"4256":{"market_hash_name":"Sticker | AZR (Foil) | Berlin 2019"},"4257":{"market_hash_name":"Sticker | AZR (Gold) | Berlin 2019"},"4258":{"market_hash_name":"Sticker | jkaem | Berlin 2019"},"4259":{"market_hash_name":"Sticker | jkaem (Foil) | Berlin 2019"},"426":{"market_hash_name":"Sticker | Xizt (Foil) | Cologne 2015"},"4260":{"market_hash_name":"Sticker | jkaem (Gold) | Berlin 2019"},"4261":{"market_hash_name":"Sticker | Liazz | Berlin 2019"},"4262":{"market_hash_name":"Sticker | Liazz (Foil) | Berlin 2019"},"4263":{"market_hash_name":"Sticker | Liazz (Gold) | Berlin 2019"},"4264":{"market_hash_name":"Sticker | Rickeh | Berlin 2019"},"4265":{"market_hash_name":"Sticker | Rickeh (Foil) | Berlin 2019"},"4266":{"market_hash_name":"Sticker | Rickeh (Gold) | Berlin 2019"},"4267":{"market_hash_name":"Sticker | SicK | Berlin 2019"},"4268":{"market_hash_name":"Sticker | SicK (Foil) | Berlin 2019"},"4269":{"market_hash_name":"Sticker | SicK (Gold) | Berlin 2019"},"427":{"market_hash_name":"Sticker | Xizt (Gold) | Cologne 2015"},"4270":{"market_hash_name":"Sticker | dephh | Berlin 2019"},"4271":{"market_hash_name":"Sticker | dephh (Foil) | Berlin 2019"},"4272":{"market_hash_name":"Sticker | dephh (Gold) | Berlin 2019"},"4273":{"market_hash_name":"Sticker | ShahZaM | Berlin 2019"},"4274":{"market_hash_name":"Sticker | ShahZaM (Foil) | Berlin 2019"},"4275":{"market_hash_name":"Sticker | ShahZaM (Gold) | Berlin 2019"},"4276":{"market_hash_name":"Sticker | oBo | Berlin 2019"},"4277":{"market_hash_name":"Sticker | oBo (Foil) | Berlin 2019"},"4278":{"market_hash_name":"Sticker | oBo (Gold) | Berlin 2019"},"4279":{"market_hash_name":"Sticker | DeadFox | Berlin 2019"},"428":{"market_hash_name":"Sticker | f0rest | Cologne 2015"},"4280":{"market_hash_name":"Sticker | DeadFox (Foil) | Berlin 2019"},"4281":{"market_hash_name":"Sticker | DeadFox (Gold) | Berlin 2019"},"4282":{"market_hash_name":"Sticker | loWel | Berlin 2019"},"4283":{"market_hash_name":"Sticker | loWel (Foil) | Berlin 2019"},"4284":{"market_hash_name":"Sticker | loWel (Gold) | Berlin 2019"},"4285":{"market_hash_name":"Sticker | ANGE1 | Berlin 2019"},"4286":{"market_hash_name":"Sticker | ANGE1 (Foil) | Berlin 2019"},"4287":{"market_hash_name":"Sticker | ANGE1 (Gold) | Berlin 2019"},"4288":{"market_hash_name":"Sticker | ISSAA | Berlin 2019"},"4289":{"market_hash_name":"Sticker | ISSAA (Foil) | Berlin 2019"},"429":{"market_hash_name":"Sticker | f0rest (Foil) | Cologne 2015"},"4290":{"market_hash_name":"Sticker | ISSAA (Gold) | Berlin 2019"},"4291":{"market_hash_name":"Sticker | oskar | Berlin 2019"},"4292":{"market_hash_name":"Sticker | oskar (Foil) | Berlin 2019"},"4293":{"market_hash_name":"Sticker | oskar (Gold) | Berlin 2019"},"4294":{"market_hash_name":"Sticker | AdreN | Berlin 2019"},"4295":{"market_hash_name":"Sticker | AdreN (Foil) | Berlin 2019"},"4296":{"market_hash_name":"Sticker | AdreN (Gold) | Berlin 2019"},"4297":{"market_hash_name":"Sticker | Jame | Berlin 2019"},"4298":{"market_hash_name":"Sticker | Jame (Foil) | Berlin 2019"},"4299":{"market_hash_name":"Sticker | Jame (Gold) | Berlin 2019"},"43":{"market_hash_name":"Sticker | Metal"},"430":{"market_hash_name":"Sticker | f0rest (Gold) | Cologne 2015"},"4300":{"market_hash_name":"Sticker | qikert | Berlin 2019"},"4301":{"market_hash_name":"Sticker | qikert (Foil) | Berlin 2019"},"4302":{"market_hash_name":"Sticker | qikert (Gold) | Berlin 2019"},"4303":{"market_hash_name":"Sticker | buster | Berlin 2019"},"4304":{"market_hash_name":"Sticker | buster (Foil) | Berlin 2019"},"4305":{"market_hash_name":"Sticker | buster (Gold) | Berlin 2019"},"4306":{"market_hash_name":"Sticker | SANJI | Berlin 2019"},"4307":{"market_hash_name":"Sticker | SANJI (Foil) | Berlin 2019"},"4308":{"market_hash_name":"Sticker | SANJI (Gold) | Berlin 2019"},"4309":{"market_hash_name":"Sticker | JaCkz | Berlin 2019"},"431":{"market_hash_name":"Sticker | GeT_RiGhT | Cologne 2015"},"4310":{"market_hash_name":"Sticker | JaCkz (Foil) | Berlin 2019"},"4311":{"market_hash_name":"Sticker | JaCkz (Gold) | Berlin 2019"},"4312":{"market_hash_name":"Sticker | shox | Berlin 2019"},"4313":{"market_hash_name":"Sticker | shox (Foil) | Berlin 2019"},"4314":{"market_hash_name":"Sticker | shox (Gold) | Berlin 2019"},"4315":{"market_hash_name":"Sticker | kennyS | Berlin 2019"},"4316":{"market_hash_name":"Sticker | kennyS (Foil) | Berlin 2019"},"4317":{"market_hash_name":"Sticker | kennyS (Gold) | Berlin 2019"},"4318":{"market_hash_name":"Sticker | Lucky | Berlin 2019"},"4319":{"market_hash_name":"Sticker | Lucky (Foil) | Berlin 2019"},"432":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Cologne 2015"},"4320":{"market_hash_name":"Sticker | Lucky (Gold) | Berlin 2019"},"4321":{"market_hash_name":"Sticker | AmaNEk | Berlin 2019"},"4322":{"market_hash_name":"Sticker | AmaNEk (Foil) | Berlin 2019"},"4323":{"market_hash_name":"Sticker | AmaNEk (Gold) | Berlin 2019"},"4324":{"market_hash_name":"Sticker | NBK- | Berlin 2019"},"4325":{"market_hash_name":"Sticker | NBK- (Foil) | Berlin 2019"},"4326":{"market_hash_name":"Sticker | NBK- (Gold) | Berlin 2019"},"4327":{"market_hash_name":"Sticker | apEX | Berlin 2019"},"4328":{"market_hash_name":"Sticker | apEX (Foil) | Berlin 2019"},"4329":{"market_hash_name":"Sticker | apEX (Gold) | Berlin 2019"},"433":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Cologne 2015"},"4330":{"market_hash_name":"Sticker | ALEX | Berlin 2019"},"4331":{"market_hash_name":"Sticker | ALEX (Foil) | Berlin 2019"},"4332":{"market_hash_name":"Sticker | ALEX (Gold) | Berlin 2019"},"4333":{"market_hash_name":"Sticker | RpK | Berlin 2019"},"4334":{"market_hash_name":"Sticker | RpK (Foil) | Berlin 2019"},"4335":{"market_hash_name":"Sticker | RpK (Gold) | Berlin 2019"},"4336":{"market_hash_name":"Sticker | ZywOo | Berlin 2019"},"4337":{"market_hash_name":"Sticker | ZywOo (Foil) | Berlin 2019"},"4338":{"market_hash_name":"Sticker | ZywOo (Gold) | Berlin 2019"},"4339":{"market_hash_name":"Sticker | Sico | Berlin 2019"},"434":{"market_hash_name":"Sticker | friberg | Cologne 2015"},"4340":{"market_hash_name":"Sticker | Sico (Foil) | Berlin 2019"},"4341":{"market_hash_name":"Sticker | Sico (Gold) | Berlin 2019"},"4342":{"market_hash_name":"Sticker | dexter | Berlin 2019"},"4343":{"market_hash_name":"Sticker | dexter (Foil) | Berlin 2019"},"4344":{"market_hash_name":"Sticker | dexter (Gold) | Berlin 2019"},"4345":{"market_hash_name":"Sticker | erkaSt | Berlin 2019"},"4346":{"market_hash_name":"Sticker | erkaSt (Foil) | Berlin 2019"},"4347":{"market_hash_name":"Sticker | erkaSt (Gold) | Berlin 2019"},"4348":{"market_hash_name":"Sticker | malta | Berlin 2019"},"4349":{"market_hash_name":"Sticker | malta (Foil) | Berlin 2019"},"435":{"market_hash_name":"Sticker | friberg (Foil) | Cologne 2015"},"4350":{"market_hash_name":"Sticker | malta (Gold) | Berlin 2019"},"4351":{"market_hash_name":"Sticker | DickStacy | Berlin 2019"},"4352":{"market_hash_name":"Sticker | DickStacy (Foil) | Berlin 2019"},"4353":{"market_hash_name":"Sticker | DickStacy (Gold) | Berlin 2019"},"4354":{"market_hash_name":"Sticker | chrisJ | Berlin 2019"},"4355":{"market_hash_name":"Sticker | chrisJ (Foil) | Berlin 2019"},"4356":{"market_hash_name":"Sticker | chrisJ (Gold) | Berlin 2019"},"4357":{"market_hash_name":"Sticker | karrigan | Berlin 2019"},"4358":{"market_hash_name":"Sticker | karrigan (Foil) | Berlin 2019"},"4359":{"market_hash_name":"Sticker | karrigan (Gold) | Berlin 2019"},"436":{"market_hash_name":"Sticker | friberg (Gold) | Cologne 2015"},"4360":{"market_hash_name":"Sticker | ropz | Berlin 2019"},"4361":{"market_hash_name":"Sticker | ropz (Foil) | Berlin 2019"},"4362":{"market_hash_name":"Sticker | ropz (Gold) | Berlin 2019"},"4363":{"market_hash_name":"Sticker | frozen | Berlin 2019"},"4364":{"market_hash_name":"Sticker | frozen (Foil) | Berlin 2019"},"4365":{"market_hash_name":"Sticker | frozen (Gold) | Berlin 2019"},"4366":{"market_hash_name":"Sticker | woxic | Berlin 2019"},"4367":{"market_hash_name":"Sticker | woxic (Foil) | Berlin 2019"},"4368":{"market_hash_name":"Sticker | woxic (Gold) | Berlin 2019"},"4369":{"market_hash_name":"Sticker | FL1T | Berlin 2019"},"437":{"market_hash_name":"Sticker | allu | Cologne 2015"},"4370":{"market_hash_name":"Sticker | FL1T (Foil) | Berlin 2019"},"4371":{"market_hash_name":"Sticker | FL1T (Gold) | Berlin 2019"},"4372":{"market_hash_name":"Sticker | Jerry | Berlin 2019"},"4373":{"market_hash_name":"Sticker | Jerry (Foil) | Berlin 2019"},"4374":{"market_hash_name":"Sticker | Jerry (Gold) | Berlin 2019"},"4375":{"market_hash_name":"Sticker | almazer | Berlin 2019"},"4376":{"market_hash_name":"Sticker | almazer (Foil) | Berlin 2019"},"4377":{"market_hash_name":"Sticker | almazer (Gold) | Berlin 2019"},"4378":{"market_hash_name":"Sticker | xsepower | Berlin 2019"},"4379":{"market_hash_name":"Sticker | xsepower (Foil) | Berlin 2019"},"438":{"market_hash_name":"Sticker | allu (Foil) | Cologne 2015"},"4380":{"market_hash_name":"Sticker | xsepower (Gold) | Berlin 2019"},"4381":{"market_hash_name":"Sticker | facecrack | Berlin 2019"},"4382":{"market_hash_name":"Sticker | facecrack (Foil) | Berlin 2019"},"4383":{"market_hash_name":"Sticker | facecrack (Gold) | Berlin 2019"},"4384":{"market_hash_name":"Sticker | tarik | Berlin 2019"},"4385":{"market_hash_name":"Sticker | tarik (Foil) | Berlin 2019"},"4386":{"market_hash_name":"Sticker | tarik (Gold) | Berlin 2019"},"4387":{"market_hash_name":"Sticker | stanislaw | Berlin 2019"},"4388":{"market_hash_name":"Sticker | stanislaw (Foil) | Berlin 2019"},"4389":{"market_hash_name":"Sticker | stanislaw (Gold) | Berlin 2019"},"439":{"market_hash_name":"Sticker | allu (Gold) | Cologne 2015"},"4390":{"market_hash_name":"Sticker | Brehze | Berlin 2019"},"4391":{"market_hash_name":"Sticker | Brehze (Foil) | Berlin 2019"},"4392":{"market_hash_name":"Sticker | Brehze (Gold) | Berlin 2019"},"4393":{"market_hash_name":"Sticker | Ethan | Berlin 2019"},"4394":{"market_hash_name":"Sticker | Ethan (Foil) | Berlin 2019"},"4395":{"market_hash_name":"Sticker | Ethan (Gold) | Berlin 2019"},"4396":{"market_hash_name":"Sticker | CeRq | Berlin 2019"},"4397":{"market_hash_name":"Sticker | CeRq (Foil) | Berlin 2019"},"4398":{"market_hash_name":"Sticker | CeRq (Gold) | Berlin 2019"},"4399":{"market_hash_name":"Sticker | Summer | Berlin 2019"},"44":{"market_hash_name":"Sticker | Nice Shot"},"440":{"market_hash_name":"Sticker | kennyS | Cologne 2015"},"4400":{"market_hash_name":"Sticker | Summer (Foil) | Berlin 2019"},"4401":{"market_hash_name":"Sticker | Summer (Gold) | Berlin 2019"},"4402":{"market_hash_name":"Sticker | somebody | Berlin 2019"},"4403":{"market_hash_name":"Sticker | somebody (Foil) | Berlin 2019"},"4404":{"market_hash_name":"Sticker | somebody (Gold) | Berlin 2019"},"4405":{"market_hash_name":"Sticker | Attacker | Berlin 2019"},"4406":{"market_hash_name":"Sticker | Attacker (Foil) | Berlin 2019"},"4407":{"market_hash_name":"Sticker | Attacker (Gold) | Berlin 2019"},"4408":{"market_hash_name":"Sticker | BnTeT | Berlin 2019"},"4409":{"market_hash_name":"Sticker | BnTeT (Foil) | Berlin 2019"},"441":{"market_hash_name":"Sticker | kennyS (Foil) | Cologne 2015"},"4410":{"market_hash_name":"Sticker | BnTeT (Gold) | Berlin 2019"},"4411":{"market_hash_name":"Sticker | Freeman | Berlin 2019"},"4412":{"market_hash_name":"Sticker | Freeman (Foil) | Berlin 2019"},"4413":{"market_hash_name":"Sticker | Freeman (Gold) | Berlin 2019"},"4414":{"market_hash_name":"Sticker | VINI | Berlin 2019"},"4415":{"market_hash_name":"Sticker | VINI (Foil) | Berlin 2019"},"4416":{"market_hash_name":"Sticker | VINI (Gold) | Berlin 2019"},"4417":{"market_hash_name":"Sticker | ableJ | Berlin 2019"},"4418":{"market_hash_name":"Sticker | ableJ (Foil) | Berlin 2019"},"4419":{"market_hash_name":"Sticker | ableJ (Gold) | Berlin 2019"},"442":{"market_hash_name":"Sticker | kennyS (Gold) | Cologne 2015"},"4420":{"market_hash_name":"Sticker | arT | Berlin 2019"},"4421":{"market_hash_name":"Sticker | arT (Foil) | Berlin 2019"},"4422":{"market_hash_name":"Sticker | arT (Gold) | Berlin 2019"},"4423":{"market_hash_name":"Sticker | KSCERATO | Berlin 2019"},"4424":{"market_hash_name":"Sticker | KSCERATO (Foil) | Berlin 2019"},"4425":{"market_hash_name":"Sticker | KSCERATO (Gold) | Berlin 2019"},"4426":{"market_hash_name":"Sticker | yuurih | Berlin 2019"},"4427":{"market_hash_name":"Sticker | yuurih (Foil) | Berlin 2019"},"4428":{"market_hash_name":"Sticker | yuurih (Gold) | Berlin 2019"},"4429":{"market_hash_name":"Sticker | nexa | Berlin 2019"},"443":{"market_hash_name":"Sticker | kioShiMa | Cologne 2015"},"4430":{"market_hash_name":"Sticker | nexa (Foil) | Berlin 2019"},"4431":{"market_hash_name":"Sticker | nexa (Gold) | Berlin 2019"},"4432":{"market_hash_name":"Sticker | huNter- | Berlin 2019"},"4433":{"market_hash_name":"Sticker | huNter- (Foil) | Berlin 2019"},"4434":{"market_hash_name":"Sticker | huNter- (Gold) | Berlin 2019"},"4435":{"market_hash_name":"Sticker | ottoNd | Berlin 2019"},"4436":{"market_hash_name":"Sticker | ottoNd (Foil) | Berlin 2019"},"4437":{"market_hash_name":"Sticker | ottoNd (Gold) | Berlin 2019"},"4438":{"market_hash_name":"Sticker | LETN1 | Berlin 2019"},"4439":{"market_hash_name":"Sticker | LETN1 (Foil) | Berlin 2019"},"444":{"market_hash_name":"Sticker | kioShiMa (Foil) | Cologne 2015"},"4440":{"market_hash_name":"Sticker | LETN1 (Gold) | Berlin 2019"},"4441":{"market_hash_name":"Sticker | EspiranTo | Berlin 2019"},"4442":{"market_hash_name":"Sticker | EspiranTo (Foil) | Berlin 2019"},"4443":{"market_hash_name":"Sticker | EspiranTo (Gold) | Berlin 2019"},"4444":{"market_hash_name":"Sticker | t0rick | Berlin 2019"},"4445":{"market_hash_name":"Sticker | t0rick (Foil) | Berlin 2019"},"4446":{"market_hash_name":"Sticker | t0rick (Gold) | Berlin 2019"},"4447":{"market_hash_name":"Sticker | neaLaN | Berlin 2019"},"4448":{"market_hash_name":"Sticker | neaLaN (Foil) | Berlin 2019"},"4449":{"market_hash_name":"Sticker | neaLaN (Gold) | Berlin 2019"},"445":{"market_hash_name":"Sticker | kioShiMa (Gold) | Cologne 2015"},"4450":{"market_hash_name":"Sticker | Keoz | Berlin 2019"},"4451":{"market_hash_name":"Sticker | Keoz (Foil) | Berlin 2019"},"4452":{"market_hash_name":"Sticker | Keoz (Gold) | Berlin 2019"},"4453":{"market_hash_name":"Sticker | Ramz1kBO$$ | Berlin 2019"},"4454":{"market_hash_name":"Sticker | Ramz1kBO$$ (Foil) | Berlin 2019"},"4455":{"market_hash_name":"Sticker | Ramz1kBO$$ (Gold) | Berlin 2019"},"4456":{"market_hash_name":"Sticker | Perfecto | Berlin 2019"},"4457":{"market_hash_name":"Sticker | Perfecto (Foil) | Berlin 2019"},"4458":{"market_hash_name":"Sticker | Perfecto (Gold) | Berlin 2019"},"4459":{"market_hash_name":"Sticker | gade | Berlin 2019"},"446":{"market_hash_name":"Sticker | Happy | Cologne 2015"},"4460":{"market_hash_name":"Sticker | gade (Foil) | Berlin 2019"},"4461":{"market_hash_name":"Sticker | gade (Gold) | Berlin 2019"},"4462":{"market_hash_name":"Sticker | Kjaerbye | Berlin 2019"},"4463":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Berlin 2019"},"4464":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Berlin 2019"},"4465":{"market_hash_name":"Sticker | JUGi | Berlin 2019"},"4466":{"market_hash_name":"Sticker | JUGi (Foil) | Berlin 2019"},"4467":{"market_hash_name":"Sticker | JUGi (Gold) | Berlin 2019"},"4468":{"market_hash_name":"Sticker | aizy | Berlin 2019"},"4469":{"market_hash_name":"Sticker | aizy (Foil) | Berlin 2019"},"447":{"market_hash_name":"Sticker | Happy (Foil) | Cologne 2015"},"4470":{"market_hash_name":"Sticker | aizy (Gold) | Berlin 2019"},"4471":{"market_hash_name":"Sticker | v4lde | Berlin 2019"},"4472":{"market_hash_name":"Sticker | v4lde (Foil) | Berlin 2019"},"4473":{"market_hash_name":"Sticker | v4lde (Gold) | Berlin 2019"},"4474":{"market_hash_name":"Sticker | svyat | Berlin 2019"},"4475":{"market_hash_name":"Sticker | svyat (Foil) | Berlin 2019"},"4476":{"market_hash_name":"Sticker | svyat (Gold) | Berlin 2019"},"4477":{"market_hash_name":"Sticker | kinqie | Berlin 2019"},"4478":{"market_hash_name":"Sticker | kinqie (Foil) | Berlin 2019"},"4479":{"market_hash_name":"Sticker | kinqie (Gold) | Berlin 2019"},"448":{"market_hash_name":"Sticker | Happy (Gold) | Cologne 2015"},"4480":{"market_hash_name":"Sticker | Forester | Berlin 2019"},"4481":{"market_hash_name":"Sticker | Forester (Foil) | Berlin 2019"},"4482":{"market_hash_name":"Sticker | Forester (Gold) | Berlin 2019"},"4483":{"market_hash_name":"Sticker | Krad | Berlin 2019"},"4484":{"market_hash_name":"Sticker | Krad (Foil) | Berlin 2019"},"4485":{"market_hash_name":"Sticker | Krad (Gold) | Berlin 2019"},"4486":{"market_hash_name":"Sticker | speed4k | Berlin 2019"},"4487":{"market_hash_name":"Sticker | speed4k (Foil) | Berlin 2019"},"4488":{"market_hash_name":"Sticker | speed4k (Gold) | Berlin 2019"},"4489":{"market_hash_name":"Sticker | kNgV- | Berlin 2019"},"449":{"market_hash_name":"Sticker | apEX | Cologne 2015"},"4490":{"market_hash_name":"Sticker | kNgV- (Foil) | Berlin 2019"},"4491":{"market_hash_name":"Sticker | kNgV- (Gold) | Berlin 2019"},"4492":{"market_hash_name":"Sticker | DeStiNy | Berlin 2019"},"4493":{"market_hash_name":"Sticker | DeStiNy (Foil) | Berlin 2019"},"4494":{"market_hash_name":"Sticker | DeStiNy (Gold) | Berlin 2019"},"4495":{"market_hash_name":"Sticker | yel | Berlin 2019"},"4496":{"market_hash_name":"Sticker | yel (Foil) | Berlin 2019"},"4497":{"market_hash_name":"Sticker | yel (Gold) | Berlin 2019"},"4498":{"market_hash_name":"Sticker | chelo | Berlin 2019"},"4499":{"market_hash_name":"Sticker | chelo (Foil) | Berlin 2019"},"450":{"market_hash_name":"Sticker | apEX (Foil) | Cologne 2015"},"4500":{"market_hash_name":"Sticker | chelo (Gold) | Berlin 2019"},"4501":{"market_hash_name":"Sticker | xand | Berlin 2019"},"4502":{"market_hash_name":"Sticker | xand (Foil) | Berlin 2019"},"4503":{"market_hash_name":"Sticker | xand (Gold) | Berlin 2019"},"4504":{"market_hash_name":"Sticker | Counter-Tech"},"4505":{"market_hash_name":"Sticker | Gold Web"},"4506":{"market_hash_name":"Sticker | Mastermind"},"4507":{"market_hash_name":"Sticker | Shattered Web"},"4508":{"market_hash_name":"Sticker | Terrorist-Tech"},"4509":{"market_hash_name":"Sticker | Web Stuck"},"451":{"market_hash_name":"Sticker | apEX (Gold) | Cologne 2015"},"4510":{"market_hash_name":"Sticker | Mastermind (Holo)"},"4511":{"market_hash_name":"Sticker | Web Stuck (Holo)"},"4512":{"market_hash_name":"Sticker | Gold Web (Foil)"},"4513":{"market_hash_name":"Sticker | CS20 Classic (Holo)"},"4514":{"market_hash_name":"Sticker | Too Old for This"},"4515":{"market_hash_name":"Sticker | Pixel Avenger"},"4516":{"market_hash_name":"Sticker | Aztec"},"4517":{"market_hash_name":"Sticker | Too Late"},"4518":{"market_hash_name":"Sticker | Friend Code"},"4519":{"market_hash_name":"Sticker | Clutchman (Holo)"},"452":{"market_hash_name":"Sticker | NBK- | Cologne 2015"},"4520":{"market_hash_name":"Sticker | All Hail the King (Foil)"},"4521":{"market_hash_name":"Sticker | Door Stuck (Foil)"},"4522":{"market_hash_name":"Sticker | Dragon Lore (Foil)"},"4523":{"market_hash_name":"Sticker | Guinea Pig (Holo)"},"4524":{"market_hash_name":"Sticker | Obey SAS"},"4525":{"market_hash_name":"Sticker | Fire in the Hole (Holo)"},"4526":{"market_hash_name":"Sticker | Nuke Beast"},"4527":{"market_hash_name":"Sticker | Mondays"},"4528":{"market_hash_name":"Sticker | Boost (Holo)"},"4529":{"market_hash_name":"Sticker | Rush 4x20 (Holo)"},"453":{"market_hash_name":"Sticker | NBK- (Foil) | Cologne 2015"},"4530":{"market_hash_name":"Sticker | Separate Pixels"},"4531":{"market_hash_name":"Sticker | Surf's Up"},"4532":{"market_hash_name":"Sticker | Temperance"},"4533":{"market_hash_name":"Sticker | Assassin"},"4534":{"market_hash_name":"Sticker | Chief"},"4535":{"market_hash_name":"Sticker | Dirty Money"},"4536":{"market_hash_name":"Sticker | Extermination"},"4537":{"market_hash_name":"Sticker | Incineration"},"4538":{"market_hash_name":"Sticker | Killjoy"},"4539":{"market_hash_name":"Sticker | Legendary"},"454":{"market_hash_name":"Sticker | NBK- (Gold) | Cologne 2015"},"4540":{"market_hash_name":"Sticker | Mister Chief"},"4541":{"market_hash_name":"Sticker | Noble"},"4542":{"market_hash_name":"Sticker | Spartan"},"4543":{"market_hash_name":"Sticker | Assassin (Holo)"},"4544":{"market_hash_name":"Sticker | Chief (Holo)"},"4545":{"market_hash_name":"Sticker | Incineration (Holo)"},"4546":{"market_hash_name":"Sticker | Killjoy (Holo)"},"4547":{"market_hash_name":"Sticker | Noble (Holo)"},"4548":{"market_hash_name":"Sticker | Chief (Foil)"},"4549":{"market_hash_name":"Sticker | Legendary (Foil)"},"455":{"market_hash_name":"Sticker | karrigan | Cologne 2015"},"4550":{"market_hash_name":"Patch | Crazy Banana","is_patch":true},"4551":{"market_hash_name":"Patch | The Boss","is_patch":true},"4552":{"market_hash_name":"Patch | Chicken Lover","is_patch":true},"4553":{"market_hash_name":"Patch | Welcome to the Clutch","is_patch":true},"4554":{"market_hash_name":"Patch | Dragon","is_patch":true},"4555":{"market_hash_name":"Patch | Easy Peasy","is_patch":true},"4556":{"market_hash_name":"Patch | Rage","is_patch":true},"4557":{"market_hash_name":"Patch | Howl","is_patch":true},"4558":{"market_hash_name":"Patch | Koi","is_patch":true},"4559":{"market_hash_name":"Patch | Longevity","is_patch":true},"456":{"market_hash_name":"Sticker | karrigan (Foil) | Cologne 2015"},"4560":{"market_hash_name":"Patch | Wildfire","is_patch":true},"4561":{"market_hash_name":"Patch | Vigilance","is_patch":true},"4562":{"market_hash_name":"Patch | Bloodhound","is_patch":true},"4563":{"market_hash_name":"Patch | Bravo","is_patch":true},"4564":{"market_hash_name":"Patch | Breakout","is_patch":true},"4565":{"market_hash_name":"Patch | Danger Zone","is_patch":true},"4566":{"market_hash_name":"Patch | Hydra","is_patch":true},"4567":{"market_hash_name":"Patch | Payback","is_patch":true},"4568":{"market_hash_name":"Patch | Phoenix","is_patch":true},"4569":{"market_hash_name":"Patch | Shattered Web","is_patch":true},"457":{"market_hash_name":"Sticker | karrigan (Gold) | Cologne 2015"},"4570":{"market_hash_name":"Patch | Vanguard","is_patch":true},"4571":{"market_hash_name":"Patch | Metal Silver","is_patch":true},"4572":{"market_hash_name":"Patch | Metal Gold Nova I","is_patch":true},"4575":{"market_hash_name":"Patch | Metal Gold Nova Master","is_patch":true},"4576":{"market_hash_name":"Patch | Metal Master Guardian I","is_patch":true},"4577":{"market_hash_name":"Sticker | Blinky"},"4578":{"market_hash_name":"Patch | Metal Master Guardian Elite","is_patch":true},"4579":{"market_hash_name":"Patch | Metal Distinguished Master Guardian ★","is_patch":true},"458":{"market_hash_name":"Sticker | device | Cologne 2015"},"4580":{"market_hash_name":"Sticker | Chompers"},"4581":{"market_hash_name":"Patch | Metal Legendary Eagle Master ★","is_patch":true},"4582":{"market_hash_name":"Patch | Metal Supreme Master First Class","is_patch":true},"4583":{"market_hash_name":"Patch | Metal The Global Elite ★","is_patch":true},"4584":{"market_hash_name":"Patch | Metal Distinguished Master Guardian","is_patch":true},"4585":{"market_hash_name":"Patch | Metal Legendary Eagle","is_patch":true},"4586":{"market_hash_name":"Patch | Metal Legendary Eagle Master","is_patch":true},"4587":{"market_hash_name":"Patch | Metal Silver Demon","is_patch":true},"4588":{"market_hash_name":"Patch | Metal Supreme Master","is_patch":true},"4589":{"market_hash_name":"Patch | Alyx","is_patch":true},"459":{"market_hash_name":"Sticker | device (Foil) | Cologne 2015"},"4590":{"market_hash_name":"Sticker | Fly High"},"4591":{"market_hash_name":"Patch | Sustenance!","is_patch":true},"4592":{"market_hash_name":"Patch | Vortigaunt","is_patch":true},"4593":{"market_hash_name":"Patch | Headcrab Glyph","is_patch":true},"4594":{"market_hash_name":"Patch | Copper Lambda","is_patch":true},"4595":{"market_hash_name":"Patch | Health","is_patch":true},"4596":{"market_hash_name":"Patch | Combine Helmet","is_patch":true},"4597":{"market_hash_name":"Patch | Black Mesa","is_patch":true},"4598":{"market_hash_name":"Patch | CMB","is_patch":true},"4599":{"market_hash_name":"Patch | Lambda","is_patch":true},"46":{"market_hash_name":"Sticker | Stupid Banana (Foil)"},"460":{"market_hash_name":"Sticker | device (Gold) | Cologne 2015"},"4600":{"market_hash_name":"Patch | City 17","is_patch":true},"4601":{"market_hash_name":"Sticker | Last Vance"},"4602":{"market_hash_name":"Sticker | Vortigaunt the Painter"},"4603":{"market_hash_name":"Sticker | Big Hugs"},"4604":{"market_hash_name":"Sticker | Combine Helmet"},"4605":{"market_hash_name":"Sticker | Gnome Mercy"},"4606":{"market_hash_name":"Sticker | Greetings"},"4607":{"market_hash_name":"Sticker | Lambda"},"4608":{"market_hash_name":"Sticker | Vortigaunt (Holo)"},"4609":{"market_hash_name":"Sticker | Big Hugs (Holo)"},"461":{"market_hash_name":"Sticker | dupreeh | Cologne 2015"},"4610":{"market_hash_name":"Sticker | Combine Helmet (Holo)"},"4611":{"market_hash_name":"Sticker | Lambda (Holo)"},"4612":{"market_hash_name":"Sticker | Last Vance (Gold)"},"4613":{"market_hash_name":"Sticker | Health (Gold)"},"4614":{"market_hash_name":"Sticker | Adepta Sororitas"},"4615":{"market_hash_name":"Sticker | Aeldari Avatar"},"4616":{"market_hash_name":"Sticker | Full Buy"},"4617":{"market_hash_name":"Sticker | Heresy"},"4618":{"market_hash_name":"Sticker | Necron"},"4619":{"market_hash_name":"Sticker | Ork Waaagh!"},"462":{"market_hash_name":"Sticker | dupreeh (Foil) | Cologne 2015"},"4620":{"market_hash_name":"Sticker | Primaris Keychain"},"4621":{"market_hash_name":"Sticker | Repulsor"},"4622":{"market_hash_name":"Sticker | Space Marine"},"4623":{"market_hash_name":"Sticker | Tyranids Ravener"},"4624":{"market_hash_name":"Sticker | Heresy (Holo)"},"4625":{"market_hash_name":"Sticker | Lord of Skulls (Holo)"},"4626":{"market_hash_name":"Sticker | Space Marine (Holo)"},"4627":{"market_hash_name":"Sticker | Tyranids Hive Tyrant (Holo)"},"4628":{"market_hash_name":"Sticker | Bloodthirster (Foil)"},"4629":{"market_hash_name":"Sticker | Chaos Marine (Foil)"},"463":{"market_hash_name":"Sticker | dupreeh (Gold) | Cologne 2015"},"4630":{"market_hash_name":"Sticker | Emperor (Foil)"},"464":{"market_hash_name":"Sticker | Xyp9x | Cologne 2015"},"4647":{"market_hash_name":"Sticker | From The Deep"},"4648":{"market_hash_name":"Sticker | Glare"},"4649":{"market_hash_name":"Sticker | Hello AK-47"},"465":{"market_hash_name":"Sticker | Xyp9x (Foil) | Cologne 2015"},"4650":{"market_hash_name":"Sticker | Hello AK-47 (Gold)"},"4651":{"market_hash_name":"Sticker | Hello AUG"},"4652":{"market_hash_name":"Sticker | Hello AUG (Gold)"},"4653":{"market_hash_name":"Sticker | Hello AWP"},"4654":{"market_hash_name":"Sticker | Hello AWP (Gold)"},"4655":{"market_hash_name":"Sticker | Hello PP-Bizon"},"4656":{"market_hash_name":"Sticker | Hello PP-Bizon (Gold)"},"4657":{"market_hash_name":"Sticker | Hello CZ75-Auto"},"4658":{"market_hash_name":"Sticker | Hello CZ75-Auto (Gold)"},"4659":{"market_hash_name":"Sticker | Hello FAMAS"},"466":{"market_hash_name":"Sticker | Xyp9x (Gold) | Cologne 2015"},"4660":{"market_hash_name":"Sticker | Hello FAMAS (Gold)"},"4661":{"market_hash_name":"Sticker | Hello Galil AR"},"4662":{"market_hash_name":"Sticker | Hello Galil AR (Gold)"},"4663":{"market_hash_name":"Sticker | Hello M4A1-S"},"4664":{"market_hash_name":"Sticker | Hello M4A1-S (Gold)"},"4665":{"market_hash_name":"Sticker | Hello M4A4"},"4666":{"market_hash_name":"Sticker | Hello M4A4 (Gold)"},"4667":{"market_hash_name":"Sticker | Hello MAC-10"},"4668":{"market_hash_name":"Sticker | Hello MAC-10 (Gold)"},"4669":{"market_hash_name":"Sticker | Hello MP7"},"467":{"market_hash_name":"Sticker | cajunb | Cologne 2015"},"4670":{"market_hash_name":"Sticker | Hello MP7 (Gold)"},"4671":{"market_hash_name":"Sticker | Hello MP9"},"4672":{"market_hash_name":"Sticker | Hello MP9 (Gold)"},"4673":{"market_hash_name":"Sticker | Hello P90"},"4674":{"market_hash_name":"Sticker | Hello P90 (Gold)"},"4675":{"market_hash_name":"Sticker | Hello SG 553"},"4676":{"market_hash_name":"Sticker | Hello SG 553 (Gold)"},"4677":{"market_hash_name":"Sticker | Hello UMP-45"},"4678":{"market_hash_name":"Sticker | Hello UMP-45 (Gold)"},"4679":{"market_hash_name":"Sticker | Hello XM1014"},"468":{"market_hash_name":"Sticker | cajunb (Foil) | Cologne 2015"},"4680":{"market_hash_name":"Sticker | Hello XM1014 (Gold)"},"4681":{"market_hash_name":"Sticker | Ancient Beast"},"4682":{"market_hash_name":"Sticker | Ancient Marauder"},"4683":{"market_hash_name":"Sticker | Ancient Protector"},"4684":{"market_hash_name":"Sticker | Badge of Service"},"4685":{"market_hash_name":"Sticker | Battle Scarred"},"4686":{"market_hash_name":"Sticker | Broken Fang"},"4687":{"market_hash_name":"Sticker | Coiled Strike"},"4688":{"market_hash_name":"Sticker | Enemy Spotted"},"4689":{"market_hash_name":"Sticker | Stalking Prey"},"469":{"market_hash_name":"Sticker | cajunb (Gold) | Cologne 2015"},"4690":{"market_hash_name":"Sticker | Stone Scales"},"4691":{"market_hash_name":"Sticker | Battle Scarred (Holo)"},"4692":{"market_hash_name":"Sticker | Broken Fang (Holo)"},"4693":{"market_hash_name":"Sticker | Coiled Strike (Holo)"},"4694":{"market_hash_name":"Sticker | Enemy Spotted (Holo)"},"4695":{"market_hash_name":"Sticker | Ancient Beast (Foil)"},"4696":{"market_hash_name":"Sticker | Stone Scales (Foil)"},"4697":{"market_hash_name":"Patch | Metal The Global Elite","is_patch":true},"4698":{"market_hash_name":"Sticker | Lefty (CT)"},"4699":{"market_hash_name":"Patch | Metal Master Guardian","is_patch":true},"47":{"market_hash_name":"Sticker | Welcome to the Clutch"},"470":{"market_hash_name":"Sticker | NEO | Cologne 2015"},"4700":{"market_hash_name":"Patch | Metal Gold Nova","is_patch":true},"4701":{"market_hash_name":"Sticker | Vitality | 2020 RMR"},"4702":{"market_hash_name":"Sticker | Vitality (Holo) | 2020 RMR"},"4703":{"market_hash_name":"Sticker | Vitality (Foil) | 2020 RMR"},"4704":{"market_hash_name":"Sticker | Vitality (Gold) | 2020 RMR"},"4705":{"market_hash_name":"Sticker | Heroic | 2020 RMR"},"4706":{"market_hash_name":"Sticker | Heroic (Holo) | 2020 RMR"},"4707":{"market_hash_name":"Sticker | Heroic (Foil) | 2020 RMR"},"4708":{"market_hash_name":"Sticker | Heroic (Gold) | 2020 RMR"},"4709":{"market_hash_name":"Sticker | Ninjas in Pyjamas | 2020 RMR"},"471":{"market_hash_name":"Sticker | NEO (Foil) | Cologne 2015"},"4710":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | 2020 RMR"},"4711":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | 2020 RMR"},"4712":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | 2020 RMR"},"4713":{"market_hash_name":"Sticker | Astralis | 2020 RMR"},"4714":{"market_hash_name":"Sticker | Astralis (Holo) | 2020 RMR"},"4715":{"market_hash_name":"Sticker | Astralis (Foil) | 2020 RMR"},"4716":{"market_hash_name":"Sticker | Astralis (Gold) | 2020 RMR"},"4717":{"market_hash_name":"Sticker | BIG | 2020 RMR"},"4718":{"market_hash_name":"Sticker | BIG (Holo) | 2020 RMR"},"4719":{"market_hash_name":"Sticker | BIG (Foil) | 2020 RMR"},"472":{"market_hash_name":"Sticker | NEO (Gold) | Cologne 2015"},"4720":{"market_hash_name":"Sticker | BIG (Gold) | 2020 RMR"},"4721":{"market_hash_name":"Sticker | Fnatic | 2020 RMR"},"4722":{"market_hash_name":"Sticker | Fnatic (Holo) | 2020 RMR"},"4723":{"market_hash_name":"Sticker | Fnatic (Foil) | 2020 RMR"},"4724":{"market_hash_name":"Sticker | Fnatic (Gold) | 2020 RMR"},"4725":{"market_hash_name":"Sticker | G2 | 2020 RMR"},"4726":{"market_hash_name":"Sticker | G2 (Holo) | 2020 RMR"},"4727":{"market_hash_name":"Sticker | G2 (Foil) | 2020 RMR"},"4728":{"market_hash_name":"Sticker | G2 (Gold) | 2020 RMR"},"4729":{"market_hash_name":"Sticker | OG | 2020 RMR"},"473":{"market_hash_name":"Sticker | pashaBiceps | Cologne 2015"},"4730":{"market_hash_name":"Sticker | OG (Holo) | 2020 RMR"},"4731":{"market_hash_name":"Sticker | OG (Foil) | 2020 RMR"},"4732":{"market_hash_name":"Sticker | OG (Gold) | 2020 RMR"},"4733":{"market_hash_name":"Sticker | GODSENT | 2020 RMR"},"4734":{"market_hash_name":"Sticker | GODSENT (Holo) | 2020 RMR"},"4735":{"market_hash_name":"Sticker | GODSENT (Foil) | 2020 RMR"},"4736":{"market_hash_name":"Sticker | GODSENT (Gold) | 2020 RMR"},"4737":{"market_hash_name":"Sticker | FaZe | 2020 RMR"},"4738":{"market_hash_name":"Sticker | FaZe (Holo) | 2020 RMR"},"4739":{"market_hash_name":"Sticker | FaZe (Foil) | 2020 RMR"},"474":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Cologne 2015"},"4740":{"market_hash_name":"Sticker | FaZe (Gold) | 2020 RMR"},"4741":{"market_hash_name":"Sticker | North | 2020 RMR"},"4742":{"market_hash_name":"Sticker | North (Holo) | 2020 RMR"},"4743":{"market_hash_name":"Sticker | North (Foil) | 2020 RMR"},"4744":{"market_hash_name":"Sticker | North (Gold) | 2020 RMR"},"4745":{"market_hash_name":"Sticker | Spirit | 2020 RMR"},"4746":{"market_hash_name":"Sticker | Spirit (Holo) | 2020 RMR"},"4747":{"market_hash_name":"Sticker | Spirit (Foil) | 2020 RMR"},"4748":{"market_hash_name":"Sticker | Spirit (Gold) | 2020 RMR"},"4749":{"market_hash_name":"Sticker | Natus Vincere | 2020 RMR"},"475":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Cologne 2015"},"4750":{"market_hash_name":"Sticker | Natus Vincere (Holo) | 2020 RMR"},"4751":{"market_hash_name":"Sticker | Natus Vincere (Foil) | 2020 RMR"},"4752":{"market_hash_name":"Sticker | Natus Vincere (Gold) | 2020 RMR"},"4753":{"market_hash_name":"Sticker | Nemiga | 2020 RMR"},"4754":{"market_hash_name":"Sticker | Nemiga (Holo) | 2020 RMR"},"4755":{"market_hash_name":"Sticker | Nemiga (Foil) | 2020 RMR"},"4756":{"market_hash_name":"Sticker | Nemiga (Gold) | 2020 RMR"},"4757":{"market_hash_name":"Sticker | Virtus.pro | 2020 RMR"},"4758":{"market_hash_name":"Sticker | Virtus.pro (Holo) | 2020 RMR"},"4759":{"market_hash_name":"Sticker | Virtus.pro (Foil) | 2020 RMR"},"476":{"market_hash_name":"Sticker | TaZ | Cologne 2015"},"4760":{"market_hash_name":"Sticker | Virtus.pro (Gold) | 2020 RMR"},"4761":{"market_hash_name":"Sticker | ESPADA | 2020 RMR"},"4762":{"market_hash_name":"Sticker | ESPADA (Holo) | 2020 RMR"},"4763":{"market_hash_name":"Sticker | ESPADA (Foil) | 2020 RMR"},"4764":{"market_hash_name":"Sticker | ESPADA (Gold) | 2020 RMR"},"4765":{"market_hash_name":"Sticker | Evil Geniuses | 2020 RMR"},"4766":{"market_hash_name":"Sticker | Evil Geniuses (Holo) | 2020 RMR"},"4767":{"market_hash_name":"Sticker | Evil Geniuses (Foil) | 2020 RMR"},"4768":{"market_hash_name":"Sticker | Evil Geniuses (Gold) | 2020 RMR"},"4769":{"market_hash_name":"Sticker | 100 Thieves | 2020 RMR"},"477":{"market_hash_name":"Sticker | TaZ (Foil) | Cologne 2015"},"4770":{"market_hash_name":"Sticker | 100 Thieves (Holo) | 2020 RMR"},"4771":{"market_hash_name":"Sticker | 100 Thieves (Foil) | 2020 RMR"},"4772":{"market_hash_name":"Sticker | 100 Thieves (Gold) | 2020 RMR"},"4773":{"market_hash_name":"Sticker | FURIA | 2020 RMR"},"4774":{"market_hash_name":"Sticker | FURIA (Holo) | 2020 RMR"},"4775":{"market_hash_name":"Sticker | FURIA (Foil) | 2020 RMR"},"4776":{"market_hash_name":"Sticker | FURIA (Gold) | 2020 RMR"},"4777":{"market_hash_name":"Sticker | Liquid | 2020 RMR"},"4778":{"market_hash_name":"Sticker | Liquid (Holo) | 2020 RMR"},"4779":{"market_hash_name":"Sticker | Liquid (Foil) | 2020 RMR"},"478":{"market_hash_name":"Sticker | TaZ (Gold) | Cologne 2015"},"4780":{"market_hash_name":"Sticker | Liquid (Gold) | 2020 RMR"},"4781":{"market_hash_name":"Sticker | Gen.G | 2020 RMR"},"4782":{"market_hash_name":"Sticker | Gen.G (Holo) | 2020 RMR"},"4783":{"market_hash_name":"Sticker | Gen.G (Foil) | 2020 RMR"},"4784":{"market_hash_name":"Sticker | Gen.G (Gold) | 2020 RMR"},"4785":{"market_hash_name":"Sticker | Boom | 2020 RMR"},"4786":{"market_hash_name":"Sticker | Boom (Holo) | 2020 RMR"},"4787":{"market_hash_name":"Sticker | Boom (Foil) | 2020 RMR"},"4788":{"market_hash_name":"Sticker | Boom (Gold) | 2020 RMR"},"4789":{"market_hash_name":"Sticker | Renegades | 2020 RMR"},"479":{"market_hash_name":"Sticker | Snax | Cologne 2015"},"4790":{"market_hash_name":"Sticker | Renegades (Holo) | 2020 RMR"},"4791":{"market_hash_name":"Sticker | Renegades (Foil) | 2020 RMR"},"4792":{"market_hash_name":"Sticker | Renegades (Gold) | 2020 RMR"},"4793":{"market_hash_name":"Sticker | TYLOO | 2020 RMR"},"4794":{"market_hash_name":"Sticker | TYLOO (Holo) | 2020 RMR"},"4795":{"market_hash_name":"Sticker | TYLOO (Foil) | 2020 RMR"},"4796":{"market_hash_name":"Sticker | TYLOO (Gold) | 2020 RMR"},"4797":{"market_hash_name":"Sticker | Poorly Drawn Ava"},"4798":{"market_hash_name":"Sticker | Poorly Drawn Balkan"},"4799":{"market_hash_name":"Sticker | Poorly Drawn Bloody Darryl"},"48":{"market_hash_name":"Sticker | 3DMAX | Katowice 2014"},"480":{"market_hash_name":"Sticker | Snax (Foil) | Cologne 2015"},"4800":{"market_hash_name":"Sticker | Poorly Drawn Chicken"},"4801":{"market_hash_name":"Sticker | Poorly Drawn FBI"},"4802":{"market_hash_name":"Sticker | Poorly Drawn IDF"},"4803":{"market_hash_name":"Sticker | Poorly Drawn Leet Crew"},"4804":{"market_hash_name":"Sticker | Poorly Drawn Number K"},"4805":{"market_hash_name":"Sticker | Poorly Drawn SAS"},"4806":{"market_hash_name":"Sticker | Poorly Drawn Terrorist"},"4807":{"market_hash_name":"Sticker | Poorly Drawn Ava (Holo)"},"4808":{"market_hash_name":"Sticker | Poorly Drawn Balkan (Holo)"},"4809":{"market_hash_name":"Sticker | Poorly Drawn Bloody Darryl (Holo)"},"481":{"market_hash_name":"Sticker | Snax (Gold) | Cologne 2015"},"4810":{"market_hash_name":"Sticker | Poorly Drawn Chicken (Holo)"},"4811":{"market_hash_name":"Sticker | Poorly Drawn FBI (Holo)"},"4812":{"market_hash_name":"Sticker | Poorly Drawn IDF (Holo)"},"4813":{"market_hash_name":"Sticker | Poorly Drawn Leet Crew (Holo)"},"4814":{"market_hash_name":"Sticker | Poorly Drawn Number K (Holo)"},"4815":{"market_hash_name":"Sticker | Poorly Drawn SAS (Holo)"},"4816":{"market_hash_name":"Sticker | Poorly Drawn Terrorist (Holo)"},"4817":{"market_hash_name":"Sticker | Orange Gnar"},"4818":{"market_hash_name":"Sticker | Blue Gnar"},"4819":{"market_hash_name":"Sticker | Green Gnar"},"482":{"market_hash_name":"Sticker | byali | Cologne 2015"},"4820":{"market_hash_name":"Sticker | Purple Gnar"},"4821":{"market_hash_name":"Sticker | Yellow Jaggyfish"},"4822":{"market_hash_name":"Sticker | Pink Jaggyfish"},"4823":{"market_hash_name":"Sticker | Purple Jaggyfish"},"4824":{"market_hash_name":"Sticker | Black Jaggyfish"},"4825":{"market_hash_name":"Sticker | Blue Lethal"},"4826":{"market_hash_name":"Sticker | Green Lethal"},"4827":{"market_hash_name":"Sticker | Fade Lethal"},"4828":{"market_hash_name":"Sticker | Yellow Lethal"},"4829":{"market_hash_name":"Sticker | Green Shark Shooter"},"483":{"market_hash_name":"Sticker | byali (Foil) | Cologne 2015"},"4830":{"market_hash_name":"Sticker | Black Shark Shooter"},"4831":{"market_hash_name":"Sticker | Blue Shark Shooter"},"4832":{"market_hash_name":"Sticker | Red Shark Shooter"},"4833":{"market_hash_name":"Sticker | Green Cyclawps"},"4834":{"market_hash_name":"Sticker | Red Cyclawps"},"4835":{"market_hash_name":"Sticker | Purple Cyclawps"},"4836":{"market_hash_name":"Sticker | Yellow Cyclawps"},"4837":{"market_hash_name":"Sticker | Purple Bombster"},"4838":{"market_hash_name":"Sticker | White Bombster"},"4839":{"market_hash_name":"Sticker | Green Bombster"},"484":{"market_hash_name":"Sticker | byali (Gold) | Cologne 2015"},"4840":{"market_hash_name":"Sticker | Yellow Bombster"},"4841":{"market_hash_name":"Sticker | Watermelon Tentaskull"},"4842":{"market_hash_name":"Sticker | Blood Moon Tentaskull"},"4843":{"market_hash_name":"Sticker | Sunset Ocean Tentaskull"},"4844":{"market_hash_name":"Sticker | Toxic Tentaskull"},"4845":{"market_hash_name":"Sticker | Watermelon Stabbyfish"},"4846":{"market_hash_name":"Sticker | Miami Stabbyfish"},"4847":{"market_hash_name":"Sticker | After Hours Stabbyfish"},"4848":{"market_hash_name":"Sticker | Ocean Sunset Stabbyfish"},"4849":{"market_hash_name":"Sticker | Miami Wave Rider"},"485":{"market_hash_name":"Sticker | chrisJ | Cologne 2015"},"4850":{"market_hash_name":"Sticker | Blood Moon Wave Rider"},"4851":{"market_hash_name":"Sticker | Toxic Wave Rider"},"4852":{"market_hash_name":"Sticker | Fools Gold Wave Rider"},"4853":{"market_hash_name":"Sticker | Candy Buttery (Holo)"},"4854":{"market_hash_name":"Sticker | Flame Buttery (Holo)"},"4855":{"market_hash_name":"Sticker | Watermelon Buttery (Holo)"},"4856":{"market_hash_name":"Sticker | Miami Buttery (Holo)"},"4857":{"market_hash_name":"Sticker | Opal Flick (Holo)"},"4858":{"market_hash_name":"Sticker | Ocean Sunset Flick (Holo)"},"4859":{"market_hash_name":"Sticker | Mercury Flick (Holo)"},"486":{"market_hash_name":"Sticker | chrisJ (Foil) | Cologne 2015"},"4860":{"market_hash_name":"Sticker | Miami Flick (Holo)"},"4861":{"market_hash_name":"Sticker | Watermelon Flow (Holo)"},"4862":{"market_hash_name":"Sticker | Toxic Flow (Holo)"},"4863":{"market_hash_name":"Sticker | Cotton Candy Flow (Holo)"},"4864":{"market_hash_name":"Sticker | Miami Flow (Holo)"},"4865":{"market_hash_name":"Sticker | Miami Skill Surf (Holo)"},"4866":{"market_hash_name":"Sticker | Ocean Sunset Skill Surf (Holo)"},"4867":{"market_hash_name":"Sticker | Coral Skill Surf (Holo)"},"4868":{"market_hash_name":"Sticker | Bubble Gum Skill Surf (Holo)"},"4869":{"market_hash_name":"Sticker | Abalone Strafe (Holo)"},"487":{"market_hash_name":"Sticker | chrisJ (Gold) | Cologne 2015"},"4870":{"market_hash_name":"Sticker | Watermelon Strafe (Holo)"},"4871":{"market_hash_name":"Sticker | Mood Ring Strafe (Holo)"},"4872":{"market_hash_name":"Sticker | Neon Opal Strafe (Holo)"},"4873":{"market_hash_name":"Sticker | Flame Tier6 (Holo)"},"4874":{"market_hash_name":"Sticker | Watermelon Tier6 (Holo)"},"4875":{"market_hash_name":"Sticker | Miami Tier6 (Holo)"},"4876":{"market_hash_name":"Sticker | Forge Tier6 (Holo)"},"4877":{"market_hash_name":"Sticker | Sticker Bomb Surf Ava (Foil)"},"4878":{"market_hash_name":"Sticker | Dragon Lore Surf Ava (Foil)"},"4879":{"market_hash_name":"Sticker | Akihabara Accept Surf Ava (Foil)"},"488":{"market_hash_name":"Sticker | gob b | Cologne 2015"},"4880":{"market_hash_name":"Sticker | Dark Water Surf Ava (Foil)"},"4881":{"market_hash_name":"Sticker | Ultraviolet Poison Frog (Foil)"},"4882":{"market_hash_name":"Sticker | Clutch Or Kick"},"4883":{"market_hash_name":"Sticker | Dr. Dazzles"},"4884":{"market_hash_name":"Sticker | EZ"},"4885":{"market_hash_name":"Sticker | Fast Banana"},"4886":{"market_hash_name":"Sticker | Hard Carry"},"4887":{"market_hash_name":"Sticker | Kitted Out"},"4888":{"market_hash_name":"Sticker | Nademan"},"4889":{"market_hash_name":"Sticker | No Time"},"489":{"market_hash_name":"Sticker | gob b (Foil) | Cologne 2015"},"4890":{"market_hash_name":"Sticker | Retro Leet"},"4891":{"market_hash_name":"Sticker | Speedy T"},"4892":{"market_hash_name":"Sticker | This Is Fine (CT)"},"4893":{"market_hash_name":"Sticker | War"},"4894":{"market_hash_name":"Sticker | Cyber Romanov (Holo)"},"4895":{"market_hash_name":"Sticker | Eye Contact (Holo)"},"4896":{"market_hash_name":"Sticker | Handle With Care (Holo)"},"4897":{"market_hash_name":"Sticker | I See You (Holo)"},"4898":{"market_hash_name":"Sticker | Nice Clutch (Holo)"},"4899":{"market_hash_name":"Sticker | Runtime (Holo)"},"49":{"market_hash_name":"Sticker | 3DMAX (Holo) | Katowice 2014"},"490":{"market_hash_name":"Sticker | gob b (Gold) | Cologne 2015"},"4900":{"market_hash_name":"Sticker | Ace Devil (Foil)"},"4901":{"market_hash_name":"Sticker | Bullet Hell (Foil)"},"4902":{"market_hash_name":"Sticker | Purrurists (Foil)"},"4903":{"market_hash_name":"Sticker | Battlefield Portal"},"4904":{"market_hash_name":"Sticker | BF 2042"},"4905":{"market_hash_name":"Sticker | Come Here Boy"},"4906":{"market_hash_name":"Sticker | Forty Two"},"4907":{"market_hash_name":"Sticker | Knives Out"},"4908":{"market_hash_name":"Sticker | Mr. Chompy"},"4909":{"market_hash_name":"Sticker | No Pats"},"491":{"market_hash_name":"Sticker | denis | Cologne 2015"},"4910":{"market_hash_name":"Sticker | PAC AI"},"4911":{"market_hash_name":"Sticker | PTFO"},"4912":{"market_hash_name":"Sticker | Ready For Battle"},"4913":{"market_hash_name":"Sticker | No Pats (Holo)"},"4914":{"market_hash_name":"Sticker | PTFO (Holo)"},"4915":{"market_hash_name":"Sticker | Ready For Battle (Holo)"},"4916":{"market_hash_name":"Sticker | Wingsuit (Holo)"},"4917":{"market_hash_name":"Sticker | Mr. Chompy (Foil)"},"4918":{"market_hash_name":"Sticker | PAC AI (Foil)"},"4919":{"market_hash_name":"Sticker | Tornado Chaos (Foil)"},"492":{"market_hash_name":"Sticker | denis (Foil) | Cologne 2015"},"4920":{"market_hash_name":"Sticker | Lore Poison Frog (Foil)"},"4921":{"market_hash_name":"Sticker | Crimson Web Poison Frog (Foil)"},"4922":{"market_hash_name":"Sticker | Doppler Poison Frog (Foil)"},"4923":{"market_hash_name":"Sticker | Seeing Red"},"4924":{"market_hash_name":"Sticker | Dead Eye"},"4925":{"market_hash_name":"Sticker | Great Wave"},"4926":{"market_hash_name":"Sticker | Gutted"},"4927":{"market_hash_name":"Sticker | Kill Count"},"4928":{"market_hash_name":"Sticker | Operation Riptide"},"4929":{"market_hash_name":"Sticker | Liquid Fire"},"493":{"market_hash_name":"Sticker | denis (Gold) | Cologne 2015"},"4930":{"market_hash_name":"Sticker | Chicken of the Sky"},"4931":{"market_hash_name":"Sticker | Dead Eye (Holo)"},"4932":{"market_hash_name":"Sticker | Great Wave (Holo)"},"4933":{"market_hash_name":"Sticker | Kill Count (Holo)"},"4934":{"market_hash_name":"Sticker | Liquid Fire (Holo)"},"4935":{"market_hash_name":"Sticker | Seeing Red (Foil)"},"4936":{"market_hash_name":"Sticker | Great Wave (Foil)"},"4937":{"market_hash_name":"Patch | Abandon Hope","is_patch":true},"4938":{"market_hash_name":"Patch | Anchors Aweigh","is_patch":true},"4939":{"market_hash_name":"Patch | Cruising Ray","is_patch":true},"494":{"market_hash_name":"Sticker | nex | Cologne 2015"},"4940":{"market_hash_name":"Patch | Bayonet Frog","is_patch":true},"4941":{"market_hash_name":"Patch | Mad Sushi","is_patch":true},"4942":{"market_hash_name":"Patch | Giant Squid","is_patch":true},"4943":{"market_hash_name":"Patch | El Pirata","is_patch":true},"4944":{"market_hash_name":"Patch | Death From Below","is_patch":true},"4945":{"market_hash_name":"Patch | Dead Men","is_patch":true},"4946":{"market_hash_name":"Patch | Sunset Wave","is_patch":true},"4947":{"market_hash_name":"Patch | Aquatic Offensive","is_patch":true},"4948":{"market_hash_name":"Patch | Elder God","is_patch":true},"4949":{"market_hash_name":"Patch | Meal Time","is_patch":true},"495":{"market_hash_name":"Sticker | nex (Foil) | Cologne 2015"},"4950":{"market_hash_name":"Sticker | Sticker Bomb Surf K (Foil)"},"4951":{"market_hash_name":"Sticker | Hypnotic Surf K (Foil)"},"4952":{"market_hash_name":"Sticker | Fire Serpent Surf K (Foil)"},"4953":{"market_hash_name":"Sticker | Blaze Surf K (Foil)"},"4954":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Stockholm 2021"},"4955":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Stockholm 2021"},"4956":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Stockholm 2021"},"4957":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Stockholm 2021"},"4958":{"market_hash_name":"Sticker | FURIA | Stockholm 2021"},"4959":{"market_hash_name":"Sticker | FURIA (Holo) | Stockholm 2021"},"496":{"market_hash_name":"Sticker | nex (Gold) | Cologne 2015"},"4960":{"market_hash_name":"Sticker | FURIA (Foil) | Stockholm 2021"},"4961":{"market_hash_name":"Sticker | FURIA (Gold) | Stockholm 2021"},"4962":{"market_hash_name":"Sticker | Natus Vincere | Stockholm 2021"},"4963":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Stockholm 2021"},"4964":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Stockholm 2021"},"4965":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Stockholm 2021"},"4966":{"market_hash_name":"Sticker | Vitality | Stockholm 2021"},"4967":{"market_hash_name":"Sticker | Vitality (Holo) | Stockholm 2021"},"4968":{"market_hash_name":"Sticker | Vitality (Foil) | Stockholm 2021"},"4969":{"market_hash_name":"Sticker | Vitality (Gold) | Stockholm 2021"},"497":{"market_hash_name":"Sticker | Spiidi | Cologne 2015"},"4970":{"market_hash_name":"Sticker | Team Liquid | Stockholm 2021"},"4971":{"market_hash_name":"Sticker | Team Liquid (Holo) | Stockholm 2021"},"4972":{"market_hash_name":"Sticker | Team Liquid (Foil) | Stockholm 2021"},"4973":{"market_hash_name":"Sticker | Team Liquid (Gold) | Stockholm 2021"},"4974":{"market_hash_name":"Sticker | Gambit Gaming | Stockholm 2021"},"4975":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | Stockholm 2021"},"4976":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | Stockholm 2021"},"4977":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | Stockholm 2021"},"4978":{"market_hash_name":"Sticker | G2 Esports | Stockholm 2021"},"4979":{"market_hash_name":"Sticker | G2 Esports (Holo) | Stockholm 2021"},"498":{"market_hash_name":"Sticker | Spiidi (Foil) | Cologne 2015"},"4980":{"market_hash_name":"Sticker | G2 Esports (Foil) | Stockholm 2021"},"4981":{"market_hash_name":"Sticker | G2 Esports (Gold) | Stockholm 2021"},"4982":{"market_hash_name":"Sticker | Evil Geniuses | Stockholm 2021"},"4983":{"market_hash_name":"Sticker | Evil Geniuses (Holo) | Stockholm 2021"},"4984":{"market_hash_name":"Sticker | Evil Geniuses (Foil) | Stockholm 2021"},"4985":{"market_hash_name":"Sticker | Evil Geniuses (Gold) | Stockholm 2021"},"4986":{"market_hash_name":"Sticker | Team Spirit | Stockholm 2021"},"4987":{"market_hash_name":"Sticker | Team Spirit (Holo) | Stockholm 2021"},"4988":{"market_hash_name":"Sticker | Team Spirit (Foil) | Stockholm 2021"},"4989":{"market_hash_name":"Sticker | Team Spirit (Gold) | Stockholm 2021"},"499":{"market_hash_name":"Sticker | Spiidi (Gold) | Cologne 2015"},"4990":{"market_hash_name":"Sticker | Astralis | Stockholm 2021"},"4991":{"market_hash_name":"Sticker | Astralis (Holo) | Stockholm 2021"},"4992":{"market_hash_name":"Sticker | Astralis (Foil) | Stockholm 2021"},"4993":{"market_hash_name":"Sticker | Astralis (Gold) | Stockholm 2021"},"4994":{"market_hash_name":"Sticker | paiN Gaming | Stockholm 2021"},"4995":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Stockholm 2021"},"4996":{"market_hash_name":"Sticker | paiN Gaming (Foil) | Stockholm 2021"},"4997":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Stockholm 2021"},"4998":{"market_hash_name":"Sticker | ENCE | Stockholm 2021"},"4999":{"market_hash_name":"Sticker | ENCE (Holo) | Stockholm 2021"},"5":{"market_hash_name":"Sticker | Blue Snowflake"},"50":{"market_hash_name":"Sticker | compLexity Gaming | Katowice 2014"},"500":{"market_hash_name":"Sticker | AZR | Cologne 2015"},"5000":{"market_hash_name":"Sticker | ENCE (Foil) | Stockholm 2021"},"5001":{"market_hash_name":"Sticker | ENCE (Gold) | Stockholm 2021"},"5002":{"market_hash_name":"Sticker | BIG | Stockholm 2021"},"5003":{"market_hash_name":"Sticker | BIG (Holo) | Stockholm 2021"},"5004":{"market_hash_name":"Sticker | BIG (Foil) | Stockholm 2021"},"5005":{"market_hash_name":"Sticker | BIG (Gold) | Stockholm 2021"},"5006":{"market_hash_name":"Sticker | Movistar Riders | Stockholm 2021"},"5007":{"market_hash_name":"Sticker | Movistar Riders (Holo) | Stockholm 2021"},"5008":{"market_hash_name":"Sticker | Movistar Riders (Foil) | Stockholm 2021"},"5009":{"market_hash_name":"Sticker | Movistar Riders (Gold) | Stockholm 2021"},"501":{"market_hash_name":"Sticker | AZR (Foil) | Cologne 2015"},"5010":{"market_hash_name":"Sticker | Heroic | Stockholm 2021"},"5011":{"market_hash_name":"Sticker | Heroic (Holo) | Stockholm 2021"},"5012":{"market_hash_name":"Sticker | Heroic (Foil) | Stockholm 2021"},"5013":{"market_hash_name":"Sticker | Heroic (Gold) | Stockholm 2021"},"5014":{"market_hash_name":"Sticker | MOUZ | Stockholm 2021"},"5015":{"market_hash_name":"Sticker | MOUZ (Holo) | Stockholm 2021"},"5016":{"market_hash_name":"Sticker | MOUZ (Foil) | Stockholm 2021"},"5017":{"market_hash_name":"Sticker | MOUZ (Gold) | Stockholm 2021"},"5018":{"market_hash_name":"Sticker | Sharks Esports | Stockholm 2021"},"5019":{"market_hash_name":"Sticker | Sharks Esports (Holo) | Stockholm 2021"},"502":{"market_hash_name":"Sticker | AZR (Gold) | Cologne 2015"},"5020":{"market_hash_name":"Sticker | Sharks Esports (Foil) | Stockholm 2021"},"5021":{"market_hash_name":"Sticker | Sharks Esports (Gold) | Stockholm 2021"},"5022":{"market_hash_name":"Sticker | Tyloo | Stockholm 2021"},"5023":{"market_hash_name":"Sticker | Tyloo (Holo) | Stockholm 2021"},"5024":{"market_hash_name":"Sticker | Tyloo (Foil) | Stockholm 2021"},"5025":{"market_hash_name":"Sticker | Tyloo (Gold) | Stockholm 2021"},"5026":{"market_hash_name":"Sticker | Renegades | Stockholm 2021"},"5027":{"market_hash_name":"Sticker | Renegades (Holo) | Stockholm 2021"},"5028":{"market_hash_name":"Sticker | Renegades (Foil) | Stockholm 2021"},"5029":{"market_hash_name":"Sticker | Renegades (Gold) | Stockholm 2021"},"503":{"market_hash_name":"Sticker | Havoc | Cologne 2015"},"5030":{"market_hash_name":"Sticker | Entropiq | Stockholm 2021"},"5031":{"market_hash_name":"Sticker | Entropiq (Holo) | Stockholm 2021"},"5032":{"market_hash_name":"Sticker | Entropiq (Foil) | Stockholm 2021"},"5033":{"market_hash_name":"Sticker | Entropiq (Gold) | Stockholm 2021"},"5034":{"market_hash_name":"Sticker | GODSENT | Stockholm 2021"},"5035":{"market_hash_name":"Sticker | GODSENT (Holo) | Stockholm 2021"},"5036":{"market_hash_name":"Sticker | GODSENT (Foil) | Stockholm 2021"},"5037":{"market_hash_name":"Sticker | GODSENT (Gold) | Stockholm 2021"},"5038":{"market_hash_name":"Sticker | Virtus.Pro | Stockholm 2021"},"5039":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Stockholm 2021"},"504":{"market_hash_name":"Sticker | Havoc (Foil) | Cologne 2015"},"5040":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Stockholm 2021"},"5041":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Stockholm 2021"},"5042":{"market_hash_name":"Sticker | Copenhagen Flames | Stockholm 2021"},"5043":{"market_hash_name":"Sticker | Copenhagen Flames (Holo) | Stockholm 2021"},"5044":{"market_hash_name":"Sticker | Copenhagen Flames (Foil) | Stockholm 2021"},"5045":{"market_hash_name":"Sticker | Copenhagen Flames (Gold) | Stockholm 2021"},"5046":{"market_hash_name":"Sticker | FaZe Clan | Stockholm 2021"},"5047":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Stockholm 2021"},"5048":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Stockholm 2021"},"5049":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Stockholm 2021"},"505":{"market_hash_name":"Sticker | Havoc (Gold) | Cologne 2015"},"5050":{"market_hash_name":"Sticker | PGL | Stockholm 2021"},"5051":{"market_hash_name":"Sticker | PGL (Holo) | Stockholm 2021"},"5052":{"market_hash_name":"Sticker | PGL (Foil) | Stockholm 2021"},"5053":{"market_hash_name":"Sticker | PGL (Gold) | Stockholm 2021"},"506":{"market_hash_name":"Sticker | jks | Cologne 2015"},"507":{"market_hash_name":"Sticker | jks (Foil) | Cologne 2015"},"5079":{"market_hash_name":"Patch | Ninjas in Pyjamas | Stockholm 2021","is_patch":true},"508":{"market_hash_name":"Sticker | jks (Gold) | Cologne 2015"},"5080":{"market_hash_name":"Patch | Ninjas in Pyjamas (Gold) | Stockholm 2021","is_patch":true},"5081":{"market_hash_name":"Patch | FURIA | Stockholm 2021","is_patch":true},"5082":{"market_hash_name":"Patch | FURIA (Gold) | Stockholm 2021","is_patch":true},"5083":{"market_hash_name":"Patch | Natus Vincere | Stockholm 2021","is_patch":true},"5084":{"market_hash_name":"Patch | Natus Vincere (Gold) | Stockholm 2021","is_patch":true},"5085":{"market_hash_name":"Patch | Vitality | Stockholm 2021","is_patch":true},"5086":{"market_hash_name":"Patch | Vitality (Gold) | Stockholm 2021","is_patch":true},"5087":{"market_hash_name":"Patch | Team Liquid | Stockholm 2021","is_patch":true},"5088":{"market_hash_name":"Patch | Team Liquid (Gold) | Stockholm 2021","is_patch":true},"5089":{"market_hash_name":"Patch | Gambit Gaming | Stockholm 2021","is_patch":true},"509":{"market_hash_name":"Sticker | SPUNJ | Cologne 2015"},"5090":{"market_hash_name":"Patch | Gambit Gaming (Gold) | Stockholm 2021","is_patch":true},"5091":{"market_hash_name":"Patch | G2 Esports | Stockholm 2021","is_patch":true},"5092":{"market_hash_name":"Patch | G2 Esports (Gold) | Stockholm 2021","is_patch":true},"5093":{"market_hash_name":"Patch | Evil Geniuses | Stockholm 2021","is_patch":true},"5094":{"market_hash_name":"Patch | Evil Geniuses (Gold) | Stockholm 2021","is_patch":true},"5095":{"market_hash_name":"Patch | Team Spirit | Stockholm 2021","is_patch":true},"5096":{"market_hash_name":"Patch | Team Spirit (Gold) | Stockholm 2021","is_patch":true},"5097":{"market_hash_name":"Patch | Astralis | Stockholm 2021","is_patch":true},"5098":{"market_hash_name":"Patch | Astralis (Gold) | Stockholm 2021","is_patch":true},"5099":{"market_hash_name":"Patch | paiN Gaming | Stockholm 2021","is_patch":true},"51":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | Katowice 2014"},"510":{"market_hash_name":"Sticker | SPUNJ (Foil) | Cologne 2015"},"5100":{"market_hash_name":"Patch | paiN Gaming (Gold) | Stockholm 2021","is_patch":true},"5101":{"market_hash_name":"Patch | ENCE | Stockholm 2021","is_patch":true},"5102":{"market_hash_name":"Patch | ENCE (Gold) | Stockholm 2021","is_patch":true},"5103":{"market_hash_name":"Patch | BIG | Stockholm 2021","is_patch":true},"5104":{"market_hash_name":"Patch | BIG (Gold) | Stockholm 2021","is_patch":true},"5105":{"market_hash_name":"Patch | Movistar Riders | Stockholm 2021","is_patch":true},"5106":{"market_hash_name":"Patch | Movistar Riders (Gold) | Stockholm 2021","is_patch":true},"5107":{"market_hash_name":"Patch | Heroic | Stockholm 2021","is_patch":true},"5108":{"market_hash_name":"Patch | Heroic (Gold) | Stockholm 2021","is_patch":true},"5109":{"market_hash_name":"Patch | MOUZ | Stockholm 2021","is_patch":true},"511":{"market_hash_name":"Sticker | SPUNJ (Gold) | Cologne 2015"},"5110":{"market_hash_name":"Patch | MOUZ (Gold) | Stockholm 2021","is_patch":true},"5111":{"market_hash_name":"Patch | Sharks Esports | Stockholm 2021","is_patch":true},"5112":{"market_hash_name":"Patch | Sharks Esports (Gold) | Stockholm 2021","is_patch":true},"5113":{"market_hash_name":"Patch | Tyloo | Stockholm 2021","is_patch":true},"5114":{"market_hash_name":"Patch | Tyloo (Gold) | Stockholm 2021","is_patch":true},"5115":{"market_hash_name":"Patch | Renegades | Stockholm 2021","is_patch":true},"5116":{"market_hash_name":"Patch | Renegades (Gold) | Stockholm 2021","is_patch":true},"5117":{"market_hash_name":"Patch | Entropiq | Stockholm 2021","is_patch":true},"5118":{"market_hash_name":"Patch | Entropiq (Gold) | Stockholm 2021","is_patch":true},"5119":{"market_hash_name":"Patch | GODSENT | Stockholm 2021","is_patch":true},"512":{"market_hash_name":"Sticker | yam | Cologne 2015"},"5120":{"market_hash_name":"Patch | GODSENT (Gold) | Stockholm 2021","is_patch":true},"5121":{"market_hash_name":"Patch | Virtus.Pro | Stockholm 2021","is_patch":true},"5122":{"market_hash_name":"Patch | Virtus.Pro (Gold) | Stockholm 2021","is_patch":true},"5123":{"market_hash_name":"Patch | Copenhagen Flames | Stockholm 2021","is_patch":true},"5124":{"market_hash_name":"Patch | Copenhagen Flames (Gold) | Stockholm 2021","is_patch":true},"5125":{"market_hash_name":"Patch | FaZe Clan | Stockholm 2021","is_patch":true},"5126":{"market_hash_name":"Patch | FaZe Clan (Gold) | Stockholm 2021","is_patch":true},"5127":{"market_hash_name":"Patch | PGL | Stockholm 2021","is_patch":true},"5128":{"market_hash_name":"Patch | PGL (Gold) | Stockholm 2021","is_patch":true},"5129":{"market_hash_name":"Sticker | s1mple | Stockholm 2021"},"513":{"market_hash_name":"Sticker | yam (Foil) | Cologne 2015"},"5130":{"market_hash_name":"Sticker | s1mple (Holo) | Stockholm 2021"},"5131":{"market_hash_name":"Sticker | s1mple (Gold) | Stockholm 2021"},"5132":{"market_hash_name":"Sticker | Perfecto | Stockholm 2021"},"5133":{"market_hash_name":"Sticker | Perfecto (Holo) | Stockholm 2021"},"5134":{"market_hash_name":"Sticker | Perfecto (Gold) | Stockholm 2021"},"5135":{"market_hash_name":"Sticker | Boombl4 | Stockholm 2021"},"5136":{"market_hash_name":"Sticker | Boombl4 (Holo) | Stockholm 2021"},"5137":{"market_hash_name":"Sticker | Boombl4 (Gold) | Stockholm 2021"},"5138":{"market_hash_name":"Sticker | b1t | Stockholm 2021"},"5139":{"market_hash_name":"Sticker | b1t (Holo) | Stockholm 2021"},"514":{"market_hash_name":"Sticker | yam (Gold) | Cologne 2015"},"5140":{"market_hash_name":"Sticker | b1t (Gold) | Stockholm 2021"},"5141":{"market_hash_name":"Sticker | electroNic | Stockholm 2021"},"5142":{"market_hash_name":"Sticker | electroNic (Holo) | Stockholm 2021"},"5143":{"market_hash_name":"Sticker | electroNic (Gold) | Stockholm 2021"},"5144":{"market_hash_name":"Sticker | NiKo | Stockholm 2021"},"5145":{"market_hash_name":"Sticker | NiKo (Holo) | Stockholm 2021"},"5146":{"market_hash_name":"Sticker | NiKo (Gold) | Stockholm 2021"},"5147":{"market_hash_name":"Sticker | nexa | Stockholm 2021"},"5148":{"market_hash_name":"Sticker | nexa (Holo) | Stockholm 2021"},"5149":{"market_hash_name":"Sticker | nexa (Gold) | Stockholm 2021"},"515":{"market_hash_name":"Sticker | USTILO | Cologne 2015"},"5150":{"market_hash_name":"Sticker | huNter- | Stockholm 2021"},"5151":{"market_hash_name":"Sticker | huNter- (Holo) | Stockholm 2021"},"5152":{"market_hash_name":"Sticker | huNter- (Gold) | Stockholm 2021"},"5153":{"market_hash_name":"Sticker | JACKZ | Stockholm 2021"},"5154":{"market_hash_name":"Sticker | JACKZ (Holo) | Stockholm 2021"},"5155":{"market_hash_name":"Sticker | JACKZ (Gold) | Stockholm 2021"},"5156":{"market_hash_name":"Sticker | AMANEK | Stockholm 2021"},"5157":{"market_hash_name":"Sticker | AMANEK (Holo) | Stockholm 2021"},"5158":{"market_hash_name":"Sticker | AMANEK (Gold) | Stockholm 2021"},"5159":{"market_hash_name":"Sticker | TeSeS | Stockholm 2021"},"516":{"market_hash_name":"Sticker | USTILO (Foil) | Cologne 2015"},"5160":{"market_hash_name":"Sticker | TeSeS (Holo) | Stockholm 2021"},"5161":{"market_hash_name":"Sticker | TeSeS (Gold) | Stockholm 2021"},"5162":{"market_hash_name":"Sticker | stavn | Stockholm 2021"},"5163":{"market_hash_name":"Sticker | stavn (Holo) | Stockholm 2021"},"5164":{"market_hash_name":"Sticker | stavn (Gold) | Stockholm 2021"},"5165":{"market_hash_name":"Sticker | sjuush | Stockholm 2021"},"5166":{"market_hash_name":"Sticker | sjuush (Holo) | Stockholm 2021"},"5167":{"market_hash_name":"Sticker | sjuush (Gold) | Stockholm 2021"},"5168":{"market_hash_name":"Sticker | refrezh | Stockholm 2021"},"5169":{"market_hash_name":"Sticker | refrezh (Holo) | Stockholm 2021"},"517":{"market_hash_name":"Sticker | USTILO (Gold) | Cologne 2015"},"5170":{"market_hash_name":"Sticker | refrezh (Gold) | Stockholm 2021"},"5171":{"market_hash_name":"Sticker | cadiaN | Stockholm 2021"},"5172":{"market_hash_name":"Sticker | cadiaN (Holo) | Stockholm 2021"},"5173":{"market_hash_name":"Sticker | cadiaN (Gold) | Stockholm 2021"},"5174":{"market_hash_name":"Sticker | nafany | Stockholm 2021"},"5175":{"market_hash_name":"Sticker | nafany (Holo) | Stockholm 2021"},"5176":{"market_hash_name":"Sticker | nafany (Gold) | Stockholm 2021"},"5177":{"market_hash_name":"Sticker | Ax1Le | Stockholm 2021"},"5178":{"market_hash_name":"Sticker | Ax1Le (Holo) | Stockholm 2021"},"5179":{"market_hash_name":"Sticker | Ax1Le (Gold) | Stockholm 2021"},"518":{"market_hash_name":"Sticker | Rickeh | Cologne 2015"},"5180":{"market_hash_name":"Sticker | interz | Stockholm 2021"},"5181":{"market_hash_name":"Sticker | interz (Holo) | Stockholm 2021"},"5182":{"market_hash_name":"Sticker | interz (Gold) | Stockholm 2021"},"5183":{"market_hash_name":"Sticker | sh1ro | Stockholm 2021"},"5184":{"market_hash_name":"Sticker | sh1ro (Holo) | Stockholm 2021"},"5185":{"market_hash_name":"Sticker | sh1ro (Gold) | Stockholm 2021"},"5186":{"market_hash_name":"Sticker | HObbit | Stockholm 2021"},"5187":{"market_hash_name":"Sticker | HObbit (Holo) | Stockholm 2021"},"5188":{"market_hash_name":"Sticker | HObbit (Gold) | Stockholm 2021"},"5189":{"market_hash_name":"Sticker | drop | Stockholm 2021"},"519":{"market_hash_name":"Sticker | Rickeh (Foil) | Cologne 2015"},"5190":{"market_hash_name":"Sticker | drop (Holo) | Stockholm 2021"},"5191":{"market_hash_name":"Sticker | drop (Gold) | Stockholm 2021"},"5192":{"market_hash_name":"Sticker | KSCERATO | Stockholm 2021"},"5193":{"market_hash_name":"Sticker | KSCERATO (Holo) | Stockholm 2021"},"5194":{"market_hash_name":"Sticker | KSCERATO (Gold) | Stockholm 2021"},"5195":{"market_hash_name":"Sticker | VINI | Stockholm 2021"},"5196":{"market_hash_name":"Sticker | VINI (Holo) | Stockholm 2021"},"5197":{"market_hash_name":"Sticker | VINI (Gold) | Stockholm 2021"},"5198":{"market_hash_name":"Sticker | arT | Stockholm 2021"},"5199":{"market_hash_name":"Sticker | arT (Holo) | Stockholm 2021"},"52":{"market_hash_name":"Sticker | Team Dignitas | Katowice 2014"},"520":{"market_hash_name":"Sticker | Rickeh (Gold) | Cologne 2015"},"5200":{"market_hash_name":"Sticker | arT (Gold) | Stockholm 2021"},"5201":{"market_hash_name":"Sticker | yuurih | Stockholm 2021"},"5202":{"market_hash_name":"Sticker | yuurih (Holo) | Stockholm 2021"},"5203":{"market_hash_name":"Sticker | yuurih (Gold) | Stockholm 2021"},"5204":{"market_hash_name":"Sticker | Qikert | Stockholm 2021"},"5205":{"market_hash_name":"Sticker | Qikert (Holo) | Stockholm 2021"},"5206":{"market_hash_name":"Sticker | Qikert (Gold) | Stockholm 2021"},"5207":{"market_hash_name":"Sticker | buster | Stockholm 2021"},"5208":{"market_hash_name":"Sticker | buster (Holo) | Stockholm 2021"},"5209":{"market_hash_name":"Sticker | buster (Gold) | Stockholm 2021"},"521":{"market_hash_name":"Sticker | emagine | Cologne 2015"},"5210":{"market_hash_name":"Sticker | YEKINDAR | Stockholm 2021"},"5211":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Stockholm 2021"},"5212":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Stockholm 2021"},"5213":{"market_hash_name":"Sticker | Jame | Stockholm 2021"},"5214":{"market_hash_name":"Sticker | Jame (Holo) | Stockholm 2021"},"5215":{"market_hash_name":"Sticker | Jame (Gold) | Stockholm 2021"},"5216":{"market_hash_name":"Sticker | FL1T | Stockholm 2021"},"5217":{"market_hash_name":"Sticker | FL1T (Holo) | Stockholm 2021"},"5218":{"market_hash_name":"Sticker | FL1T (Gold) | Stockholm 2021"},"5219":{"market_hash_name":"Sticker | hampus | Stockholm 2021"},"522":{"market_hash_name":"Sticker | emagine (Foil) | Cologne 2015"},"5220":{"market_hash_name":"Sticker | hampus (Holo) | Stockholm 2021"},"5221":{"market_hash_name":"Sticker | hampus (Gold) | Stockholm 2021"},"5222":{"market_hash_name":"Sticker | LNZ | Stockholm 2021"},"5223":{"market_hash_name":"Sticker | LNZ (Holo) | Stockholm 2021"},"5224":{"market_hash_name":"Sticker | LNZ (Gold) | Stockholm 2021"},"5225":{"market_hash_name":"Sticker | REZ | Stockholm 2021"},"5226":{"market_hash_name":"Sticker | REZ (Holo) | Stockholm 2021"},"5227":{"market_hash_name":"Sticker | REZ (Gold) | Stockholm 2021"},"5228":{"market_hash_name":"Sticker | Plopski | Stockholm 2021"},"5229":{"market_hash_name":"Sticker | Plopski (Holo) | Stockholm 2021"},"523":{"market_hash_name":"Sticker | emagine (Gold) | Cologne 2015"},"5230":{"market_hash_name":"Sticker | Plopski (Gold) | Stockholm 2021"},"5231":{"market_hash_name":"Sticker | device | Stockholm 2021"},"5232":{"market_hash_name":"Sticker | device (Holo) | Stockholm 2021"},"5233":{"market_hash_name":"Sticker | device (Gold) | Stockholm 2021"},"5234":{"market_hash_name":"Sticker | ZywOo | Stockholm 2021"},"5235":{"market_hash_name":"Sticker | ZywOo (Holo) | Stockholm 2021"},"5236":{"market_hash_name":"Sticker | ZywOo (Gold) | Stockholm 2021"},"5237":{"market_hash_name":"Sticker | misutaaa | Stockholm 2021"},"5238":{"market_hash_name":"Sticker | misutaaa (Holo) | Stockholm 2021"},"5239":{"market_hash_name":"Sticker | misutaaa (Gold) | Stockholm 2021"},"524":{"market_hash_name":"Sticker | SnypeR | Cologne 2015"},"5240":{"market_hash_name":"Sticker | Kyojin | Stockholm 2021"},"5241":{"market_hash_name":"Sticker | Kyojin (Holo) | Stockholm 2021"},"5242":{"market_hash_name":"Sticker | Kyojin (Gold) | Stockholm 2021"},"5243":{"market_hash_name":"Sticker | shox | Stockholm 2021"},"5244":{"market_hash_name":"Sticker | shox (Holo) | Stockholm 2021"},"5245":{"market_hash_name":"Sticker | shox (Gold) | Stockholm 2021"},"5246":{"market_hash_name":"Sticker | apEX | Stockholm 2021"},"5247":{"market_hash_name":"Sticker | apEX (Holo) | Stockholm 2021"},"5248":{"market_hash_name":"Sticker | apEX (Gold) | Stockholm 2021"},"5249":{"market_hash_name":"Sticker | B Hop"},"525":{"market_hash_name":"Sticker | SnypeR (Foil) | Cologne 2015"},"5250":{"market_hash_name":"Sticker | Flick Shotter"},"5251":{"market_hash_name":"Sticker | Get Clucked"},"5252":{"market_hash_name":"Sticker | I'm Lit"},"5253":{"market_hash_name":"Sticker | Little Mischief"},"5254":{"market_hash_name":"Sticker | Hi, My Game Is"},"5255":{"market_hash_name":"Sticker | Run CT, Run"},"5256":{"market_hash_name":"Sticker | Smoke Criminal"},"5257":{"market_hash_name":"Sticker | Squeaky Door"},"5258":{"market_hash_name":"Sticker | Rat Pack"},"5259":{"market_hash_name":"Sticker | This Is Fine (T)"},"526":{"market_hash_name":"Sticker | SnypeR (Gold) | Cologne 2015"},"5260":{"market_hash_name":"Sticker | Wallbang"},"5261":{"market_hash_name":"Sticker | Flashblack (Holo)"},"5262":{"market_hash_name":"Sticker | Infinite Diamond (Holo)"},"5263":{"market_hash_name":"Sticker | Phoenix Balaclava Co. (Holo)"},"5264":{"market_hash_name":"Sticker | Sneaky Beaky Dept. (Holo)"},"5265":{"market_hash_name":"Sticker | T Rush (Holo)"},"5266":{"market_hash_name":"Sticker | V For Victory (Holo)"},"5267":{"market_hash_name":"Sticker | Face Me (Foil)"},"5268":{"market_hash_name":"Sticker | Inferno Diorama (Foil)"},"5269":{"market_hash_name":"Sticker | The Real MVP (Foil)"},"527":{"market_hash_name":"Sticker | James | Cologne 2015"},"5270":{"market_hash_name":"Sticker | Rock, Paper, Scissors (Foil)"},"5271":{"market_hash_name":"Sticker | Heroic | Antwerp 2022"},"5272":{"market_hash_name":"Sticker | Heroic (Glitter) | Antwerp 2022"},"5273":{"market_hash_name":"Sticker | Heroic (Holo) | Antwerp 2022"},"5274":{"market_hash_name":"Sticker | Heroic (Gold) | Antwerp 2022"},"5275":{"market_hash_name":"Sticker | Copenhagen Flames | Antwerp 2022"},"5276":{"market_hash_name":"Sticker | Copenhagen Flames (Glitter) | Antwerp 2022"},"5277":{"market_hash_name":"Sticker | Copenhagen Flames (Holo) | Antwerp 2022"},"5278":{"market_hash_name":"Sticker | Copenhagen Flames (Gold) | Antwerp 2022"},"5279":{"market_hash_name":"Sticker | BIG | Antwerp 2022"},"528":{"market_hash_name":"Sticker | James (Foil) | Cologne 2015"},"5280":{"market_hash_name":"Sticker | BIG (Glitter) | Antwerp 2022"},"5281":{"market_hash_name":"Sticker | BIG (Holo) | Antwerp 2022"},"5282":{"market_hash_name":"Sticker | BIG (Gold) | Antwerp 2022"},"5283":{"market_hash_name":"Sticker | Cloud9 | Antwerp 2022"},"5284":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Antwerp 2022"},"5285":{"market_hash_name":"Sticker | Cloud9 (Holo) | Antwerp 2022"},"5286":{"market_hash_name":"Sticker | Cloud9 (Gold) | Antwerp 2022"},"5287":{"market_hash_name":"Sticker | FURIA | Antwerp 2022"},"5288":{"market_hash_name":"Sticker | FURIA (Glitter) | Antwerp 2022"},"5289":{"market_hash_name":"Sticker | FURIA (Holo) | Antwerp 2022"},"529":{"market_hash_name":"Sticker | James (Gold) | Cologne 2015"},"5290":{"market_hash_name":"Sticker | FURIA (Gold) | Antwerp 2022"},"5291":{"market_hash_name":"Sticker | FaZe Clan | Antwerp 2022"},"5292":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Antwerp 2022"},"5293":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Antwerp 2022"},"5294":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Antwerp 2022"},"5295":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Antwerp 2022"},"5296":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Glitter) | Antwerp 2022"},"5297":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Antwerp 2022"},"5298":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Antwerp 2022"},"5299":{"market_hash_name":"Sticker | Natus Vincere | Antwerp 2022"},"53":{"market_hash_name":"Sticker | Team Dignitas (Holo) | Katowice 2014"},"530":{"market_hash_name":"Sticker | markeloff | Cologne 2015"},"5300":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Antwerp 2022"},"5301":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Antwerp 2022"},"5302":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Antwerp 2022"},"5303":{"market_hash_name":"Sticker | ENCE | Antwerp 2022"},"5304":{"market_hash_name":"Sticker | ENCE (Glitter) | Antwerp 2022"},"5305":{"market_hash_name":"Sticker | ENCE (Holo) | Antwerp 2022"},"5306":{"market_hash_name":"Sticker | ENCE (Gold) | Antwerp 2022"},"5307":{"market_hash_name":"Sticker | G2 Esports | Antwerp 2022"},"5308":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Antwerp 2022"},"5309":{"market_hash_name":"Sticker | G2 Esports (Holo) | Antwerp 2022"},"531":{"market_hash_name":"Sticker | markeloff (Foil) | Cologne 2015"},"5310":{"market_hash_name":"Sticker | G2 Esports (Gold) | Antwerp 2022"},"5311":{"market_hash_name":"Sticker | forZe eSports | Antwerp 2022"},"5312":{"market_hash_name":"Sticker | forZe eSports (Glitter) | Antwerp 2022"},"5313":{"market_hash_name":"Sticker | forZe eSports (Holo) | Antwerp 2022"},"5314":{"market_hash_name":"Sticker | forZe eSports (Gold) | Antwerp 2022"},"5315":{"market_hash_name":"Sticker | Astralis | Antwerp 2022"},"5316":{"market_hash_name":"Sticker | Astralis (Glitter) | Antwerp 2022"},"5317":{"market_hash_name":"Sticker | Astralis (Holo) | Antwerp 2022"},"5318":{"market_hash_name":"Sticker | Astralis (Gold) | Antwerp 2022"},"5319":{"market_hash_name":"Sticker | Vitality | Antwerp 2022"},"532":{"market_hash_name":"Sticker | markeloff (Gold) | Cologne 2015"},"5320":{"market_hash_name":"Sticker | Vitality (Glitter) | Antwerp 2022"},"5321":{"market_hash_name":"Sticker | Vitality (Holo) | Antwerp 2022"},"5322":{"market_hash_name":"Sticker | Vitality (Gold) | Antwerp 2022"},"5323":{"market_hash_name":"Sticker | MIBR | Antwerp 2022"},"5324":{"market_hash_name":"Sticker | MIBR (Glitter) | Antwerp 2022"},"5325":{"market_hash_name":"Sticker | MIBR (Holo) | Antwerp 2022"},"5326":{"market_hash_name":"Sticker | MIBR (Gold) | Antwerp 2022"},"5327":{"market_hash_name":"Sticker | Imperial Esports | Antwerp 2022"},"5328":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Antwerp 2022"},"5329":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Antwerp 2022"},"533":{"market_hash_name":"Sticker | B1ad3 | Cologne 2015"},"5330":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Antwerp 2022"},"5331":{"market_hash_name":"Sticker | Bad News Eagles | Antwerp 2022"},"5332":{"market_hash_name":"Sticker | Bad News Eagles (Glitter) | Antwerp 2022"},"5333":{"market_hash_name":"Sticker | Bad News Eagles (Holo) | Antwerp 2022"},"5334":{"market_hash_name":"Sticker | Bad News Eagles (Gold) | Antwerp 2022"},"5335":{"market_hash_name":"Sticker | Eternal Fire | Antwerp 2022"},"5336":{"market_hash_name":"Sticker | Eternal Fire (Glitter) | Antwerp 2022"},"5337":{"market_hash_name":"Sticker | Eternal Fire (Holo) | Antwerp 2022"},"5338":{"market_hash_name":"Sticker | Eternal Fire (Gold) | Antwerp 2022"},"5339":{"market_hash_name":"Sticker | Team Spirit | Antwerp 2022"},"534":{"market_hash_name":"Sticker | B1ad3 (Foil) | Cologne 2015"},"5340":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Antwerp 2022"},"5341":{"market_hash_name":"Sticker | Team Spirit (Holo) | Antwerp 2022"},"5342":{"market_hash_name":"Sticker | Team Spirit (Gold) | Antwerp 2022"},"5343":{"market_hash_name":"Sticker | Outsiders | Antwerp 2022"},"5344":{"market_hash_name":"Sticker | Outsiders (Glitter) | Antwerp 2022"},"5345":{"market_hash_name":"Sticker | Outsiders (Holo) | Antwerp 2022"},"5346":{"market_hash_name":"Sticker | Outsiders (Gold) | Antwerp 2022"},"5347":{"market_hash_name":"Sticker | Complexity Gaming | Antwerp 2022"},"5348":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Antwerp 2022"},"5349":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Antwerp 2022"},"535":{"market_hash_name":"Sticker | B1ad3 (Gold) | Cologne 2015"},"5350":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Antwerp 2022"},"5351":{"market_hash_name":"Sticker | IHC Esports | Antwerp 2022"},"5352":{"market_hash_name":"Sticker | IHC Esports (Glitter) | Antwerp 2022"},"5353":{"market_hash_name":"Sticker | IHC Esports (Holo) | Antwerp 2022"},"5354":{"market_hash_name":"Sticker | IHC Esports (Gold) | Antwerp 2022"},"5355":{"market_hash_name":"Sticker | Renegades | Antwerp 2022"},"5356":{"market_hash_name":"Sticker | Renegades (Glitter) | Antwerp 2022"},"5357":{"market_hash_name":"Sticker | Renegades (Holo) | Antwerp 2022"},"5358":{"market_hash_name":"Sticker | Renegades (Gold) | Antwerp 2022"},"5359":{"market_hash_name":"Sticker | Team Liquid | Antwerp 2022"},"536":{"market_hash_name":"Sticker | bondik | Cologne 2015"},"5360":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Antwerp 2022"},"5361":{"market_hash_name":"Sticker | Team Liquid (Holo) | Antwerp 2022"},"5362":{"market_hash_name":"Sticker | Team Liquid (Gold) | Antwerp 2022"},"5363":{"market_hash_name":"Sticker | 9z Team | Antwerp 2022"},"5364":{"market_hash_name":"Sticker | 9z Team (Glitter) | Antwerp 2022"},"5365":{"market_hash_name":"Sticker | 9z Team (Holo) | Antwerp 2022"},"5366":{"market_hash_name":"Sticker | 9z Team (Gold) | Antwerp 2022"},"5367":{"market_hash_name":"Sticker | PGL | Antwerp 2022"},"5368":{"market_hash_name":"Sticker | PGL (Glitter) | Antwerp 2022"},"5369":{"market_hash_name":"Sticker | PGL (Holo) | Antwerp 2022"},"537":{"market_hash_name":"Sticker | bondik (Foil) | Cologne 2015"},"5370":{"market_hash_name":"Sticker | PGL (Gold) | Antwerp 2022"},"538":{"market_hash_name":"Sticker | bondik (Gold) | Cologne 2015"},"539":{"market_hash_name":"Sticker | WorldEdit | Cologne 2015"},"5396":{"market_hash_name":"Sticker | stavn | Antwerp 2022"},"5397":{"market_hash_name":"Sticker | stavn (Glitter) | Antwerp 2022"},"5398":{"market_hash_name":"Sticker | stavn (Holo) | Antwerp 2022"},"5399":{"market_hash_name":"Sticker | stavn (Gold) | Antwerp 2022"},"540":{"market_hash_name":"Sticker | WorldEdit (Foil) | Cologne 2015"},"5400":{"market_hash_name":"Sticker | cadiaN | Antwerp 2022"},"5401":{"market_hash_name":"Sticker | cadiaN (Glitter) | Antwerp 2022"},"5402":{"market_hash_name":"Sticker | cadiaN (Holo) | Antwerp 2022"},"5403":{"market_hash_name":"Sticker | cadiaN (Gold) | Antwerp 2022"},"5404":{"market_hash_name":"Sticker | TeSeS | Antwerp 2022"},"5405":{"market_hash_name":"Sticker | TeSeS (Glitter) | Antwerp 2022"},"5406":{"market_hash_name":"Sticker | TeSeS (Holo) | Antwerp 2022"},"5407":{"market_hash_name":"Sticker | TeSeS (Gold) | Antwerp 2022"},"5408":{"market_hash_name":"Sticker | refrezh | Antwerp 2022"},"5409":{"market_hash_name":"Sticker | refrezh (Glitter) | Antwerp 2022"},"541":{"market_hash_name":"Sticker | WorldEdit (Gold) | Cologne 2015"},"5410":{"market_hash_name":"Sticker | refrezh (Holo) | Antwerp 2022"},"5411":{"market_hash_name":"Sticker | refrezh (Gold) | Antwerp 2022"},"5412":{"market_hash_name":"Sticker | sjuush | Antwerp 2022"},"5413":{"market_hash_name":"Sticker | sjuush (Glitter) | Antwerp 2022"},"5414":{"market_hash_name":"Sticker | sjuush (Holo) | Antwerp 2022"},"5415":{"market_hash_name":"Sticker | sjuush (Gold) | Antwerp 2022"},"5416":{"market_hash_name":"Sticker | roeJ | Antwerp 2022"},"5417":{"market_hash_name":"Sticker | roeJ (Glitter) | Antwerp 2022"},"5418":{"market_hash_name":"Sticker | roeJ (Holo) | Antwerp 2022"},"5419":{"market_hash_name":"Sticker | roeJ (Gold) | Antwerp 2022"},"542":{"market_hash_name":"Sticker | DavCost | Cologne 2015"},"5420":{"market_hash_name":"Sticker | Zyphon | Antwerp 2022"},"5421":{"market_hash_name":"Sticker | Zyphon (Glitter) | Antwerp 2022"},"5422":{"market_hash_name":"Sticker | Zyphon (Holo) | Antwerp 2022"},"5423":{"market_hash_name":"Sticker | Zyphon (Gold) | Antwerp 2022"},"5424":{"market_hash_name":"Sticker | HooXi | Antwerp 2022"},"5425":{"market_hash_name":"Sticker | HooXi (Glitter) | Antwerp 2022"},"5426":{"market_hash_name":"Sticker | HooXi (Holo) | Antwerp 2022"},"5427":{"market_hash_name":"Sticker | HooXi (Gold) | Antwerp 2022"},"5428":{"market_hash_name":"Sticker | jabbi | Antwerp 2022"},"5429":{"market_hash_name":"Sticker | jabbi (Glitter) | Antwerp 2022"},"543":{"market_hash_name":"Sticker | DavCost (Foil) | Cologne 2015"},"5430":{"market_hash_name":"Sticker | jabbi (Holo) | Antwerp 2022"},"5431":{"market_hash_name":"Sticker | jabbi (Gold) | Antwerp 2022"},"5432":{"market_hash_name":"Sticker | nicoodoz | Antwerp 2022"},"5433":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Antwerp 2022"},"5434":{"market_hash_name":"Sticker | nicoodoz (Holo) | Antwerp 2022"},"5435":{"market_hash_name":"Sticker | nicoodoz (Gold) | Antwerp 2022"},"5436":{"market_hash_name":"Sticker | tabseN | Antwerp 2022"},"5437":{"market_hash_name":"Sticker | tabseN (Glitter) | Antwerp 2022"},"5438":{"market_hash_name":"Sticker | tabseN (Holo) | Antwerp 2022"},"5439":{"market_hash_name":"Sticker | tabseN (Gold) | Antwerp 2022"},"544":{"market_hash_name":"Sticker | DavCost (Gold) | Cologne 2015"},"5440":{"market_hash_name":"Sticker | tiziaN | Antwerp 2022"},"5441":{"market_hash_name":"Sticker | tiziaN (Glitter) | Antwerp 2022"},"5442":{"market_hash_name":"Sticker | tiziaN (Holo) | Antwerp 2022"},"5443":{"market_hash_name":"Sticker | tiziaN (Gold) | Antwerp 2022"},"5444":{"market_hash_name":"Sticker | faveN | Antwerp 2022"},"5445":{"market_hash_name":"Sticker | faveN (Glitter) | Antwerp 2022"},"5446":{"market_hash_name":"Sticker | faveN (Holo) | Antwerp 2022"},"5447":{"market_hash_name":"Sticker | faveN (Gold) | Antwerp 2022"},"5448":{"market_hash_name":"Sticker | Krimbo | Antwerp 2022"},"5449":{"market_hash_name":"Sticker | Krimbo (Glitter) | Antwerp 2022"},"545":{"market_hash_name":"Sticker | dennis | Cologne 2015"},"5450":{"market_hash_name":"Sticker | Krimbo (Holo) | Antwerp 2022"},"5451":{"market_hash_name":"Sticker | Krimbo (Gold) | Antwerp 2022"},"5452":{"market_hash_name":"Sticker | syrsoN | Antwerp 2022"},"5453":{"market_hash_name":"Sticker | syrsoN (Glitter) | Antwerp 2022"},"5454":{"market_hash_name":"Sticker | syrsoN (Holo) | Antwerp 2022"},"5455":{"market_hash_name":"Sticker | syrsoN (Gold) | Antwerp 2022"},"5456":{"market_hash_name":"Sticker | interz | Antwerp 2022"},"5457":{"market_hash_name":"Sticker | interz (Glitter) | Antwerp 2022"},"5458":{"market_hash_name":"Sticker | interz (Holo) | Antwerp 2022"},"5459":{"market_hash_name":"Sticker | interz (Gold) | Antwerp 2022"},"546":{"market_hash_name":"Sticker | dennis (Foil) | Cologne 2015"},"5460":{"market_hash_name":"Sticker | sh1ro | Antwerp 2022"},"5461":{"market_hash_name":"Sticker | sh1ro (Glitter) | Antwerp 2022"},"5462":{"market_hash_name":"Sticker | sh1ro (Holo) | Antwerp 2022"},"5463":{"market_hash_name":"Sticker | sh1ro (Gold) | Antwerp 2022"},"5464":{"market_hash_name":"Sticker | nafany | Antwerp 2022"},"5465":{"market_hash_name":"Sticker | nafany (Glitter) | Antwerp 2022"},"5466":{"market_hash_name":"Sticker | nafany (Holo) | Antwerp 2022"},"5467":{"market_hash_name":"Sticker | nafany (Gold) | Antwerp 2022"},"5468":{"market_hash_name":"Sticker | Ax1Le | Antwerp 2022"},"5469":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Antwerp 2022"},"547":{"market_hash_name":"Sticker | dennis (Gold) | Cologne 2015"},"5470":{"market_hash_name":"Sticker | Ax1Le (Holo) | Antwerp 2022"},"5471":{"market_hash_name":"Sticker | Ax1Le (Gold) | Antwerp 2022"},"5472":{"market_hash_name":"Sticker | Hobbit | Antwerp 2022"},"5473":{"market_hash_name":"Sticker | Hobbit (Glitter) | Antwerp 2022"},"5474":{"market_hash_name":"Sticker | Hobbit (Holo) | Antwerp 2022"},"5475":{"market_hash_name":"Sticker | Hobbit (Gold) | Antwerp 2022"},"5476":{"market_hash_name":"Sticker | yuurih | Antwerp 2022"},"5477":{"market_hash_name":"Sticker | yuurih (Glitter) | Antwerp 2022"},"5478":{"market_hash_name":"Sticker | yuurih (Holo) | Antwerp 2022"},"5479":{"market_hash_name":"Sticker | yuurih (Gold) | Antwerp 2022"},"548":{"market_hash_name":"Sticker | ScreaM | Cologne 2015"},"5480":{"market_hash_name":"Sticker | arT | Antwerp 2022"},"5481":{"market_hash_name":"Sticker | arT (Glitter) | Antwerp 2022"},"5482":{"market_hash_name":"Sticker | arT (Holo) | Antwerp 2022"},"5483":{"market_hash_name":"Sticker | arT (Gold) | Antwerp 2022"},"5484":{"market_hash_name":"Sticker | KSCERATO | Antwerp 2022"},"5485":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Antwerp 2022"},"5486":{"market_hash_name":"Sticker | KSCERATO (Holo) | Antwerp 2022"},"5487":{"market_hash_name":"Sticker | KSCERATO (Gold) | Antwerp 2022"},"5488":{"market_hash_name":"Sticker | drop | Antwerp 2022"},"5489":{"market_hash_name":"Sticker | drop (Glitter) | Antwerp 2022"},"549":{"market_hash_name":"Sticker | ScreaM (Foil) | Cologne 2015"},"5490":{"market_hash_name":"Sticker | drop (Holo) | Antwerp 2022"},"5491":{"market_hash_name":"Sticker | drop (Gold) | Antwerp 2022"},"5492":{"market_hash_name":"Sticker | saffee | Antwerp 2022"},"5493":{"market_hash_name":"Sticker | saffee (Glitter) | Antwerp 2022"},"5494":{"market_hash_name":"Sticker | saffee (Holo) | Antwerp 2022"},"5495":{"market_hash_name":"Sticker | saffee (Gold) | Antwerp 2022"},"5496":{"market_hash_name":"Sticker | rain | Antwerp 2022"},"5497":{"market_hash_name":"Sticker | rain (Glitter) | Antwerp 2022"},"5498":{"market_hash_name":"Sticker | rain (Holo) | Antwerp 2022"},"5499":{"market_hash_name":"Sticker | rain (Gold) | Antwerp 2022"},"55":{"market_hash_name":"Sticker | Fnatic | Katowice 2014"},"550":{"market_hash_name":"Sticker | ScreaM (Gold) | Cologne 2015"},"5500":{"market_hash_name":"Sticker | karrigan | Antwerp 2022"},"5501":{"market_hash_name":"Sticker | karrigan (Glitter) | Antwerp 2022"},"5502":{"market_hash_name":"Sticker | karrigan (Holo) | Antwerp 2022"},"5503":{"market_hash_name":"Sticker | karrigan (Gold) | Antwerp 2022"},"5504":{"market_hash_name":"Sticker | Twistzz | Antwerp 2022"},"5505":{"market_hash_name":"Sticker | Twistzz (Glitter) | Antwerp 2022"},"5506":{"market_hash_name":"Sticker | Twistzz (Holo) | Antwerp 2022"},"5507":{"market_hash_name":"Sticker | Twistzz (Gold) | Antwerp 2022"},"5508":{"market_hash_name":"Sticker | broky | Antwerp 2022"},"5509":{"market_hash_name":"Sticker | broky (Glitter) | Antwerp 2022"},"551":{"market_hash_name":"Sticker | rain | Cologne 2015"},"5510":{"market_hash_name":"Sticker | broky (Holo) | Antwerp 2022"},"5511":{"market_hash_name":"Sticker | broky (Gold) | Antwerp 2022"},"5512":{"market_hash_name":"Sticker | ropz | Antwerp 2022"},"5513":{"market_hash_name":"Sticker | ropz (Glitter) | Antwerp 2022"},"5514":{"market_hash_name":"Sticker | ropz (Holo) | Antwerp 2022"},"5515":{"market_hash_name":"Sticker | ropz (Gold) | Antwerp 2022"},"5516":{"market_hash_name":"Sticker | REZ | Antwerp 2022"},"5517":{"market_hash_name":"Sticker | REZ (Glitter) | Antwerp 2022"},"5518":{"market_hash_name":"Sticker | REZ (Holo) | Antwerp 2022"},"5519":{"market_hash_name":"Sticker | REZ (Gold) | Antwerp 2022"},"552":{"market_hash_name":"Sticker | rain (Foil) | Cologne 2015"},"5520":{"market_hash_name":"Sticker | hampus | Antwerp 2022"},"5521":{"market_hash_name":"Sticker | hampus (Glitter) | Antwerp 2022"},"5522":{"market_hash_name":"Sticker | hampus (Holo) | Antwerp 2022"},"5523":{"market_hash_name":"Sticker | hampus (Gold) | Antwerp 2022"},"5524":{"market_hash_name":"Sticker | Plopski | Antwerp 2022"},"5525":{"market_hash_name":"Sticker | Plopski (Glitter) | Antwerp 2022"},"5526":{"market_hash_name":"Sticker | Plopski (Holo) | Antwerp 2022"},"5527":{"market_hash_name":"Sticker | Plopski (Gold) | Antwerp 2022"},"5528":{"market_hash_name":"Sticker | es3tag | Antwerp 2022"},"5529":{"market_hash_name":"Sticker | es3tag (Glitter) | Antwerp 2022"},"553":{"market_hash_name":"Sticker | rain (Gold) | Cologne 2015"},"5530":{"market_hash_name":"Sticker | es3tag (Holo) | Antwerp 2022"},"5531":{"market_hash_name":"Sticker | es3tag (Gold) | Antwerp 2022"},"5532":{"market_hash_name":"Sticker | Brollan | Antwerp 2022"},"5533":{"market_hash_name":"Sticker | Brollan (Glitter) | Antwerp 2022"},"5534":{"market_hash_name":"Sticker | Brollan (Holo) | Antwerp 2022"},"5535":{"market_hash_name":"Sticker | Brollan (Gold) | Antwerp 2022"},"5536":{"market_hash_name":"Sticker | s1mple | Antwerp 2022"},"5537":{"market_hash_name":"Sticker | s1mple (Glitter) | Antwerp 2022"},"5538":{"market_hash_name":"Sticker | s1mple (Holo) | Antwerp 2022"},"5539":{"market_hash_name":"Sticker | s1mple (Gold) | Antwerp 2022"},"554":{"market_hash_name":"Sticker | Maikelele | Cologne 2015"},"5540":{"market_hash_name":"Sticker | Boombl4 | Antwerp 2022"},"5541":{"market_hash_name":"Sticker | Boombl4 (Glitter) | Antwerp 2022"},"5542":{"market_hash_name":"Sticker | Boombl4 (Holo) | Antwerp 2022"},"5543":{"market_hash_name":"Sticker | Boombl4 (Gold) | Antwerp 2022"},"5544":{"market_hash_name":"Sticker | Perfecto | Antwerp 2022"},"5545":{"market_hash_name":"Sticker | Perfecto (Glitter) | Antwerp 2022"},"5546":{"market_hash_name":"Sticker | Perfecto (Holo) | Antwerp 2022"},"5547":{"market_hash_name":"Sticker | Perfecto (Gold) | Antwerp 2022"},"5548":{"market_hash_name":"Sticker | electronic | Antwerp 2022"},"5549":{"market_hash_name":"Sticker | electronic (Glitter) | Antwerp 2022"},"555":{"market_hash_name":"Sticker | Maikelele (Foil) | Cologne 2015"},"5550":{"market_hash_name":"Sticker | electronic (Holo) | Antwerp 2022"},"5551":{"market_hash_name":"Sticker | electronic (Gold) | Antwerp 2022"},"5552":{"market_hash_name":"Sticker | b1t | Antwerp 2022"},"5553":{"market_hash_name":"Sticker | b1t (Glitter) | Antwerp 2022"},"5554":{"market_hash_name":"Sticker | b1t (Holo) | Antwerp 2022"},"5555":{"market_hash_name":"Sticker | b1t (Gold) | Antwerp 2022"},"5556":{"market_hash_name":"Sticker | Snappi | Antwerp 2022"},"5557":{"market_hash_name":"Sticker | Snappi (Glitter) | Antwerp 2022"},"5558":{"market_hash_name":"Sticker | Snappi (Holo) | Antwerp 2022"},"5559":{"market_hash_name":"Sticker | Snappi (Gold) | Antwerp 2022"},"556":{"market_hash_name":"Sticker | Maikelele (Gold) | Cologne 2015"},"5560":{"market_hash_name":"Sticker | dycha | Antwerp 2022"},"5561":{"market_hash_name":"Sticker | dycha (Glitter) | Antwerp 2022"},"5562":{"market_hash_name":"Sticker | dycha (Holo) | Antwerp 2022"},"5563":{"market_hash_name":"Sticker | dycha (Gold) | Antwerp 2022"},"5564":{"market_hash_name":"Sticker | Spinx | Antwerp 2022"},"5565":{"market_hash_name":"Sticker | Spinx (Glitter) | Antwerp 2022"},"5566":{"market_hash_name":"Sticker | Spinx (Holo) | Antwerp 2022"},"5567":{"market_hash_name":"Sticker | Spinx (Gold) | Antwerp 2022"},"5568":{"market_hash_name":"Sticker | hades | Antwerp 2022"},"5569":{"market_hash_name":"Sticker | hades (Glitter) | Antwerp 2022"},"557":{"market_hash_name":"Sticker | fox | Cologne 2015"},"5570":{"market_hash_name":"Sticker | hades (Holo) | Antwerp 2022"},"5571":{"market_hash_name":"Sticker | hades (Gold) | Antwerp 2022"},"5572":{"market_hash_name":"Sticker | maden | Antwerp 2022"},"5573":{"market_hash_name":"Sticker | maden (Glitter) | Antwerp 2022"},"5574":{"market_hash_name":"Sticker | maden (Holo) | Antwerp 2022"},"5575":{"market_hash_name":"Sticker | maden (Gold) | Antwerp 2022"},"5576":{"market_hash_name":"Sticker | Aleksib | Antwerp 2022"},"5577":{"market_hash_name":"Sticker | Aleksib (Glitter) | Antwerp 2022"},"5578":{"market_hash_name":"Sticker | Aleksib (Holo) | Antwerp 2022"},"5579":{"market_hash_name":"Sticker | Aleksib (Gold) | Antwerp 2022"},"558":{"market_hash_name":"Sticker | fox (Foil) | Cologne 2015"},"5580":{"market_hash_name":"Sticker | huNter | Antwerp 2022"},"5581":{"market_hash_name":"Sticker | huNter (Glitter) | Antwerp 2022"},"5582":{"market_hash_name":"Sticker | huNter (Holo) | Antwerp 2022"},"5583":{"market_hash_name":"Sticker | huNter (Gold) | Antwerp 2022"},"5584":{"market_hash_name":"Sticker | JaCkz | Antwerp 2022"},"5585":{"market_hash_name":"Sticker | JaCkz (Glitter) | Antwerp 2022"},"5586":{"market_hash_name":"Sticker | JaCkz (Holo) | Antwerp 2022"},"5587":{"market_hash_name":"Sticker | JaCkz (Gold) | Antwerp 2022"},"5588":{"market_hash_name":"Sticker | m0NESY | Antwerp 2022"},"5589":{"market_hash_name":"Sticker | m0NESY (Glitter) | Antwerp 2022"},"559":{"market_hash_name":"Sticker | fox (Gold) | Cologne 2015"},"5590":{"market_hash_name":"Sticker | m0NESY (Holo) | Antwerp 2022"},"5591":{"market_hash_name":"Sticker | m0NESY (Gold) | Antwerp 2022"},"5592":{"market_hash_name":"Sticker | NiKo | Antwerp 2022"},"5593":{"market_hash_name":"Sticker | NiKo (Glitter) | Antwerp 2022"},"5594":{"market_hash_name":"Sticker | NiKo (Holo) | Antwerp 2022"},"5595":{"market_hash_name":"Sticker | NiKo (Gold) | Antwerp 2022"},"5596":{"market_hash_name":"Sticker | Jerry | Antwerp 2022"},"5597":{"market_hash_name":"Sticker | Jerry (Glitter) | Antwerp 2022"},"5598":{"market_hash_name":"Sticker | Jerry (Holo) | Antwerp 2022"},"5599":{"market_hash_name":"Sticker | Jerry (Gold) | Antwerp 2022"},"56":{"market_hash_name":"Sticker | Fnatic (Holo) | Katowice 2014"},"560":{"market_hash_name":"Sticker | rallen | Cologne 2015"},"5600":{"market_hash_name":"Sticker | zorte | Antwerp 2022"},"5601":{"market_hash_name":"Sticker | zorte (Glitter) | Antwerp 2022"},"5602":{"market_hash_name":"Sticker | zorte (Holo) | Antwerp 2022"},"5603":{"market_hash_name":"Sticker | zorte (Gold) | Antwerp 2022"},"5604":{"market_hash_name":"Sticker | KENSi | Antwerp 2022"},"5605":{"market_hash_name":"Sticker | KENSi (Glitter) | Antwerp 2022"},"5606":{"market_hash_name":"Sticker | KENSi (Holo) | Antwerp 2022"},"5607":{"market_hash_name":"Sticker | KENSi (Gold) | Antwerp 2022"},"5608":{"market_hash_name":"Sticker | Norwi | Antwerp 2022"},"5609":{"market_hash_name":"Sticker | Norwi (Glitter) | Antwerp 2022"},"561":{"market_hash_name":"Sticker | rallen (Foil) | Cologne 2015"},"5610":{"market_hash_name":"Sticker | Norwi (Holo) | Antwerp 2022"},"5611":{"market_hash_name":"Sticker | Norwi (Gold) | Antwerp 2022"},"5612":{"market_hash_name":"Sticker | shalfey | Antwerp 2022"},"5613":{"market_hash_name":"Sticker | shalfey (Glitter) | Antwerp 2022"},"5614":{"market_hash_name":"Sticker | shalfey (Holo) | Antwerp 2022"},"5615":{"market_hash_name":"Sticker | shalfey (Gold) | Antwerp 2022"},"5616":{"market_hash_name":"Sticker | gla1ve | Antwerp 2022"},"5617":{"market_hash_name":"Sticker | gla1ve (Glitter) | Antwerp 2022"},"5618":{"market_hash_name":"Sticker | gla1ve (Holo) | Antwerp 2022"},"5619":{"market_hash_name":"Sticker | gla1ve (Gold) | Antwerp 2022"},"562":{"market_hash_name":"Sticker | rallen (Gold) | Cologne 2015"},"5620":{"market_hash_name":"Sticker | blameF | Antwerp 2022"},"5621":{"market_hash_name":"Sticker | blameF (Glitter) | Antwerp 2022"},"5622":{"market_hash_name":"Sticker | blameF (Holo) | Antwerp 2022"},"5623":{"market_hash_name":"Sticker | blameF (Gold) | Antwerp 2022"},"5624":{"market_hash_name":"Sticker | k0nfig | Antwerp 2022"},"5625":{"market_hash_name":"Sticker | k0nfig (Glitter) | Antwerp 2022"},"5626":{"market_hash_name":"Sticker | k0nfig (Holo) | Antwerp 2022"},"5627":{"market_hash_name":"Sticker | k0nfig (Gold) | Antwerp 2022"},"5628":{"market_hash_name":"Sticker | Xyp9x | Antwerp 2022"},"5629":{"market_hash_name":"Sticker | Xyp9x (Glitter) | Antwerp 2022"},"563":{"market_hash_name":"Sticker | Hyper | Cologne 2015"},"5630":{"market_hash_name":"Sticker | Xyp9x (Holo) | Antwerp 2022"},"5631":{"market_hash_name":"Sticker | Xyp9x (Gold) | Antwerp 2022"},"5632":{"market_hash_name":"Sticker | Farlig | Antwerp 2022"},"5633":{"market_hash_name":"Sticker | Farlig (Glitter) | Antwerp 2022"},"5634":{"market_hash_name":"Sticker | Farlig (Holo) | Antwerp 2022"},"5635":{"market_hash_name":"Sticker | Farlig (Gold) | Antwerp 2022"},"5636":{"market_hash_name":"Sticker | apEX | Antwerp 2022"},"5637":{"market_hash_name":"Sticker | apEX (Glitter) | Antwerp 2022"},"5638":{"market_hash_name":"Sticker | apEX (Holo) | Antwerp 2022"},"5639":{"market_hash_name":"Sticker | apEX (Gold) | Antwerp 2022"},"564":{"market_hash_name":"Sticker | Hyper (Foil) | Cologne 2015"},"5640":{"market_hash_name":"Sticker | misutaaa | Antwerp 2022"},"5641":{"market_hash_name":"Sticker | misutaaa (Glitter) | Antwerp 2022"},"5642":{"market_hash_name":"Sticker | misutaaa (Holo) | Antwerp 2022"},"5643":{"market_hash_name":"Sticker | misutaaa (Gold) | Antwerp 2022"},"5644":{"market_hash_name":"Sticker | dupreeh | Antwerp 2022"},"5645":{"market_hash_name":"Sticker | dupreeh (Glitter) | Antwerp 2022"},"5646":{"market_hash_name":"Sticker | dupreeh (Holo) | Antwerp 2022"},"5647":{"market_hash_name":"Sticker | dupreeh (Gold) | Antwerp 2022"},"5648":{"market_hash_name":"Sticker | Magisk | Antwerp 2022"},"5649":{"market_hash_name":"Sticker | Magisk (Glitter) | Antwerp 2022"},"565":{"market_hash_name":"Sticker | Hyper (Gold) | Cologne 2015"},"5650":{"market_hash_name":"Sticker | Magisk (Holo) | Antwerp 2022"},"5651":{"market_hash_name":"Sticker | Magisk (Gold) | Antwerp 2022"},"5652":{"market_hash_name":"Sticker | ZywOo | Antwerp 2022"},"5653":{"market_hash_name":"Sticker | ZywOo (Glitter) | Antwerp 2022"},"5654":{"market_hash_name":"Sticker | ZywOo (Holo) | Antwerp 2022"},"5655":{"market_hash_name":"Sticker | ZywOo (Gold) | Antwerp 2022"},"5656":{"market_hash_name":"Sticker | WOOD7 | Antwerp 2022"},"5657":{"market_hash_name":"Sticker | WOOD7 (Glitter) | Antwerp 2022"},"5658":{"market_hash_name":"Sticker | WOOD7 (Holo) | Antwerp 2022"},"5659":{"market_hash_name":"Sticker | WOOD7 (Gold) | Antwerp 2022"},"566":{"market_hash_name":"Sticker | peet | Cologne 2015"},"5660":{"market_hash_name":"Sticker | chelo | Antwerp 2022"},"5661":{"market_hash_name":"Sticker | chelo (Glitter) | Antwerp 2022"},"5662":{"market_hash_name":"Sticker | chelo (Holo) | Antwerp 2022"},"5663":{"market_hash_name":"Sticker | chelo (Gold) | Antwerp 2022"},"5664":{"market_hash_name":"Sticker | Tuurtle | Antwerp 2022"},"5665":{"market_hash_name":"Sticker | Tuurtle (Glitter) | Antwerp 2022"},"5666":{"market_hash_name":"Sticker | Tuurtle (Holo) | Antwerp 2022"},"5667":{"market_hash_name":"Sticker | Tuurtle (Gold) | Antwerp 2022"},"5668":{"market_hash_name":"Sticker | exit | Antwerp 2022"},"5669":{"market_hash_name":"Sticker | exit (Glitter) | Antwerp 2022"},"567":{"market_hash_name":"Sticker | peet (Foil) | Cologne 2015"},"5670":{"market_hash_name":"Sticker | exit (Holo) | Antwerp 2022"},"5671":{"market_hash_name":"Sticker | exit (Gold) | Antwerp 2022"},"5672":{"market_hash_name":"Sticker | JOTA | Antwerp 2022"},"5673":{"market_hash_name":"Sticker | JOTA (Glitter) | Antwerp 2022"},"5674":{"market_hash_name":"Sticker | JOTA (Holo) | Antwerp 2022"},"5675":{"market_hash_name":"Sticker | JOTA (Gold) | Antwerp 2022"},"5676":{"market_hash_name":"Sticker | FalleN | Antwerp 2022"},"5677":{"market_hash_name":"Sticker | FalleN (Glitter) | Antwerp 2022"},"5678":{"market_hash_name":"Sticker | FalleN (Holo) | Antwerp 2022"},"5679":{"market_hash_name":"Sticker | FalleN (Gold) | Antwerp 2022"},"568":{"market_hash_name":"Sticker | peet (Gold) | Cologne 2015"},"5680":{"market_hash_name":"Sticker | fer | Antwerp 2022"},"5681":{"market_hash_name":"Sticker | fer (Glitter) | Antwerp 2022"},"5682":{"market_hash_name":"Sticker | fer (Holo) | Antwerp 2022"},"5683":{"market_hash_name":"Sticker | fer (Gold) | Antwerp 2022"},"5684":{"market_hash_name":"Sticker | fnx | Antwerp 2022"},"5685":{"market_hash_name":"Sticker | fnx (Glitter) | Antwerp 2022"},"5686":{"market_hash_name":"Sticker | fnx (Holo) | Antwerp 2022"},"5687":{"market_hash_name":"Sticker | fnx (Gold) | Antwerp 2022"},"5688":{"market_hash_name":"Sticker | boltz | Antwerp 2022"},"5689":{"market_hash_name":"Sticker | boltz (Glitter) | Antwerp 2022"},"569":{"market_hash_name":"Sticker | Furlan | Cologne 2015"},"5690":{"market_hash_name":"Sticker | boltz (Holo) | Antwerp 2022"},"5691":{"market_hash_name":"Sticker | boltz (Gold) | Antwerp 2022"},"5692":{"market_hash_name":"Sticker | VINI | Antwerp 2022"},"5693":{"market_hash_name":"Sticker | VINI (Glitter) | Antwerp 2022"},"5694":{"market_hash_name":"Sticker | VINI (Holo) | Antwerp 2022"},"5695":{"market_hash_name":"Sticker | VINI (Gold) | Antwerp 2022"},"5696":{"market_hash_name":"Sticker | rigoN | Antwerp 2022"},"5697":{"market_hash_name":"Sticker | rigoN (Glitter) | Antwerp 2022"},"5698":{"market_hash_name":"Sticker | rigoN (Holo) | Antwerp 2022"},"5699":{"market_hash_name":"Sticker | rigoN (Gold) | Antwerp 2022"},"57":{"market_hash_name":"Sticker | HellRaisers | Katowice 2014"},"570":{"market_hash_name":"Sticker | Furlan (Foil) | Cologne 2015"},"5700":{"market_hash_name":"Sticker | juanflatroo | Antwerp 2022"},"5701":{"market_hash_name":"Sticker | juanflatroo (Glitter) | Antwerp 2022"},"5702":{"market_hash_name":"Sticker | juanflatroo (Holo) | Antwerp 2022"},"5703":{"market_hash_name":"Sticker | juanflatroo (Gold) | Antwerp 2022"},"5704":{"market_hash_name":"Sticker | SENER1 | Antwerp 2022"},"5705":{"market_hash_name":"Sticker | SENER1 (Glitter) | Antwerp 2022"},"5706":{"market_hash_name":"Sticker | SENER1 (Holo) | Antwerp 2022"},"5707":{"market_hash_name":"Sticker | SENER1 (Gold) | Antwerp 2022"},"5708":{"market_hash_name":"Sticker | sinnopsyy | Antwerp 2022"},"5709":{"market_hash_name":"Sticker | sinnopsyy (Glitter) | Antwerp 2022"},"571":{"market_hash_name":"Sticker | Furlan (Gold) | Cologne 2015"},"5710":{"market_hash_name":"Sticker | sinnopsyy (Holo) | Antwerp 2022"},"5711":{"market_hash_name":"Sticker | sinnopsyy (Gold) | Antwerp 2022"},"5712":{"market_hash_name":"Sticker | gxx- | Antwerp 2022"},"5713":{"market_hash_name":"Sticker | gxx- (Glitter) | Antwerp 2022"},"5714":{"market_hash_name":"Sticker | gxx- (Holo) | Antwerp 2022"},"5715":{"market_hash_name":"Sticker | gxx- (Gold) | Antwerp 2022"},"5716":{"market_hash_name":"Sticker | XANTARES | Antwerp 2022"},"5717":{"market_hash_name":"Sticker | XANTARES (Glitter) | Antwerp 2022"},"5718":{"market_hash_name":"Sticker | XANTARES (Holo) | Antwerp 2022"},"5719":{"market_hash_name":"Sticker | XANTARES (Gold) | Antwerp 2022"},"572":{"market_hash_name":"Sticker | GruBy | Cologne 2015"},"5720":{"market_hash_name":"Sticker | woxic | Antwerp 2022"},"5721":{"market_hash_name":"Sticker | woxic (Glitter) | Antwerp 2022"},"5722":{"market_hash_name":"Sticker | woxic (Holo) | Antwerp 2022"},"5723":{"market_hash_name":"Sticker | woxic (Gold) | Antwerp 2022"},"5724":{"market_hash_name":"Sticker | imoRR | Antwerp 2022"},"5725":{"market_hash_name":"Sticker | imoRR (Glitter) | Antwerp 2022"},"5726":{"market_hash_name":"Sticker | imoRR (Holo) | Antwerp 2022"},"5727":{"market_hash_name":"Sticker | imoRR (Gold) | Antwerp 2022"},"5728":{"market_hash_name":"Sticker | Calyx | Antwerp 2022"},"5729":{"market_hash_name":"Sticker | Calyx (Glitter) | Antwerp 2022"},"573":{"market_hash_name":"Sticker | GruBy (Foil) | Cologne 2015"},"5730":{"market_hash_name":"Sticker | Calyx (Holo) | Antwerp 2022"},"5731":{"market_hash_name":"Sticker | Calyx (Gold) | Antwerp 2022"},"5732":{"market_hash_name":"Sticker | xfl0ud | Antwerp 2022"},"5733":{"market_hash_name":"Sticker | xfl0ud (Glitter) | Antwerp 2022"},"5734":{"market_hash_name":"Sticker | xfl0ud (Holo) | Antwerp 2022"},"5735":{"market_hash_name":"Sticker | xfl0ud (Gold) | Antwerp 2022"},"5736":{"market_hash_name":"Sticker | chopper | Antwerp 2022"},"5737":{"market_hash_name":"Sticker | chopper (Glitter) | Antwerp 2022"},"5738":{"market_hash_name":"Sticker | chopper (Holo) | Antwerp 2022"},"5739":{"market_hash_name":"Sticker | chopper (Gold) | Antwerp 2022"},"574":{"market_hash_name":"Sticker | GruBy (Gold) | Cologne 2015"},"5740":{"market_hash_name":"Sticker | magixx | Antwerp 2022"},"5741":{"market_hash_name":"Sticker | magixx (Glitter) | Antwerp 2022"},"5742":{"market_hash_name":"Sticker | magixx (Holo) | Antwerp 2022"},"5743":{"market_hash_name":"Sticker | magixx (Gold) | Antwerp 2022"},"5744":{"market_hash_name":"Sticker | degster | Antwerp 2022"},"5745":{"market_hash_name":"Sticker | degster (Glitter) | Antwerp 2022"},"5746":{"market_hash_name":"Sticker | degster (Holo) | Antwerp 2022"},"5747":{"market_hash_name":"Sticker | degster (Gold) | Antwerp 2022"},"5748":{"market_hash_name":"Sticker | Patsi | Antwerp 2022"},"5749":{"market_hash_name":"Sticker | Patsi (Glitter) | Antwerp 2022"},"575":{"market_hash_name":"Sticker | Maniac | Cologne 2015"},"5750":{"market_hash_name":"Sticker | Patsi (Holo) | Antwerp 2022"},"5751":{"market_hash_name":"Sticker | Patsi (Gold) | Antwerp 2022"},"5752":{"market_hash_name":"Sticker | S1ren | Antwerp 2022"},"5753":{"market_hash_name":"Sticker | S1ren (Glitter) | Antwerp 2022"},"5754":{"market_hash_name":"Sticker | S1ren (Holo) | Antwerp 2022"},"5755":{"market_hash_name":"Sticker | S1ren (Gold) | Antwerp 2022"},"5756":{"market_hash_name":"Sticker | Jame | Antwerp 2022"},"5757":{"market_hash_name":"Sticker | Jame (Glitter) | Antwerp 2022"},"5758":{"market_hash_name":"Sticker | Jame (Holo) | Antwerp 2022"},"5759":{"market_hash_name":"Sticker | Jame (Gold) | Antwerp 2022"},"576":{"market_hash_name":"Sticker | Maniac (Foil) | Cologne 2015"},"5760":{"market_hash_name":"Sticker | qikert | Antwerp 2022"},"5761":{"market_hash_name":"Sticker | qikert (Glitter) | Antwerp 2022"},"5762":{"market_hash_name":"Sticker | qikert (Holo) | Antwerp 2022"},"5763":{"market_hash_name":"Sticker | qikert (Gold) | Antwerp 2022"},"5764":{"market_hash_name":"Sticker | buster | Antwerp 2022"},"5765":{"market_hash_name":"Sticker | buster (Glitter) | Antwerp 2022"},"5766":{"market_hash_name":"Sticker | buster (Holo) | Antwerp 2022"},"5767":{"market_hash_name":"Sticker | buster (Gold) | Antwerp 2022"},"5768":{"market_hash_name":"Sticker | YEKINDAR | Antwerp 2022"},"5769":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Antwerp 2022"},"577":{"market_hash_name":"Sticker | Maniac (Gold) | Cologne 2015"},"5770":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Antwerp 2022"},"5771":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Antwerp 2022"},"5772":{"market_hash_name":"Sticker | FL1T | Antwerp 2022"},"5773":{"market_hash_name":"Sticker | FL1T (Glitter) | Antwerp 2022"},"5774":{"market_hash_name":"Sticker | FL1T (Holo) | Antwerp 2022"},"5775":{"market_hash_name":"Sticker | FL1T (Gold) | Antwerp 2022"},"5776":{"market_hash_name":"Sticker | FaNg | Antwerp 2022"},"5777":{"market_hash_name":"Sticker | FaNg (Glitter) | Antwerp 2022"},"5778":{"market_hash_name":"Sticker | FaNg (Holo) | Antwerp 2022"},"5779":{"market_hash_name":"Sticker | FaNg (Gold) | Antwerp 2022"},"578":{"market_hash_name":"Sticker | Ex6TenZ | Cologne 2015"},"5780":{"market_hash_name":"Sticker | floppy | Antwerp 2022"},"5781":{"market_hash_name":"Sticker | floppy (Glitter) | Antwerp 2022"},"5782":{"market_hash_name":"Sticker | floppy (Holo) | Antwerp 2022"},"5783":{"market_hash_name":"Sticker | floppy (Gold) | Antwerp 2022"},"5784":{"market_hash_name":"Sticker | Grim | Antwerp 2022"},"5785":{"market_hash_name":"Sticker | Grim (Glitter) | Antwerp 2022"},"5786":{"market_hash_name":"Sticker | Grim (Holo) | Antwerp 2022"},"5787":{"market_hash_name":"Sticker | Grim (Gold) | Antwerp 2022"},"5788":{"market_hash_name":"Sticker | JT | Antwerp 2022"},"5789":{"market_hash_name":"Sticker | JT (Glitter) | Antwerp 2022"},"579":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | Cologne 2015"},"5790":{"market_hash_name":"Sticker | JT (Holo) | Antwerp 2022"},"5791":{"market_hash_name":"Sticker | JT (Gold) | Antwerp 2022"},"5792":{"market_hash_name":"Sticker | junior | Antwerp 2022"},"5793":{"market_hash_name":"Sticker | junior (Glitter) | Antwerp 2022"},"5794":{"market_hash_name":"Sticker | junior (Holo) | Antwerp 2022"},"5795":{"market_hash_name":"Sticker | junior (Gold) | Antwerp 2022"},"5796":{"market_hash_name":"Sticker | bLitz | Antwerp 2022"},"5797":{"market_hash_name":"Sticker | bLitz (Glitter) | Antwerp 2022"},"5798":{"market_hash_name":"Sticker | bLitz (Holo) | Antwerp 2022"},"5799":{"market_hash_name":"Sticker | bLitz (Gold) | Antwerp 2022"},"58":{"market_hash_name":"Sticker | HellRaisers (Holo) | Katowice 2014"},"580":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | Cologne 2015"},"5800":{"market_hash_name":"Sticker | kabal | Antwerp 2022"},"5801":{"market_hash_name":"Sticker | kabal (Glitter) | Antwerp 2022"},"5802":{"market_hash_name":"Sticker | kabal (Holo) | Antwerp 2022"},"5803":{"market_hash_name":"Sticker | kabal (Gold) | Antwerp 2022"},"5804":{"market_hash_name":"Sticker | nin9 | Antwerp 2022"},"5805":{"market_hash_name":"Sticker | nin9 (Glitter) | Antwerp 2022"},"5806":{"market_hash_name":"Sticker | nin9 (Holo) | Antwerp 2022"},"5807":{"market_hash_name":"Sticker | nin9 (Gold) | Antwerp 2022"},"5808":{"market_hash_name":"Sticker | sk0R | Antwerp 2022"},"5809":{"market_hash_name":"Sticker | sk0R (Glitter) | Antwerp 2022"},"581":{"market_hash_name":"Sticker | shox | Cologne 2015"},"5810":{"market_hash_name":"Sticker | sk0R (Holo) | Antwerp 2022"},"5811":{"market_hash_name":"Sticker | sk0R (Gold) | Antwerp 2022"},"5812":{"market_hash_name":"Sticker | Techno4K | Antwerp 2022"},"5813":{"market_hash_name":"Sticker | Techno4K (Glitter) | Antwerp 2022"},"5814":{"market_hash_name":"Sticker | Techno4K (Holo) | Antwerp 2022"},"5815":{"market_hash_name":"Sticker | Techno4K (Gold) | Antwerp 2022"},"5816":{"market_hash_name":"Sticker | ins | Antwerp 2022"},"5817":{"market_hash_name":"Sticker | ins (Glitter) | Antwerp 2022"},"5818":{"market_hash_name":"Sticker | ins (Holo) | Antwerp 2022"},"5819":{"market_hash_name":"Sticker | ins (Gold) | Antwerp 2022"},"582":{"market_hash_name":"Sticker | shox (Foil) | Cologne 2015"},"5820":{"market_hash_name":"Sticker | sico | Antwerp 2022"},"5821":{"market_hash_name":"Sticker | sico (Glitter) | Antwerp 2022"},"5822":{"market_hash_name":"Sticker | sico (Holo) | Antwerp 2022"},"5823":{"market_hash_name":"Sticker | sico (Gold) | Antwerp 2022"},"5824":{"market_hash_name":"Sticker | Liazz | Antwerp 2022"},"5825":{"market_hash_name":"Sticker | Liazz (Glitter) | Antwerp 2022"},"5826":{"market_hash_name":"Sticker | Liazz (Holo) | Antwerp 2022"},"5827":{"market_hash_name":"Sticker | Liazz (Gold) | Antwerp 2022"},"5828":{"market_hash_name":"Sticker | hatz | Antwerp 2022"},"5829":{"market_hash_name":"Sticker | hatz (Glitter) | Antwerp 2022"},"583":{"market_hash_name":"Sticker | shox (Gold) | Cologne 2015"},"5830":{"market_hash_name":"Sticker | hatz (Holo) | Antwerp 2022"},"5831":{"market_hash_name":"Sticker | hatz (Gold) | Antwerp 2022"},"5832":{"market_hash_name":"Sticker | aliStair | Antwerp 2022"},"5833":{"market_hash_name":"Sticker | aliStair (Glitter) | Antwerp 2022"},"5834":{"market_hash_name":"Sticker | aliStair (Holo) | Antwerp 2022"},"5835":{"market_hash_name":"Sticker | aliStair (Gold) | Antwerp 2022"},"5836":{"market_hash_name":"Sticker | shox | Antwerp 2022"},"5837":{"market_hash_name":"Sticker | shox (Glitter) | Antwerp 2022"},"5838":{"market_hash_name":"Sticker | shox (Holo) | Antwerp 2022"},"5839":{"market_hash_name":"Sticker | shox (Gold) | Antwerp 2022"},"584":{"market_hash_name":"Sticker | SmithZz | Cologne 2015"},"5840":{"market_hash_name":"Sticker | EliGE | Antwerp 2022"},"5841":{"market_hash_name":"Sticker | EliGE (Glitter) | Antwerp 2022"},"5842":{"market_hash_name":"Sticker | EliGE (Holo) | Antwerp 2022"},"5843":{"market_hash_name":"Sticker | EliGE (Gold) | Antwerp 2022"},"5844":{"market_hash_name":"Sticker | oSee | Antwerp 2022"},"5845":{"market_hash_name":"Sticker | oSee (Glitter) | Antwerp 2022"},"5846":{"market_hash_name":"Sticker | oSee (Holo) | Antwerp 2022"},"5847":{"market_hash_name":"Sticker | oSee (Gold) | Antwerp 2022"},"5848":{"market_hash_name":"Sticker | nitr0 | Antwerp 2022"},"5849":{"market_hash_name":"Sticker | nitr0 (Glitter) | Antwerp 2022"},"585":{"market_hash_name":"Sticker | SmithZz (Foil) | Cologne 2015"},"5850":{"market_hash_name":"Sticker | nitr0 (Holo) | Antwerp 2022"},"5851":{"market_hash_name":"Sticker | nitr0 (Gold) | Antwerp 2022"},"5852":{"market_hash_name":"Sticker | NAF | Antwerp 2022"},"5853":{"market_hash_name":"Sticker | NAF (Glitter) | Antwerp 2022"},"5854":{"market_hash_name":"Sticker | NAF (Holo) | Antwerp 2022"},"5855":{"market_hash_name":"Sticker | NAF (Gold) | Antwerp 2022"},"5856":{"market_hash_name":"Sticker | rox | Antwerp 2022"},"5857":{"market_hash_name":"Sticker | rox (Glitter) | Antwerp 2022"},"5858":{"market_hash_name":"Sticker | rox (Holo) | Antwerp 2022"},"5859":{"market_hash_name":"Sticker | rox (Gold) | Antwerp 2022"},"586":{"market_hash_name":"Sticker | SmithZz (Gold) | Cologne 2015"},"5860":{"market_hash_name":"Sticker | luken | Antwerp 2022"},"5861":{"market_hash_name":"Sticker | luken (Glitter) | Antwerp 2022"},"5862":{"market_hash_name":"Sticker | luken (Holo) | Antwerp 2022"},"5863":{"market_hash_name":"Sticker | luken (Gold) | Antwerp 2022"},"5864":{"market_hash_name":"Sticker | max | Antwerp 2022"},"5865":{"market_hash_name":"Sticker | max (Glitter) | Antwerp 2022"},"5866":{"market_hash_name":"Sticker | max (Holo) | Antwerp 2022"},"5867":{"market_hash_name":"Sticker | max (Gold) | Antwerp 2022"},"5868":{"market_hash_name":"Sticker | dgt | Antwerp 2022"},"5869":{"market_hash_name":"Sticker | dgt (Glitter) | Antwerp 2022"},"587":{"market_hash_name":"Sticker | RpK | Cologne 2015"},"5870":{"market_hash_name":"Sticker | dgt (Holo) | Antwerp 2022"},"5871":{"market_hash_name":"Sticker | dgt (Gold) | Antwerp 2022"},"5872":{"market_hash_name":"Sticker | dav1d | Antwerp 2022"},"5873":{"market_hash_name":"Sticker | dav1d (Glitter) | Antwerp 2022"},"5874":{"market_hash_name":"Sticker | dav1d (Holo) | Antwerp 2022"},"5875":{"market_hash_name":"Sticker | dav1d (Gold) | Antwerp 2022"},"5876":{"market_hash_name":"Sticker | rain (Champion) | Antwerp 2022"},"5877":{"market_hash_name":"Sticker | rain (Glitter, Champion) | Antwerp 2022"},"5878":{"market_hash_name":"Sticker | rain (Holo, Champion) | Antwerp 2022"},"5879":{"market_hash_name":"Sticker | rain (Gold, Champion) | Antwerp 2022"},"588":{"market_hash_name":"Sticker | RpK (Foil) | Cologne 2015"},"5880":{"market_hash_name":"Sticker | karrigan (Champion) | Antwerp 2022"},"5881":{"market_hash_name":"Sticker | karrigan (Glitter, Champion) | Antwerp 2022"},"5882":{"market_hash_name":"Sticker | karrigan (Holo, Champion) | Antwerp 2022"},"5883":{"market_hash_name":"Sticker | karrigan (Gold, Champion) | Antwerp 2022"},"5884":{"market_hash_name":"Sticker | Twistzz (Champion) | Antwerp 2022"},"5885":{"market_hash_name":"Sticker | Twistzz (Glitter, Champion) | Antwerp 2022"},"5886":{"market_hash_name":"Sticker | Twistzz (Holo, Champion) | Antwerp 2022"},"5887":{"market_hash_name":"Sticker | Twistzz (Gold, Champion) | Antwerp 2022"},"5888":{"market_hash_name":"Sticker | broky (Champion) | Antwerp 2022"},"5889":{"market_hash_name":"Sticker | broky (Glitter, Champion) | Antwerp 2022"},"589":{"market_hash_name":"Sticker | RpK (Gold) | Cologne 2015"},"5890":{"market_hash_name":"Sticker | broky (Holo, Champion) | Antwerp 2022"},"5891":{"market_hash_name":"Sticker | broky (Gold, Champion) | Antwerp 2022"},"5892":{"market_hash_name":"Sticker | ropz (Champion) | Antwerp 2022"},"5893":{"market_hash_name":"Sticker | ropz (Glitter, Champion) | Antwerp 2022"},"5894":{"market_hash_name":"Sticker | ropz (Holo, Champion) | Antwerp 2022"},"5895":{"market_hash_name":"Sticker | ropz (Gold, Champion) | Antwerp 2022"},"5896":{"market_hash_name":"Sticker | Arms Race"},"5897":{"market_hash_name":"Sticker | B-Day"},"5898":{"market_hash_name":"Sticker | Baby Cerberus"},"5899":{"market_hash_name":"Sticker | Baby Fire Serpent"},"59":{"market_hash_name":"Sticker | iBUYPOWER | Katowice 2014"},"590":{"market_hash_name":"Sticker | hazed | Cologne 2015"},"5900":{"market_hash_name":"Sticker | Baby Howl"},"5901":{"market_hash_name":"Sticker | Baby Lore"},"5902":{"market_hash_name":"Sticker | Baby Medusa"},"5903":{"market_hash_name":"Sticker | Beaky Decade"},"5904":{"market_hash_name":"Sticker | Booth"},"5905":{"market_hash_name":"Sticker | Call Your Flashes"},"5906":{"market_hash_name":"Sticker | Chicken Whisperer"},"5907":{"market_hash_name":"Sticker | Clicking Heads"},"5908":{"market_hash_name":"Sticker | Co Co Co"},"5909":{"market_hash_name":"Sticker | C-S On The Go"},"591":{"market_hash_name":"Sticker | hazed (Foil) | Cologne 2015"},"5910":{"market_hash_name":"Sticker | Cursed Penmanship"},"5911":{"market_hash_name":"Sticker | Dragon Tale"},"5912":{"market_hash_name":"Sticker | Dragon's Keep"},"5913":{"market_hash_name":"Sticker | Dreams And Mimics"},"5914":{"market_hash_name":"Sticker | Endless Cycle"},"5915":{"market_hash_name":"Sticker | Exo Jumper"},"5916":{"market_hash_name":"Sticker | Free Range"},"5917":{"market_hash_name":"Sticker | Good Sports"},"5918":{"market_hash_name":"Sticker | GO"},"5919":{"market_hash_name":"Sticker | Good Versus Evil"},"592":{"market_hash_name":"Sticker | hazed (Gold) | Cologne 2015"},"5920":{"market_hash_name":"Sticker | Green's Problem"},"5921":{"market_hash_name":"Sticker | Laser Beam"},"5922":{"market_hash_name":"Sticker | Monster"},"5923":{"market_hash_name":"Sticker | Noble Steed"},"5924":{"market_hash_name":"Sticker | Not For Resale"},"5925":{"market_hash_name":"Sticker | Press Start"},"5926":{"market_hash_name":"Sticker | Choose Wisely"},"5927":{"market_hash_name":"Sticker | Shifty Tactics"},"5928":{"market_hash_name":"Sticker | Rush More"},"5929":{"market_hash_name":"Sticker | Save Me"},"593":{"market_hash_name":"Sticker | FNS | Cologne 2015"},"5930":{"market_hash_name":"Sticker | Agent Select"},"5931":{"market_hash_name":"Sticker | This Is Fine (H)"},"5932":{"market_hash_name":"Sticker | TV On Mirage"},"5933":{"market_hash_name":"Sticker | Zeused"},"5934":{"market_hash_name":"Sticker | Ace Clutch Co. (Holo)"},"5935":{"market_hash_name":"Sticker | Blue Gem (Glitter)"},"5936":{"market_hash_name":"Sticker | Go Boom (Glitter)"},"5937":{"market_hash_name":"Sticker | Cbbl (Holo)"},"5938":{"market_hash_name":"Sticker | Defuse It (Holo)"},"5939":{"market_hash_name":"Sticker | Conspiracy Club (Holo)"},"594":{"market_hash_name":"Sticker | FNS (Foil) | Cologne 2015"},"5940":{"market_hash_name":"Sticker | Get Smoked (Holo)"},"5941":{"market_hash_name":"Sticker | Kawaii CT (Holo)"},"5942":{"market_hash_name":"Sticker | Kawaii T (Holo)"},"5943":{"market_hash_name":"Sticker | Leaving The Station (Holo)"},"5944":{"market_hash_name":"Sticker | Pain Train (Holo)"},"5945":{"market_hash_name":"Sticker | Vertigo's Hero (Holo)"},"5946":{"market_hash_name":"Sticker | Zeusception (Holo)"},"5947":{"market_hash_name":"Sticker | Dust FA (Foil)"},"5948":{"market_hash_name":"Sticker | In The Fire (Foil)"},"5949":{"market_hash_name":"Sticker | Approaching Site (Foil)"},"595":{"market_hash_name":"Sticker | FNS (Gold) | Cologne 2015"},"5950":{"market_hash_name":"Sticker | Overpass Diorama (Foil)"},"5951":{"market_hash_name":"Sticker | Pure Malt (Foil)"},"5952":{"market_hash_name":"Sticker | Showdown (Foil)"},"5953":{"market_hash_name":"Sticker | Ten Years (Foil)"},"5954":{"market_hash_name":"Sticker | Romanov's Fire (Foil)"},"5955":{"market_hash_name":"Sticker | Freeze (Lenticular)"},"5956":{"market_hash_name":"Sticker | Global TV (Lenticular)"},"5957":{"market_hash_name":"Sticker | Magic Rush Ball (Lenticular)"},"5958":{"market_hash_name":"Sticker | DJ Safecracker (Lenticular)"},"5959":{"market_hash_name":"Sticker | Skin Lover (Lenticular)"},"596":{"market_hash_name":"Sticker | jdm64 | Cologne 2015"},"5960":{"market_hash_name":"Sticker | TV Installation (Lenticular)"},"5961":{"market_hash_name":"Sticker | ENCE | Rio 2022"},"5962":{"market_hash_name":"Sticker | ENCE (Glitter) | Rio 2022"},"5963":{"market_hash_name":"Sticker | ENCE (Holo) | Rio 2022"},"5964":{"market_hash_name":"Sticker | ENCE (Gold) | Rio 2022"},"5965":{"market_hash_name":"Sticker | FaZe Clan | Rio 2022"},"5966":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Rio 2022"},"5967":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Rio 2022"},"5968":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Rio 2022"},"5969":{"market_hash_name":"Sticker | Heroic | Rio 2022"},"597":{"market_hash_name":"Sticker | jdm64 (Foil) | Cologne 2015"},"5970":{"market_hash_name":"Sticker | Heroic (Glitter) | Rio 2022"},"5971":{"market_hash_name":"Sticker | Heroic (Holo) | Rio 2022"},"5972":{"market_hash_name":"Sticker | Heroic (Gold) | Rio 2022"},"5973":{"market_hash_name":"Sticker | Natus Vincere | Rio 2022"},"5974":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Rio 2022"},"5975":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Rio 2022"},"5976":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Rio 2022"},"5977":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Rio 2022"},"5978":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Glitter) | Rio 2022"},"5979":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Rio 2022"},"598":{"market_hash_name":"Sticker | jdm64 (Gold) | Cologne 2015"},"5980":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Rio 2022"},"5981":{"market_hash_name":"Sticker | Sprout Esports | Rio 2022"},"5982":{"market_hash_name":"Sticker | Sprout Esports (Glitter) | Rio 2022"},"5983":{"market_hash_name":"Sticker | Sprout Esports (Holo) | Rio 2022"},"5984":{"market_hash_name":"Sticker | Sprout Esports (Gold) | Rio 2022"},"5985":{"market_hash_name":"Sticker | Team Liquid | Rio 2022"},"5986":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Rio 2022"},"5987":{"market_hash_name":"Sticker | Team Liquid (Holo) | Rio 2022"},"5988":{"market_hash_name":"Sticker | Team Liquid (Gold) | Rio 2022"},"5989":{"market_hash_name":"Sticker | Team Spirit | Rio 2022"},"599":{"market_hash_name":"Sticker | reltuC | Cologne 2015"},"5990":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Rio 2022"},"5991":{"market_hash_name":"Sticker | Team Spirit (Holo) | Rio 2022"},"5992":{"market_hash_name":"Sticker | Team Spirit (Gold) | Rio 2022"},"5993":{"market_hash_name":"Sticker | 9z Team | Rio 2022"},"5994":{"market_hash_name":"Sticker | 9z Team (Glitter) | Rio 2022"},"5995":{"market_hash_name":"Sticker | 9z Team (Holo) | Rio 2022"},"5996":{"market_hash_name":"Sticker | 9z Team (Gold) | Rio 2022"},"5997":{"market_hash_name":"Sticker | Bad News Eagles | Rio 2022"},"5998":{"market_hash_name":"Sticker | Bad News Eagles (Glitter) | Rio 2022"},"5999":{"market_hash_name":"Sticker | Bad News Eagles (Holo) | Rio 2022"},"6":{"market_hash_name":"Sticker | Blue Snowflake (Foil)"},"60":{"market_hash_name":"Sticker | iBUYPOWER (Holo) | Katowice 2014"},"600":{"market_hash_name":"Sticker | reltuC (Foil) | Cologne 2015"},"6000":{"market_hash_name":"Sticker | Bad News Eagles (Gold) | Rio 2022"},"6001":{"market_hash_name":"Sticker | BIG | Rio 2022"},"6002":{"market_hash_name":"Sticker | BIG (Glitter) | Rio 2022"},"6003":{"market_hash_name":"Sticker | BIG (Holo) | Rio 2022"},"6004":{"market_hash_name":"Sticker | BIG (Gold) | Rio 2022"},"6005":{"market_hash_name":"Sticker | Cloud9 | Rio 2022"},"6006":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Rio 2022"},"6007":{"market_hash_name":"Sticker | Cloud9 (Holo) | Rio 2022"},"6008":{"market_hash_name":"Sticker | Cloud9 (Gold) | Rio 2022"},"6009":{"market_hash_name":"Sticker | Evil Geniuses | Rio 2022"},"601":{"market_hash_name":"Sticker | reltuC (Gold) | Cologne 2015"},"6010":{"market_hash_name":"Sticker | Evil Geniuses (Glitter) | Rio 2022"},"6011":{"market_hash_name":"Sticker | Evil Geniuses (Holo) | Rio 2022"},"6012":{"market_hash_name":"Sticker | Evil Geniuses (Gold) | Rio 2022"},"6013":{"market_hash_name":"Sticker | MOUZ | Rio 2022"},"6014":{"market_hash_name":"Sticker | MOUZ (Glitter) | Rio 2022"},"6015":{"market_hash_name":"Sticker | MOUZ (Holo) | Rio 2022"},"6016":{"market_hash_name":"Sticker | MOUZ (Gold) | Rio 2022"},"6017":{"market_hash_name":"Sticker | OG | Rio 2022"},"6018":{"market_hash_name":"Sticker | OG (Glitter) | Rio 2022"},"6019":{"market_hash_name":"Sticker | OG (Holo) | Rio 2022"},"602":{"market_hash_name":"Sticker | tarik | Cologne 2015"},"6020":{"market_hash_name":"Sticker | OG (Gold) | Rio 2022"},"6021":{"market_hash_name":"Sticker | Vitality | Rio 2022"},"6022":{"market_hash_name":"Sticker | Vitality (Glitter) | Rio 2022"},"6023":{"market_hash_name":"Sticker | Vitality (Holo) | Rio 2022"},"6024":{"market_hash_name":"Sticker | Vitality (Gold) | Rio 2022"},"6025":{"market_hash_name":"Sticker | 00 Nation | Rio 2022"},"6026":{"market_hash_name":"Sticker | 00 Nation (Glitter) | Rio 2022"},"6027":{"market_hash_name":"Sticker | 00 Nation (Holo) | Rio 2022"},"6028":{"market_hash_name":"Sticker | 00 Nation (Gold) | Rio 2022"},"6029":{"market_hash_name":"Sticker | Fnatic | Rio 2022"},"603":{"market_hash_name":"Sticker | tarik (Foil) | Cologne 2015"},"6030":{"market_hash_name":"Sticker | Fnatic (Glitter) | Rio 2022"},"6031":{"market_hash_name":"Sticker | Fnatic (Holo) | Rio 2022"},"6032":{"market_hash_name":"Sticker | Fnatic (Gold) | Rio 2022"},"6033":{"market_hash_name":"Sticker | FURIA | Rio 2022"},"6034":{"market_hash_name":"Sticker | FURIA (Glitter) | Rio 2022"},"6035":{"market_hash_name":"Sticker | FURIA (Holo) | Rio 2022"},"6036":{"market_hash_name":"Sticker | FURIA (Gold) | Rio 2022"},"6037":{"market_hash_name":"Sticker | GamerLegion | Rio 2022"},"6038":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Rio 2022"},"6039":{"market_hash_name":"Sticker | GamerLegion (Holo) | Rio 2022"},"604":{"market_hash_name":"Sticker | tarik (Gold) | Cologne 2015"},"6040":{"market_hash_name":"Sticker | GamerLegion (Gold) | Rio 2022"},"6041":{"market_hash_name":"Sticker | Grayhound Gaming | Rio 2022"},"6042":{"market_hash_name":"Sticker | Grayhound Gaming (Glitter) | Rio 2022"},"6043":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Rio 2022"},"6044":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Rio 2022"},"6045":{"market_hash_name":"Sticker | IHC Esports | Rio 2022"},"6046":{"market_hash_name":"Sticker | IHC Esports (Glitter) | Rio 2022"},"6047":{"market_hash_name":"Sticker | IHC Esports (Holo) | Rio 2022"},"6048":{"market_hash_name":"Sticker | IHC Esports (Gold) | Rio 2022"},"6049":{"market_hash_name":"Sticker | Imperial Esports | Rio 2022"},"605":{"market_hash_name":"Sticker | n0thing | Cologne 2015"},"6050":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Rio 2022"},"6051":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Rio 2022"},"6052":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Rio 2022"},"6053":{"market_hash_name":"Sticker | Outsiders | Rio 2022"},"6054":{"market_hash_name":"Sticker | Outsiders (Glitter) | Rio 2022"},"6055":{"market_hash_name":"Sticker | Outsiders (Holo) | Rio 2022"},"6056":{"market_hash_name":"Sticker | Outsiders (Gold) | Rio 2022"},"6057":{"market_hash_name":"Sticker | IEM | Rio 2022"},"6058":{"market_hash_name":"Sticker | IEM (Glitter) | Rio 2022"},"6059":{"market_hash_name":"Sticker | IEM (Holo) | Rio 2022"},"606":{"market_hash_name":"Sticker | n0thing (Foil) | Cologne 2015"},"6060":{"market_hash_name":"Sticker | IEM (Gold) | Rio 2022"},"607":{"market_hash_name":"Sticker | n0thing (Gold) | Cologne 2015"},"608":{"market_hash_name":"Sticker | seang@res | Cologne 2015"},"6086":{"market_hash_name":"Sticker | Snappi | Rio 2022"},"6087":{"market_hash_name":"Sticker | Snappi (Glitter) | Rio 2022"},"6088":{"market_hash_name":"Sticker | Snappi (Holo) | Rio 2022"},"6089":{"market_hash_name":"Sticker | Snappi (Gold) | Rio 2022"},"609":{"market_hash_name":"Sticker | seang@res (Foil) | Cologne 2015"},"6090":{"market_hash_name":"Sticker | Dycha | Rio 2022"},"6091":{"market_hash_name":"Sticker | Dycha (Glitter) | Rio 2022"},"6092":{"market_hash_name":"Sticker | Dycha (Holo) | Rio 2022"},"6093":{"market_hash_name":"Sticker | Dycha (Gold) | Rio 2022"},"6094":{"market_hash_name":"Sticker | maden | Rio 2022"},"6095":{"market_hash_name":"Sticker | maden (Glitter) | Rio 2022"},"6096":{"market_hash_name":"Sticker | maden (Holo) | Rio 2022"},"6097":{"market_hash_name":"Sticker | maden (Gold) | Rio 2022"},"6098":{"market_hash_name":"Sticker | v4lde | Rio 2022"},"6099":{"market_hash_name":"Sticker | v4lde (Glitter) | Rio 2022"},"61":{"market_hash_name":"Sticker | Team LDLC.com | Katowice 2014"},"610":{"market_hash_name":"Sticker | seang@res (Gold) | Cologne 2015"},"6100":{"market_hash_name":"Sticker | v4lde (Holo) | Rio 2022"},"6101":{"market_hash_name":"Sticker | v4lde (Gold) | Rio 2022"},"6102":{"market_hash_name":"Sticker | SunPayus | Rio 2022"},"6103":{"market_hash_name":"Sticker | SunPayus (Glitter) | Rio 2022"},"6104":{"market_hash_name":"Sticker | SunPayus (Holo) | Rio 2022"},"6105":{"market_hash_name":"Sticker | SunPayus (Gold) | Rio 2022"},"6106":{"market_hash_name":"Sticker | karrigan | Rio 2022"},"6107":{"market_hash_name":"Sticker | karrigan (Glitter) | Rio 2022"},"6108":{"market_hash_name":"Sticker | karrigan (Holo) | Rio 2022"},"6109":{"market_hash_name":"Sticker | karrigan (Gold) | Rio 2022"},"611":{"market_hash_name":"Sticker | shroud | Cologne 2015"},"6110":{"market_hash_name":"Sticker | rain | Rio 2022"},"6111":{"market_hash_name":"Sticker | rain (Glitter) | Rio 2022"},"6112":{"market_hash_name":"Sticker | rain (Holo) | Rio 2022"},"6113":{"market_hash_name":"Sticker | rain (Gold) | Rio 2022"},"6114":{"market_hash_name":"Sticker | Twistzz | Rio 2022"},"6115":{"market_hash_name":"Sticker | Twistzz (Glitter) | Rio 2022"},"6116":{"market_hash_name":"Sticker | Twistzz (Holo) | Rio 2022"},"6117":{"market_hash_name":"Sticker | Twistzz (Gold) | Rio 2022"},"6118":{"market_hash_name":"Sticker | ropz | Rio 2022"},"6119":{"market_hash_name":"Sticker | ropz (Glitter) | Rio 2022"},"612":{"market_hash_name":"Sticker | shroud (Foil) | Cologne 2015"},"6120":{"market_hash_name":"Sticker | ropz (Holo) | Rio 2022"},"6121":{"market_hash_name":"Sticker | ropz (Gold) | Rio 2022"},"6122":{"market_hash_name":"Sticker | broky | Rio 2022"},"6123":{"market_hash_name":"Sticker | broky (Glitter) | Rio 2022"},"6124":{"market_hash_name":"Sticker | broky (Holo) | Rio 2022"},"6125":{"market_hash_name":"Sticker | broky (Gold) | Rio 2022"},"6126":{"market_hash_name":"Sticker | cadiaN | Rio 2022"},"6127":{"market_hash_name":"Sticker | cadiaN (Glitter) | Rio 2022"},"6128":{"market_hash_name":"Sticker | cadiaN (Holo) | Rio 2022"},"6129":{"market_hash_name":"Sticker | cadiaN (Gold) | Rio 2022"},"613":{"market_hash_name":"Sticker | shroud (Gold) | Cologne 2015"},"6130":{"market_hash_name":"Sticker | TeSeS | Rio 2022"},"6131":{"market_hash_name":"Sticker | TeSeS (Glitter) | Rio 2022"},"6132":{"market_hash_name":"Sticker | TeSeS (Holo) | Rio 2022"},"6133":{"market_hash_name":"Sticker | TeSeS (Gold) | Rio 2022"},"6134":{"market_hash_name":"Sticker | sjuush | Rio 2022"},"6135":{"market_hash_name":"Sticker | sjuush (Glitter) | Rio 2022"},"6136":{"market_hash_name":"Sticker | sjuush (Holo) | Rio 2022"},"6137":{"market_hash_name":"Sticker | sjuush (Gold) | Rio 2022"},"6138":{"market_hash_name":"Sticker | jabbi | Rio 2022"},"6139":{"market_hash_name":"Sticker | jabbi (Glitter) | Rio 2022"},"614":{"market_hash_name":"Sticker | freakazoid | Cologne 2015"},"6140":{"market_hash_name":"Sticker | jabbi (Holo) | Rio 2022"},"6141":{"market_hash_name":"Sticker | jabbi (Gold) | Rio 2022"},"6142":{"market_hash_name":"Sticker | stavn | Rio 2022"},"6143":{"market_hash_name":"Sticker | stavn (Glitter) | Rio 2022"},"6144":{"market_hash_name":"Sticker | stavn (Holo) | Rio 2022"},"6145":{"market_hash_name":"Sticker | stavn (Gold) | Rio 2022"},"6146":{"market_hash_name":"Sticker | b1t | Rio 2022"},"6147":{"market_hash_name":"Sticker | b1t (Glitter) | Rio 2022"},"6148":{"market_hash_name":"Sticker | b1t (Holo) | Rio 2022"},"6149":{"market_hash_name":"Sticker | b1t (Gold) | Rio 2022"},"615":{"market_hash_name":"Sticker | freakazoid (Foil) | Cologne 2015"},"6150":{"market_hash_name":"Sticker | electronic | Rio 2022"},"6151":{"market_hash_name":"Sticker | electronic (Glitter) | Rio 2022"},"6152":{"market_hash_name":"Sticker | electronic (Holo) | Rio 2022"},"6153":{"market_hash_name":"Sticker | electronic (Gold) | Rio 2022"},"6154":{"market_hash_name":"Sticker | sdy | Rio 2022"},"6155":{"market_hash_name":"Sticker | sdy (Glitter) | Rio 2022"},"6156":{"market_hash_name":"Sticker | sdy (Holo) | Rio 2022"},"6157":{"market_hash_name":"Sticker | sdy (Gold) | Rio 2022"},"6158":{"market_hash_name":"Sticker | Perfecto | Rio 2022"},"6159":{"market_hash_name":"Sticker | Perfecto (Glitter) | Rio 2022"},"616":{"market_hash_name":"Sticker | freakazoid (Gold) | Cologne 2015"},"6160":{"market_hash_name":"Sticker | Perfecto (Holo) | Rio 2022"},"6161":{"market_hash_name":"Sticker | Perfecto (Gold) | Rio 2022"},"6162":{"market_hash_name":"Sticker | s1mple | Rio 2022"},"6163":{"market_hash_name":"Sticker | s1mple (Glitter) | Rio 2022"},"6164":{"market_hash_name":"Sticker | s1mple (Holo) | Rio 2022"},"6165":{"market_hash_name":"Sticker | s1mple (Gold) | Rio 2022"},"6166":{"market_hash_name":"Sticker | es3tag | Rio 2022"},"6167":{"market_hash_name":"Sticker | es3tag (Glitter) | Rio 2022"},"6168":{"market_hash_name":"Sticker | es3tag (Holo) | Rio 2022"},"6169":{"market_hash_name":"Sticker | es3tag (Gold) | Rio 2022"},"617":{"market_hash_name":"Sticker | Skadoodle | Cologne 2015"},"6170":{"market_hash_name":"Sticker | Aleksib | Rio 2022"},"6171":{"market_hash_name":"Sticker | Aleksib (Glitter) | Rio 2022"},"6172":{"market_hash_name":"Sticker | Aleksib (Holo) | Rio 2022"},"6173":{"market_hash_name":"Sticker | Aleksib (Gold) | Rio 2022"},"6174":{"market_hash_name":"Sticker | REZ | Rio 2022"},"6175":{"market_hash_name":"Sticker | REZ (Glitter) | Rio 2022"},"6176":{"market_hash_name":"Sticker | REZ (Holo) | Rio 2022"},"6177":{"market_hash_name":"Sticker | REZ (Gold) | Rio 2022"},"6178":{"market_hash_name":"Sticker | hampus | Rio 2022"},"6179":{"market_hash_name":"Sticker | hampus (Glitter) | Rio 2022"},"618":{"market_hash_name":"Sticker | Skadoodle (Foil) | Cologne 2015"},"6180":{"market_hash_name":"Sticker | hampus (Holo) | Rio 2022"},"6181":{"market_hash_name":"Sticker | hampus (Gold) | Rio 2022"},"6182":{"market_hash_name":"Sticker | Brollan | Rio 2022"},"6183":{"market_hash_name":"Sticker | Brollan (Glitter) | Rio 2022"},"6184":{"market_hash_name":"Sticker | Brollan (Holo) | Rio 2022"},"6185":{"market_hash_name":"Sticker | Brollan (Gold) | Rio 2022"},"6186":{"market_hash_name":"Sticker | slaxz- | Rio 2022"},"6187":{"market_hash_name":"Sticker | slaxz- (Glitter) | Rio 2022"},"6188":{"market_hash_name":"Sticker | slaxz- (Holo) | Rio 2022"},"6189":{"market_hash_name":"Sticker | slaxz- (Gold) | Rio 2022"},"619":{"market_hash_name":"Sticker | Skadoodle (Gold) | Cologne 2015"},"6190":{"market_hash_name":"Sticker | lauNX | Rio 2022"},"6191":{"market_hash_name":"Sticker | lauNX (Glitter) | Rio 2022"},"6192":{"market_hash_name":"Sticker | lauNX (Holo) | Rio 2022"},"6193":{"market_hash_name":"Sticker | lauNX (Gold) | Rio 2022"},"6194":{"market_hash_name":"Sticker | refrezh | Rio 2022"},"6195":{"market_hash_name":"Sticker | refrezh (Glitter) | Rio 2022"},"6196":{"market_hash_name":"Sticker | refrezh (Holo) | Rio 2022"},"6197":{"market_hash_name":"Sticker | refrezh (Gold) | Rio 2022"},"6198":{"market_hash_name":"Sticker | Staehr | Rio 2022"},"6199":{"market_hash_name":"Sticker | Staehr (Glitter) | Rio 2022"},"62":{"market_hash_name":"Sticker | Team LDLC.com (Holo) | Katowice 2014"},"620":{"market_hash_name":"Sticker | Fnatic | Cologne 2015"},"6200":{"market_hash_name":"Sticker | Staehr (Holo) | Rio 2022"},"6201":{"market_hash_name":"Sticker | Staehr (Gold) | Rio 2022"},"6202":{"market_hash_name":"Sticker | Zyphon | Rio 2022"},"6203":{"market_hash_name":"Sticker | Zyphon (Glitter) | Rio 2022"},"6204":{"market_hash_name":"Sticker | Zyphon (Holo) | Rio 2022"},"6205":{"market_hash_name":"Sticker | Zyphon (Gold) | Rio 2022"},"6206":{"market_hash_name":"Sticker | YEKINDAR | Rio 2022"},"6207":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Rio 2022"},"6208":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Rio 2022"},"6209":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Rio 2022"},"621":{"market_hash_name":"Sticker | Fnatic (Foil) | Cologne 2015"},"6210":{"market_hash_name":"Sticker | oSee | Rio 2022"},"6211":{"market_hash_name":"Sticker | oSee (Glitter) | Rio 2022"},"6212":{"market_hash_name":"Sticker | oSee (Holo) | Rio 2022"},"6213":{"market_hash_name":"Sticker | oSee (Gold) | Rio 2022"},"6214":{"market_hash_name":"Sticker | nitr0 | Rio 2022"},"6215":{"market_hash_name":"Sticker | nitr0 (Glitter) | Rio 2022"},"6216":{"market_hash_name":"Sticker | nitr0 (Holo) | Rio 2022"},"6217":{"market_hash_name":"Sticker | nitr0 (Gold) | Rio 2022"},"6218":{"market_hash_name":"Sticker | NAF | Rio 2022"},"6219":{"market_hash_name":"Sticker | NAF (Glitter) | Rio 2022"},"622":{"market_hash_name":"Sticker | Fnatic (Gold) | Cologne 2015"},"6220":{"market_hash_name":"Sticker | NAF (Holo) | Rio 2022"},"6221":{"market_hash_name":"Sticker | NAF (Gold) | Rio 2022"},"6222":{"market_hash_name":"Sticker | EliGE | Rio 2022"},"6223":{"market_hash_name":"Sticker | EliGE (Glitter) | Rio 2022"},"6224":{"market_hash_name":"Sticker | EliGE (Holo) | Rio 2022"},"6225":{"market_hash_name":"Sticker | EliGE (Gold) | Rio 2022"},"6226":{"market_hash_name":"Sticker | chopper | Rio 2022"},"6227":{"market_hash_name":"Sticker | chopper (Glitter) | Rio 2022"},"6228":{"market_hash_name":"Sticker | chopper (Holo) | Rio 2022"},"6229":{"market_hash_name":"Sticker | chopper (Gold) | Rio 2022"},"623":{"market_hash_name":"Sticker | Virtus.Pro | Cologne 2015"},"6230":{"market_hash_name":"Sticker | magixx | Rio 2022"},"6231":{"market_hash_name":"Sticker | magixx (Glitter) | Rio 2022"},"6232":{"market_hash_name":"Sticker | magixx (Holo) | Rio 2022"},"6233":{"market_hash_name":"Sticker | magixx (Gold) | Rio 2022"},"6234":{"market_hash_name":"Sticker | Patsi | Rio 2022"},"6235":{"market_hash_name":"Sticker | Patsi (Glitter) | Rio 2022"},"6236":{"market_hash_name":"Sticker | Patsi (Holo) | Rio 2022"},"6237":{"market_hash_name":"Sticker | Patsi (Gold) | Rio 2022"},"6238":{"market_hash_name":"Sticker | S1ren | Rio 2022"},"6239":{"market_hash_name":"Sticker | S1ren (Glitter) | Rio 2022"},"624":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cologne 2015"},"6240":{"market_hash_name":"Sticker | S1ren (Holo) | Rio 2022"},"6241":{"market_hash_name":"Sticker | S1ren (Gold) | Rio 2022"},"6242":{"market_hash_name":"Sticker | w0nderful | Rio 2022"},"6243":{"market_hash_name":"Sticker | w0nderful (Glitter) | Rio 2022"},"6244":{"market_hash_name":"Sticker | w0nderful (Holo) | Rio 2022"},"6245":{"market_hash_name":"Sticker | w0nderful (Gold) | Rio 2022"},"6246":{"market_hash_name":"Sticker | NQZ | Rio 2022"},"6247":{"market_hash_name":"Sticker | NQZ (Glitter) | Rio 2022"},"6248":{"market_hash_name":"Sticker | NQZ (Holo) | Rio 2022"},"6249":{"market_hash_name":"Sticker | NQZ (Gold) | Rio 2022"},"625":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Cologne 2015"},"6250":{"market_hash_name":"Sticker | dav1deuS | Rio 2022"},"6251":{"market_hash_name":"Sticker | dav1deuS (Glitter) | Rio 2022"},"6252":{"market_hash_name":"Sticker | dav1deuS (Holo) | Rio 2022"},"6253":{"market_hash_name":"Sticker | dav1deuS (Gold) | Rio 2022"},"6254":{"market_hash_name":"Sticker | max | Rio 2022"},"6255":{"market_hash_name":"Sticker | max (Glitter) | Rio 2022"},"6256":{"market_hash_name":"Sticker | max (Holo) | Rio 2022"},"6257":{"market_hash_name":"Sticker | max (Gold) | Rio 2022"},"6258":{"market_hash_name":"Sticker | dgt | Rio 2022"},"6259":{"market_hash_name":"Sticker | dgt (Glitter) | Rio 2022"},"626":{"market_hash_name":"Sticker | mousesports | Cologne 2015"},"6260":{"market_hash_name":"Sticker | dgt (Holo) | Rio 2022"},"6261":{"market_hash_name":"Sticker | dgt (Gold) | Rio 2022"},"6262":{"market_hash_name":"Sticker | BUDA | Rio 2022"},"6263":{"market_hash_name":"Sticker | BUDA (Glitter) | Rio 2022"},"6264":{"market_hash_name":"Sticker | BUDA (Holo) | Rio 2022"},"6265":{"market_hash_name":"Sticker | BUDA (Gold) | Rio 2022"},"6266":{"market_hash_name":"Sticker | gxx- | Rio 2022"},"6267":{"market_hash_name":"Sticker | gxx- (Glitter) | Rio 2022"},"6268":{"market_hash_name":"Sticker | gxx- (Holo) | Rio 2022"},"6269":{"market_hash_name":"Sticker | gxx- (Gold) | Rio 2022"},"627":{"market_hash_name":"Sticker | mousesports (Foil) | Cologne 2015"},"6270":{"market_hash_name":"Sticker | SENER1 | Rio 2022"},"6271":{"market_hash_name":"Sticker | SENER1 (Glitter) | Rio 2022"},"6272":{"market_hash_name":"Sticker | SENER1 (Holo) | Rio 2022"},"6273":{"market_hash_name":"Sticker | SENER1 (Gold) | Rio 2022"},"6274":{"market_hash_name":"Sticker | juanflatroo | Rio 2022"},"6275":{"market_hash_name":"Sticker | juanflatroo (Glitter) | Rio 2022"},"6276":{"market_hash_name":"Sticker | juanflatroo (Holo) | Rio 2022"},"6277":{"market_hash_name":"Sticker | juanflatroo (Gold) | Rio 2022"},"6278":{"market_hash_name":"Sticker | rigoN | Rio 2022"},"6279":{"market_hash_name":"Sticker | rigoN (Glitter) | Rio 2022"},"628":{"market_hash_name":"Sticker | mousesports (Gold) | Cologne 2015"},"6280":{"market_hash_name":"Sticker | rigoN (Holo) | Rio 2022"},"6281":{"market_hash_name":"Sticker | rigoN (Gold) | Rio 2022"},"6282":{"market_hash_name":"Sticker | sinnopsyy | Rio 2022"},"6283":{"market_hash_name":"Sticker | sinnopsyy (Glitter) | Rio 2022"},"6284":{"market_hash_name":"Sticker | sinnopsyy (Holo) | Rio 2022"},"6285":{"market_hash_name":"Sticker | sinnopsyy (Gold) | Rio 2022"},"6286":{"market_hash_name":"Sticker | faveN | Rio 2022"},"6287":{"market_hash_name":"Sticker | faveN (Glitter) | Rio 2022"},"6288":{"market_hash_name":"Sticker | faveN (Holo) | Rio 2022"},"6289":{"market_hash_name":"Sticker | faveN (Gold) | Rio 2022"},"629":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2015"},"6290":{"market_hash_name":"Sticker | Krimbo | Rio 2022"},"6291":{"market_hash_name":"Sticker | Krimbo (Glitter) | Rio 2022"},"6292":{"market_hash_name":"Sticker | Krimbo (Holo) | Rio 2022"},"6293":{"market_hash_name":"Sticker | Krimbo (Gold) | Rio 2022"},"6294":{"market_hash_name":"Sticker | k1to | Rio 2022"},"6295":{"market_hash_name":"Sticker | k1to (Glitter) | Rio 2022"},"6296":{"market_hash_name":"Sticker | k1to (Holo) | Rio 2022"},"6297":{"market_hash_name":"Sticker | k1to (Gold) | Rio 2022"},"6298":{"market_hash_name":"Sticker | tabseN | Rio 2022"},"6299":{"market_hash_name":"Sticker | tabseN (Glitter) | Rio 2022"},"63":{"market_hash_name":"Sticker | LGB eSports | Katowice 2014"},"630":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2015"},"6300":{"market_hash_name":"Sticker | tabseN (Holo) | Rio 2022"},"6301":{"market_hash_name":"Sticker | tabseN (Gold) | Rio 2022"},"6302":{"market_hash_name":"Sticker | syrsoN | Rio 2022"},"6303":{"market_hash_name":"Sticker | syrsoN (Glitter) | Rio 2022"},"6304":{"market_hash_name":"Sticker | syrsoN (Holo) | Rio 2022"},"6305":{"market_hash_name":"Sticker | syrsoN (Gold) | Rio 2022"},"6306":{"market_hash_name":"Sticker | sh1ro | Rio 2022"},"6307":{"market_hash_name":"Sticker | sh1ro (Glitter) | Rio 2022"},"6308":{"market_hash_name":"Sticker | sh1ro (Holo) | Rio 2022"},"6309":{"market_hash_name":"Sticker | sh1ro (Gold) | Rio 2022"},"631":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cologne 2015"},"6310":{"market_hash_name":"Sticker | nafany | Rio 2022"},"6311":{"market_hash_name":"Sticker | nafany (Glitter) | Rio 2022"},"6312":{"market_hash_name":"Sticker | nafany (Holo) | Rio 2022"},"6313":{"market_hash_name":"Sticker | nafany (Gold) | Rio 2022"},"6314":{"market_hash_name":"Sticker | Ax1Le | Rio 2022"},"6315":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Rio 2022"},"6316":{"market_hash_name":"Sticker | Ax1Le (Holo) | Rio 2022"},"6317":{"market_hash_name":"Sticker | Ax1Le (Gold) | Rio 2022"},"6318":{"market_hash_name":"Sticker | interz | Rio 2022"},"6319":{"market_hash_name":"Sticker | interz (Glitter) | Rio 2022"},"632":{"market_hash_name":"Sticker | Renegades | Cologne 2015"},"6320":{"market_hash_name":"Sticker | interz (Holo) | Rio 2022"},"6321":{"market_hash_name":"Sticker | interz (Gold) | Rio 2022"},"6322":{"market_hash_name":"Sticker | Hobbit | Rio 2022"},"6323":{"market_hash_name":"Sticker | Hobbit (Glitter) | Rio 2022"},"6324":{"market_hash_name":"Sticker | Hobbit (Holo) | Rio 2022"},"6325":{"market_hash_name":"Sticker | Hobbit (Gold) | Rio 2022"},"6326":{"market_hash_name":"Sticker | autimatic | Rio 2022"},"6327":{"market_hash_name":"Sticker | autimatic (Glitter) | Rio 2022"},"6328":{"market_hash_name":"Sticker | autimatic (Holo) | Rio 2022"},"6329":{"market_hash_name":"Sticker | autimatic (Gold) | Rio 2022"},"633":{"market_hash_name":"Sticker | Renegades (Foil) | Cologne 2015"},"6330":{"market_hash_name":"Sticker | neaLaN | Rio 2022"},"6331":{"market_hash_name":"Sticker | neaLaN (Glitter) | Rio 2022"},"6332":{"market_hash_name":"Sticker | neaLaN (Holo) | Rio 2022"},"6333":{"market_hash_name":"Sticker | neaLaN (Gold) | Rio 2022"},"6334":{"market_hash_name":"Sticker | Brehze | Rio 2022"},"6335":{"market_hash_name":"Sticker | Brehze (Glitter) | Rio 2022"},"6336":{"market_hash_name":"Sticker | Brehze (Holo) | Rio 2022"},"6337":{"market_hash_name":"Sticker | Brehze (Gold) | Rio 2022"},"6338":{"market_hash_name":"Sticker | HexT | Rio 2022"},"6339":{"market_hash_name":"Sticker | HexT (Glitter) | Rio 2022"},"634":{"market_hash_name":"Sticker | Renegades (Gold) | Cologne 2015"},"6340":{"market_hash_name":"Sticker | HexT (Holo) | Rio 2022"},"6341":{"market_hash_name":"Sticker | HexT (Gold) | Rio 2022"},"6342":{"market_hash_name":"Sticker | CeRq | Rio 2022"},"6343":{"market_hash_name":"Sticker | CeRq (Glitter) | Rio 2022"},"6344":{"market_hash_name":"Sticker | CeRq (Holo) | Rio 2022"},"6345":{"market_hash_name":"Sticker | CeRq (Gold) | Rio 2022"},"6346":{"market_hash_name":"Sticker | frozen | Rio 2022"},"6347":{"market_hash_name":"Sticker | frozen (Glitter) | Rio 2022"},"6348":{"market_hash_name":"Sticker | frozen (Holo) | Rio 2022"},"6349":{"market_hash_name":"Sticker | frozen (Gold) | Rio 2022"},"635":{"market_hash_name":"Sticker | Team Kinguin | Cologne 2015"},"6350":{"market_hash_name":"Sticker | dexter | Rio 2022"},"6351":{"market_hash_name":"Sticker | dexter (Glitter) | Rio 2022"},"6352":{"market_hash_name":"Sticker | dexter (Holo) | Rio 2022"},"6353":{"market_hash_name":"Sticker | dexter (Gold) | Rio 2022"},"6354":{"market_hash_name":"Sticker | JDC | Rio 2022"},"6355":{"market_hash_name":"Sticker | JDC (Glitter) | Rio 2022"},"6356":{"market_hash_name":"Sticker | JDC (Holo) | Rio 2022"},"6357":{"market_hash_name":"Sticker | JDC (Gold) | Rio 2022"},"6358":{"market_hash_name":"Sticker | torzsi | Rio 2022"},"6359":{"market_hash_name":"Sticker | torzsi (Glitter) | Rio 2022"},"636":{"market_hash_name":"Sticker | Team Kinguin (Foil) | Cologne 2015"},"6360":{"market_hash_name":"Sticker | torzsi (Holo) | Rio 2022"},"6361":{"market_hash_name":"Sticker | torzsi (Gold) | Rio 2022"},"6362":{"market_hash_name":"Sticker | xertioN | Rio 2022"},"6363":{"market_hash_name":"Sticker | xertioN (Glitter) | Rio 2022"},"6364":{"market_hash_name":"Sticker | xertioN (Holo) | Rio 2022"},"6365":{"market_hash_name":"Sticker | xertioN (Gold) | Rio 2022"},"6366":{"market_hash_name":"Sticker | nexa | Rio 2022"},"6367":{"market_hash_name":"Sticker | nexa (Glitter) | Rio 2022"},"6368":{"market_hash_name":"Sticker | nexa (Holo) | Rio 2022"},"6369":{"market_hash_name":"Sticker | nexa (Gold) | Rio 2022"},"637":{"market_hash_name":"Sticker | Team Kinguin (Gold) | Cologne 2015"},"6370":{"market_hash_name":"Sticker | NEOFRAG | Rio 2022"},"6371":{"market_hash_name":"Sticker | NEOFRAG (Glitter) | Rio 2022"},"6372":{"market_hash_name":"Sticker | NEOFRAG (Holo) | Rio 2022"},"6373":{"market_hash_name":"Sticker | NEOFRAG (Gold) | Rio 2022"},"6374":{"market_hash_name":"Sticker | FlameZ | Rio 2022"},"6375":{"market_hash_name":"Sticker | FlameZ (Glitter) | Rio 2022"},"6376":{"market_hash_name":"Sticker | FlameZ (Holo) | Rio 2022"},"6377":{"market_hash_name":"Sticker | FlameZ (Gold) | Rio 2022"},"6378":{"market_hash_name":"Sticker | degster | Rio 2022"},"6379":{"market_hash_name":"Sticker | degster (Glitter) | Rio 2022"},"638":{"market_hash_name":"Sticker | Team eBettle | Cologne 2015"},"6380":{"market_hash_name":"Sticker | degster (Holo) | Rio 2022"},"6381":{"market_hash_name":"Sticker | degster (Gold) | Rio 2022"},"6382":{"market_hash_name":"Sticker | F1KU | Rio 2022"},"6383":{"market_hash_name":"Sticker | F1KU (Glitter) | Rio 2022"},"6384":{"market_hash_name":"Sticker | F1KU (Holo) | Rio 2022"},"6385":{"market_hash_name":"Sticker | F1KU (Gold) | Rio 2022"},"6386":{"market_hash_name":"Sticker | dupreeh | Rio 2022"},"6387":{"market_hash_name":"Sticker | dupreeh (Glitter) | Rio 2022"},"6388":{"market_hash_name":"Sticker | dupreeh (Holo) | Rio 2022"},"6389":{"market_hash_name":"Sticker | dupreeh (Gold) | Rio 2022"},"639":{"market_hash_name":"Sticker | Team eBettle (Foil) | Cologne 2015"},"6390":{"market_hash_name":"Sticker | Magisk | Rio 2022"},"6391":{"market_hash_name":"Sticker | Magisk (Glitter) | Rio 2022"},"6392":{"market_hash_name":"Sticker | Magisk (Holo) | Rio 2022"},"6393":{"market_hash_name":"Sticker | Magisk (Gold) | Rio 2022"},"6394":{"market_hash_name":"Sticker | apEX | Rio 2022"},"6395":{"market_hash_name":"Sticker | apEX (Glitter) | Rio 2022"},"6396":{"market_hash_name":"Sticker | apEX (Holo) | Rio 2022"},"6397":{"market_hash_name":"Sticker | apEX (Gold) | Rio 2022"},"6398":{"market_hash_name":"Sticker | Spinx | Rio 2022"},"6399":{"market_hash_name":"Sticker | Spinx (Glitter) | Rio 2022"},"64":{"market_hash_name":"Sticker | LGB eSports (Holo) | Katowice 2014"},"640":{"market_hash_name":"Sticker | Team eBettle (Gold) | Cologne 2015"},"6400":{"market_hash_name":"Sticker | Spinx (Holo) | Rio 2022"},"6401":{"market_hash_name":"Sticker | Spinx (Gold) | Rio 2022"},"6402":{"market_hash_name":"Sticker | ZywOo | Rio 2022"},"6403":{"market_hash_name":"Sticker | ZywOo (Glitter) | Rio 2022"},"6404":{"market_hash_name":"Sticker | ZywOo (Holo) | Rio 2022"},"6405":{"market_hash_name":"Sticker | ZywOo (Gold) | Rio 2022"},"6406":{"market_hash_name":"Sticker | TACO | Rio 2022"},"6407":{"market_hash_name":"Sticker | TACO (Glitter) | Rio 2022"},"6408":{"market_hash_name":"Sticker | TACO (Holo) | Rio 2022"},"6409":{"market_hash_name":"Sticker | TACO (Gold) | Rio 2022"},"641":{"market_hash_name":"Sticker | Cloud9 G2A | Cologne 2015"},"6410":{"market_hash_name":"Sticker | coldzera | Rio 2022"},"6411":{"market_hash_name":"Sticker | coldzera (Glitter) | Rio 2022"},"6412":{"market_hash_name":"Sticker | coldzera (Holo) | Rio 2022"},"6413":{"market_hash_name":"Sticker | coldzera (Gold) | Rio 2022"},"6414":{"market_hash_name":"Sticker | TRY | Rio 2022"},"6415":{"market_hash_name":"Sticker | TRY (Glitter) | Rio 2022"},"6416":{"market_hash_name":"Sticker | TRY (Holo) | Rio 2022"},"6417":{"market_hash_name":"Sticker | TRY (Gold) | Rio 2022"},"6418":{"market_hash_name":"Sticker | latto | Rio 2022"},"6419":{"market_hash_name":"Sticker | latto (Glitter) | Rio 2022"},"642":{"market_hash_name":"Sticker | Cloud9 G2A (Foil) | Cologne 2015"},"6420":{"market_hash_name":"Sticker | latto (Holo) | Rio 2022"},"6421":{"market_hash_name":"Sticker | latto (Gold) | Rio 2022"},"6422":{"market_hash_name":"Sticker | dumau | Rio 2022"},"6423":{"market_hash_name":"Sticker | dumau (Glitter) | Rio 2022"},"6424":{"market_hash_name":"Sticker | dumau (Holo) | Rio 2022"},"6425":{"market_hash_name":"Sticker | dumau (Gold) | Rio 2022"},"6426":{"market_hash_name":"Sticker | KRIMZ | Rio 2022"},"6427":{"market_hash_name":"Sticker | KRIMZ (Glitter) | Rio 2022"},"6428":{"market_hash_name":"Sticker | KRIMZ (Holo) | Rio 2022"},"6429":{"market_hash_name":"Sticker | KRIMZ (Gold) | Rio 2022"},"643":{"market_hash_name":"Sticker | Cloud9 G2A (Gold) | Cologne 2015"},"6430":{"market_hash_name":"Sticker | mezii | Rio 2022"},"6431":{"market_hash_name":"Sticker | mezii (Glitter) | Rio 2022"},"6432":{"market_hash_name":"Sticker | mezii (Holo) | Rio 2022"},"6433":{"market_hash_name":"Sticker | mezii (Gold) | Rio 2022"},"6434":{"market_hash_name":"Sticker | FASHR | Rio 2022"},"6435":{"market_hash_name":"Sticker | FASHR (Glitter) | Rio 2022"},"6436":{"market_hash_name":"Sticker | FASHR (Holo) | Rio 2022"},"6437":{"market_hash_name":"Sticker | FASHR (Gold) | Rio 2022"},"6438":{"market_hash_name":"Sticker | roeJ | Rio 2022"},"6439":{"market_hash_name":"Sticker | roeJ (Glitter) | Rio 2022"},"644":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cologne 2015"},"6440":{"market_hash_name":"Sticker | roeJ (Holo) | Rio 2022"},"6441":{"market_hash_name":"Sticker | roeJ (Gold) | Rio 2022"},"6442":{"market_hash_name":"Sticker | nicoodoz | Rio 2022"},"6443":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Rio 2022"},"6444":{"market_hash_name":"Sticker | nicoodoz (Holo) | Rio 2022"},"6445":{"market_hash_name":"Sticker | nicoodoz (Gold) | Rio 2022"},"6446":{"market_hash_name":"Sticker | KSCERATO | Rio 2022"},"6447":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Rio 2022"},"6448":{"market_hash_name":"Sticker | KSCERATO (Holo) | Rio 2022"},"6449":{"market_hash_name":"Sticker | KSCERATO (Gold) | Rio 2022"},"645":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cologne 2015"},"6450":{"market_hash_name":"Sticker | yuurih | Rio 2022"},"6451":{"market_hash_name":"Sticker | yuurih (Glitter) | Rio 2022"},"6452":{"market_hash_name":"Sticker | yuurih (Holo) | Rio 2022"},"6453":{"market_hash_name":"Sticker | yuurih (Gold) | Rio 2022"},"6454":{"market_hash_name":"Sticker | drop | Rio 2022"},"6455":{"market_hash_name":"Sticker | drop (Glitter) | Rio 2022"},"6456":{"market_hash_name":"Sticker | drop (Holo) | Rio 2022"},"6457":{"market_hash_name":"Sticker | drop (Gold) | Rio 2022"},"6458":{"market_hash_name":"Sticker | saffee | Rio 2022"},"6459":{"market_hash_name":"Sticker | saffee (Glitter) | Rio 2022"},"646":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Cologne 2015"},"6460":{"market_hash_name":"Sticker | saffee (Holo) | Rio 2022"},"6461":{"market_hash_name":"Sticker | saffee (Gold) | Rio 2022"},"6462":{"market_hash_name":"Sticker | arT | Rio 2022"},"6463":{"market_hash_name":"Sticker | arT (Glitter) | Rio 2022"},"6464":{"market_hash_name":"Sticker | arT (Holo) | Rio 2022"},"6465":{"market_hash_name":"Sticker | arT (Gold) | Rio 2022"},"6466":{"market_hash_name":"Sticker | acoR | Rio 2022"},"6467":{"market_hash_name":"Sticker | acoR (Glitter) | Rio 2022"},"6468":{"market_hash_name":"Sticker | acoR (Holo) | Rio 2022"},"6469":{"market_hash_name":"Sticker | acoR (Gold) | Rio 2022"},"647":{"market_hash_name":"Sticker | Team EnVyUs | Cologne 2015"},"6470":{"market_hash_name":"Sticker | iM | Rio 2022"},"6471":{"market_hash_name":"Sticker | iM (Glitter) | Rio 2022"},"6472":{"market_hash_name":"Sticker | iM (Holo) | Rio 2022"},"6473":{"market_hash_name":"Sticker | iM (Gold) | Rio 2022"},"6474":{"market_hash_name":"Sticker | siuhy | Rio 2022"},"6475":{"market_hash_name":"Sticker | siuhy (Glitter) | Rio 2022"},"6476":{"market_hash_name":"Sticker | siuhy (Holo) | Rio 2022"},"6477":{"market_hash_name":"Sticker | siuhy (Gold) | Rio 2022"},"6478":{"market_hash_name":"Sticker | Keoz | Rio 2022"},"6479":{"market_hash_name":"Sticker | Keoz (Glitter) | Rio 2022"},"648":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Cologne 2015"},"6480":{"market_hash_name":"Sticker | Keoz (Holo) | Rio 2022"},"6481":{"market_hash_name":"Sticker | Keoz (Gold) | Rio 2022"},"6482":{"market_hash_name":"Sticker | isak | Rio 2022"},"6483":{"market_hash_name":"Sticker | isak (Glitter) | Rio 2022"},"6484":{"market_hash_name":"Sticker | isak (Holo) | Rio 2022"},"6485":{"market_hash_name":"Sticker | isak (Gold) | Rio 2022"},"6486":{"market_hash_name":"Sticker | INS | Rio 2022"},"6487":{"market_hash_name":"Sticker | INS (Glitter) | Rio 2022"},"6488":{"market_hash_name":"Sticker | INS (Holo) | Rio 2022"},"6489":{"market_hash_name":"Sticker | INS (Gold) | Rio 2022"},"649":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Cologne 2015"},"6490":{"market_hash_name":"Sticker | vexite | Rio 2022"},"6491":{"market_hash_name":"Sticker | vexite (Glitter) | Rio 2022"},"6492":{"market_hash_name":"Sticker | vexite (Holo) | Rio 2022"},"6493":{"market_hash_name":"Sticker | vexite (Gold) | Rio 2022"},"6494":{"market_hash_name":"Sticker | Sico | Rio 2022"},"6495":{"market_hash_name":"Sticker | Sico (Glitter) | Rio 2022"},"6496":{"market_hash_name":"Sticker | Sico (Holo) | Rio 2022"},"6497":{"market_hash_name":"Sticker | Sico (Gold) | Rio 2022"},"6498":{"market_hash_name":"Sticker | Liazz | Rio 2022"},"6499":{"market_hash_name":"Sticker | Liazz (Glitter) | Rio 2022"},"65":{"market_hash_name":"Sticker | mousesports | Katowice 2014"},"650":{"market_hash_name":"Sticker | Luminosity Gaming | Cologne 2015"},"6500":{"market_hash_name":"Sticker | Liazz (Holo) | Rio 2022"},"6501":{"market_hash_name":"Sticker | Liazz (Gold) | Rio 2022"},"6502":{"market_hash_name":"Sticker | aliStair | Rio 2022"},"6503":{"market_hash_name":"Sticker | aliStair (Glitter) | Rio 2022"},"6504":{"market_hash_name":"Sticker | aliStair (Holo) | Rio 2022"},"6505":{"market_hash_name":"Sticker | aliStair (Gold) | Rio 2022"},"6506":{"market_hash_name":"Sticker | sk0R | Rio 2022"},"6507":{"market_hash_name":"Sticker | sk0R (Glitter) | Rio 2022"},"6508":{"market_hash_name":"Sticker | sk0R (Holo) | Rio 2022"},"6509":{"market_hash_name":"Sticker | sk0R (Gold) | Rio 2022"},"651":{"market_hash_name":"Sticker | Luminosity Gaming (Foil) | Cologne 2015"},"6510":{"market_hash_name":"Sticker | Techno4K | Rio 2022"},"6511":{"market_hash_name":"Sticker | Techno4K (Glitter) | Rio 2022"},"6512":{"market_hash_name":"Sticker | Techno4K (Holo) | Rio 2022"},"6513":{"market_hash_name":"Sticker | Techno4K (Gold) | Rio 2022"},"6514":{"market_hash_name":"Sticker | kabal | Rio 2022"},"6515":{"market_hash_name":"Sticker | kabal (Glitter) | Rio 2022"},"6516":{"market_hash_name":"Sticker | kabal (Holo) | Rio 2022"},"6517":{"market_hash_name":"Sticker | kabal (Gold) | Rio 2022"},"6518":{"market_hash_name":"Sticker | bLitz | Rio 2022"},"6519":{"market_hash_name":"Sticker | bLitz (Glitter) | Rio 2022"},"652":{"market_hash_name":"Sticker | Luminosity Gaming (Gold) | Cologne 2015"},"6520":{"market_hash_name":"Sticker | bLitz (Holo) | Rio 2022"},"6521":{"market_hash_name":"Sticker | bLitz (Gold) | Rio 2022"},"6522":{"market_hash_name":"Sticker | ANNIHILATION | Rio 2022"},"6523":{"market_hash_name":"Sticker | ANNIHILATION (Glitter) | Rio 2022"},"6524":{"market_hash_name":"Sticker | ANNIHILATION (Holo) | Rio 2022"},"6525":{"market_hash_name":"Sticker | ANNIHILATION (Gold) | Rio 2022"},"6526":{"market_hash_name":"Sticker | FalleN | Rio 2022"},"6527":{"market_hash_name":"Sticker | FalleN (Glitter) | Rio 2022"},"6528":{"market_hash_name":"Sticker | FalleN (Holo) | Rio 2022"},"6529":{"market_hash_name":"Sticker | FalleN (Gold) | Rio 2022"},"653":{"market_hash_name":"Sticker | Team SoloMid | Cologne 2015"},"6530":{"market_hash_name":"Sticker | fer | Rio 2022"},"6531":{"market_hash_name":"Sticker | fer (Glitter) | Rio 2022"},"6532":{"market_hash_name":"Sticker | fer (Holo) | Rio 2022"},"6533":{"market_hash_name":"Sticker | fer (Gold) | Rio 2022"},"6534":{"market_hash_name":"Sticker | boltz | Rio 2022"},"6535":{"market_hash_name":"Sticker | boltz (Glitter) | Rio 2022"},"6536":{"market_hash_name":"Sticker | boltz (Holo) | Rio 2022"},"6537":{"market_hash_name":"Sticker | boltz (Gold) | Rio 2022"},"6538":{"market_hash_name":"Sticker | VINI | Rio 2022"},"6539":{"market_hash_name":"Sticker | VINI (Glitter) | Rio 2022"},"654":{"market_hash_name":"Sticker | Team SoloMid (Foil) | Cologne 2015"},"6540":{"market_hash_name":"Sticker | VINI (Holo) | Rio 2022"},"6541":{"market_hash_name":"Sticker | VINI (Gold) | Rio 2022"},"6542":{"market_hash_name":"Sticker | chelo | Rio 2022"},"6543":{"market_hash_name":"Sticker | chelo (Glitter) | Rio 2022"},"6544":{"market_hash_name":"Sticker | chelo (Holo) | Rio 2022"},"6545":{"market_hash_name":"Sticker | chelo (Gold) | Rio 2022"},"6546":{"market_hash_name":"Sticker | FL1T | Rio 2022"},"6547":{"market_hash_name":"Sticker | FL1T (Glitter) | Rio 2022"},"6548":{"market_hash_name":"Sticker | FL1T (Holo) | Rio 2022"},"6549":{"market_hash_name":"Sticker | FL1T (Gold) | Rio 2022"},"655":{"market_hash_name":"Sticker | Team SoloMid (Gold) | Cologne 2015"},"6550":{"market_hash_name":"Sticker | n0rb3r7 | Rio 2022"},"6551":{"market_hash_name":"Sticker | n0rb3r7 (Glitter) | Rio 2022"},"6552":{"market_hash_name":"Sticker | n0rb3r7 (Holo) | Rio 2022"},"6553":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Rio 2022"},"6554":{"market_hash_name":"Sticker | Jame | Rio 2022"},"6555":{"market_hash_name":"Sticker | Jame (Glitter) | Rio 2022"},"6556":{"market_hash_name":"Sticker | Jame (Holo) | Rio 2022"},"6557":{"market_hash_name":"Sticker | Jame (Gold) | Rio 2022"},"6558":{"market_hash_name":"Sticker | qikert | Rio 2022"},"6559":{"market_hash_name":"Sticker | qikert (Glitter) | Rio 2022"},"656":{"market_hash_name":"Sticker | Team Immunity | Cologne 2015"},"6560":{"market_hash_name":"Sticker | qikert (Holo) | Rio 2022"},"6561":{"market_hash_name":"Sticker | qikert (Gold) | Rio 2022"},"6562":{"market_hash_name":"Sticker | fame | Rio 2022"},"6563":{"market_hash_name":"Sticker | fame (Glitter) | Rio 2022"},"6564":{"market_hash_name":"Sticker | fame (Holo) | Rio 2022"},"6565":{"market_hash_name":"Sticker | fame (Gold) | Rio 2022"},"6566":{"market_hash_name":"Sticker | FL1T (Champion) | Rio 2022"},"6567":{"market_hash_name":"Sticker | FL1T (Glitter, Champion) | Rio 2022"},"6568":{"market_hash_name":"Sticker | FL1T (Holo, Champion) | Rio 2022"},"6569":{"market_hash_name":"Sticker | FL1T (Gold, Champion) | Rio 2022"},"657":{"market_hash_name":"Sticker | Team Immunity (Foil) | Cologne 2015"},"6570":{"market_hash_name":"Sticker | n0rb3r7 (Champion) | Rio 2022"},"6571":{"market_hash_name":"Sticker | n0rb3r7 (Glitter, Champion) | Rio 2022"},"6572":{"market_hash_name":"Sticker | n0rb3r7 (Holo, Champion) | Rio 2022"},"6573":{"market_hash_name":"Sticker | n0rb3r7 (Gold, Champion) | Rio 2022"},"6574":{"market_hash_name":"Sticker | Jame (Champion) | Rio 2022"},"6575":{"market_hash_name":"Sticker | Jame (Glitter, Champion) | Rio 2022"},"6576":{"market_hash_name":"Sticker | Jame (Holo, Champion) | Rio 2022"},"6577":{"market_hash_name":"Sticker | Jame (Gold, Champion) | Rio 2022"},"6578":{"market_hash_name":"Sticker | qikert (Champion) | Rio 2022"},"6579":{"market_hash_name":"Sticker | qikert (Glitter, Champion) | Rio 2022"},"658":{"market_hash_name":"Sticker | Team Immunity (Gold) | Cologne 2015"},"6580":{"market_hash_name":"Sticker | qikert (Holo, Champion) | Rio 2022"},"6581":{"market_hash_name":"Sticker | qikert (Gold, Champion) | Rio 2022"},"6582":{"market_hash_name":"Sticker | fame (Champion) | Rio 2022"},"6583":{"market_hash_name":"Sticker | fame (Glitter, Champion) | Rio 2022"},"6584":{"market_hash_name":"Sticker | fame (Holo, Champion) | Rio 2022"},"6585":{"market_hash_name":"Sticker | fame (Gold, Champion) | Rio 2022"},"6586":{"market_hash_name":"Sticker | 360 No Scope"},"6587":{"market_hash_name":"Sticker | Aim And Fire"},"6588":{"market_hash_name":"Sticker | Batter Up"},"6589":{"market_hash_name":"Sticker | Sting Like A Butterfly"},"659":{"market_hash_name":"Sticker | Flipsid3 Tactics | Cologne 2015"},"6590":{"market_hash_name":"Sticker | Fireball"},"6591":{"market_hash_name":"Sticker | Explosive Strength"},"6592":{"market_hash_name":"Sticker | Not A Bot"},"6593":{"market_hash_name":"Sticker | Knife's Edge"},"6594":{"market_hash_name":"Sticker | Run T, Run"},"6595":{"market_hash_name":"Sticker | Spectators"},"6596":{"market_hash_name":"Sticker | Zap Cat"},"6597":{"market_hash_name":"Sticker | Well Played"},"6598":{"market_hash_name":"Sticker | Cyber Chicken (Holo)"},"6599":{"market_hash_name":"Sticker | Mind Games (Holo)"},"66":{"market_hash_name":"Sticker | mousesports (Holo) | Katowice 2014"},"660":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Cologne 2015"},"6600":{"market_hash_name":"Sticker | Infinite Triangle (Holo)"},"6601":{"market_hash_name":"Sticker | Salty (Holo)"},"6602":{"market_hash_name":"Sticker | Snowfall (Glitter)"},"6603":{"market_hash_name":"Sticker | Street Artist (Glitter)"},"6604":{"market_hash_name":"Sticker | Hidden Hero (Foil)"},"6605":{"market_hash_name":"Sticker | Ethereal Gaze (Foil)"},"6606":{"market_hash_name":"Sticker | Peek Me (Foil)"},"6607":{"market_hash_name":"Sticker | Anubis (Gold)"},"6608":{"market_hash_name":"Sticker | Fnatic | Paris 2023"},"6609":{"market_hash_name":"Sticker | Fnatic (Glitter) | Paris 2023"},"661":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Cologne 2015"},"6610":{"market_hash_name":"Sticker | Fnatic (Holo) | Paris 2023"},"6611":{"market_hash_name":"Sticker | Fnatic (Gold) | Paris 2023"},"6612":{"market_hash_name":"Sticker | Natus Vincere | Paris 2023"},"6613":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Paris 2023"},"6614":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Paris 2023"},"6615":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Paris 2023"},"6616":{"market_hash_name":"Sticker | FURIA | Paris 2023"},"6617":{"market_hash_name":"Sticker | FURIA (Glitter) | Paris 2023"},"6618":{"market_hash_name":"Sticker | FURIA (Holo) | Paris 2023"},"6619":{"market_hash_name":"Sticker | FURIA (Gold) | Paris 2023"},"662":{"market_hash_name":"Sticker | Titan | Cologne 2015"},"6620":{"market_hash_name":"Sticker | Vitality | Paris 2023"},"6621":{"market_hash_name":"Sticker | Vitality (Glitter) | Paris 2023"},"6622":{"market_hash_name":"Sticker | Vitality (Holo) | Paris 2023"},"6623":{"market_hash_name":"Sticker | Vitality (Gold) | Paris 2023"},"6624":{"market_hash_name":"Sticker | Heroic | Paris 2023"},"6625":{"market_hash_name":"Sticker | Heroic (Glitter) | Paris 2023"},"6626":{"market_hash_name":"Sticker | Heroic (Holo) | Paris 2023"},"6627":{"market_hash_name":"Sticker | Heroic (Gold) | Paris 2023"},"6628":{"market_hash_name":"Sticker | Bad News Eagles | Paris 2023"},"6629":{"market_hash_name":"Sticker | Bad News Eagles (Glitter) | Paris 2023"},"663":{"market_hash_name":"Sticker | Titan (Foil) | Cologne 2015"},"6630":{"market_hash_name":"Sticker | Bad News Eagles (Holo) | Paris 2023"},"6631":{"market_hash_name":"Sticker | Bad News Eagles (Gold) | Paris 2023"},"6632":{"market_hash_name":"Sticker | Into The Breach | Paris 2023"},"6633":{"market_hash_name":"Sticker | Into The Breach (Glitter) | Paris 2023"},"6634":{"market_hash_name":"Sticker | Into The Breach (Holo) | Paris 2023"},"6635":{"market_hash_name":"Sticker | Into The Breach (Gold) | Paris 2023"},"6636":{"market_hash_name":"Sticker | 9INE | Paris 2023"},"6637":{"market_hash_name":"Sticker | 9INE (Glitter) | Paris 2023"},"6638":{"market_hash_name":"Sticker | 9INE (Holo) | Paris 2023"},"6639":{"market_hash_name":"Sticker | 9INE (Gold) | Paris 2023"},"664":{"market_hash_name":"Sticker | Titan (Gold) | Cologne 2015"},"6640":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Paris 2023"},"6641":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Glitter) | Paris 2023"},"6642":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Paris 2023"},"6643":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Paris 2023"},"6644":{"market_hash_name":"Sticker | G2 Esports | Paris 2023"},"6645":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Paris 2023"},"6646":{"market_hash_name":"Sticker | G2 Esports (Holo) | Paris 2023"},"6647":{"market_hash_name":"Sticker | G2 Esports (Gold) | Paris 2023"},"6648":{"market_hash_name":"Sticker | forZe eSports | Paris 2023"},"6649":{"market_hash_name":"Sticker | forZe eSports (Glitter) | Paris 2023"},"665":{"market_hash_name":"Sticker | Counter Logic Gaming | Cologne 2015"},"6650":{"market_hash_name":"Sticker | forZe eSports (Holo) | Paris 2023"},"6651":{"market_hash_name":"Sticker | forZe eSports (Gold) | Paris 2023"},"6652":{"market_hash_name":"Sticker | OG | Paris 2023"},"6653":{"market_hash_name":"Sticker | OG (Glitter) | Paris 2023"},"6654":{"market_hash_name":"Sticker | OG (Holo) | Paris 2023"},"6655":{"market_hash_name":"Sticker | OG (Gold) | Paris 2023"},"6656":{"market_hash_name":"Sticker | paiN Gaming | Paris 2023"},"6657":{"market_hash_name":"Sticker | paiN Gaming (Glitter) | Paris 2023"},"6658":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Paris 2023"},"6659":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Paris 2023"},"666":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Cologne 2015"},"6660":{"market_hash_name":"Sticker | GamerLegion | Paris 2023"},"6661":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Paris 2023"},"6662":{"market_hash_name":"Sticker | GamerLegion (Holo) | Paris 2023"},"6663":{"market_hash_name":"Sticker | GamerLegion (Gold) | Paris 2023"},"6664":{"market_hash_name":"Sticker | Apeks | Paris 2023"},"6665":{"market_hash_name":"Sticker | Apeks (Glitter) | Paris 2023"},"6666":{"market_hash_name":"Sticker | Apeks (Holo) | Paris 2023"},"6667":{"market_hash_name":"Sticker | Apeks (Gold) | Paris 2023"},"6668":{"market_hash_name":"Sticker | Monte | Paris 2023"},"6669":{"market_hash_name":"Sticker | Monte (Glitter) | Paris 2023"},"667":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Cologne 2015"},"6670":{"market_hash_name":"Sticker | Monte (Holo) | Paris 2023"},"6671":{"market_hash_name":"Sticker | Monte (Gold) | Paris 2023"},"6672":{"market_hash_name":"Sticker | Team Liquid | Paris 2023"},"6673":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Paris 2023"},"6674":{"market_hash_name":"Sticker | Team Liquid (Holo) | Paris 2023"},"6675":{"market_hash_name":"Sticker | Team Liquid (Gold) | Paris 2023"},"6676":{"market_hash_name":"Sticker | FaZe Clan | Paris 2023"},"6677":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Paris 2023"},"6678":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Paris 2023"},"6679":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Paris 2023"},"668":{"market_hash_name":"Sticker | ESL | Cologne 2015"},"6680":{"market_hash_name":"Sticker | ENCE | Paris 2023"},"6681":{"market_hash_name":"Sticker | ENCE (Glitter) | Paris 2023"},"6682":{"market_hash_name":"Sticker | ENCE (Holo) | Paris 2023"},"6683":{"market_hash_name":"Sticker | ENCE (Gold) | Paris 2023"},"6684":{"market_hash_name":"Sticker | Grayhound Gaming | Paris 2023"},"6685":{"market_hash_name":"Sticker | Grayhound Gaming (Glitter) | Paris 2023"},"6686":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Paris 2023"},"6687":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Paris 2023"},"6688":{"market_hash_name":"Sticker | MOUZ | Paris 2023"},"6689":{"market_hash_name":"Sticker | MOUZ (Glitter) | Paris 2023"},"669":{"market_hash_name":"Sticker | ESL (Foil) | Cologne 2015"},"6690":{"market_hash_name":"Sticker | MOUZ (Holo) | Paris 2023"},"6691":{"market_hash_name":"Sticker | MOUZ (Gold) | Paris 2023"},"6692":{"market_hash_name":"Sticker | Complexity Gaming | Paris 2023"},"6693":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Paris 2023"},"6694":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Paris 2023"},"6695":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Paris 2023"},"6696":{"market_hash_name":"Sticker | Fluxo | Paris 2023"},"6697":{"market_hash_name":"Sticker | Fluxo (Glitter) | Paris 2023"},"6698":{"market_hash_name":"Sticker | Fluxo (Holo) | Paris 2023"},"6699":{"market_hash_name":"Sticker | Fluxo (Gold) | Paris 2023"},"67":{"market_hash_name":"Sticker | Clan-Mystik | Katowice 2014"},"670":{"market_hash_name":"Sticker | ESL (Gold) | Cologne 2015"},"6700":{"market_hash_name":"Sticker | The MongolZ | Paris 2023"},"6701":{"market_hash_name":"Sticker | The MongolZ (Glitter) | Paris 2023"},"6702":{"market_hash_name":"Sticker | The MongolZ (Holo) | Paris 2023"},"6703":{"market_hash_name":"Sticker | The MongolZ (Gold) | Paris 2023"},"6704":{"market_hash_name":"Sticker | BLAST.tv | Paris 2023"},"6705":{"market_hash_name":"Sticker | BLAST.tv (Glitter) | Paris 2023"},"6706":{"market_hash_name":"Sticker | BLAST.tv (Holo) | Paris 2023"},"6707":{"market_hash_name":"Sticker | BLAST.tv (Gold) | Paris 2023"},"671":{"market_hash_name":"Sticker | reltuC | Cluj-Napoca 2015"},"672":{"market_hash_name":"Sticker | reltuC (Foil) | Cluj-Napoca 2015"},"673":{"market_hash_name":"Sticker | reltuC (Gold) | Cluj-Napoca 2015"},"6733":{"market_hash_name":"Sticker | FASHR | Paris 2023"},"6734":{"market_hash_name":"Sticker | FASHR (Glitter) | Paris 2023"},"6735":{"market_hash_name":"Sticker | FASHR (Holo) | Paris 2023"},"6736":{"market_hash_name":"Sticker | FASHR (Gold) | Paris 2023"},"6737":{"market_hash_name":"Sticker | KRIMZ | Paris 2023"},"6738":{"market_hash_name":"Sticker | KRIMZ (Glitter) | Paris 2023"},"6739":{"market_hash_name":"Sticker | KRIMZ (Holo) | Paris 2023"},"674":{"market_hash_name":"Sticker | FNS | Cluj-Napoca 2015"},"6740":{"market_hash_name":"Sticker | KRIMZ (Gold) | Paris 2023"},"6741":{"market_hash_name":"Sticker | mezii | Paris 2023"},"6742":{"market_hash_name":"Sticker | mezii (Glitter) | Paris 2023"},"6743":{"market_hash_name":"Sticker | mezii (Holo) | Paris 2023"},"6744":{"market_hash_name":"Sticker | mezii (Gold) | Paris 2023"},"6745":{"market_hash_name":"Sticker | nicoodoz | Paris 2023"},"6746":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Paris 2023"},"6747":{"market_hash_name":"Sticker | nicoodoz (Holo) | Paris 2023"},"6748":{"market_hash_name":"Sticker | nicoodoz (Gold) | Paris 2023"},"6749":{"market_hash_name":"Sticker | roeJ | Paris 2023"},"675":{"market_hash_name":"Sticker | FNS (Foil) | Cluj-Napoca 2015"},"6750":{"market_hash_name":"Sticker | roeJ (Glitter) | Paris 2023"},"6751":{"market_hash_name":"Sticker | roeJ (Holo) | Paris 2023"},"6752":{"market_hash_name":"Sticker | roeJ (Gold) | Paris 2023"},"6753":{"market_hash_name":"Sticker | b1t | Paris 2023"},"6754":{"market_hash_name":"Sticker | b1t (Glitter) | Paris 2023"},"6755":{"market_hash_name":"Sticker | b1t (Holo) | Paris 2023"},"6756":{"market_hash_name":"Sticker | b1t (Gold) | Paris 2023"},"6757":{"market_hash_name":"Sticker | electronic | Paris 2023"},"6758":{"market_hash_name":"Sticker | electronic (Glitter) | Paris 2023"},"6759":{"market_hash_name":"Sticker | electronic (Holo) | Paris 2023"},"676":{"market_hash_name":"Sticker | FNS (Gold) | Cluj-Napoca 2015"},"6760":{"market_hash_name":"Sticker | electronic (Gold) | Paris 2023"},"6761":{"market_hash_name":"Sticker | npl | Paris 2023"},"6762":{"market_hash_name":"Sticker | npl (Glitter) | Paris 2023"},"6763":{"market_hash_name":"Sticker | npl (Holo) | Paris 2023"},"6764":{"market_hash_name":"Sticker | npl (Gold) | Paris 2023"},"6765":{"market_hash_name":"Sticker | Perfecto | Paris 2023"},"6766":{"market_hash_name":"Sticker | Perfecto (Glitter) | Paris 2023"},"6767":{"market_hash_name":"Sticker | Perfecto (Holo) | Paris 2023"},"6768":{"market_hash_name":"Sticker | Perfecto (Gold) | Paris 2023"},"6769":{"market_hash_name":"Sticker | s1mple | Paris 2023"},"677":{"market_hash_name":"Sticker | hazed | Cluj-Napoca 2015"},"6770":{"market_hash_name":"Sticker | s1mple (Glitter) | Paris 2023"},"6771":{"market_hash_name":"Sticker | s1mple (Holo) | Paris 2023"},"6772":{"market_hash_name":"Sticker | s1mple (Gold) | Paris 2023"},"6773":{"market_hash_name":"Sticker | arT | Paris 2023"},"6774":{"market_hash_name":"Sticker | arT (Glitter) | Paris 2023"},"6775":{"market_hash_name":"Sticker | arT (Holo) | Paris 2023"},"6776":{"market_hash_name":"Sticker | arT (Gold) | Paris 2023"},"6777":{"market_hash_name":"Sticker | drop | Paris 2023"},"6778":{"market_hash_name":"Sticker | drop (Glitter) | Paris 2023"},"6779":{"market_hash_name":"Sticker | drop (Holo) | Paris 2023"},"678":{"market_hash_name":"Sticker | hazed (Foil) | Cluj-Napoca 2015"},"6780":{"market_hash_name":"Sticker | drop (Gold) | Paris 2023"},"6781":{"market_hash_name":"Sticker | KSCERATO | Paris 2023"},"6782":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Paris 2023"},"6783":{"market_hash_name":"Sticker | KSCERATO (Holo) | Paris 2023"},"6784":{"market_hash_name":"Sticker | KSCERATO (Gold) | Paris 2023"},"6785":{"market_hash_name":"Sticker | saffee | Paris 2023"},"6786":{"market_hash_name":"Sticker | saffee (Glitter) | Paris 2023"},"6787":{"market_hash_name":"Sticker | saffee (Holo) | Paris 2023"},"6788":{"market_hash_name":"Sticker | saffee (Gold) | Paris 2023"},"6789":{"market_hash_name":"Sticker | yuurih | Paris 2023"},"679":{"market_hash_name":"Sticker | hazed (Gold) | Cluj-Napoca 2015"},"6790":{"market_hash_name":"Sticker | yuurih (Glitter) | Paris 2023"},"6791":{"market_hash_name":"Sticker | yuurih (Holo) | Paris 2023"},"6792":{"market_hash_name":"Sticker | yuurih (Gold) | Paris 2023"},"6793":{"market_hash_name":"Sticker | apEX | Paris 2023"},"6794":{"market_hash_name":"Sticker | apEX (Glitter) | Paris 2023"},"6795":{"market_hash_name":"Sticker | apEX (Holo) | Paris 2023"},"6796":{"market_hash_name":"Sticker | apEX (Gold) | Paris 2023"},"6797":{"market_hash_name":"Sticker | dupreeh | Paris 2023"},"6798":{"market_hash_name":"Sticker | dupreeh (Glitter) | Paris 2023"},"6799":{"market_hash_name":"Sticker | dupreeh (Holo) | Paris 2023"},"68":{"market_hash_name":"Sticker | Clan-Mystik (Holo) | Katowice 2014"},"680":{"market_hash_name":"Sticker | jdm64 | Cluj-Napoca 2015"},"6800":{"market_hash_name":"Sticker | dupreeh (Gold) | Paris 2023"},"6801":{"market_hash_name":"Sticker | Magisk | Paris 2023"},"6802":{"market_hash_name":"Sticker | Magisk (Glitter) | Paris 2023"},"6803":{"market_hash_name":"Sticker | Magisk (Holo) | Paris 2023"},"6804":{"market_hash_name":"Sticker | Magisk (Gold) | Paris 2023"},"6805":{"market_hash_name":"Sticker | Spinx | Paris 2023"},"6806":{"market_hash_name":"Sticker | Spinx (Glitter) | Paris 2023"},"6807":{"market_hash_name":"Sticker | Spinx (Holo) | Paris 2023"},"6808":{"market_hash_name":"Sticker | Spinx (Gold) | Paris 2023"},"6809":{"market_hash_name":"Sticker | ZywOo | Paris 2023"},"681":{"market_hash_name":"Sticker | jdm64 (Foil) | Cluj-Napoca 2015"},"6810":{"market_hash_name":"Sticker | ZywOo (Glitter) | Paris 2023"},"6811":{"market_hash_name":"Sticker | ZywOo (Holo) | Paris 2023"},"6812":{"market_hash_name":"Sticker | ZywOo (Gold) | Paris 2023"},"6813":{"market_hash_name":"Sticker | cadiaN | Paris 2023"},"6814":{"market_hash_name":"Sticker | cadiaN (Glitter) | Paris 2023"},"6815":{"market_hash_name":"Sticker | cadiaN (Holo) | Paris 2023"},"6816":{"market_hash_name":"Sticker | cadiaN (Gold) | Paris 2023"},"6817":{"market_hash_name":"Sticker | jabbi | Paris 2023"},"6818":{"market_hash_name":"Sticker | jabbi (Glitter) | Paris 2023"},"6819":{"market_hash_name":"Sticker | jabbi (Holo) | Paris 2023"},"682":{"market_hash_name":"Sticker | jdm64 (Gold) | Cluj-Napoca 2015"},"6820":{"market_hash_name":"Sticker | jabbi (Gold) | Paris 2023"},"6821":{"market_hash_name":"Sticker | sjuush | Paris 2023"},"6822":{"market_hash_name":"Sticker | sjuush (Glitter) | Paris 2023"},"6823":{"market_hash_name":"Sticker | sjuush (Holo) | Paris 2023"},"6824":{"market_hash_name":"Sticker | sjuush (Gold) | Paris 2023"},"6825":{"market_hash_name":"Sticker | stavn | Paris 2023"},"6826":{"market_hash_name":"Sticker | stavn (Glitter) | Paris 2023"},"6827":{"market_hash_name":"Sticker | stavn (Holo) | Paris 2023"},"6828":{"market_hash_name":"Sticker | stavn (Gold) | Paris 2023"},"6829":{"market_hash_name":"Sticker | TeSeS | Paris 2023"},"683":{"market_hash_name":"Sticker | tarik | Cluj-Napoca 2015"},"6830":{"market_hash_name":"Sticker | TeSeS (Glitter) | Paris 2023"},"6831":{"market_hash_name":"Sticker | TeSeS (Holo) | Paris 2023"},"6832":{"market_hash_name":"Sticker | TeSeS (Gold) | Paris 2023"},"6833":{"market_hash_name":"Sticker | gxx- | Paris 2023"},"6834":{"market_hash_name":"Sticker | gxx- (Glitter) | Paris 2023"},"6835":{"market_hash_name":"Sticker | gxx- (Holo) | Paris 2023"},"6836":{"market_hash_name":"Sticker | gxx- (Gold) | Paris 2023"},"6837":{"market_hash_name":"Sticker | juanflatroo | Paris 2023"},"6838":{"market_hash_name":"Sticker | juanflatroo (Glitter) | Paris 2023"},"6839":{"market_hash_name":"Sticker | juanflatroo (Holo) | Paris 2023"},"684":{"market_hash_name":"Sticker | tarik (Foil) | Cluj-Napoca 2015"},"6840":{"market_hash_name":"Sticker | juanflatroo (Gold) | Paris 2023"},"6841":{"market_hash_name":"Sticker | rigoN | Paris 2023"},"6842":{"market_hash_name":"Sticker | rigoN (Glitter) | Paris 2023"},"6843":{"market_hash_name":"Sticker | rigoN (Holo) | Paris 2023"},"6844":{"market_hash_name":"Sticker | rigoN (Gold) | Paris 2023"},"6845":{"market_hash_name":"Sticker | SENER1 | Paris 2023"},"6846":{"market_hash_name":"Sticker | SENER1 (Glitter) | Paris 2023"},"6847":{"market_hash_name":"Sticker | SENER1 (Holo) | Paris 2023"},"6848":{"market_hash_name":"Sticker | SENER1 (Gold) | Paris 2023"},"6849":{"market_hash_name":"Sticker | sinnopsyy | Paris 2023"},"685":{"market_hash_name":"Sticker | tarik (Gold) | Cluj-Napoca 2015"},"6850":{"market_hash_name":"Sticker | sinnopsyy (Glitter) | Paris 2023"},"6851":{"market_hash_name":"Sticker | sinnopsyy (Holo) | Paris 2023"},"6852":{"market_hash_name":"Sticker | sinnopsyy (Gold) | Paris 2023"},"6853":{"market_hash_name":"Sticker | CRUC1AL | Paris 2023"},"6854":{"market_hash_name":"Sticker | CRUC1AL (Glitter) | Paris 2023"},"6855":{"market_hash_name":"Sticker | CRUC1AL (Holo) | Paris 2023"},"6856":{"market_hash_name":"Sticker | CRUC1AL (Gold) | Paris 2023"},"6857":{"market_hash_name":"Sticker | Cypher | Paris 2023"},"6858":{"market_hash_name":"Sticker | Cypher (Glitter) | Paris 2023"},"6859":{"market_hash_name":"Sticker | Cypher (Holo) | Paris 2023"},"686":{"market_hash_name":"Sticker | freakazoid | Cluj-Napoca 2015"},"6860":{"market_hash_name":"Sticker | Cypher (Gold) | Paris 2023"},"6861":{"market_hash_name":"Sticker | rallen | Paris 2023"},"6862":{"market_hash_name":"Sticker | rallen (Glitter) | Paris 2023"},"6863":{"market_hash_name":"Sticker | rallen (Holo) | Paris 2023"},"6864":{"market_hash_name":"Sticker | rallen (Gold) | Paris 2023"},"6865":{"market_hash_name":"Sticker | Thomas | Paris 2023"},"6866":{"market_hash_name":"Sticker | Thomas (Glitter) | Paris 2023"},"6867":{"market_hash_name":"Sticker | Thomas (Holo) | Paris 2023"},"6868":{"market_hash_name":"Sticker | Thomas (Gold) | Paris 2023"},"6869":{"market_hash_name":"Sticker | volt | Paris 2023"},"687":{"market_hash_name":"Sticker | freakazoid (Foil) | Cluj-Napoca 2015"},"6870":{"market_hash_name":"Sticker | volt (Glitter) | Paris 2023"},"6871":{"market_hash_name":"Sticker | volt (Holo) | Paris 2023"},"6872":{"market_hash_name":"Sticker | volt (Gold) | Paris 2023"},"6873":{"market_hash_name":"Sticker | Goofy | Paris 2023"},"6874":{"market_hash_name":"Sticker | Goofy (Glitter) | Paris 2023"},"6875":{"market_hash_name":"Sticker | Goofy (Holo) | Paris 2023"},"6876":{"market_hash_name":"Sticker | Goofy (Gold) | Paris 2023"},"6877":{"market_hash_name":"Sticker | hades | Paris 2023"},"6878":{"market_hash_name":"Sticker | hades (Glitter) | Paris 2023"},"6879":{"market_hash_name":"Sticker | hades (Holo) | Paris 2023"},"688":{"market_hash_name":"Sticker | freakazoid (Gold) | Cluj-Napoca 2015"},"6880":{"market_hash_name":"Sticker | hades (Gold) | Paris 2023"},"6881":{"market_hash_name":"Sticker | KEi | Paris 2023"},"6882":{"market_hash_name":"Sticker | KEi (Glitter) | Paris 2023"},"6883":{"market_hash_name":"Sticker | KEi (Holo) | Paris 2023"},"6884":{"market_hash_name":"Sticker | KEi (Gold) | Paris 2023"},"6885":{"market_hash_name":"Sticker | Kylar | Paris 2023"},"6886":{"market_hash_name":"Sticker | Kylar (Glitter) | Paris 2023"},"6887":{"market_hash_name":"Sticker | Kylar (Holo) | Paris 2023"},"6888":{"market_hash_name":"Sticker | Kylar (Gold) | Paris 2023"},"6889":{"market_hash_name":"Sticker | mynio | Paris 2023"},"689":{"market_hash_name":"Sticker | seang@res | Cluj-Napoca 2015"},"6890":{"market_hash_name":"Sticker | mynio (Glitter) | Paris 2023"},"6891":{"market_hash_name":"Sticker | mynio (Holo) | Paris 2023"},"6892":{"market_hash_name":"Sticker | mynio (Gold) | Paris 2023"},"6893":{"market_hash_name":"Sticker | Aleksib | Paris 2023"},"6894":{"market_hash_name":"Sticker | Aleksib (Glitter) | Paris 2023"},"6895":{"market_hash_name":"Sticker | Aleksib (Holo) | Paris 2023"},"6896":{"market_hash_name":"Sticker | Aleksib (Gold) | Paris 2023"},"6897":{"market_hash_name":"Sticker | Brollan | Paris 2023"},"6898":{"market_hash_name":"Sticker | Brollan (Glitter) | Paris 2023"},"6899":{"market_hash_name":"Sticker | Brollan (Holo) | Paris 2023"},"69":{"market_hash_name":"Sticker | Natus Vincere | Katowice 2014"},"690":{"market_hash_name":"Sticker | seang@res (Foil) | Cluj-Napoca 2015"},"6900":{"market_hash_name":"Sticker | Brollan (Gold) | Paris 2023"},"6901":{"market_hash_name":"Sticker | headtr1ck | Paris 2023"},"6902":{"market_hash_name":"Sticker | headtr1ck (Glitter) | Paris 2023"},"6903":{"market_hash_name":"Sticker | headtr1ck (Holo) | Paris 2023"},"6904":{"market_hash_name":"Sticker | headtr1ck (Gold) | Paris 2023"},"6905":{"market_hash_name":"Sticker | k0nfig | Paris 2023"},"6906":{"market_hash_name":"Sticker | k0nfig (Glitter) | Paris 2023"},"6907":{"market_hash_name":"Sticker | k0nfig (Holo) | Paris 2023"},"6908":{"market_hash_name":"Sticker | k0nfig (Gold) | Paris 2023"},"6909":{"market_hash_name":"Sticker | REZ | Paris 2023"},"691":{"market_hash_name":"Sticker | seang@res (Gold) | Cluj-Napoca 2015"},"6910":{"market_hash_name":"Sticker | REZ (Glitter) | Paris 2023"},"6911":{"market_hash_name":"Sticker | REZ (Holo) | Paris 2023"},"6912":{"market_hash_name":"Sticker | REZ (Gold) | Paris 2023"},"6913":{"market_hash_name":"Sticker | HooXi | Paris 2023"},"6914":{"market_hash_name":"Sticker | HooXi (Glitter) | Paris 2023"},"6915":{"market_hash_name":"Sticker | HooXi (Holo) | Paris 2023"},"6916":{"market_hash_name":"Sticker | HooXi (Gold) | Paris 2023"},"6917":{"market_hash_name":"Sticker | huNter- | Paris 2023"},"6918":{"market_hash_name":"Sticker | huNter- (Glitter) | Paris 2023"},"6919":{"market_hash_name":"Sticker | huNter- (Holo) | Paris 2023"},"692":{"market_hash_name":"Sticker | shroud | Cluj-Napoca 2015"},"6920":{"market_hash_name":"Sticker | huNter- (Gold) | Paris 2023"},"6921":{"market_hash_name":"Sticker | jks | Paris 2023"},"6922":{"market_hash_name":"Sticker | jks (Glitter) | Paris 2023"},"6923":{"market_hash_name":"Sticker | jks (Holo) | Paris 2023"},"6924":{"market_hash_name":"Sticker | jks (Gold) | Paris 2023"},"6925":{"market_hash_name":"Sticker | m0NESY | Paris 2023"},"6926":{"market_hash_name":"Sticker | m0NESY (Glitter) | Paris 2023"},"6927":{"market_hash_name":"Sticker | m0NESY (Holo) | Paris 2023"},"6928":{"market_hash_name":"Sticker | m0NESY (Gold) | Paris 2023"},"6929":{"market_hash_name":"Sticker | NiKo | Paris 2023"},"693":{"market_hash_name":"Sticker | shroud (Foil) | Cluj-Napoca 2015"},"6930":{"market_hash_name":"Sticker | NiKo (Glitter) | Paris 2023"},"6931":{"market_hash_name":"Sticker | NiKo (Holo) | Paris 2023"},"6932":{"market_hash_name":"Sticker | NiKo (Gold) | Paris 2023"},"6933":{"market_hash_name":"Sticker | Jerry | Paris 2023"},"6934":{"market_hash_name":"Sticker | Jerry (Glitter) | Paris 2023"},"6935":{"market_hash_name":"Sticker | Jerry (Holo) | Paris 2023"},"6936":{"market_hash_name":"Sticker | Jerry (Gold) | Paris 2023"},"6937":{"market_hash_name":"Sticker | Krad | Paris 2023"},"6938":{"market_hash_name":"Sticker | Krad (Glitter) | Paris 2023"},"6939":{"market_hash_name":"Sticker | Krad (Holo) | Paris 2023"},"694":{"market_hash_name":"Sticker | shroud (Gold) | Cluj-Napoca 2015"},"6940":{"market_hash_name":"Sticker | Krad (Gold) | Paris 2023"},"6941":{"market_hash_name":"Sticker | r3salt | Paris 2023"},"6942":{"market_hash_name":"Sticker | r3salt (Glitter) | Paris 2023"},"6943":{"market_hash_name":"Sticker | r3salt (Holo) | Paris 2023"},"6944":{"market_hash_name":"Sticker | r3salt (Gold) | Paris 2023"},"6945":{"market_hash_name":"Sticker | shalfey | Paris 2023"},"6946":{"market_hash_name":"Sticker | shalfey (Glitter) | Paris 2023"},"6947":{"market_hash_name":"Sticker | shalfey (Holo) | Paris 2023"},"6948":{"market_hash_name":"Sticker | shalfey (Gold) | Paris 2023"},"6949":{"market_hash_name":"Sticker | zorte | Paris 2023"},"695":{"market_hash_name":"Sticker | Skadoodle | Cluj-Napoca 2015"},"6950":{"market_hash_name":"Sticker | zorte (Glitter) | Paris 2023"},"6951":{"market_hash_name":"Sticker | zorte (Holo) | Paris 2023"},"6952":{"market_hash_name":"Sticker | zorte (Gold) | Paris 2023"},"6953":{"market_hash_name":"Sticker | degster | Paris 2023"},"6954":{"market_hash_name":"Sticker | degster (Glitter) | Paris 2023"},"6955":{"market_hash_name":"Sticker | degster (Holo) | Paris 2023"},"6956":{"market_hash_name":"Sticker | degster (Gold) | Paris 2023"},"6957":{"market_hash_name":"Sticker | F1KU | Paris 2023"},"6958":{"market_hash_name":"Sticker | F1KU (Glitter) | Paris 2023"},"6959":{"market_hash_name":"Sticker | F1KU (Holo) | Paris 2023"},"696":{"market_hash_name":"Sticker | Skadoodle (Foil) | Cluj-Napoca 2015"},"6960":{"market_hash_name":"Sticker | F1KU (Gold) | Paris 2023"},"6961":{"market_hash_name":"Sticker | FlameZ | Paris 2023"},"6962":{"market_hash_name":"Sticker | FlameZ (Glitter) | Paris 2023"},"6963":{"market_hash_name":"Sticker | FlameZ (Holo) | Paris 2023"},"6964":{"market_hash_name":"Sticker | FlameZ (Gold) | Paris 2023"},"6965":{"market_hash_name":"Sticker | NEOFRAG | Paris 2023"},"6966":{"market_hash_name":"Sticker | NEOFRAG (Glitter) | Paris 2023"},"6967":{"market_hash_name":"Sticker | NEOFRAG (Holo) | Paris 2023"},"6968":{"market_hash_name":"Sticker | NEOFRAG (Gold) | Paris 2023"},"6969":{"market_hash_name":"Sticker | niko | Paris 2023"},"697":{"market_hash_name":"Sticker | Skadoodle (Gold) | Cluj-Napoca 2015"},"6970":{"market_hash_name":"Sticker | niko (Glitter) | Paris 2023"},"6971":{"market_hash_name":"Sticker | niko (Holo) | Paris 2023"},"6972":{"market_hash_name":"Sticker | niko (Gold) | Paris 2023"},"6973":{"market_hash_name":"Sticker | biguzera | Paris 2023"},"6974":{"market_hash_name":"Sticker | biguzera (Glitter) | Paris 2023"},"6975":{"market_hash_name":"Sticker | biguzera (Holo) | Paris 2023"},"6976":{"market_hash_name":"Sticker | biguzera (Gold) | Paris 2023"},"6977":{"market_hash_name":"Sticker | hardzao | Paris 2023"},"6978":{"market_hash_name":"Sticker | hardzao (Glitter) | Paris 2023"},"6979":{"market_hash_name":"Sticker | hardzao (Holo) | Paris 2023"},"698":{"market_hash_name":"Sticker | n0thing | Cluj-Napoca 2015"},"6980":{"market_hash_name":"Sticker | hardzao (Gold) | Paris 2023"},"6981":{"market_hash_name":"Sticker | NEKiZ | Paris 2023"},"6982":{"market_hash_name":"Sticker | NEKiZ (Glitter) | Paris 2023"},"6983":{"market_hash_name":"Sticker | NEKiZ (Holo) | Paris 2023"},"6984":{"market_hash_name":"Sticker | NEKiZ (Gold) | Paris 2023"},"6985":{"market_hash_name":"Sticker | skullz | Paris 2023"},"6986":{"market_hash_name":"Sticker | skullz (Glitter) | Paris 2023"},"6987":{"market_hash_name":"Sticker | skullz (Holo) | Paris 2023"},"6988":{"market_hash_name":"Sticker | skullz (Gold) | Paris 2023"},"6989":{"market_hash_name":"Sticker | zevy | Paris 2023"},"699":{"market_hash_name":"Sticker | n0thing (Foil) | Cluj-Napoca 2015"},"6990":{"market_hash_name":"Sticker | zevy (Glitter) | Paris 2023"},"6991":{"market_hash_name":"Sticker | zevy (Holo) | Paris 2023"},"6992":{"market_hash_name":"Sticker | zevy (Gold) | Paris 2023"},"6993":{"market_hash_name":"Sticker | acoR | Paris 2023"},"6994":{"market_hash_name":"Sticker | acoR (Glitter) | Paris 2023"},"6995":{"market_hash_name":"Sticker | acoR (Holo) | Paris 2023"},"6996":{"market_hash_name":"Sticker | acoR (Gold) | Paris 2023"},"6997":{"market_hash_name":"Sticker | iM | Paris 2023"},"6998":{"market_hash_name":"Sticker | iM (Glitter) | Paris 2023"},"6999":{"market_hash_name":"Sticker | iM (Holo) | Paris 2023"},"7":{"market_hash_name":"Sticker | Polar Bears"},"70":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Katowice 2014"},"700":{"market_hash_name":"Sticker | n0thing (Gold) | Cluj-Napoca 2015"},"7000":{"market_hash_name":"Sticker | iM (Gold) | Paris 2023"},"7001":{"market_hash_name":"Sticker | isak | Paris 2023"},"7002":{"market_hash_name":"Sticker | isak (Glitter) | Paris 2023"},"7003":{"market_hash_name":"Sticker | isak (Holo) | Paris 2023"},"7004":{"market_hash_name":"Sticker | isak (Gold) | Paris 2023"},"7005":{"market_hash_name":"Sticker | Keoz | Paris 2023"},"7006":{"market_hash_name":"Sticker | Keoz (Glitter) | Paris 2023"},"7007":{"market_hash_name":"Sticker | Keoz (Holo) | Paris 2023"},"7008":{"market_hash_name":"Sticker | Keoz (Gold) | Paris 2023"},"7009":{"market_hash_name":"Sticker | siuhy | Paris 2023"},"701":{"market_hash_name":"Sticker | apEX | Cluj-Napoca 2015"},"7010":{"market_hash_name":"Sticker | siuhy (Glitter) | Paris 2023"},"7011":{"market_hash_name":"Sticker | siuhy (Holo) | Paris 2023"},"7012":{"market_hash_name":"Sticker | siuhy (Gold) | Paris 2023"},"7013":{"market_hash_name":"Sticker | jkaem | Paris 2023"},"7014":{"market_hash_name":"Sticker | jkaem (Glitter) | Paris 2023"},"7015":{"market_hash_name":"Sticker | jkaem (Holo) | Paris 2023"},"7016":{"market_hash_name":"Sticker | jkaem (Gold) | Paris 2023"},"7017":{"market_hash_name":"Sticker | jL | Paris 2023"},"7018":{"market_hash_name":"Sticker | jL (Glitter) | Paris 2023"},"7019":{"market_hash_name":"Sticker | jL (Holo) | Paris 2023"},"702":{"market_hash_name":"Sticker | apEX (Foil) | Cluj-Napoca 2015"},"7020":{"market_hash_name":"Sticker | jL (Gold) | Paris 2023"},"7021":{"market_hash_name":"Sticker | kyxsan | Paris 2023"},"7022":{"market_hash_name":"Sticker | kyxsan (Glitter) | Paris 2023"},"7023":{"market_hash_name":"Sticker | kyxsan (Holo) | Paris 2023"},"7024":{"market_hash_name":"Sticker | kyxsan (Gold) | Paris 2023"},"7025":{"market_hash_name":"Sticker | nawwk | Paris 2023"},"7026":{"market_hash_name":"Sticker | nawwk (Glitter) | Paris 2023"},"7027":{"market_hash_name":"Sticker | nawwk (Holo) | Paris 2023"},"7028":{"market_hash_name":"Sticker | nawwk (Gold) | Paris 2023"},"7029":{"market_hash_name":"Sticker | STYKO | Paris 2023"},"703":{"market_hash_name":"Sticker | apEX (Gold) | Cluj-Napoca 2015"},"7030":{"market_hash_name":"Sticker | STYKO (Glitter) | Paris 2023"},"7031":{"market_hash_name":"Sticker | STYKO (Holo) | Paris 2023"},"7032":{"market_hash_name":"Sticker | STYKO (Gold) | Paris 2023"},"7033":{"market_hash_name":"Sticker | BOROS | Paris 2023"},"7034":{"market_hash_name":"Sticker | BOROS (Glitter) | Paris 2023"},"7035":{"market_hash_name":"Sticker | BOROS (Holo) | Paris 2023"},"7036":{"market_hash_name":"Sticker | BOROS (Gold) | Paris 2023"},"7037":{"market_hash_name":"Sticker | DemQQ | Paris 2023"},"7038":{"market_hash_name":"Sticker | DemQQ (Glitter) | Paris 2023"},"7039":{"market_hash_name":"Sticker | DemQQ (Holo) | Paris 2023"},"704":{"market_hash_name":"Sticker | Happy | Cluj-Napoca 2015"},"7040":{"market_hash_name":"Sticker | DemQQ (Gold) | Paris 2023"},"7041":{"market_hash_name":"Sticker | kRaSnaL | Paris 2023"},"7042":{"market_hash_name":"Sticker | kRaSnaL (Glitter) | Paris 2023"},"7043":{"market_hash_name":"Sticker | kRaSnaL (Holo) | Paris 2023"},"7044":{"market_hash_name":"Sticker | kRaSnaL (Gold) | Paris 2023"},"7045":{"market_hash_name":"Sticker | sdy | Paris 2023"},"7046":{"market_hash_name":"Sticker | sdy (Glitter) | Paris 2023"},"7047":{"market_hash_name":"Sticker | sdy (Holo) | Paris 2023"},"7048":{"market_hash_name":"Sticker | sdy (Gold) | Paris 2023"},"7049":{"market_hash_name":"Sticker | Woro2k | Paris 2023"},"705":{"market_hash_name":"Sticker | Happy (Foil) | Cluj-Napoca 2015"},"7050":{"market_hash_name":"Sticker | Woro2k (Glitter) | Paris 2023"},"7051":{"market_hash_name":"Sticker | Woro2k (Holo) | Paris 2023"},"7052":{"market_hash_name":"Sticker | Woro2k (Gold) | Paris 2023"},"7053":{"market_hash_name":"Sticker | EliGE | Paris 2023"},"7054":{"market_hash_name":"Sticker | EliGE (Glitter) | Paris 2023"},"7055":{"market_hash_name":"Sticker | EliGE (Holo) | Paris 2023"},"7056":{"market_hash_name":"Sticker | EliGE (Gold) | Paris 2023"},"7057":{"market_hash_name":"Sticker | NAF | Paris 2023"},"7058":{"market_hash_name":"Sticker | NAF (Glitter) | Paris 2023"},"7059":{"market_hash_name":"Sticker | NAF (Holo) | Paris 2023"},"706":{"market_hash_name":"Sticker | Happy (Gold) | Cluj-Napoca 2015"},"7060":{"market_hash_name":"Sticker | NAF (Gold) | Paris 2023"},"7061":{"market_hash_name":"Sticker | nitr0 | Paris 2023"},"7062":{"market_hash_name":"Sticker | nitr0 (Glitter) | Paris 2023"},"7063":{"market_hash_name":"Sticker | nitr0 (Holo) | Paris 2023"},"7064":{"market_hash_name":"Sticker | nitr0 (Gold) | Paris 2023"},"7065":{"market_hash_name":"Sticker | oSee | Paris 2023"},"7066":{"market_hash_name":"Sticker | oSee (Glitter) | Paris 2023"},"7067":{"market_hash_name":"Sticker | oSee (Holo) | Paris 2023"},"7068":{"market_hash_name":"Sticker | oSee (Gold) | Paris 2023"},"7069":{"market_hash_name":"Sticker | YEKINDAR | Paris 2023"},"707":{"market_hash_name":"Sticker | kioShiMa | Cluj-Napoca 2015"},"7070":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Paris 2023"},"7071":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Paris 2023"},"7072":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Paris 2023"},"7073":{"market_hash_name":"Sticker | broky | Paris 2023"},"7074":{"market_hash_name":"Sticker | broky (Glitter) | Paris 2023"},"7075":{"market_hash_name":"Sticker | broky (Holo) | Paris 2023"},"7076":{"market_hash_name":"Sticker | broky (Gold) | Paris 2023"},"7077":{"market_hash_name":"Sticker | karrigan | Paris 2023"},"7078":{"market_hash_name":"Sticker | karrigan (Glitter) | Paris 2023"},"7079":{"market_hash_name":"Sticker | karrigan (Holo) | Paris 2023"},"708":{"market_hash_name":"Sticker | kioShiMa (Foil) | Cluj-Napoca 2015"},"7080":{"market_hash_name":"Sticker | karrigan (Gold) | Paris 2023"},"7081":{"market_hash_name":"Sticker | rain | Paris 2023"},"7082":{"market_hash_name":"Sticker | rain (Glitter) | Paris 2023"},"7083":{"market_hash_name":"Sticker | rain (Holo) | Paris 2023"},"7084":{"market_hash_name":"Sticker | rain (Gold) | Paris 2023"},"7085":{"market_hash_name":"Sticker | ropz | Paris 2023"},"7086":{"market_hash_name":"Sticker | ropz (Glitter) | Paris 2023"},"7087":{"market_hash_name":"Sticker | ropz (Holo) | Paris 2023"},"7088":{"market_hash_name":"Sticker | ropz (Gold) | Paris 2023"},"7089":{"market_hash_name":"Sticker | Twistzz | Paris 2023"},"709":{"market_hash_name":"Sticker | kioShiMa (Gold) | Cluj-Napoca 2015"},"7090":{"market_hash_name":"Sticker | Twistzz (Glitter) | Paris 2023"},"7091":{"market_hash_name":"Sticker | Twistzz (Holo) | Paris 2023"},"7092":{"market_hash_name":"Sticker | Twistzz (Gold) | Paris 2023"},"7093":{"market_hash_name":"Sticker | Dycha | Paris 2023"},"7094":{"market_hash_name":"Sticker | Dycha (Glitter) | Paris 2023"},"7095":{"market_hash_name":"Sticker | Dycha (Holo) | Paris 2023"},"7096":{"market_hash_name":"Sticker | Dycha (Gold) | Paris 2023"},"7097":{"market_hash_name":"Sticker | maden | Paris 2023"},"7098":{"market_hash_name":"Sticker | maden (Glitter) | Paris 2023"},"7099":{"market_hash_name":"Sticker | maden (Holo) | Paris 2023"},"71":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Katowice 2014"},"710":{"market_hash_name":"Sticker | kennyS | Cluj-Napoca 2015"},"7100":{"market_hash_name":"Sticker | maden (Gold) | Paris 2023"},"7101":{"market_hash_name":"Sticker | NertZ | Paris 2023"},"7102":{"market_hash_name":"Sticker | NertZ (Glitter) | Paris 2023"},"7103":{"market_hash_name":"Sticker | NertZ (Holo) | Paris 2023"},"7104":{"market_hash_name":"Sticker | NertZ (Gold) | Paris 2023"},"7105":{"market_hash_name":"Sticker | Snappi | Paris 2023"},"7106":{"market_hash_name":"Sticker | Snappi (Glitter) | Paris 2023"},"7107":{"market_hash_name":"Sticker | Snappi (Holo) | Paris 2023"},"7108":{"market_hash_name":"Sticker | Snappi (Gold) | Paris 2023"},"7109":{"market_hash_name":"Sticker | SunPayus | Paris 2023"},"711":{"market_hash_name":"Sticker | kennyS (Foil) | Cluj-Napoca 2015"},"7110":{"market_hash_name":"Sticker | SunPayus (Glitter) | Paris 2023"},"7111":{"market_hash_name":"Sticker | SunPayus (Holo) | Paris 2023"},"7112":{"market_hash_name":"Sticker | SunPayus (Gold) | Paris 2023"},"7113":{"market_hash_name":"Sticker | aliStair | Paris 2023"},"7114":{"market_hash_name":"Sticker | aliStair (Glitter) | Paris 2023"},"7115":{"market_hash_name":"Sticker | aliStair (Holo) | Paris 2023"},"7116":{"market_hash_name":"Sticker | aliStair (Gold) | Paris 2023"},"7117":{"market_hash_name":"Sticker | INS | Paris 2023"},"7118":{"market_hash_name":"Sticker | INS (Glitter) | Paris 2023"},"7119":{"market_hash_name":"Sticker | INS (Holo) | Paris 2023"},"712":{"market_hash_name":"Sticker | kennyS (Gold) | Cluj-Napoca 2015"},"7120":{"market_hash_name":"Sticker | INS (Gold) | Paris 2023"},"7121":{"market_hash_name":"Sticker | Liazz | Paris 2023"},"7122":{"market_hash_name":"Sticker | Liazz (Glitter) | Paris 2023"},"7123":{"market_hash_name":"Sticker | Liazz (Holo) | Paris 2023"},"7124":{"market_hash_name":"Sticker | Liazz (Gold) | Paris 2023"},"7125":{"market_hash_name":"Sticker | Sico | Paris 2023"},"7126":{"market_hash_name":"Sticker | Sico (Glitter) | Paris 2023"},"7127":{"market_hash_name":"Sticker | Sico (Holo) | Paris 2023"},"7128":{"market_hash_name":"Sticker | Sico (Gold) | Paris 2023"},"7129":{"market_hash_name":"Sticker | vexite | Paris 2023"},"713":{"market_hash_name":"Sticker | NBK- | Cluj-Napoca 2015"},"7130":{"market_hash_name":"Sticker | vexite (Glitter) | Paris 2023"},"7131":{"market_hash_name":"Sticker | vexite (Holo) | Paris 2023"},"7132":{"market_hash_name":"Sticker | vexite (Gold) | Paris 2023"},"7133":{"market_hash_name":"Sticker | dexter | Paris 2023"},"7134":{"market_hash_name":"Sticker | dexter (Glitter) | Paris 2023"},"7135":{"market_hash_name":"Sticker | dexter (Holo) | Paris 2023"},"7136":{"market_hash_name":"Sticker | dexter (Gold) | Paris 2023"},"7137":{"market_hash_name":"Sticker | frozen | Paris 2023"},"7138":{"market_hash_name":"Sticker | frozen (Glitter) | Paris 2023"},"7139":{"market_hash_name":"Sticker | frozen (Holo) | Paris 2023"},"714":{"market_hash_name":"Sticker | NBK- (Foil) | Cluj-Napoca 2015"},"7140":{"market_hash_name":"Sticker | frozen (Gold) | Paris 2023"},"7141":{"market_hash_name":"Sticker | JDC | Paris 2023"},"7142":{"market_hash_name":"Sticker | JDC (Glitter) | Paris 2023"},"7143":{"market_hash_name":"Sticker | JDC (Holo) | Paris 2023"},"7144":{"market_hash_name":"Sticker | JDC (Gold) | Paris 2023"},"7145":{"market_hash_name":"Sticker | torzsi | Paris 2023"},"7146":{"market_hash_name":"Sticker | torzsi (Glitter) | Paris 2023"},"7147":{"market_hash_name":"Sticker | torzsi (Holo) | Paris 2023"},"7148":{"market_hash_name":"Sticker | torzsi (Gold) | Paris 2023"},"7149":{"market_hash_name":"Sticker | xertioN | Paris 2023"},"715":{"market_hash_name":"Sticker | NBK- (Gold) | Cluj-Napoca 2015"},"7150":{"market_hash_name":"Sticker | xertioN (Glitter) | Paris 2023"},"7151":{"market_hash_name":"Sticker | xertioN (Holo) | Paris 2023"},"7152":{"market_hash_name":"Sticker | xertioN (Gold) | Paris 2023"},"7153":{"market_hash_name":"Sticker | FaNg | Paris 2023"},"7154":{"market_hash_name":"Sticker | FaNg (Glitter) | Paris 2023"},"7155":{"market_hash_name":"Sticker | FaNg (Holo) | Paris 2023"},"7156":{"market_hash_name":"Sticker | FaNg (Gold) | Paris 2023"},"7157":{"market_hash_name":"Sticker | floppy | Paris 2023"},"7158":{"market_hash_name":"Sticker | floppy (Glitter) | Paris 2023"},"7159":{"market_hash_name":"Sticker | floppy (Holo) | Paris 2023"},"716":{"market_hash_name":"Sticker | B1ad3 | Cluj-Napoca 2015"},"7160":{"market_hash_name":"Sticker | floppy (Gold) | Paris 2023"},"7161":{"market_hash_name":"Sticker | Grim | Paris 2023"},"7162":{"market_hash_name":"Sticker | Grim (Glitter) | Paris 2023"},"7163":{"market_hash_name":"Sticker | Grim (Holo) | Paris 2023"},"7164":{"market_hash_name":"Sticker | Grim (Gold) | Paris 2023"},"7165":{"market_hash_name":"Sticker | hallzerk | Paris 2023"},"7166":{"market_hash_name":"Sticker | hallzerk (Glitter) | Paris 2023"},"7167":{"market_hash_name":"Sticker | hallzerk (Holo) | Paris 2023"},"7168":{"market_hash_name":"Sticker | hallzerk (Gold) | Paris 2023"},"7169":{"market_hash_name":"Sticker | JT | Paris 2023"},"717":{"market_hash_name":"Sticker | B1ad3 (Foil) | Cluj-Napoca 2015"},"7170":{"market_hash_name":"Sticker | JT (Glitter) | Paris 2023"},"7171":{"market_hash_name":"Sticker | JT (Holo) | Paris 2023"},"7172":{"market_hash_name":"Sticker | JT (Gold) | Paris 2023"},"7173":{"market_hash_name":"Sticker | felps | Paris 2023"},"7174":{"market_hash_name":"Sticker | felps (Glitter) | Paris 2023"},"7175":{"market_hash_name":"Sticker | felps (Holo) | Paris 2023"},"7176":{"market_hash_name":"Sticker | felps (Gold) | Paris 2023"},"7177":{"market_hash_name":"Sticker | History | Paris 2023"},"7178":{"market_hash_name":"Sticker | History (Glitter) | Paris 2023"},"7179":{"market_hash_name":"Sticker | History (Holo) | Paris 2023"},"718":{"market_hash_name":"Sticker | B1ad3 (Gold) | Cluj-Napoca 2015"},"7180":{"market_hash_name":"Sticker | History (Gold) | Paris 2023"},"7181":{"market_hash_name":"Sticker | Lucaozy | Paris 2023"},"7182":{"market_hash_name":"Sticker | Lucaozy (Glitter) | Paris 2023"},"7183":{"market_hash_name":"Sticker | Lucaozy (Holo) | Paris 2023"},"7184":{"market_hash_name":"Sticker | Lucaozy (Gold) | Paris 2023"},"7185":{"market_hash_name":"Sticker | v$m | Paris 2023"},"7186":{"market_hash_name":"Sticker | v$m (Glitter) | Paris 2023"},"7187":{"market_hash_name":"Sticker | v$m (Holo) | Paris 2023"},"7188":{"market_hash_name":"Sticker | v$m (Gold) | Paris 2023"},"7189":{"market_hash_name":"Sticker | WOOD7 | Paris 2023"},"719":{"market_hash_name":"Sticker | bondik | Cluj-Napoca 2015"},"7190":{"market_hash_name":"Sticker | WOOD7 (Glitter) | Paris 2023"},"7191":{"market_hash_name":"Sticker | WOOD7 (Holo) | Paris 2023"},"7192":{"market_hash_name":"Sticker | WOOD7 (Gold) | Paris 2023"},"7193":{"market_hash_name":"Sticker | ANNIHILATION | Paris 2023"},"7194":{"market_hash_name":"Sticker | ANNIHILATION (Glitter) | Paris 2023"},"7195":{"market_hash_name":"Sticker | ANNIHILATION (Holo) | Paris 2023"},"7196":{"market_hash_name":"Sticker | ANNIHILATION (Gold) | Paris 2023"},"7197":{"market_hash_name":"Sticker | Bart4k | Paris 2023"},"7198":{"market_hash_name":"Sticker | Bart4k (Glitter) | Paris 2023"},"7199":{"market_hash_name":"Sticker | Bart4k (Holo) | Paris 2023"},"72":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Katowice 2014"},"720":{"market_hash_name":"Sticker | bondik (Foil) | Cluj-Napoca 2015"},"7200":{"market_hash_name":"Sticker | Bart4k (Gold) | Paris 2023"},"7201":{"market_hash_name":"Sticker | bLitz | Paris 2023"},"7202":{"market_hash_name":"Sticker | bLitz (Glitter) | Paris 2023"},"7203":{"market_hash_name":"Sticker | bLitz (Holo) | Paris 2023"},"7204":{"market_hash_name":"Sticker | bLitz (Gold) | Paris 2023"},"7205":{"market_hash_name":"Sticker | sk0R | Paris 2023"},"7206":{"market_hash_name":"Sticker | sk0R (Glitter) | Paris 2023"},"7207":{"market_hash_name":"Sticker | sk0R (Holo) | Paris 2023"},"7208":{"market_hash_name":"Sticker | sk0R (Gold) | Paris 2023"},"7209":{"market_hash_name":"Sticker | Techno4K | Paris 2023"},"721":{"market_hash_name":"Sticker | bondik (Gold) | Cluj-Napoca 2015"},"7210":{"market_hash_name":"Sticker | Techno4K (Glitter) | Paris 2023"},"7211":{"market_hash_name":"Sticker | Techno4K (Holo) | Paris 2023"},"7212":{"market_hash_name":"Sticker | Techno4K (Gold) | Paris 2023"},"7213":{"market_hash_name":"Sticker | apEX (Champion) | Paris 2023"},"7214":{"market_hash_name":"Sticker | apEX (Glitter, Champion) | Paris 2023"},"7215":{"market_hash_name":"Sticker | apEX (Holo, Champion) | Paris 2023"},"7216":{"market_hash_name":"Sticker | apEX (Gold, Champion) | Paris 2023"},"7217":{"market_hash_name":"Sticker | dupreeh (Champion) | Paris 2023"},"7218":{"market_hash_name":"Sticker | dupreeh (Glitter, Champion) | Paris 2023"},"7219":{"market_hash_name":"Sticker | dupreeh (Holo, Champion) | Paris 2023"},"722":{"market_hash_name":"Sticker | DavCost | Cluj-Napoca 2015"},"7220":{"market_hash_name":"Sticker | dupreeh (Gold, Champion) | Paris 2023"},"7221":{"market_hash_name":"Sticker | Magisk (Champion) | Paris 2023"},"7222":{"market_hash_name":"Sticker | Magisk (Glitter, Champion) | Paris 2023"},"7223":{"market_hash_name":"Sticker | Magisk (Holo, Champion) | Paris 2023"},"7224":{"market_hash_name":"Sticker | Magisk (Gold, Champion) | Paris 2023"},"7225":{"market_hash_name":"Sticker | Spinx (Champion) | Paris 2023"},"7226":{"market_hash_name":"Sticker | Spinx (Glitter, Champion) | Paris 2023"},"7227":{"market_hash_name":"Sticker | Spinx (Holo, Champion) | Paris 2023"},"7228":{"market_hash_name":"Sticker | Spinx (Gold, Champion) | Paris 2023"},"7229":{"market_hash_name":"Sticker | ZywOo (Champion) | Paris 2023"},"723":{"market_hash_name":"Sticker | DavCost (Foil) | Cluj-Napoca 2015"},"7230":{"market_hash_name":"Sticker | ZywOo (Glitter, Champion) | Paris 2023"},"7231":{"market_hash_name":"Sticker | ZywOo (Holo, Champion) | Paris 2023"},"7232":{"market_hash_name":"Sticker | ZywOo (Gold, Champion) | Paris 2023"},"7233":{"market_hash_name":"Sticker | Ouchie (Foil)"},"7234":{"market_hash_name":"Sticker | Lost In Smoke (Foil)"},"7235":{"market_hash_name":"Sticker | Retro Zeus"},"7236":{"market_hash_name":"Sticker | This Is Fine (Chicken)"},"7237":{"market_hash_name":"Sticker | Please Return To"},"7238":{"market_hash_name":"Sticker | Peek-A-Boo"},"7239":{"market_hash_name":"Sticker | AKickflip-47"},"724":{"market_hash_name":"Sticker | DavCost (Gold) | Cluj-Napoca 2015"},"7240":{"market_hash_name":"Sticker | Easy For Ricksaw"},"7241":{"market_hash_name":"Sticker | Bum A Smoke"},"7242":{"market_hash_name":"Sticker | Angry T"},"7243":{"market_hash_name":"Sticker | Old School (Lenticular)"},"7244":{"market_hash_name":"Sticker | Econometer (Lenticular)"},"7245":{"market_hash_name":"Sticker | Dystopian Gaze (Lenticular)"},"7246":{"market_hash_name":"Sticker | Loving Eyes (Holo)"},"7247":{"market_hash_name":"Sticker | Try Hard (Holo)"},"7248":{"market_hash_name":"Sticker | Lit (Holo)"},"7249":{"market_hash_name":"Sticker | Cedar Creek (Holo)"},"725":{"market_hash_name":"Sticker | markeloff | Cluj-Napoca 2015"},"7250":{"market_hash_name":"Sticker | Pushing Smokes (Glitter)"},"7251":{"market_hash_name":"Sticker | Lotus (Glitter)"},"7252":{"market_hash_name":"Sticker | Factory Sealed (Foil)"},"7253":{"market_hash_name":"Sticker | On An Eco (Foil)"},"7254":{"market_hash_name":"Sticker | Natus Vincere | Copenhagen 2024"},"7255":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Copenhagen 2024"},"7256":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Copenhagen 2024"},"7257":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Copenhagen 2024"},"7258":{"market_hash_name":"Sticker | Virtus.pro | Copenhagen 2024"},"7259":{"market_hash_name":"Sticker | Virtus.pro (Glitter) | Copenhagen 2024"},"726":{"market_hash_name":"Sticker | markeloff (Foil) | Cluj-Napoca 2015"},"7260":{"market_hash_name":"Sticker | Virtus.pro (Holo) | Copenhagen 2024"},"7261":{"market_hash_name":"Sticker | Virtus.pro (Gold) | Copenhagen 2024"},"7262":{"market_hash_name":"Sticker | G2 Esports | Copenhagen 2024"},"7263":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Copenhagen 2024"},"7264":{"market_hash_name":"Sticker | G2 Esports (Holo) | Copenhagen 2024"},"7265":{"market_hash_name":"Sticker | G2 Esports (Gold) | Copenhagen 2024"},"7266":{"market_hash_name":"Sticker | FaZe Clan | Copenhagen 2024"},"7267":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Copenhagen 2024"},"7268":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Copenhagen 2024"},"7269":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Copenhagen 2024"},"727":{"market_hash_name":"Sticker | markeloff (Gold) | Cluj-Napoca 2015"},"7270":{"market_hash_name":"Sticker | Team Spirit | Copenhagen 2024"},"7271":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Copenhagen 2024"},"7272":{"market_hash_name":"Sticker | Team Spirit (Holo) | Copenhagen 2024"},"7273":{"market_hash_name":"Sticker | Team Spirit (Gold) | Copenhagen 2024"},"7274":{"market_hash_name":"Sticker | Vitality | Copenhagen 2024"},"7275":{"market_hash_name":"Sticker | Vitality (Glitter) | Copenhagen 2024"},"7276":{"market_hash_name":"Sticker | Vitality (Holo) | Copenhagen 2024"},"7277":{"market_hash_name":"Sticker | Vitality (Gold) | Copenhagen 2024"},"7278":{"market_hash_name":"Sticker | MOUZ | Copenhagen 2024"},"7279":{"market_hash_name":"Sticker | MOUZ (Glitter) | Copenhagen 2024"},"728":{"market_hash_name":"Sticker | WorldEdit | Cluj-Napoca 2015"},"7280":{"market_hash_name":"Sticker | MOUZ (Holo) | Copenhagen 2024"},"7281":{"market_hash_name":"Sticker | MOUZ (Gold) | Copenhagen 2024"},"7282":{"market_hash_name":"Sticker | Complexity Gaming | Copenhagen 2024"},"7283":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Copenhagen 2024"},"7284":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Copenhagen 2024"},"7285":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Copenhagen 2024"},"7286":{"market_hash_name":"Sticker | Cloud9 | Copenhagen 2024"},"7287":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Copenhagen 2024"},"7288":{"market_hash_name":"Sticker | Cloud9 (Holo) | Copenhagen 2024"},"7289":{"market_hash_name":"Sticker | Cloud9 (Gold) | Copenhagen 2024"},"729":{"market_hash_name":"Sticker | WorldEdit (Foil) | Cluj-Napoca 2015"},"7290":{"market_hash_name":"Sticker | ENCE | Copenhagen 2024"},"7291":{"market_hash_name":"Sticker | ENCE (Glitter) | Copenhagen 2024"},"7292":{"market_hash_name":"Sticker | ENCE (Holo) | Copenhagen 2024"},"7293":{"market_hash_name":"Sticker | ENCE (Gold) | Copenhagen 2024"},"7294":{"market_hash_name":"Sticker | FURIA | Copenhagen 2024"},"7295":{"market_hash_name":"Sticker | FURIA (Glitter) | Copenhagen 2024"},"7296":{"market_hash_name":"Sticker | FURIA (Holo) | Copenhagen 2024"},"7297":{"market_hash_name":"Sticker | FURIA (Gold) | Copenhagen 2024"},"7298":{"market_hash_name":"Sticker | Heroic | Copenhagen 2024"},"7299":{"market_hash_name":"Sticker | Heroic (Glitter) | Copenhagen 2024"},"73":{"market_hash_name":"Sticker | Reason Gaming | Katowice 2014"},"730":{"market_hash_name":"Sticker | WorldEdit (Gold) | Cluj-Napoca 2015"},"7300":{"market_hash_name":"Sticker | Heroic (Holo) | Copenhagen 2024"},"7301":{"market_hash_name":"Sticker | Heroic (Gold) | Copenhagen 2024"},"7302":{"market_hash_name":"Sticker | Eternal Fire | Copenhagen 2024"},"7303":{"market_hash_name":"Sticker | Eternal Fire (Glitter) | Copenhagen 2024"},"7304":{"market_hash_name":"Sticker | Eternal Fire (Holo) | Copenhagen 2024"},"7305":{"market_hash_name":"Sticker | Eternal Fire (Gold) | Copenhagen 2024"},"7306":{"market_hash_name":"Sticker | Apeks | Copenhagen 2024"},"7307":{"market_hash_name":"Sticker | Apeks (Glitter) | Copenhagen 2024"},"7308":{"market_hash_name":"Sticker | Apeks (Holo) | Copenhagen 2024"},"7309":{"market_hash_name":"Sticker | Apeks (Gold) | Copenhagen 2024"},"731":{"market_hash_name":"Sticker | flusha | Cluj-Napoca 2015"},"7310":{"market_hash_name":"Sticker | GamerLegion | Copenhagen 2024"},"7311":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Copenhagen 2024"},"7312":{"market_hash_name":"Sticker | GamerLegion (Holo) | Copenhagen 2024"},"7313":{"market_hash_name":"Sticker | GamerLegion (Gold) | Copenhagen 2024"},"7314":{"market_hash_name":"Sticker | SAW | Copenhagen 2024"},"7315":{"market_hash_name":"Sticker | SAW (Glitter) | Copenhagen 2024"},"7316":{"market_hash_name":"Sticker | SAW (Holo) | Copenhagen 2024"},"7317":{"market_hash_name":"Sticker | SAW (Gold) | Copenhagen 2024"},"7318":{"market_hash_name":"Sticker | paiN Gaming | Copenhagen 2024"},"7319":{"market_hash_name":"Sticker | paiN Gaming (Glitter) | Copenhagen 2024"},"732":{"market_hash_name":"Sticker | flusha (Foil) | Cluj-Napoca 2015"},"7320":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Copenhagen 2024"},"7321":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Copenhagen 2024"},"7322":{"market_hash_name":"Sticker | Imperial Esports | Copenhagen 2024"},"7323":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Copenhagen 2024"},"7324":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Copenhagen 2024"},"7325":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Copenhagen 2024"},"7326":{"market_hash_name":"Sticker | The MongolZ | Copenhagen 2024"},"7327":{"market_hash_name":"Sticker | The MongolZ (Glitter) | Copenhagen 2024"},"7328":{"market_hash_name":"Sticker | The MongolZ (Holo) | Copenhagen 2024"},"7329":{"market_hash_name":"Sticker | The MongolZ (Gold) | Copenhagen 2024"},"733":{"market_hash_name":"Sticker | flusha (Gold) | Cluj-Napoca 2015"},"7330":{"market_hash_name":"Sticker | AMKAL ESPORTS | Copenhagen 2024"},"7331":{"market_hash_name":"Sticker | AMKAL ESPORTS (Glitter) | Copenhagen 2024"},"7332":{"market_hash_name":"Sticker | AMKAL ESPORTS (Holo) | Copenhagen 2024"},"7333":{"market_hash_name":"Sticker | AMKAL ESPORTS (Gold) | Copenhagen 2024"},"7334":{"market_hash_name":"Sticker | ECSTATIC | Copenhagen 2024"},"7335":{"market_hash_name":"Sticker | ECSTATIC (Glitter) | Copenhagen 2024"},"7336":{"market_hash_name":"Sticker | ECSTATIC (Holo) | Copenhagen 2024"},"7337":{"market_hash_name":"Sticker | ECSTATIC (Gold) | Copenhagen 2024"},"7338":{"market_hash_name":"Sticker | KOI | Copenhagen 2024"},"7339":{"market_hash_name":"Sticker | KOI (Glitter) | Copenhagen 2024"},"734":{"market_hash_name":"Sticker | JW | Cluj-Napoca 2015"},"7340":{"market_hash_name":"Sticker | KOI (Holo) | Copenhagen 2024"},"7341":{"market_hash_name":"Sticker | KOI (Gold) | Copenhagen 2024"},"7342":{"market_hash_name":"Sticker | Legacy | Copenhagen 2024"},"7343":{"market_hash_name":"Sticker | Legacy (Glitter) | Copenhagen 2024"},"7344":{"market_hash_name":"Sticker | Legacy (Holo) | Copenhagen 2024"},"7345":{"market_hash_name":"Sticker | Legacy (Gold) | Copenhagen 2024"},"7346":{"market_hash_name":"Sticker | Lynn Vision | Copenhagen 2024"},"7347":{"market_hash_name":"Sticker | Lynn Vision (Glitter) | Copenhagen 2024"},"7348":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Copenhagen 2024"},"7349":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Copenhagen 2024"},"735":{"market_hash_name":"Sticker | JW (Foil) | Cluj-Napoca 2015"},"7350":{"market_hash_name":"Sticker | PGL | Copenhagen 2024"},"7351":{"market_hash_name":"Sticker | PGL (Glitter) | Copenhagen 2024"},"7352":{"market_hash_name":"Sticker | PGL (Holo) | Copenhagen 2024"},"7353":{"market_hash_name":"Sticker | PGL (Gold) | Copenhagen 2024"},"736":{"market_hash_name":"Sticker | JW (Gold) | Cluj-Napoca 2015"},"737":{"market_hash_name":"Sticker | KRIMZ | Cluj-Napoca 2015"},"7379":{"market_hash_name":"Sticker | jL | Copenhagen 2024"},"738":{"market_hash_name":"Sticker | KRIMZ (Foil) | Cluj-Napoca 2015"},"7380":{"market_hash_name":"Sticker | jL (Glitter) | Copenhagen 2024"},"7381":{"market_hash_name":"Sticker | jL (Holo) | Copenhagen 2024"},"7382":{"market_hash_name":"Sticker | jL (Gold) | Copenhagen 2024"},"7383":{"market_hash_name":"Sticker | Aleksib | Copenhagen 2024"},"7384":{"market_hash_name":"Sticker | Aleksib (Glitter) | Copenhagen 2024"},"7385":{"market_hash_name":"Sticker | Aleksib (Holo) | Copenhagen 2024"},"7386":{"market_hash_name":"Sticker | Aleksib (Gold) | Copenhagen 2024"},"7387":{"market_hash_name":"Sticker | b1t | Copenhagen 2024"},"7388":{"market_hash_name":"Sticker | b1t (Glitter) | Copenhagen 2024"},"7389":{"market_hash_name":"Sticker | b1t (Holo) | Copenhagen 2024"},"739":{"market_hash_name":"Sticker | KRIMZ (Gold) | Cluj-Napoca 2015"},"7390":{"market_hash_name":"Sticker | b1t (Gold) | Copenhagen 2024"},"7391":{"market_hash_name":"Sticker | iM | Copenhagen 2024"},"7392":{"market_hash_name":"Sticker | iM (Glitter) | Copenhagen 2024"},"7393":{"market_hash_name":"Sticker | iM (Holo) | Copenhagen 2024"},"7394":{"market_hash_name":"Sticker | iM (Gold) | Copenhagen 2024"},"7395":{"market_hash_name":"Sticker | w0nderful | Copenhagen 2024"},"7396":{"market_hash_name":"Sticker | w0nderful (Glitter) | Copenhagen 2024"},"7397":{"market_hash_name":"Sticker | w0nderful (Holo) | Copenhagen 2024"},"7398":{"market_hash_name":"Sticker | w0nderful (Gold) | Copenhagen 2024"},"7399":{"market_hash_name":"Sticker | fame | Copenhagen 2024"},"74":{"market_hash_name":"Sticker | Reason Gaming (Holo) | Katowice 2014"},"740":{"market_hash_name":"Sticker | olofmeister | Cluj-Napoca 2015"},"7400":{"market_hash_name":"Sticker | fame (Glitter) | Copenhagen 2024"},"7401":{"market_hash_name":"Sticker | fame (Holo) | Copenhagen 2024"},"7402":{"market_hash_name":"Sticker | fame (Gold) | Copenhagen 2024"},"7403":{"market_hash_name":"Sticker | FL1T | Copenhagen 2024"},"7404":{"market_hash_name":"Sticker | FL1T (Glitter) | Copenhagen 2024"},"7405":{"market_hash_name":"Sticker | FL1T (Holo) | Copenhagen 2024"},"7406":{"market_hash_name":"Sticker | FL1T (Gold) | Copenhagen 2024"},"7407":{"market_hash_name":"Sticker | Jame | Copenhagen 2024"},"7408":{"market_hash_name":"Sticker | Jame (Glitter) | Copenhagen 2024"},"7409":{"market_hash_name":"Sticker | Jame (Holo) | Copenhagen 2024"},"741":{"market_hash_name":"Sticker | olofmeister (Foil) | Cluj-Napoca 2015"},"7410":{"market_hash_name":"Sticker | Jame (Gold) | Copenhagen 2024"},"7411":{"market_hash_name":"Sticker | mir | Copenhagen 2024"},"7412":{"market_hash_name":"Sticker | mir (Glitter) | Copenhagen 2024"},"7413":{"market_hash_name":"Sticker | mir (Holo) | Copenhagen 2024"},"7414":{"market_hash_name":"Sticker | mir (Gold) | Copenhagen 2024"},"7415":{"market_hash_name":"Sticker | n0rb3r7 | Copenhagen 2024"},"7416":{"market_hash_name":"Sticker | n0rb3r7 (Glitter) | Copenhagen 2024"},"7417":{"market_hash_name":"Sticker | n0rb3r7 (Holo) | Copenhagen 2024"},"7418":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Copenhagen 2024"},"7419":{"market_hash_name":"Sticker | HooXi | Copenhagen 2024"},"742":{"market_hash_name":"Sticker | olofmeister (Gold) | Cluj-Napoca 2015"},"7420":{"market_hash_name":"Sticker | HooXi (Glitter) | Copenhagen 2024"},"7421":{"market_hash_name":"Sticker | HooXi (Holo) | Copenhagen 2024"},"7422":{"market_hash_name":"Sticker | HooXi (Gold) | Copenhagen 2024"},"7423":{"market_hash_name":"Sticker | huNter- | Copenhagen 2024"},"7424":{"market_hash_name":"Sticker | huNter- (Glitter) | Copenhagen 2024"},"7425":{"market_hash_name":"Sticker | huNter- (Holo) | Copenhagen 2024"},"7426":{"market_hash_name":"Sticker | huNter- (Gold) | Copenhagen 2024"},"7427":{"market_hash_name":"Sticker | m0NESY | Copenhagen 2024"},"7428":{"market_hash_name":"Sticker | m0NESY (Glitter) | Copenhagen 2024"},"7429":{"market_hash_name":"Sticker | m0NESY (Holo) | Copenhagen 2024"},"743":{"market_hash_name":"Sticker | pronax | Cluj-Napoca 2015"},"7430":{"market_hash_name":"Sticker | m0NESY (Gold) | Copenhagen 2024"},"7431":{"market_hash_name":"Sticker | nexa | Copenhagen 2024"},"7432":{"market_hash_name":"Sticker | nexa (Glitter) | Copenhagen 2024"},"7433":{"market_hash_name":"Sticker | nexa (Holo) | Copenhagen 2024"},"7434":{"market_hash_name":"Sticker | nexa (Gold) | Copenhagen 2024"},"7435":{"market_hash_name":"Sticker | NiKo | Copenhagen 2024"},"7436":{"market_hash_name":"Sticker | NiKo (Glitter) | Copenhagen 2024"},"7437":{"market_hash_name":"Sticker | NiKo (Holo) | Copenhagen 2024"},"7438":{"market_hash_name":"Sticker | NiKo (Gold) | Copenhagen 2024"},"7439":{"market_hash_name":"Sticker | broky | Copenhagen 2024"},"744":{"market_hash_name":"Sticker | pronax (Foil) | Cluj-Napoca 2015"},"7440":{"market_hash_name":"Sticker | broky (Glitter) | Copenhagen 2024"},"7441":{"market_hash_name":"Sticker | broky (Holo) | Copenhagen 2024"},"7442":{"market_hash_name":"Sticker | broky (Gold) | Copenhagen 2024"},"7443":{"market_hash_name":"Sticker | frozen | Copenhagen 2024"},"7444":{"market_hash_name":"Sticker | frozen (Glitter) | Copenhagen 2024"},"7445":{"market_hash_name":"Sticker | frozen (Holo) | Copenhagen 2024"},"7446":{"market_hash_name":"Sticker | frozen (Gold) | Copenhagen 2024"},"7447":{"market_hash_name":"Sticker | karrigan | Copenhagen 2024"},"7448":{"market_hash_name":"Sticker | karrigan (Glitter) | Copenhagen 2024"},"7449":{"market_hash_name":"Sticker | karrigan (Holo) | Copenhagen 2024"},"745":{"market_hash_name":"Sticker | pronax (Gold) | Cluj-Napoca 2015"},"7450":{"market_hash_name":"Sticker | karrigan (Gold) | Copenhagen 2024"},"7451":{"market_hash_name":"Sticker | rain | Copenhagen 2024"},"7452":{"market_hash_name":"Sticker | rain (Glitter) | Copenhagen 2024"},"7453":{"market_hash_name":"Sticker | rain (Holo) | Copenhagen 2024"},"7454":{"market_hash_name":"Sticker | rain (Gold) | Copenhagen 2024"},"7455":{"market_hash_name":"Sticker | ropz | Copenhagen 2024"},"7456":{"market_hash_name":"Sticker | ropz (Glitter) | Copenhagen 2024"},"7457":{"market_hash_name":"Sticker | ropz (Holo) | Copenhagen 2024"},"7458":{"market_hash_name":"Sticker | ropz (Gold) | Copenhagen 2024"},"7459":{"market_hash_name":"Sticker | chopper | Copenhagen 2024"},"746":{"market_hash_name":"Sticker | dennis | Cluj-Napoca 2015"},"7460":{"market_hash_name":"Sticker | chopper (Glitter) | Copenhagen 2024"},"7461":{"market_hash_name":"Sticker | chopper (Holo) | Copenhagen 2024"},"7462":{"market_hash_name":"Sticker | chopper (Gold) | Copenhagen 2024"},"7463":{"market_hash_name":"Sticker | donk | Copenhagen 2024"},"7464":{"market_hash_name":"Sticker | donk (Glitter) | Copenhagen 2024"},"7465":{"market_hash_name":"Sticker | donk (Holo) | Copenhagen 2024"},"7466":{"market_hash_name":"Sticker | donk (Gold) | Copenhagen 2024"},"7467":{"market_hash_name":"Sticker | magixx | Copenhagen 2024"},"7468":{"market_hash_name":"Sticker | magixx (Glitter) | Copenhagen 2024"},"7469":{"market_hash_name":"Sticker | magixx (Holo) | Copenhagen 2024"},"747":{"market_hash_name":"Sticker | dennis (Foil) | Cluj-Napoca 2015"},"7470":{"market_hash_name":"Sticker | magixx (Gold) | Copenhagen 2024"},"7471":{"market_hash_name":"Sticker | sh1ro | Copenhagen 2024"},"7472":{"market_hash_name":"Sticker | sh1ro (Glitter) | Copenhagen 2024"},"7473":{"market_hash_name":"Sticker | sh1ro (Holo) | Copenhagen 2024"},"7474":{"market_hash_name":"Sticker | sh1ro (Gold) | Copenhagen 2024"},"7475":{"market_hash_name":"Sticker | zont1x | Copenhagen 2024"},"7476":{"market_hash_name":"Sticker | zont1x (Glitter) | Copenhagen 2024"},"7477":{"market_hash_name":"Sticker | zont1x (Holo) | Copenhagen 2024"},"7478":{"market_hash_name":"Sticker | zont1x (Gold) | Copenhagen 2024"},"7479":{"market_hash_name":"Sticker | apEX | Copenhagen 2024"},"748":{"market_hash_name":"Sticker | dennis (Gold) | Cluj-Napoca 2015"},"7480":{"market_hash_name":"Sticker | apEX (Glitter) | Copenhagen 2024"},"7481":{"market_hash_name":"Sticker | apEX (Holo) | Copenhagen 2024"},"7482":{"market_hash_name":"Sticker | apEX (Gold) | Copenhagen 2024"},"7483":{"market_hash_name":"Sticker | FlameZ | Copenhagen 2024"},"7484":{"market_hash_name":"Sticker | FlameZ (Glitter) | Copenhagen 2024"},"7485":{"market_hash_name":"Sticker | FlameZ (Holo) | Copenhagen 2024"},"7486":{"market_hash_name":"Sticker | FlameZ (Gold) | Copenhagen 2024"},"7487":{"market_hash_name":"Sticker | mezii | Copenhagen 2024"},"7488":{"market_hash_name":"Sticker | mezii (Glitter) | Copenhagen 2024"},"7489":{"market_hash_name":"Sticker | mezii (Holo) | Copenhagen 2024"},"749":{"market_hash_name":"Sticker | fox | Cluj-Napoca 2015"},"7490":{"market_hash_name":"Sticker | mezii (Gold) | Copenhagen 2024"},"7491":{"market_hash_name":"Sticker | Spinx | Copenhagen 2024"},"7492":{"market_hash_name":"Sticker | Spinx (Glitter) | Copenhagen 2024"},"7493":{"market_hash_name":"Sticker | Spinx (Holo) | Copenhagen 2024"},"7494":{"market_hash_name":"Sticker | Spinx (Gold) | Copenhagen 2024"},"7495":{"market_hash_name":"Sticker | ZywOo | Copenhagen 2024"},"7496":{"market_hash_name":"Sticker | ZywOo (Glitter) | Copenhagen 2024"},"7497":{"market_hash_name":"Sticker | ZywOo (Holo) | Copenhagen 2024"},"7498":{"market_hash_name":"Sticker | ZywOo (Gold) | Copenhagen 2024"},"7499":{"market_hash_name":"Sticker | Brollan | Copenhagen 2024"},"75":{"market_hash_name":"Sticker | Titan | Katowice 2014"},"750":{"market_hash_name":"Sticker | fox (Foil) | Cluj-Napoca 2015"},"7500":{"market_hash_name":"Sticker | Brollan (Glitter) | Copenhagen 2024"},"7501":{"market_hash_name":"Sticker | Brollan (Holo) | Copenhagen 2024"},"7502":{"market_hash_name":"Sticker | Brollan (Gold) | Copenhagen 2024"},"7503":{"market_hash_name":"Sticker | Jimpphat | Copenhagen 2024"},"7504":{"market_hash_name":"Sticker | Jimpphat (Glitter) | Copenhagen 2024"},"7505":{"market_hash_name":"Sticker | Jimpphat (Holo) | Copenhagen 2024"},"7506":{"market_hash_name":"Sticker | Jimpphat (Gold) | Copenhagen 2024"},"7507":{"market_hash_name":"Sticker | siuhy | Copenhagen 2024"},"7508":{"market_hash_name":"Sticker | siuhy (Glitter) | Copenhagen 2024"},"7509":{"market_hash_name":"Sticker | siuhy (Holo) | Copenhagen 2024"},"751":{"market_hash_name":"Sticker | fox (Gold) | Cluj-Napoca 2015"},"7510":{"market_hash_name":"Sticker | siuhy (Gold) | Copenhagen 2024"},"7511":{"market_hash_name":"Sticker | torzsi | Copenhagen 2024"},"7512":{"market_hash_name":"Sticker | torzsi (Glitter) | Copenhagen 2024"},"7513":{"market_hash_name":"Sticker | torzsi (Holo) | Copenhagen 2024"},"7514":{"market_hash_name":"Sticker | torzsi (Gold) | Copenhagen 2024"},"7515":{"market_hash_name":"Sticker | xertioN | Copenhagen 2024"},"7516":{"market_hash_name":"Sticker | xertioN (Glitter) | Copenhagen 2024"},"7517":{"market_hash_name":"Sticker | xertioN (Holo) | Copenhagen 2024"},"7518":{"market_hash_name":"Sticker | xertioN (Gold) | Copenhagen 2024"},"7519":{"market_hash_name":"Sticker | hallzerk | Copenhagen 2024"},"752":{"market_hash_name":"Sticker | Maikelele | Cluj-Napoca 2015"},"7520":{"market_hash_name":"Sticker | hallzerk (Glitter) | Copenhagen 2024"},"7521":{"market_hash_name":"Sticker | hallzerk (Holo) | Copenhagen 2024"},"7522":{"market_hash_name":"Sticker | hallzerk (Gold) | Copenhagen 2024"},"7523":{"market_hash_name":"Sticker | EliGE | Copenhagen 2024"},"7524":{"market_hash_name":"Sticker | EliGE (Glitter) | Copenhagen 2024"},"7525":{"market_hash_name":"Sticker | EliGE (Holo) | Copenhagen 2024"},"7526":{"market_hash_name":"Sticker | EliGE (Gold) | Copenhagen 2024"},"7527":{"market_hash_name":"Sticker | floppy | Copenhagen 2024"},"7528":{"market_hash_name":"Sticker | floppy (Glitter) | Copenhagen 2024"},"7529":{"market_hash_name":"Sticker | floppy (Holo) | Copenhagen 2024"},"753":{"market_hash_name":"Sticker | Maikelele (Foil) | Cluj-Napoca 2015"},"7530":{"market_hash_name":"Sticker | floppy (Gold) | Copenhagen 2024"},"7531":{"market_hash_name":"Sticker | Grim | Copenhagen 2024"},"7532":{"market_hash_name":"Sticker | Grim (Glitter) | Copenhagen 2024"},"7533":{"market_hash_name":"Sticker | Grim (Holo) | Copenhagen 2024"},"7534":{"market_hash_name":"Sticker | Grim (Gold) | Copenhagen 2024"},"7535":{"market_hash_name":"Sticker | JT | Copenhagen 2024"},"7536":{"market_hash_name":"Sticker | JT (Glitter) | Copenhagen 2024"},"7537":{"market_hash_name":"Sticker | JT (Holo) | Copenhagen 2024"},"7538":{"market_hash_name":"Sticker | JT (Gold) | Copenhagen 2024"},"7539":{"market_hash_name":"Sticker | Ax1Le | Copenhagen 2024"},"754":{"market_hash_name":"Sticker | Maikelele (Gold) | Cluj-Napoca 2015"},"7540":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Copenhagen 2024"},"7541":{"market_hash_name":"Sticker | Ax1Le (Holo) | Copenhagen 2024"},"7542":{"market_hash_name":"Sticker | Ax1Le (Gold) | Copenhagen 2024"},"7543":{"market_hash_name":"Sticker | Boombl4 | Copenhagen 2024"},"7544":{"market_hash_name":"Sticker | Boombl4 (Glitter) | Copenhagen 2024"},"7545":{"market_hash_name":"Sticker | Boombl4 (Holo) | Copenhagen 2024"},"7546":{"market_hash_name":"Sticker | Boombl4 (Gold) | Copenhagen 2024"},"7547":{"market_hash_name":"Sticker | electronic | Copenhagen 2024"},"7548":{"market_hash_name":"Sticker | electronic (Glitter) | Copenhagen 2024"},"7549":{"market_hash_name":"Sticker | electronic (Holo) | Copenhagen 2024"},"755":{"market_hash_name":"Sticker | rain | Cluj-Napoca 2015"},"7550":{"market_hash_name":"Sticker | electronic (Gold) | Copenhagen 2024"},"7551":{"market_hash_name":"Sticker | Hobbit | Copenhagen 2024"},"7552":{"market_hash_name":"Sticker | Hobbit (Glitter) | Copenhagen 2024"},"7553":{"market_hash_name":"Sticker | Hobbit (Holo) | Copenhagen 2024"},"7554":{"market_hash_name":"Sticker | Hobbit (Gold) | Copenhagen 2024"},"7555":{"market_hash_name":"Sticker | Perfecto | Copenhagen 2024"},"7556":{"market_hash_name":"Sticker | Perfecto (Glitter) | Copenhagen 2024"},"7557":{"market_hash_name":"Sticker | Perfecto (Holo) | Copenhagen 2024"},"7558":{"market_hash_name":"Sticker | Perfecto (Gold) | Copenhagen 2024"},"7559":{"market_hash_name":"Sticker | Goofy | Copenhagen 2024"},"756":{"market_hash_name":"Sticker | rain (Foil) | Cluj-Napoca 2015"},"7560":{"market_hash_name":"Sticker | Goofy (Glitter) | Copenhagen 2024"},"7561":{"market_hash_name":"Sticker | Goofy (Holo) | Copenhagen 2024"},"7562":{"market_hash_name":"Sticker | Goofy (Gold) | Copenhagen 2024"},"7563":{"market_hash_name":"Sticker | Kylar | Copenhagen 2024"},"7564":{"market_hash_name":"Sticker | Kylar (Glitter) | Copenhagen 2024"},"7565":{"market_hash_name":"Sticker | Kylar (Holo) | Copenhagen 2024"},"7566":{"market_hash_name":"Sticker | Kylar (Gold) | Copenhagen 2024"},"7567":{"market_hash_name":"Sticker | Dycha | Copenhagen 2024"},"7568":{"market_hash_name":"Sticker | Dycha (Glitter) | Copenhagen 2024"},"7569":{"market_hash_name":"Sticker | Dycha (Holo) | Copenhagen 2024"},"757":{"market_hash_name":"Sticker | rain (Gold) | Cluj-Napoca 2015"},"7570":{"market_hash_name":"Sticker | Dycha (Gold) | Copenhagen 2024"},"7571":{"market_hash_name":"Sticker | gla1ve | Copenhagen 2024"},"7572":{"market_hash_name":"Sticker | gla1ve (Glitter) | Copenhagen 2024"},"7573":{"market_hash_name":"Sticker | gla1ve (Holo) | Copenhagen 2024"},"7574":{"market_hash_name":"Sticker | gla1ve (Gold) | Copenhagen 2024"},"7575":{"market_hash_name":"Sticker | hades | Copenhagen 2024"},"7576":{"market_hash_name":"Sticker | hades (Glitter) | Copenhagen 2024"},"7577":{"market_hash_name":"Sticker | hades (Holo) | Copenhagen 2024"},"7578":{"market_hash_name":"Sticker | hades (Gold) | Copenhagen 2024"},"7579":{"market_hash_name":"Sticker | arT | Copenhagen 2024"},"758":{"market_hash_name":"Sticker | jkaem | Cluj-Napoca 2015"},"7580":{"market_hash_name":"Sticker | arT (Glitter) | Copenhagen 2024"},"7581":{"market_hash_name":"Sticker | arT (Holo) | Copenhagen 2024"},"7582":{"market_hash_name":"Sticker | arT (Gold) | Copenhagen 2024"},"7583":{"market_hash_name":"Sticker | chelo | Copenhagen 2024"},"7584":{"market_hash_name":"Sticker | chelo (Glitter) | Copenhagen 2024"},"7585":{"market_hash_name":"Sticker | chelo (Holo) | Copenhagen 2024"},"7586":{"market_hash_name":"Sticker | chelo (Gold) | Copenhagen 2024"},"7587":{"market_hash_name":"Sticker | FalleN | Copenhagen 2024"},"7588":{"market_hash_name":"Sticker | FalleN (Glitter) | Copenhagen 2024"},"7589":{"market_hash_name":"Sticker | FalleN (Holo) | Copenhagen 2024"},"759":{"market_hash_name":"Sticker | jkaem (Foil) | Cluj-Napoca 2015"},"7590":{"market_hash_name":"Sticker | FalleN (Gold) | Copenhagen 2024"},"7591":{"market_hash_name":"Sticker | KSCERATO | Copenhagen 2024"},"7592":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Copenhagen 2024"},"7593":{"market_hash_name":"Sticker | KSCERATO (Holo) | Copenhagen 2024"},"7594":{"market_hash_name":"Sticker | KSCERATO (Gold) | Copenhagen 2024"},"7595":{"market_hash_name":"Sticker | yuurih | Copenhagen 2024"},"7596":{"market_hash_name":"Sticker | yuurih (Glitter) | Copenhagen 2024"},"7597":{"market_hash_name":"Sticker | yuurih (Holo) | Copenhagen 2024"},"7598":{"market_hash_name":"Sticker | yuurih (Gold) | Copenhagen 2024"},"7599":{"market_hash_name":"Sticker | kyxsan | Copenhagen 2024"},"76":{"market_hash_name":"Sticker | Titan (Holo) | Katowice 2014"},"760":{"market_hash_name":"Sticker | jkaem (Gold) | Cluj-Napoca 2015"},"7600":{"market_hash_name":"Sticker | kyxsan (Glitter) | Copenhagen 2024"},"7601":{"market_hash_name":"Sticker | kyxsan (Holo) | Copenhagen 2024"},"7602":{"market_hash_name":"Sticker | kyxsan (Gold) | Copenhagen 2024"},"7603":{"market_hash_name":"Sticker | NertZ | Copenhagen 2024"},"7604":{"market_hash_name":"Sticker | NertZ (Glitter) | Copenhagen 2024"},"7605":{"market_hash_name":"Sticker | NertZ (Holo) | Copenhagen 2024"},"7606":{"market_hash_name":"Sticker | NertZ (Gold) | Copenhagen 2024"},"7607":{"market_hash_name":"Sticker | nicoodoz | Copenhagen 2024"},"7608":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Copenhagen 2024"},"7609":{"market_hash_name":"Sticker | nicoodoz (Holo) | Copenhagen 2024"},"761":{"market_hash_name":"Sticker | boltz | Cluj-Napoca 2015"},"7610":{"market_hash_name":"Sticker | nicoodoz (Gold) | Copenhagen 2024"},"7611":{"market_hash_name":"Sticker | sjuush | Copenhagen 2024"},"7612":{"market_hash_name":"Sticker | sjuush (Glitter) | Copenhagen 2024"},"7613":{"market_hash_name":"Sticker | sjuush (Holo) | Copenhagen 2024"},"7614":{"market_hash_name":"Sticker | sjuush (Gold) | Copenhagen 2024"},"7615":{"market_hash_name":"Sticker | TeSeS | Copenhagen 2024"},"7616":{"market_hash_name":"Sticker | TeSeS (Glitter) | Copenhagen 2024"},"7617":{"market_hash_name":"Sticker | TeSeS (Holo) | Copenhagen 2024"},"7618":{"market_hash_name":"Sticker | TeSeS (Gold) | Copenhagen 2024"},"7619":{"market_hash_name":"Sticker | Calyx | Copenhagen 2024"},"762":{"market_hash_name":"Sticker | boltz (Foil) | Cluj-Napoca 2015"},"7620":{"market_hash_name":"Sticker | Calyx (Glitter) | Copenhagen 2024"},"7621":{"market_hash_name":"Sticker | Calyx (Holo) | Copenhagen 2024"},"7622":{"market_hash_name":"Sticker | Calyx (Gold) | Copenhagen 2024"},"7623":{"market_hash_name":"Sticker | MAJ3R | Copenhagen 2024"},"7624":{"market_hash_name":"Sticker | MAJ3R (Glitter) | Copenhagen 2024"},"7625":{"market_hash_name":"Sticker | MAJ3R (Holo) | Copenhagen 2024"},"7626":{"market_hash_name":"Sticker | MAJ3R (Gold) | Copenhagen 2024"},"7627":{"market_hash_name":"Sticker | Wicadia | Copenhagen 2024"},"7628":{"market_hash_name":"Sticker | Wicadia (Glitter) | Copenhagen 2024"},"7629":{"market_hash_name":"Sticker | Wicadia (Holo) | Copenhagen 2024"},"763":{"market_hash_name":"Sticker | boltz (Gold) | Cluj-Napoca 2015"},"7630":{"market_hash_name":"Sticker | Wicadia (Gold) | Copenhagen 2024"},"7631":{"market_hash_name":"Sticker | woxic | Copenhagen 2024"},"7632":{"market_hash_name":"Sticker | woxic (Glitter) | Copenhagen 2024"},"7633":{"market_hash_name":"Sticker | woxic (Holo) | Copenhagen 2024"},"7634":{"market_hash_name":"Sticker | woxic (Gold) | Copenhagen 2024"},"7635":{"market_hash_name":"Sticker | XANTARES | Copenhagen 2024"},"7636":{"market_hash_name":"Sticker | XANTARES (Glitter) | Copenhagen 2024"},"7637":{"market_hash_name":"Sticker | XANTARES (Holo) | Copenhagen 2024"},"7638":{"market_hash_name":"Sticker | XANTARES (Gold) | Copenhagen 2024"},"7639":{"market_hash_name":"Sticker | nawwk | Copenhagen 2024"},"764":{"market_hash_name":"Sticker | coldzera | Cluj-Napoca 2015"},"7640":{"market_hash_name":"Sticker | nawwk (Glitter) | Copenhagen 2024"},"7641":{"market_hash_name":"Sticker | nawwk (Holo) | Copenhagen 2024"},"7642":{"market_hash_name":"Sticker | nawwk (Gold) | Copenhagen 2024"},"7643":{"market_hash_name":"Sticker | CacaNito | Copenhagen 2024"},"7644":{"market_hash_name":"Sticker | CacaNito (Glitter) | Copenhagen 2024"},"7645":{"market_hash_name":"Sticker | CacaNito (Holo) | Copenhagen 2024"},"7646":{"market_hash_name":"Sticker | CacaNito (Gold) | Copenhagen 2024"},"7647":{"market_hash_name":"Sticker | jkaem | Copenhagen 2024"},"7648":{"market_hash_name":"Sticker | jkaem (Glitter) | Copenhagen 2024"},"7649":{"market_hash_name":"Sticker | jkaem (Holo) | Copenhagen 2024"},"765":{"market_hash_name":"Sticker | coldzera (Foil) | Cluj-Napoca 2015"},"7650":{"market_hash_name":"Sticker | jkaem (Gold) | Copenhagen 2024"},"7651":{"market_hash_name":"Sticker | sense | Copenhagen 2024"},"7652":{"market_hash_name":"Sticker | sense (Glitter) | Copenhagen 2024"},"7653":{"market_hash_name":"Sticker | sense (Holo) | Copenhagen 2024"},"7654":{"market_hash_name":"Sticker | sense (Gold) | Copenhagen 2024"},"7655":{"market_hash_name":"Sticker | STYKO | Copenhagen 2024"},"7656":{"market_hash_name":"Sticker | STYKO (Glitter) | Copenhagen 2024"},"7657":{"market_hash_name":"Sticker | STYKO (Holo) | Copenhagen 2024"},"7658":{"market_hash_name":"Sticker | STYKO (Gold) | Copenhagen 2024"},"7659":{"market_hash_name":"Sticker | acoR | Copenhagen 2024"},"766":{"market_hash_name":"Sticker | coldzera (Gold) | Cluj-Napoca 2015"},"7660":{"market_hash_name":"Sticker | acoR (Glitter) | Copenhagen 2024"},"7661":{"market_hash_name":"Sticker | acoR (Holo) | Copenhagen 2024"},"7662":{"market_hash_name":"Sticker | acoR (Gold) | Copenhagen 2024"},"7663":{"market_hash_name":"Sticker | isak | Copenhagen 2024"},"7664":{"market_hash_name":"Sticker | isak (Glitter) | Copenhagen 2024"},"7665":{"market_hash_name":"Sticker | isak (Holo) | Copenhagen 2024"},"7666":{"market_hash_name":"Sticker | isak (Gold) | Copenhagen 2024"},"7667":{"market_hash_name":"Sticker | Keoz | Copenhagen 2024"},"7668":{"market_hash_name":"Sticker | Keoz (Glitter) | Copenhagen 2024"},"7669":{"market_hash_name":"Sticker | Keoz (Holo) | Copenhagen 2024"},"767":{"market_hash_name":"Sticker | FalleN | Cluj-Napoca 2015"},"7670":{"market_hash_name":"Sticker | Keoz (Gold) | Copenhagen 2024"},"7671":{"market_hash_name":"Sticker | Snax | Copenhagen 2024"},"7672":{"market_hash_name":"Sticker | Snax (Glitter) | Copenhagen 2024"},"7673":{"market_hash_name":"Sticker | Snax (Holo) | Copenhagen 2024"},"7674":{"market_hash_name":"Sticker | Snax (Gold) | Copenhagen 2024"},"7675":{"market_hash_name":"Sticker | volt | Copenhagen 2024"},"7676":{"market_hash_name":"Sticker | volt (Glitter) | Copenhagen 2024"},"7677":{"market_hash_name":"Sticker | volt (Holo) | Copenhagen 2024"},"7678":{"market_hash_name":"Sticker | volt (Gold) | Copenhagen 2024"},"7679":{"market_hash_name":"Sticker | arrozdoce | Copenhagen 2024"},"768":{"market_hash_name":"Sticker | FalleN (Foil) | Cluj-Napoca 2015"},"7680":{"market_hash_name":"Sticker | arrozdoce (Glitter) | Copenhagen 2024"},"7681":{"market_hash_name":"Sticker | arrozdoce (Holo) | Copenhagen 2024"},"7682":{"market_hash_name":"Sticker | arrozdoce (Gold) | Copenhagen 2024"},"7683":{"market_hash_name":"Sticker | ewjerkz | Copenhagen 2024"},"7684":{"market_hash_name":"Sticker | ewjerkz (Glitter) | Copenhagen 2024"},"7685":{"market_hash_name":"Sticker | ewjerkz (Holo) | Copenhagen 2024"},"7686":{"market_hash_name":"Sticker | ewjerkz (Gold) | Copenhagen 2024"},"7687":{"market_hash_name":"Sticker | MUTiRiS | Copenhagen 2024"},"7688":{"market_hash_name":"Sticker | MUTiRiS (Glitter) | Copenhagen 2024"},"7689":{"market_hash_name":"Sticker | MUTiRiS (Holo) | Copenhagen 2024"},"769":{"market_hash_name":"Sticker | FalleN (Gold) | Cluj-Napoca 2015"},"7690":{"market_hash_name":"Sticker | MUTiRiS (Gold) | Copenhagen 2024"},"7691":{"market_hash_name":"Sticker | roman | Copenhagen 2024"},"7692":{"market_hash_name":"Sticker | roman (Glitter) | Copenhagen 2024"},"7693":{"market_hash_name":"Sticker | roman (Holo) | Copenhagen 2024"},"7694":{"market_hash_name":"Sticker | roman (Gold) | Copenhagen 2024"},"7695":{"market_hash_name":"Sticker | story | Copenhagen 2024"},"7696":{"market_hash_name":"Sticker | story (Glitter) | Copenhagen 2024"},"7697":{"market_hash_name":"Sticker | story (Holo) | Copenhagen 2024"},"7698":{"market_hash_name":"Sticker | story (Gold) | Copenhagen 2024"},"7699":{"market_hash_name":"Sticker | biguzera | Copenhagen 2024"},"77":{"market_hash_name":"Sticker | Virtus.Pro | Katowice 2014"},"770":{"market_hash_name":"Sticker | fer | Cluj-Napoca 2015"},"7700":{"market_hash_name":"Sticker | biguzera (Glitter) | Copenhagen 2024"},"7701":{"market_hash_name":"Sticker | biguzera (Holo) | Copenhagen 2024"},"7702":{"market_hash_name":"Sticker | biguzera (Gold) | Copenhagen 2024"},"7703":{"market_hash_name":"Sticker | kauez | Copenhagen 2024"},"7704":{"market_hash_name":"Sticker | kauez (Glitter) | Copenhagen 2024"},"7705":{"market_hash_name":"Sticker | kauez (Holo) | Copenhagen 2024"},"7706":{"market_hash_name":"Sticker | kauez (Gold) | Copenhagen 2024"},"7707":{"market_hash_name":"Sticker | lux | Copenhagen 2024"},"7708":{"market_hash_name":"Sticker | lux (Glitter) | Copenhagen 2024"},"7709":{"market_hash_name":"Sticker | lux (Holo) | Copenhagen 2024"},"771":{"market_hash_name":"Sticker | fer (Foil) | Cluj-Napoca 2015"},"7710":{"market_hash_name":"Sticker | lux (Gold) | Copenhagen 2024"},"7711":{"market_hash_name":"Sticker | n1ssim | Copenhagen 2024"},"7712":{"market_hash_name":"Sticker | n1ssim (Glitter) | Copenhagen 2024"},"7713":{"market_hash_name":"Sticker | n1ssim (Holo) | Copenhagen 2024"},"7714":{"market_hash_name":"Sticker | n1ssim (Gold) | Copenhagen 2024"},"7715":{"market_hash_name":"Sticker | NQZ | Copenhagen 2024"},"7716":{"market_hash_name":"Sticker | NQZ (Glitter) | Copenhagen 2024"},"7717":{"market_hash_name":"Sticker | NQZ (Holo) | Copenhagen 2024"},"7718":{"market_hash_name":"Sticker | NQZ (Gold) | Copenhagen 2024"},"7719":{"market_hash_name":"Sticker | decenty | Copenhagen 2024"},"772":{"market_hash_name":"Sticker | fer (Gold) | Cluj-Napoca 2015"},"7720":{"market_hash_name":"Sticker | decenty (Glitter) | Copenhagen 2024"},"7721":{"market_hash_name":"Sticker | decenty (Holo) | Copenhagen 2024"},"7722":{"market_hash_name":"Sticker | decenty (Gold) | Copenhagen 2024"},"7723":{"market_hash_name":"Sticker | felps | Copenhagen 2024"},"7724":{"market_hash_name":"Sticker | felps (Glitter) | Copenhagen 2024"},"7725":{"market_hash_name":"Sticker | felps (Holo) | Copenhagen 2024"},"7726":{"market_hash_name":"Sticker | felps (Gold) | Copenhagen 2024"},"7727":{"market_hash_name":"Sticker | HEN1 | Copenhagen 2024"},"7728":{"market_hash_name":"Sticker | HEN1 (Glitter) | Copenhagen 2024"},"7729":{"market_hash_name":"Sticker | HEN1 (Holo) | Copenhagen 2024"},"773":{"market_hash_name":"Sticker | steel | Cluj-Napoca 2015"},"7730":{"market_hash_name":"Sticker | HEN1 (Gold) | Copenhagen 2024"},"7731":{"market_hash_name":"Sticker | noway | Copenhagen 2024"},"7732":{"market_hash_name":"Sticker | noway (Glitter) | Copenhagen 2024"},"7733":{"market_hash_name":"Sticker | noway (Holo) | Copenhagen 2024"},"7734":{"market_hash_name":"Sticker | noway (Gold) | Copenhagen 2024"},"7735":{"market_hash_name":"Sticker | VINI | Copenhagen 2024"},"7736":{"market_hash_name":"Sticker | VINI (Glitter) | Copenhagen 2024"},"7737":{"market_hash_name":"Sticker | VINI (Holo) | Copenhagen 2024"},"7738":{"market_hash_name":"Sticker | VINI (Gold) | Copenhagen 2024"},"7739":{"market_hash_name":"Sticker | 910 | Copenhagen 2024"},"774":{"market_hash_name":"Sticker | steel (Foil) | Cluj-Napoca 2015"},"7740":{"market_hash_name":"Sticker | 910 (Glitter) | Copenhagen 2024"},"7741":{"market_hash_name":"Sticker | 910 (Holo) | Copenhagen 2024"},"7742":{"market_hash_name":"Sticker | 910 (Gold) | Copenhagen 2024"},"7743":{"market_hash_name":"Sticker | bLitz | Copenhagen 2024"},"7744":{"market_hash_name":"Sticker | bLitz (Glitter) | Copenhagen 2024"},"7745":{"market_hash_name":"Sticker | bLitz (Holo) | Copenhagen 2024"},"7746":{"market_hash_name":"Sticker | bLitz (Gold) | Copenhagen 2024"},"7747":{"market_hash_name":"Sticker | mzinho | Copenhagen 2024"},"7748":{"market_hash_name":"Sticker | mzinho (Glitter) | Copenhagen 2024"},"7749":{"market_hash_name":"Sticker | mzinho (Holo) | Copenhagen 2024"},"775":{"market_hash_name":"Sticker | steel (Gold) | Cluj-Napoca 2015"},"7750":{"market_hash_name":"Sticker | mzinho (Gold) | Copenhagen 2024"},"7751":{"market_hash_name":"Sticker | Senzu | Copenhagen 2024"},"7752":{"market_hash_name":"Sticker | Senzu (Glitter) | Copenhagen 2024"},"7753":{"market_hash_name":"Sticker | Senzu (Holo) | Copenhagen 2024"},"7754":{"market_hash_name":"Sticker | Senzu (Gold) | Copenhagen 2024"},"7755":{"market_hash_name":"Sticker | Techno4K | Copenhagen 2024"},"7756":{"market_hash_name":"Sticker | Techno4K (Glitter) | Copenhagen 2024"},"7757":{"market_hash_name":"Sticker | Techno4K (Holo) | Copenhagen 2024"},"7758":{"market_hash_name":"Sticker | Techno4K (Gold) | Copenhagen 2024"},"7759":{"market_hash_name":"Sticker | Forester | Copenhagen 2024"},"776":{"market_hash_name":"Sticker | chrisJ | Cluj-Napoca 2015"},"7760":{"market_hash_name":"Sticker | Forester (Glitter) | Copenhagen 2024"},"7761":{"market_hash_name":"Sticker | Forester (Holo) | Copenhagen 2024"},"7762":{"market_hash_name":"Sticker | Forester (Gold) | Copenhagen 2024"},"7763":{"market_hash_name":"Sticker | ICY | Copenhagen 2024"},"7764":{"market_hash_name":"Sticker | ICY (Glitter) | Copenhagen 2024"},"7765":{"market_hash_name":"Sticker | ICY (Holo) | Copenhagen 2024"},"7766":{"market_hash_name":"Sticker | ICY (Gold) | Copenhagen 2024"},"7767":{"market_hash_name":"Sticker | Krad | Copenhagen 2024"},"7768":{"market_hash_name":"Sticker | Krad (Glitter) | Copenhagen 2024"},"7769":{"market_hash_name":"Sticker | Krad (Holo) | Copenhagen 2024"},"777":{"market_hash_name":"Sticker | chrisJ (Foil) | Cluj-Napoca 2015"},"7770":{"market_hash_name":"Sticker | Krad (Gold) | Copenhagen 2024"},"7771":{"market_hash_name":"Sticker | NickelBack | Copenhagen 2024"},"7772":{"market_hash_name":"Sticker | NickelBack (Glitter) | Copenhagen 2024"},"7773":{"market_hash_name":"Sticker | NickelBack (Holo) | Copenhagen 2024"},"7774":{"market_hash_name":"Sticker | NickelBack (Gold) | Copenhagen 2024"},"7775":{"market_hash_name":"Sticker | TRAVIS | Copenhagen 2024"},"7776":{"market_hash_name":"Sticker | TRAVIS (Glitter) | Copenhagen 2024"},"7777":{"market_hash_name":"Sticker | TRAVIS (Holo) | Copenhagen 2024"},"7778":{"market_hash_name":"Sticker | TRAVIS (Gold) | Copenhagen 2024"},"7779":{"market_hash_name":"Sticker | kraghen | Copenhagen 2024"},"778":{"market_hash_name":"Sticker | chrisJ (Gold) | Cluj-Napoca 2015"},"7780":{"market_hash_name":"Sticker | kraghen (Glitter) | Copenhagen 2024"},"7781":{"market_hash_name":"Sticker | kraghen (Holo) | Copenhagen 2024"},"7782":{"market_hash_name":"Sticker | kraghen (Gold) | Copenhagen 2024"},"7783":{"market_hash_name":"Sticker | Nodios | Copenhagen 2024"},"7784":{"market_hash_name":"Sticker | Nodios (Glitter) | Copenhagen 2024"},"7785":{"market_hash_name":"Sticker | Nodios (Holo) | Copenhagen 2024"},"7786":{"market_hash_name":"Sticker | Nodios (Gold) | Copenhagen 2024"},"7787":{"market_hash_name":"Sticker | Patti | Copenhagen 2024"},"7788":{"market_hash_name":"Sticker | Patti (Glitter) | Copenhagen 2024"},"7789":{"market_hash_name":"Sticker | Patti (Holo) | Copenhagen 2024"},"779":{"market_hash_name":"Sticker | denis | Cluj-Napoca 2015"},"7790":{"market_hash_name":"Sticker | Patti (Gold) | Copenhagen 2024"},"7791":{"market_hash_name":"Sticker | Queenix | Copenhagen 2024"},"7792":{"market_hash_name":"Sticker | Queenix (Glitter) | Copenhagen 2024"},"7793":{"market_hash_name":"Sticker | Queenix (Holo) | Copenhagen 2024"},"7794":{"market_hash_name":"Sticker | Queenix (Gold) | Copenhagen 2024"},"7795":{"market_hash_name":"Sticker | salazar | Copenhagen 2024"},"7796":{"market_hash_name":"Sticker | salazar (Glitter) | Copenhagen 2024"},"7797":{"market_hash_name":"Sticker | salazar (Holo) | Copenhagen 2024"},"7798":{"market_hash_name":"Sticker | salazar (Gold) | Copenhagen 2024"},"7799":{"market_hash_name":"Sticker | adamS | Copenhagen 2024"},"78":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Katowice 2014"},"780":{"market_hash_name":"Sticker | denis (Foil) | Cluj-Napoca 2015"},"7800":{"market_hash_name":"Sticker | adamS (Glitter) | Copenhagen 2024"},"7801":{"market_hash_name":"Sticker | adamS (Holo) | Copenhagen 2024"},"7802":{"market_hash_name":"Sticker | adamS (Gold) | Copenhagen 2024"},"7803":{"market_hash_name":"Sticker | dav1g | Copenhagen 2024"},"7804":{"market_hash_name":"Sticker | dav1g (Glitter) | Copenhagen 2024"},"7805":{"market_hash_name":"Sticker | dav1g (Holo) | Copenhagen 2024"},"7806":{"market_hash_name":"Sticker | dav1g (Gold) | Copenhagen 2024"},"7807":{"market_hash_name":"Sticker | JUST | Copenhagen 2024"},"7808":{"market_hash_name":"Sticker | JUST (Glitter) | Copenhagen 2024"},"7809":{"market_hash_name":"Sticker | JUST (Holo) | Copenhagen 2024"},"781":{"market_hash_name":"Sticker | denis (Gold) | Cluj-Napoca 2015"},"7810":{"market_hash_name":"Sticker | JUST (Gold) | Copenhagen 2024"},"7811":{"market_hash_name":"Sticker | mopoz | Copenhagen 2024"},"7812":{"market_hash_name":"Sticker | mopoz (Glitter) | Copenhagen 2024"},"7813":{"market_hash_name":"Sticker | mopoz (Holo) | Copenhagen 2024"},"7814":{"market_hash_name":"Sticker | mopoz (Gold) | Copenhagen 2024"},"7815":{"market_hash_name":"Sticker | stadodo | Copenhagen 2024"},"7816":{"market_hash_name":"Sticker | stadodo (Glitter) | Copenhagen 2024"},"7817":{"market_hash_name":"Sticker | stadodo (Holo) | Copenhagen 2024"},"7818":{"market_hash_name":"Sticker | stadodo (Gold) | Copenhagen 2024"},"7819":{"market_hash_name":"Sticker | b4rtiN | Copenhagen 2024"},"782":{"market_hash_name":"Sticker | gob b | Cluj-Napoca 2015"},"7820":{"market_hash_name":"Sticker | b4rtiN (Glitter) | Copenhagen 2024"},"7821":{"market_hash_name":"Sticker | b4rtiN (Holo) | Copenhagen 2024"},"7822":{"market_hash_name":"Sticker | b4rtiN (Gold) | Copenhagen 2024"},"7823":{"market_hash_name":"Sticker | coldzera | Copenhagen 2024"},"7824":{"market_hash_name":"Sticker | coldzera (Glitter) | Copenhagen 2024"},"7825":{"market_hash_name":"Sticker | coldzera (Holo) | Copenhagen 2024"},"7826":{"market_hash_name":"Sticker | coldzera (Gold) | Copenhagen 2024"},"7827":{"market_hash_name":"Sticker | dumau | Copenhagen 2024"},"7828":{"market_hash_name":"Sticker | dumau (Glitter) | Copenhagen 2024"},"7829":{"market_hash_name":"Sticker | dumau (Holo) | Copenhagen 2024"},"783":{"market_hash_name":"Sticker | gob b (Foil) | Cluj-Napoca 2015"},"7830":{"market_hash_name":"Sticker | dumau (Gold) | Copenhagen 2024"},"7831":{"market_hash_name":"Sticker | latto | Copenhagen 2024"},"7832":{"market_hash_name":"Sticker | latto (Glitter) | Copenhagen 2024"},"7833":{"market_hash_name":"Sticker | latto (Holo) | Copenhagen 2024"},"7834":{"market_hash_name":"Sticker | latto (Gold) | Copenhagen 2024"},"7835":{"market_hash_name":"Sticker | NEKiZ | Copenhagen 2024"},"7836":{"market_hash_name":"Sticker | NEKiZ (Glitter) | Copenhagen 2024"},"7837":{"market_hash_name":"Sticker | NEKiZ (Holo) | Copenhagen 2024"},"7838":{"market_hash_name":"Sticker | NEKiZ (Gold) | Copenhagen 2024"},"7839":{"market_hash_name":"Sticker | EmiliaQAQ | Copenhagen 2024"},"784":{"market_hash_name":"Sticker | gob b (Gold) | Cluj-Napoca 2015"},"7840":{"market_hash_name":"Sticker | EmiliaQAQ (Glitter) | Copenhagen 2024"},"7841":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Copenhagen 2024"},"7842":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Copenhagen 2024"},"7843":{"market_hash_name":"Sticker | Jee | Copenhagen 2024"},"7844":{"market_hash_name":"Sticker | Jee (Glitter) | Copenhagen 2024"},"7845":{"market_hash_name":"Sticker | Jee (Holo) | Copenhagen 2024"},"7846":{"market_hash_name":"Sticker | Jee (Gold) | Copenhagen 2024"},"7847":{"market_hash_name":"Sticker | Starry | Copenhagen 2024"},"7848":{"market_hash_name":"Sticker | Starry (Glitter) | Copenhagen 2024"},"7849":{"market_hash_name":"Sticker | Starry (Holo) | Copenhagen 2024"},"785":{"market_hash_name":"Sticker | nex | Cluj-Napoca 2015"},"7850":{"market_hash_name":"Sticker | Starry (Gold) | Copenhagen 2024"},"7851":{"market_hash_name":"Sticker | westmelon | Copenhagen 2024"},"7852":{"market_hash_name":"Sticker | westmelon (Glitter) | Copenhagen 2024"},"7853":{"market_hash_name":"Sticker | westmelon (Holo) | Copenhagen 2024"},"7854":{"market_hash_name":"Sticker | westmelon (Gold) | Copenhagen 2024"},"7855":{"market_hash_name":"Sticker | z4KR | Copenhagen 2024"},"7856":{"market_hash_name":"Sticker | z4KR (Glitter) | Copenhagen 2024"},"7857":{"market_hash_name":"Sticker | z4KR (Holo) | Copenhagen 2024"},"7858":{"market_hash_name":"Sticker | z4KR (Gold) | Copenhagen 2024"},"7859":{"market_hash_name":"Sticker | jL (Champion) | Copenhagen 2024"},"786":{"market_hash_name":"Sticker | nex (Foil) | Cluj-Napoca 2015"},"7860":{"market_hash_name":"Sticker | jL (Glitter, Champion) | Copenhagen 2024"},"7861":{"market_hash_name":"Sticker | jL (Holo, Champion) | Copenhagen 2024"},"7862":{"market_hash_name":"Sticker | jL (Gold, Champion) | Copenhagen 2024"},"7863":{"market_hash_name":"Sticker | Aleksib (Champion) | Copenhagen 2024"},"7864":{"market_hash_name":"Sticker | Aleksib (Glitter, Champion) | Copenhagen 2024"},"7865":{"market_hash_name":"Sticker | Aleksib (Holo, Champion) | Copenhagen 2024"},"7866":{"market_hash_name":"Sticker | Aleksib (Gold, Champion) | Copenhagen 2024"},"7867":{"market_hash_name":"Sticker | b1t (Champion) | Copenhagen 2024"},"7868":{"market_hash_name":"Sticker | b1t (Glitter, Champion) | Copenhagen 2024"},"7869":{"market_hash_name":"Sticker | b1t (Holo, Champion) | Copenhagen 2024"},"787":{"market_hash_name":"Sticker | nex (Gold) | Cluj-Napoca 2015"},"7870":{"market_hash_name":"Sticker | b1t (Gold, Champion) | Copenhagen 2024"},"7871":{"market_hash_name":"Sticker | iM (Champion) | Copenhagen 2024"},"7872":{"market_hash_name":"Sticker | iM (Glitter, Champion) | Copenhagen 2024"},"7873":{"market_hash_name":"Sticker | iM (Holo, Champion) | Copenhagen 2024"},"7874":{"market_hash_name":"Sticker | iM (Gold, Champion) | Copenhagen 2024"},"7875":{"market_hash_name":"Sticker | w0nderful (Champion) | Copenhagen 2024"},"7876":{"market_hash_name":"Sticker | w0nderful (Glitter, Champion) | Copenhagen 2024"},"7877":{"market_hash_name":"Sticker | w0nderful (Holo, Champion) | Copenhagen 2024"},"7878":{"market_hash_name":"Sticker | w0nderful (Gold, Champion) | Copenhagen 2024"},"7879":{"market_hash_name":"Sticker | Lefty (T)"},"788":{"market_hash_name":"Sticker | NiKo | Cluj-Napoca 2015"},"7880":{"market_hash_name":"Sticker | Red Shades (Foil)"},"7881":{"market_hash_name":"Sticker | Mustachio (Foil)"},"7882":{"market_hash_name":"Sticker | Bolt Strike"},"7883":{"market_hash_name":"Sticker | Bolt Charge"},"7884":{"market_hash_name":"Sticker | Bolt Energy"},"7885":{"market_hash_name":"Sticker | High Heat"},"7886":{"market_hash_name":"Sticker | Hot Rod Heat"},"7887":{"market_hash_name":"Sticker | Scorch Loop (Reverse)"},"7888":{"market_hash_name":"Sticker | Winding Scorch"},"7889":{"market_hash_name":"Sticker | Mirage (Gold)"},"789":{"market_hash_name":"Sticker | NiKo (Foil) | Cluj-Napoca 2015"},"7890":{"market_hash_name":"Sticker | Overpass (Gold)"},"7891":{"market_hash_name":"Sticker | Scorch Loop"},"7892":{"market_hash_name":"Sticker | Boom Detonation"},"7893":{"market_hash_name":"Sticker | Boom Epicenter"},"7894":{"market_hash_name":"Sticker | Boom Blast"},"7895":{"market_hash_name":"Sticker | Boom Trail"},"7896":{"market_hash_name":"Sticker | Rainbow Route (Holo)"},"7897":{"market_hash_name":"Sticker | Boom Detonation (Glitter)"},"7898":{"market_hash_name":"Sticker | Boom Epicenter (Glitter)"},"7899":{"market_hash_name":"Sticker | Boom Blast (Glitter)"},"79":{"market_hash_name":"Sticker | Vox Eminor | Katowice 2014"},"790":{"market_hash_name":"Sticker | NiKo (Gold) | Cluj-Napoca 2015"},"7900":{"market_hash_name":"Sticker | Boom Trail (Glitter)"},"7901":{"market_hash_name":"Sticker | Bolt Strike (Foil)"},"7902":{"market_hash_name":"Sticker | Bolt Charge (Foil)"},"7903":{"market_hash_name":"Sticker | Bolt Energy (Foil)"},"7904":{"market_hash_name":"Sticker | Winding Scorch (Foil)"},"7905":{"market_hash_name":"Sticker | Flex"},"7906":{"market_hash_name":"Sticker | Clown Nose"},"7907":{"market_hash_name":"Sticker | Clown Wig"},"7909":{"market_hash_name":"Sticker | Quick Peek"},"791":{"market_hash_name":"Sticker | Edward | Cluj-Napoca 2015"},"7910":{"market_hash_name":"Sticker | XD"},"7911":{"market_hash_name":"Sticker | Ribbon Tie"},"7912":{"market_hash_name":"Sticker | Taste Bud"},"7913":{"market_hash_name":"Sticker | Kawaii Eyes (Glitter)"},"7914":{"market_hash_name":"Sticker | From The Deep (Glitter)"},"7915":{"market_hash_name":"Sticker | Say Cheese (Holo)"},"7916":{"market_hash_name":"Sticker | Taste Buddy (Holo)"},"7917":{"market_hash_name":"Sticker | Gold Teef (Foil)"},"7918":{"market_hash_name":"Sticker | Side Eyes (Lenticular)"},"7919":{"market_hash_name":"Sticker | Googly Eye (Lenticular)"},"792":{"market_hash_name":"Sticker | Edward (Foil) | Cluj-Napoca 2015"},"7921":{"market_hash_name":"Sticker | Hypnoteyes (Holo)"},"7922":{"market_hash_name":"Sticker | Hydro Geyser"},"7923":{"market_hash_name":"Sticker | Hydro Stream"},"7924":{"market_hash_name":"Sticker | Hydro Wave"},"7925":{"market_hash_name":"Sticker | Ruby Stream (Lenticular)"},"7926":{"market_hash_name":"Sticker | Ruby Wave (Lenticular)"},"7927":{"market_hash_name":"Sticker | Strike A Pose"},"7928":{"market_hash_name":"Sticker | G2 Esports | Shanghai 2024"},"7929":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Shanghai 2024"},"793":{"market_hash_name":"Sticker | Edward (Gold) | Cluj-Napoca 2015"},"7930":{"market_hash_name":"Sticker | G2 Esports (Holo) | Shanghai 2024"},"7931":{"market_hash_name":"Sticker | G2 Esports (Gold) | Shanghai 2024"},"7932":{"market_hash_name":"Sticker | Natus Vincere | Shanghai 2024"},"7933":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Shanghai 2024"},"7934":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Shanghai 2024"},"7935":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Shanghai 2024"},"7936":{"market_hash_name":"Sticker | Vitality | Shanghai 2024"},"7937":{"market_hash_name":"Sticker | Vitality (Glitter) | Shanghai 2024"},"7938":{"market_hash_name":"Sticker | Vitality (Holo) | Shanghai 2024"},"7939":{"market_hash_name":"Sticker | Vitality (Gold) | Shanghai 2024"},"794":{"market_hash_name":"Sticker | flamie | Cluj-Napoca 2015"},"7940":{"market_hash_name":"Sticker | Team Spirit | Shanghai 2024"},"7941":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Shanghai 2024"},"7942":{"market_hash_name":"Sticker | Team Spirit (Holo) | Shanghai 2024"},"7943":{"market_hash_name":"Sticker | Team Spirit (Gold) | Shanghai 2024"},"7944":{"market_hash_name":"Sticker | MOUZ | Shanghai 2024"},"7945":{"market_hash_name":"Sticker | MOUZ (Glitter) | Shanghai 2024"},"7946":{"market_hash_name":"Sticker | MOUZ (Holo) | Shanghai 2024"},"7947":{"market_hash_name":"Sticker | MOUZ (Gold) | Shanghai 2024"},"7948":{"market_hash_name":"Sticker | FaZe Clan | Shanghai 2024"},"7949":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Shanghai 2024"},"795":{"market_hash_name":"Sticker | flamie (Foil) | Cluj-Napoca 2015"},"7950":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Shanghai 2024"},"7951":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Shanghai 2024"},"7952":{"market_hash_name":"Sticker | HEROIC | Shanghai 2024"},"7953":{"market_hash_name":"Sticker | HEROIC (Glitter) | Shanghai 2024"},"7954":{"market_hash_name":"Sticker | HEROIC (Holo) | Shanghai 2024"},"7955":{"market_hash_name":"Sticker | HEROIC (Gold) | Shanghai 2024"},"7956":{"market_hash_name":"Sticker | 3DMAX | Shanghai 2024"},"7957":{"market_hash_name":"Sticker | 3DMAX (Glitter) | Shanghai 2024"},"7958":{"market_hash_name":"Sticker | 3DMAX (Holo) | Shanghai 2024"},"7959":{"market_hash_name":"Sticker | 3DMAX (Gold) | Shanghai 2024"},"796":{"market_hash_name":"Sticker | flamie (Gold) | Cluj-Napoca 2015"},"7960":{"market_hash_name":"Sticker | FURIA | Shanghai 2024"},"7961":{"market_hash_name":"Sticker | FURIA (Glitter) | Shanghai 2024"},"7962":{"market_hash_name":"Sticker | FURIA (Holo) | Shanghai 2024"},"7963":{"market_hash_name":"Sticker | FURIA (Gold) | Shanghai 2024"},"7964":{"market_hash_name":"Sticker | Virtus.pro | Shanghai 2024"},"7965":{"market_hash_name":"Sticker | Virtus.pro (Glitter) | Shanghai 2024"},"7966":{"market_hash_name":"Sticker | Virtus.pro (Holo) | Shanghai 2024"},"7967":{"market_hash_name":"Sticker | Virtus.pro (Gold) | Shanghai 2024"},"7968":{"market_hash_name":"Sticker | Team Liquid | Shanghai 2024"},"7969":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Shanghai 2024"},"797":{"market_hash_name":"Sticker | GuardiaN | Cluj-Napoca 2015"},"7970":{"market_hash_name":"Sticker | Team Liquid (Holo) | Shanghai 2024"},"7971":{"market_hash_name":"Sticker | Team Liquid (Gold) | Shanghai 2024"},"7972":{"market_hash_name":"Sticker | Complexity Gaming | Shanghai 2024"},"7973":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Shanghai 2024"},"7974":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Shanghai 2024"},"7975":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Shanghai 2024"},"7976":{"market_hash_name":"Sticker | BIG | Shanghai 2024"},"7977":{"market_hash_name":"Sticker | BIG (Glitter) | Shanghai 2024"},"7978":{"market_hash_name":"Sticker | BIG (Holo) | Shanghai 2024"},"7979":{"market_hash_name":"Sticker | BIG (Gold) | Shanghai 2024"},"798":{"market_hash_name":"Sticker | GuardiaN (Foil) | Cluj-Napoca 2015"},"7980":{"market_hash_name":"Sticker | Fnatic | Shanghai 2024"},"7981":{"market_hash_name":"Sticker | Fnatic (Glitter) | Shanghai 2024"},"7982":{"market_hash_name":"Sticker | Fnatic (Holo) | Shanghai 2024"},"7983":{"market_hash_name":"Sticker | Fnatic (Gold) | Shanghai 2024"},"7984":{"market_hash_name":"Sticker | The MongolZ | Shanghai 2024"},"7985":{"market_hash_name":"Sticker | The MongolZ (Glitter) | Shanghai 2024"},"7986":{"market_hash_name":"Sticker | The MongolZ (Holo) | Shanghai 2024"},"7987":{"market_hash_name":"Sticker | The MongolZ (Gold) | Shanghai 2024"},"7988":{"market_hash_name":"Sticker | paiN Gaming | Shanghai 2024"},"7989":{"market_hash_name":"Sticker | paiN Gaming (Glitter) | Shanghai 2024"},"799":{"market_hash_name":"Sticker | GuardiaN (Gold) | Cluj-Napoca 2015"},"7990":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Shanghai 2024"},"7991":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Shanghai 2024"},"7992":{"market_hash_name":"Sticker | GamerLegion | Shanghai 2024"},"7993":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Shanghai 2024"},"7994":{"market_hash_name":"Sticker | GamerLegion (Holo) | Shanghai 2024"},"7995":{"market_hash_name":"Sticker | GamerLegion (Gold) | Shanghai 2024"},"7996":{"market_hash_name":"Sticker | MIBR | Shanghai 2024"},"7997":{"market_hash_name":"Sticker | MIBR (Glitter) | Shanghai 2024"},"7998":{"market_hash_name":"Sticker | MIBR (Holo) | Shanghai 2024"},"7999":{"market_hash_name":"Sticker | MIBR (Gold) | Shanghai 2024"},"8":{"market_hash_name":"Sticker | Polar Bears (Foil)"},"80":{"market_hash_name":"Sticker | Vox Eminor (Holo) | Katowice 2014"},"800":{"market_hash_name":"Sticker | seized | Cluj-Napoca 2015"},"8000":{"market_hash_name":"Sticker | Cloud9 | Shanghai 2024"},"8001":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Shanghai 2024"},"8002":{"market_hash_name":"Sticker | Cloud9 (Holo) | Shanghai 2024"},"8003":{"market_hash_name":"Sticker | Cloud9 (Gold) | Shanghai 2024"},"8004":{"market_hash_name":"Sticker | FlyQuest | Shanghai 2024"},"8005":{"market_hash_name":"Sticker | FlyQuest (Glitter) | Shanghai 2024"},"8006":{"market_hash_name":"Sticker | FlyQuest (Holo) | Shanghai 2024"},"8007":{"market_hash_name":"Sticker | FlyQuest (Gold) | Shanghai 2024"},"8008":{"market_hash_name":"Sticker | Passion UA | Shanghai 2024"},"8009":{"market_hash_name":"Sticker | Passion UA (Glitter) | Shanghai 2024"},"801":{"market_hash_name":"Sticker | seized (Foil) | Cluj-Napoca 2015"},"8010":{"market_hash_name":"Sticker | Passion UA (Holo) | Shanghai 2024"},"8011":{"market_hash_name":"Sticker | Passion UA (Gold) | Shanghai 2024"},"8012":{"market_hash_name":"Sticker | Wildcard | Shanghai 2024"},"8013":{"market_hash_name":"Sticker | Wildcard (Glitter) | Shanghai 2024"},"8014":{"market_hash_name":"Sticker | Wildcard (Holo) | Shanghai 2024"},"8015":{"market_hash_name":"Sticker | Wildcard (Gold) | Shanghai 2024"},"8016":{"market_hash_name":"Sticker | Rare Atom | Shanghai 2024"},"8017":{"market_hash_name":"Sticker | Rare Atom (Glitter) | Shanghai 2024"},"8018":{"market_hash_name":"Sticker | Rare Atom (Holo) | Shanghai 2024"},"8019":{"market_hash_name":"Sticker | Rare Atom (Gold) | Shanghai 2024"},"802":{"market_hash_name":"Sticker | seized (Gold) | Cluj-Napoca 2015"},"8020":{"market_hash_name":"Sticker | Imperial Esports | Shanghai 2024"},"8021":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Shanghai 2024"},"8022":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Shanghai 2024"},"8023":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Shanghai 2024"},"8024":{"market_hash_name":"Sticker | Perfect World | Shanghai 2024"},"8025":{"market_hash_name":"Sticker | Perfect World (Glitter) | Shanghai 2024"},"8026":{"market_hash_name":"Sticker | Perfect World (Holo) | Shanghai 2024"},"8027":{"market_hash_name":"Sticker | Perfect World (Gold) | Shanghai 2024"},"803":{"market_hash_name":"Sticker | Zeus | Cluj-Napoca 2015"},"804":{"market_hash_name":"Sticker | Zeus (Foil) | Cluj-Napoca 2015"},"805":{"market_hash_name":"Sticker | Zeus (Gold) | Cluj-Napoca 2015"},"8053":{"market_hash_name":"Sticker | Snax | Shanghai 2024"},"8054":{"market_hash_name":"Sticker | Snax (Glitter) | Shanghai 2024"},"8055":{"market_hash_name":"Sticker | Snax (Holo) | Shanghai 2024"},"8056":{"market_hash_name":"Sticker | Snax (Gold) | Shanghai 2024"},"8057":{"market_hash_name":"Sticker | huNter- | Shanghai 2024"},"8058":{"market_hash_name":"Sticker | huNter- (Glitter) | Shanghai 2024"},"8059":{"market_hash_name":"Sticker | huNter- (Holo) | Shanghai 2024"},"806":{"market_hash_name":"Sticker | allu | Cluj-Napoca 2015"},"8060":{"market_hash_name":"Sticker | huNter- (Gold) | Shanghai 2024"},"8061":{"market_hash_name":"Sticker | malbsMd | Shanghai 2024"},"8062":{"market_hash_name":"Sticker | malbsMd (Glitter) | Shanghai 2024"},"8063":{"market_hash_name":"Sticker | malbsMd (Holo) | Shanghai 2024"},"8064":{"market_hash_name":"Sticker | malbsMd (Gold) | Shanghai 2024"},"8065":{"market_hash_name":"Sticker | m0NESY | Shanghai 2024"},"8066":{"market_hash_name":"Sticker | m0NESY (Glitter) | Shanghai 2024"},"8067":{"market_hash_name":"Sticker | m0NESY (Holo) | Shanghai 2024"},"8068":{"market_hash_name":"Sticker | m0NESY (Gold) | Shanghai 2024"},"8069":{"market_hash_name":"Sticker | NiKo | Shanghai 2024"},"807":{"market_hash_name":"Sticker | allu (Foil) | Cluj-Napoca 2015"},"8070":{"market_hash_name":"Sticker | NiKo (Glitter) | Shanghai 2024"},"8071":{"market_hash_name":"Sticker | NiKo (Holo) | Shanghai 2024"},"8072":{"market_hash_name":"Sticker | NiKo (Gold) | Shanghai 2024"},"8073":{"market_hash_name":"Sticker | w0nderful | Shanghai 2024"},"8074":{"market_hash_name":"Sticker | w0nderful (Glitter) | Shanghai 2024"},"8075":{"market_hash_name":"Sticker | w0nderful (Holo) | Shanghai 2024"},"8076":{"market_hash_name":"Sticker | w0nderful (Gold) | Shanghai 2024"},"8077":{"market_hash_name":"Sticker | Aleksib | Shanghai 2024"},"8078":{"market_hash_name":"Sticker | Aleksib (Glitter) | Shanghai 2024"},"8079":{"market_hash_name":"Sticker | Aleksib (Holo) | Shanghai 2024"},"808":{"market_hash_name":"Sticker | allu (Gold) | Cluj-Napoca 2015"},"8080":{"market_hash_name":"Sticker | Aleksib (Gold) | Shanghai 2024"},"8081":{"market_hash_name":"Sticker | jL | Shanghai 2024"},"8082":{"market_hash_name":"Sticker | jL (Glitter) | Shanghai 2024"},"8083":{"market_hash_name":"Sticker | jL (Holo) | Shanghai 2024"},"8084":{"market_hash_name":"Sticker | jL (Gold) | Shanghai 2024"},"8085":{"market_hash_name":"Sticker | b1t | Shanghai 2024"},"8086":{"market_hash_name":"Sticker | b1t (Glitter) | Shanghai 2024"},"8087":{"market_hash_name":"Sticker | b1t (Holo) | Shanghai 2024"},"8088":{"market_hash_name":"Sticker | b1t (Gold) | Shanghai 2024"},"8089":{"market_hash_name":"Sticker | iM | Shanghai 2024"},"809":{"market_hash_name":"Sticker | f0rest | Cluj-Napoca 2015"},"8090":{"market_hash_name":"Sticker | iM (Glitter) | Shanghai 2024"},"8091":{"market_hash_name":"Sticker | iM (Holo) | Shanghai 2024"},"8092":{"market_hash_name":"Sticker | iM (Gold) | Shanghai 2024"},"8093":{"market_hash_name":"Sticker | ZywOo | Shanghai 2024"},"8094":{"market_hash_name":"Sticker | ZywOo (Glitter) | Shanghai 2024"},"8095":{"market_hash_name":"Sticker | ZywOo (Holo) | Shanghai 2024"},"8096":{"market_hash_name":"Sticker | ZywOo (Gold) | Shanghai 2024"},"8097":{"market_hash_name":"Sticker | apEX | Shanghai 2024"},"8098":{"market_hash_name":"Sticker | apEX (Glitter) | Shanghai 2024"},"8099":{"market_hash_name":"Sticker | apEX (Holo) | Shanghai 2024"},"81":{"market_hash_name":"Sticker | ESL Wolf (Foil) | Katowice 2014"},"810":{"market_hash_name":"Sticker | f0rest (Foil) | Cluj-Napoca 2015"},"8100":{"market_hash_name":"Sticker | apEX (Gold) | Shanghai 2024"},"8101":{"market_hash_name":"Sticker | mezii | Shanghai 2024"},"8102":{"market_hash_name":"Sticker | mezii (Glitter) | Shanghai 2024"},"8103":{"market_hash_name":"Sticker | mezii (Holo) | Shanghai 2024"},"8104":{"market_hash_name":"Sticker | mezii (Gold) | Shanghai 2024"},"8105":{"market_hash_name":"Sticker | FlameZ | Shanghai 2024"},"8106":{"market_hash_name":"Sticker | FlameZ (Glitter) | Shanghai 2024"},"8107":{"market_hash_name":"Sticker | FlameZ (Holo) | Shanghai 2024"},"8108":{"market_hash_name":"Sticker | FlameZ (Gold) | Shanghai 2024"},"8109":{"market_hash_name":"Sticker | Spinx | Shanghai 2024"},"811":{"market_hash_name":"Sticker | f0rest (Gold) | Cluj-Napoca 2015"},"8110":{"market_hash_name":"Sticker | Spinx (Glitter) | Shanghai 2024"},"8111":{"market_hash_name":"Sticker | Spinx (Holo) | Shanghai 2024"},"8112":{"market_hash_name":"Sticker | Spinx (Gold) | Shanghai 2024"},"8113":{"market_hash_name":"Sticker | chopper | Shanghai 2024"},"8114":{"market_hash_name":"Sticker | chopper (Glitter) | Shanghai 2024"},"8115":{"market_hash_name":"Sticker | chopper (Holo) | Shanghai 2024"},"8116":{"market_hash_name":"Sticker | chopper (Gold) | Shanghai 2024"},"8117":{"market_hash_name":"Sticker | magixx | Shanghai 2024"},"8118":{"market_hash_name":"Sticker | magixx (Glitter) | Shanghai 2024"},"8119":{"market_hash_name":"Sticker | magixx (Holo) | Shanghai 2024"},"812":{"market_hash_name":"Sticker | friberg | Cluj-Napoca 2015"},"8120":{"market_hash_name":"Sticker | magixx (Gold) | Shanghai 2024"},"8121":{"market_hash_name":"Sticker | donk | Shanghai 2024"},"8122":{"market_hash_name":"Sticker | donk (Glitter) | Shanghai 2024"},"8123":{"market_hash_name":"Sticker | donk (Holo) | Shanghai 2024"},"8124":{"market_hash_name":"Sticker | donk (Gold) | Shanghai 2024"},"8125":{"market_hash_name":"Sticker | sh1ro | Shanghai 2024"},"8126":{"market_hash_name":"Sticker | sh1ro (Glitter) | Shanghai 2024"},"8127":{"market_hash_name":"Sticker | sh1ro (Holo) | Shanghai 2024"},"8128":{"market_hash_name":"Sticker | sh1ro (Gold) | Shanghai 2024"},"8129":{"market_hash_name":"Sticker | zont1x | Shanghai 2024"},"813":{"market_hash_name":"Sticker | friberg (Foil) | Cluj-Napoca 2015"},"8130":{"market_hash_name":"Sticker | zont1x (Glitter) | Shanghai 2024"},"8131":{"market_hash_name":"Sticker | zont1x (Holo) | Shanghai 2024"},"8132":{"market_hash_name":"Sticker | zont1x (Gold) | Shanghai 2024"},"8133":{"market_hash_name":"Sticker | torzsi | Shanghai 2024"},"8134":{"market_hash_name":"Sticker | torzsi (Glitter) | Shanghai 2024"},"8135":{"market_hash_name":"Sticker | torzsi (Holo) | Shanghai 2024"},"8136":{"market_hash_name":"Sticker | torzsi (Gold) | Shanghai 2024"},"8137":{"market_hash_name":"Sticker | xertioN | Shanghai 2024"},"8138":{"market_hash_name":"Sticker | xertioN (Glitter) | Shanghai 2024"},"8139":{"market_hash_name":"Sticker | xertioN (Holo) | Shanghai 2024"},"814":{"market_hash_name":"Sticker | friberg (Gold) | Cluj-Napoca 2015"},"8140":{"market_hash_name":"Sticker | xertioN (Gold) | Shanghai 2024"},"8141":{"market_hash_name":"Sticker | Brollan | Shanghai 2024"},"8142":{"market_hash_name":"Sticker | Brollan (Glitter) | Shanghai 2024"},"8143":{"market_hash_name":"Sticker | Brollan (Holo) | Shanghai 2024"},"8144":{"market_hash_name":"Sticker | Brollan (Gold) | Shanghai 2024"},"8145":{"market_hash_name":"Sticker | Jimpphat | Shanghai 2024"},"8146":{"market_hash_name":"Sticker | Jimpphat (Glitter) | Shanghai 2024"},"8147":{"market_hash_name":"Sticker | Jimpphat (Holo) | Shanghai 2024"},"8148":{"market_hash_name":"Sticker | Jimpphat (Gold) | Shanghai 2024"},"8149":{"market_hash_name":"Sticker | siuhy | Shanghai 2024"},"815":{"market_hash_name":"Sticker | GeT_RiGhT | Cluj-Napoca 2015"},"8150":{"market_hash_name":"Sticker | siuhy (Glitter) | Shanghai 2024"},"8151":{"market_hash_name":"Sticker | siuhy (Holo) | Shanghai 2024"},"8152":{"market_hash_name":"Sticker | siuhy (Gold) | Shanghai 2024"},"8153":{"market_hash_name":"Sticker | karrigan | Shanghai 2024"},"8154":{"market_hash_name":"Sticker | karrigan (Glitter) | Shanghai 2024"},"8155":{"market_hash_name":"Sticker | karrigan (Holo) | Shanghai 2024"},"8156":{"market_hash_name":"Sticker | karrigan (Gold) | Shanghai 2024"},"8157":{"market_hash_name":"Sticker | rain | Shanghai 2024"},"8158":{"market_hash_name":"Sticker | rain (Glitter) | Shanghai 2024"},"8159":{"market_hash_name":"Sticker | rain (Holo) | Shanghai 2024"},"816":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Cluj-Napoca 2015"},"8160":{"market_hash_name":"Sticker | rain (Gold) | Shanghai 2024"},"8161":{"market_hash_name":"Sticker | ropz | Shanghai 2024"},"8162":{"market_hash_name":"Sticker | ropz (Glitter) | Shanghai 2024"},"8163":{"market_hash_name":"Sticker | ropz (Holo) | Shanghai 2024"},"8164":{"market_hash_name":"Sticker | ropz (Gold) | Shanghai 2024"},"8165":{"market_hash_name":"Sticker | broky | Shanghai 2024"},"8166":{"market_hash_name":"Sticker | broky (Glitter) | Shanghai 2024"},"8167":{"market_hash_name":"Sticker | broky (Holo) | Shanghai 2024"},"8168":{"market_hash_name":"Sticker | broky (Gold) | Shanghai 2024"},"8169":{"market_hash_name":"Sticker | frozen | Shanghai 2024"},"817":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Cluj-Napoca 2015"},"8170":{"market_hash_name":"Sticker | frozen (Glitter) | Shanghai 2024"},"8171":{"market_hash_name":"Sticker | frozen (Holo) | Shanghai 2024"},"8172":{"market_hash_name":"Sticker | frozen (Gold) | Shanghai 2024"},"8173":{"market_hash_name":"Sticker | TeSeS | Shanghai 2024"},"8174":{"market_hash_name":"Sticker | TeSeS (Glitter) | Shanghai 2024"},"8175":{"market_hash_name":"Sticker | TeSeS (Holo) | Shanghai 2024"},"8176":{"market_hash_name":"Sticker | TeSeS (Gold) | Shanghai 2024"},"8177":{"market_hash_name":"Sticker | sjuush | Shanghai 2024"},"8178":{"market_hash_name":"Sticker | sjuush (Glitter) | Shanghai 2024"},"8179":{"market_hash_name":"Sticker | sjuush (Holo) | Shanghai 2024"},"818":{"market_hash_name":"Sticker | Xizt | Cluj-Napoca 2015"},"8180":{"market_hash_name":"Sticker | sjuush (Gold) | Shanghai 2024"},"8181":{"market_hash_name":"Sticker | kyxsan | Shanghai 2024"},"8182":{"market_hash_name":"Sticker | kyxsan (Glitter) | Shanghai 2024"},"8183":{"market_hash_name":"Sticker | kyxsan (Holo) | Shanghai 2024"},"8184":{"market_hash_name":"Sticker | kyxsan (Gold) | Shanghai 2024"},"8185":{"market_hash_name":"Sticker | NertZ | Shanghai 2024"},"8186":{"market_hash_name":"Sticker | NertZ (Glitter) | Shanghai 2024"},"8187":{"market_hash_name":"Sticker | NertZ (Holo) | Shanghai 2024"},"8188":{"market_hash_name":"Sticker | NertZ (Gold) | Shanghai 2024"},"8189":{"market_hash_name":"Sticker | degster | Shanghai 2024"},"819":{"market_hash_name":"Sticker | Xizt (Foil) | Cluj-Napoca 2015"},"8190":{"market_hash_name":"Sticker | degster (Glitter) | Shanghai 2024"},"8191":{"market_hash_name":"Sticker | degster (Holo) | Shanghai 2024"},"8192":{"market_hash_name":"Sticker | degster (Gold) | Shanghai 2024"},"8193":{"market_hash_name":"Sticker | Ex3rcice | Shanghai 2024"},"8194":{"market_hash_name":"Sticker | Ex3rcice (Glitter) | Shanghai 2024"},"8195":{"market_hash_name":"Sticker | Ex3rcice (Holo) | Shanghai 2024"},"8196":{"market_hash_name":"Sticker | Ex3rcice (Gold) | Shanghai 2024"},"8197":{"market_hash_name":"Sticker | Djoko | Shanghai 2024"},"8198":{"market_hash_name":"Sticker | Djoko (Glitter) | Shanghai 2024"},"8199":{"market_hash_name":"Sticker | Djoko (Holo) | Shanghai 2024"},"82":{"market_hash_name":"Sticker | ESL Skull (Foil) | Katowice 2014"},"820":{"market_hash_name":"Sticker | Xizt (Gold) | Cluj-Napoca 2015"},"8200":{"market_hash_name":"Sticker | Djoko (Gold) | Shanghai 2024"},"8201":{"market_hash_name":"Sticker | Maka | Shanghai 2024"},"8202":{"market_hash_name":"Sticker | Maka (Glitter) | Shanghai 2024"},"8203":{"market_hash_name":"Sticker | Maka (Holo) | Shanghai 2024"},"8204":{"market_hash_name":"Sticker | Maka (Gold) | Shanghai 2024"},"8205":{"market_hash_name":"Sticker | Lucky | Shanghai 2024"},"8206":{"market_hash_name":"Sticker | Lucky (Glitter) | Shanghai 2024"},"8207":{"market_hash_name":"Sticker | Lucky (Holo) | Shanghai 2024"},"8208":{"market_hash_name":"Sticker | Lucky (Gold) | Shanghai 2024"},"8209":{"market_hash_name":"Sticker | Graviti | Shanghai 2024"},"821":{"market_hash_name":"Sticker | aizy | Cluj-Napoca 2015"},"8210":{"market_hash_name":"Sticker | Graviti (Glitter) | Shanghai 2024"},"8211":{"market_hash_name":"Sticker | Graviti (Holo) | Shanghai 2024"},"8212":{"market_hash_name":"Sticker | Graviti (Gold) | Shanghai 2024"},"8213":{"market_hash_name":"Sticker | FalleN | Shanghai 2024"},"8214":{"market_hash_name":"Sticker | FalleN (Glitter) | Shanghai 2024"},"8215":{"market_hash_name":"Sticker | FalleN (Holo) | Shanghai 2024"},"8216":{"market_hash_name":"Sticker | FalleN (Gold) | Shanghai 2024"},"8217":{"market_hash_name":"Sticker | chelo | Shanghai 2024"},"8218":{"market_hash_name":"Sticker | chelo (Glitter) | Shanghai 2024"},"8219":{"market_hash_name":"Sticker | chelo (Holo) | Shanghai 2024"},"822":{"market_hash_name":"Sticker | aizy (Foil) | Cluj-Napoca 2015"},"8220":{"market_hash_name":"Sticker | chelo (Gold) | Shanghai 2024"},"8221":{"market_hash_name":"Sticker | yuurih | Shanghai 2024"},"8222":{"market_hash_name":"Sticker | yuurih (Glitter) | Shanghai 2024"},"8223":{"market_hash_name":"Sticker | yuurih (Holo) | Shanghai 2024"},"8224":{"market_hash_name":"Sticker | yuurih (Gold) | Shanghai 2024"},"8225":{"market_hash_name":"Sticker | KSCERATO | Shanghai 2024"},"8226":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Shanghai 2024"},"8227":{"market_hash_name":"Sticker | KSCERATO (Holo) | Shanghai 2024"},"8228":{"market_hash_name":"Sticker | KSCERATO (Gold) | Shanghai 2024"},"8229":{"market_hash_name":"Sticker | skullz | Shanghai 2024"},"823":{"market_hash_name":"Sticker | aizy (Gold) | Cluj-Napoca 2015"},"8230":{"market_hash_name":"Sticker | skullz (Glitter) | Shanghai 2024"},"8231":{"market_hash_name":"Sticker | skullz (Holo) | Shanghai 2024"},"8232":{"market_hash_name":"Sticker | skullz (Gold) | Shanghai 2024"},"8233":{"market_hash_name":"Sticker | FL1T | Shanghai 2024"},"8234":{"market_hash_name":"Sticker | FL1T (Glitter) | Shanghai 2024"},"8235":{"market_hash_name":"Sticker | FL1T (Holo) | Shanghai 2024"},"8236":{"market_hash_name":"Sticker | FL1T (Gold) | Shanghai 2024"},"8237":{"market_hash_name":"Sticker | Jame | Shanghai 2024"},"8238":{"market_hash_name":"Sticker | Jame (Glitter) | Shanghai 2024"},"8239":{"market_hash_name":"Sticker | Jame (Holo) | Shanghai 2024"},"824":{"market_hash_name":"Sticker | Kjaerbye | Cluj-Napoca 2015"},"8240":{"market_hash_name":"Sticker | Jame (Gold) | Shanghai 2024"},"8241":{"market_hash_name":"Sticker | fame | Shanghai 2024"},"8242":{"market_hash_name":"Sticker | fame (Glitter) | Shanghai 2024"},"8243":{"market_hash_name":"Sticker | fame (Holo) | Shanghai 2024"},"8244":{"market_hash_name":"Sticker | fame (Gold) | Shanghai 2024"},"8245":{"market_hash_name":"Sticker | n0rb3r7 | Shanghai 2024"},"8246":{"market_hash_name":"Sticker | n0rb3r7 (Glitter) | Shanghai 2024"},"8247":{"market_hash_name":"Sticker | n0rb3r7 (Holo) | Shanghai 2024"},"8248":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Shanghai 2024"},"8249":{"market_hash_name":"Sticker | electronic | Shanghai 2024"},"825":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Cluj-Napoca 2015"},"8250":{"market_hash_name":"Sticker | electronic (Glitter) | Shanghai 2024"},"8251":{"market_hash_name":"Sticker | electronic (Holo) | Shanghai 2024"},"8252":{"market_hash_name":"Sticker | electronic (Gold) | Shanghai 2024"},"8253":{"market_hash_name":"Sticker | Twistzz | Shanghai 2024"},"8254":{"market_hash_name":"Sticker | Twistzz (Glitter) | Shanghai 2024"},"8255":{"market_hash_name":"Sticker | Twistzz (Holo) | Shanghai 2024"},"8256":{"market_hash_name":"Sticker | Twistzz (Gold) | Shanghai 2024"},"8257":{"market_hash_name":"Sticker | ultimate | Shanghai 2024"},"8258":{"market_hash_name":"Sticker | ultimate (Glitter) | Shanghai 2024"},"8259":{"market_hash_name":"Sticker | ultimate (Holo) | Shanghai 2024"},"826":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Cluj-Napoca 2015"},"8260":{"market_hash_name":"Sticker | ultimate (Gold) | Shanghai 2024"},"8261":{"market_hash_name":"Sticker | YEKINDAR | Shanghai 2024"},"8262":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Shanghai 2024"},"8263":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Shanghai 2024"},"8264":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Shanghai 2024"},"8265":{"market_hash_name":"Sticker | jks | Shanghai 2024"},"8266":{"market_hash_name":"Sticker | jks (Glitter) | Shanghai 2024"},"8267":{"market_hash_name":"Sticker | jks (Holo) | Shanghai 2024"},"8268":{"market_hash_name":"Sticker | jks (Gold) | Shanghai 2024"},"8269":{"market_hash_name":"Sticker | NAF | Shanghai 2024"},"827":{"market_hash_name":"Sticker | MSL | Cluj-Napoca 2015"},"8270":{"market_hash_name":"Sticker | NAF (Glitter) | Shanghai 2024"},"8271":{"market_hash_name":"Sticker | NAF (Holo) | Shanghai 2024"},"8272":{"market_hash_name":"Sticker | NAF (Gold) | Shanghai 2024"},"8273":{"market_hash_name":"Sticker | EliGE | Shanghai 2024"},"8274":{"market_hash_name":"Sticker | EliGE (Glitter) | Shanghai 2024"},"8275":{"market_hash_name":"Sticker | EliGE (Holo) | Shanghai 2024"},"8276":{"market_hash_name":"Sticker | EliGE (Gold) | Shanghai 2024"},"8277":{"market_hash_name":"Sticker | floppy | Shanghai 2024"},"8278":{"market_hash_name":"Sticker | floppy (Glitter) | Shanghai 2024"},"8279":{"market_hash_name":"Sticker | floppy (Holo) | Shanghai 2024"},"828":{"market_hash_name":"Sticker | MSL (Foil) | Cluj-Napoca 2015"},"8280":{"market_hash_name":"Sticker | floppy (Gold) | Shanghai 2024"},"8281":{"market_hash_name":"Sticker | Grim | Shanghai 2024"},"8282":{"market_hash_name":"Sticker | Grim (Glitter) | Shanghai 2024"},"8283":{"market_hash_name":"Sticker | Grim (Holo) | Shanghai 2024"},"8284":{"market_hash_name":"Sticker | Grim (Gold) | Shanghai 2024"},"8285":{"market_hash_name":"Sticker | hallzerk | Shanghai 2024"},"8286":{"market_hash_name":"Sticker | hallzerk (Glitter) | Shanghai 2024"},"8287":{"market_hash_name":"Sticker | hallzerk (Holo) | Shanghai 2024"},"8288":{"market_hash_name":"Sticker | hallzerk (Gold) | Shanghai 2024"},"8289":{"market_hash_name":"Sticker | JT | Shanghai 2024"},"829":{"market_hash_name":"Sticker | MSL (Gold) | Cluj-Napoca 2015"},"8290":{"market_hash_name":"Sticker | JT (Glitter) | Shanghai 2024"},"8291":{"market_hash_name":"Sticker | JT (Holo) | Shanghai 2024"},"8292":{"market_hash_name":"Sticker | JT (Gold) | Shanghai 2024"},"8293":{"market_hash_name":"Sticker | tabseN | Shanghai 2024"},"8294":{"market_hash_name":"Sticker | tabseN (Glitter) | Shanghai 2024"},"8295":{"market_hash_name":"Sticker | tabseN (Holo) | Shanghai 2024"},"8296":{"market_hash_name":"Sticker | tabseN (Gold) | Shanghai 2024"},"8297":{"market_hash_name":"Sticker | Krimbo | Shanghai 2024"},"8298":{"market_hash_name":"Sticker | Krimbo (Glitter) | Shanghai 2024"},"8299":{"market_hash_name":"Sticker | Krimbo (Holo) | Shanghai 2024"},"83":{"market_hash_name":"Sticker | 3DMAX (Foil) | Katowice 2014"},"830":{"market_hash_name":"Sticker | Pimp | Cluj-Napoca 2015"},"8300":{"market_hash_name":"Sticker | Krimbo (Gold) | Shanghai 2024"},"8301":{"market_hash_name":"Sticker | JDC | Shanghai 2024"},"8302":{"market_hash_name":"Sticker | JDC (Glitter) | Shanghai 2024"},"8303":{"market_hash_name":"Sticker | JDC (Holo) | Shanghai 2024"},"8304":{"market_hash_name":"Sticker | JDC (Gold) | Shanghai 2024"},"8305":{"market_hash_name":"Sticker | syrsoN | Shanghai 2024"},"8306":{"market_hash_name":"Sticker | syrsoN (Glitter) | Shanghai 2024"},"8307":{"market_hash_name":"Sticker | syrsoN (Holo) | Shanghai 2024"},"8308":{"market_hash_name":"Sticker | syrsoN (Gold) | Shanghai 2024"},"8309":{"market_hash_name":"Sticker | rigoN | Shanghai 2024"},"831":{"market_hash_name":"Sticker | Pimp (Foil) | Cluj-Napoca 2015"},"8310":{"market_hash_name":"Sticker | rigoN (Glitter) | Shanghai 2024"},"8311":{"market_hash_name":"Sticker | rigoN (Holo) | Shanghai 2024"},"8312":{"market_hash_name":"Sticker | rigoN (Gold) | Shanghai 2024"},"8313":{"market_hash_name":"Sticker | KRIMZ | Shanghai 2024"},"8314":{"market_hash_name":"Sticker | KRIMZ (Glitter) | Shanghai 2024"},"8315":{"market_hash_name":"Sticker | KRIMZ (Holo) | Shanghai 2024"},"8316":{"market_hash_name":"Sticker | KRIMZ (Gold) | Shanghai 2024"},"8317":{"market_hash_name":"Sticker | bodyy | Shanghai 2024"},"8318":{"market_hash_name":"Sticker | bodyy (Glitter) | Shanghai 2024"},"8319":{"market_hash_name":"Sticker | bodyy (Holo) | Shanghai 2024"},"832":{"market_hash_name":"Sticker | Pimp (Gold) | Cluj-Napoca 2015"},"8320":{"market_hash_name":"Sticker | bodyy (Gold) | Shanghai 2024"},"8321":{"market_hash_name":"Sticker | MATYS | Shanghai 2024"},"8322":{"market_hash_name":"Sticker | MATYS (Glitter) | Shanghai 2024"},"8323":{"market_hash_name":"Sticker | MATYS (Holo) | Shanghai 2024"},"8324":{"market_hash_name":"Sticker | MATYS (Gold) | Shanghai 2024"},"8325":{"market_hash_name":"Sticker | blameF | Shanghai 2024"},"8326":{"market_hash_name":"Sticker | blameF (Glitter) | Shanghai 2024"},"8327":{"market_hash_name":"Sticker | blameF (Holo) | Shanghai 2024"},"8328":{"market_hash_name":"Sticker | blameF (Gold) | Shanghai 2024"},"8329":{"market_hash_name":"Sticker | afro | Shanghai 2024"},"833":{"market_hash_name":"Sticker | tenzki | Cluj-Napoca 2015"},"8330":{"market_hash_name":"Sticker | afro (Glitter) | Shanghai 2024"},"8331":{"market_hash_name":"Sticker | afro (Holo) | Shanghai 2024"},"8332":{"market_hash_name":"Sticker | afro (Gold) | Shanghai 2024"},"8333":{"market_hash_name":"Sticker | bLitz | Shanghai 2024"},"8334":{"market_hash_name":"Sticker | bLitz (Glitter) | Shanghai 2024"},"8335":{"market_hash_name":"Sticker | bLitz (Holo) | Shanghai 2024"},"8336":{"market_hash_name":"Sticker | bLitz (Gold) | Shanghai 2024"},"8337":{"market_hash_name":"Sticker | 910 | Shanghai 2024"},"8338":{"market_hash_name":"Sticker | 910 (Glitter) | Shanghai 2024"},"8339":{"market_hash_name":"Sticker | 910 (Holo) | Shanghai 2024"},"834":{"market_hash_name":"Sticker | tenzki (Foil) | Cluj-Napoca 2015"},"8340":{"market_hash_name":"Sticker | 910 (Gold) | Shanghai 2024"},"8341":{"market_hash_name":"Sticker | Techno4K | Shanghai 2024"},"8342":{"market_hash_name":"Sticker | Techno4K (Glitter) | Shanghai 2024"},"8343":{"market_hash_name":"Sticker | Techno4K (Holo) | Shanghai 2024"},"8344":{"market_hash_name":"Sticker | Techno4K (Gold) | Shanghai 2024"},"8345":{"market_hash_name":"Sticker | Senzu | Shanghai 2024"},"8346":{"market_hash_name":"Sticker | Senzu (Glitter) | Shanghai 2024"},"8347":{"market_hash_name":"Sticker | Senzu (Holo) | Shanghai 2024"},"8348":{"market_hash_name":"Sticker | Senzu (Gold) | Shanghai 2024"},"8349":{"market_hash_name":"Sticker | mzinho | Shanghai 2024"},"835":{"market_hash_name":"Sticker | tenzki (Gold) | Cluj-Napoca 2015"},"8350":{"market_hash_name":"Sticker | mzinho (Glitter) | Shanghai 2024"},"8351":{"market_hash_name":"Sticker | mzinho (Holo) | Shanghai 2024"},"8352":{"market_hash_name":"Sticker | mzinho (Gold) | Shanghai 2024"},"8353":{"market_hash_name":"Sticker | biguzera | Shanghai 2024"},"8354":{"market_hash_name":"Sticker | biguzera (Glitter) | Shanghai 2024"},"8355":{"market_hash_name":"Sticker | biguzera (Holo) | Shanghai 2024"},"8356":{"market_hash_name":"Sticker | biguzera (Gold) | Shanghai 2024"},"8357":{"market_hash_name":"Sticker | lux | Shanghai 2024"},"8358":{"market_hash_name":"Sticker | lux (Glitter) | Shanghai 2024"},"8359":{"market_hash_name":"Sticker | lux (Holo) | Shanghai 2024"},"836":{"market_hash_name":"Sticker | adreN | Cluj-Napoca 2015"},"8360":{"market_hash_name":"Sticker | lux (Gold) | Shanghai 2024"},"8361":{"market_hash_name":"Sticker | kauez | Shanghai 2024"},"8362":{"market_hash_name":"Sticker | kauez (Glitter) | Shanghai 2024"},"8363":{"market_hash_name":"Sticker | kauez (Holo) | Shanghai 2024"},"8364":{"market_hash_name":"Sticker | kauez (Gold) | Shanghai 2024"},"8365":{"market_hash_name":"Sticker | NQZ | Shanghai 2024"},"8366":{"market_hash_name":"Sticker | NQZ (Glitter) | Shanghai 2024"},"8367":{"market_hash_name":"Sticker | NQZ (Holo) | Shanghai 2024"},"8368":{"market_hash_name":"Sticker | NQZ (Gold) | Shanghai 2024"},"8369":{"market_hash_name":"Sticker | snow | Shanghai 2024"},"837":{"market_hash_name":"Sticker | adreN (Foil) | Cluj-Napoca 2015"},"8370":{"market_hash_name":"Sticker | snow (Glitter) | Shanghai 2024"},"8371":{"market_hash_name":"Sticker | snow (Holo) | Shanghai 2024"},"8372":{"market_hash_name":"Sticker | snow (Gold) | Shanghai 2024"},"8373":{"market_hash_name":"Sticker | ztr | Shanghai 2024"},"8374":{"market_hash_name":"Sticker | ztr (Glitter) | Shanghai 2024"},"8375":{"market_hash_name":"Sticker | ztr (Holo) | Shanghai 2024"},"8376":{"market_hash_name":"Sticker | ztr (Gold) | Shanghai 2024"},"8377":{"market_hash_name":"Sticker | sl3nd | Shanghai 2024"},"8378":{"market_hash_name":"Sticker | sl3nd (Glitter) | Shanghai 2024"},"8379":{"market_hash_name":"Sticker | sl3nd (Holo) | Shanghai 2024"},"838":{"market_hash_name":"Sticker | adreN (Gold) | Cluj-Napoca 2015"},"8380":{"market_hash_name":"Sticker | sl3nd (Gold) | Shanghai 2024"},"8381":{"market_hash_name":"Sticker | volt | Shanghai 2024"},"8382":{"market_hash_name":"Sticker | volt (Glitter) | Shanghai 2024"},"8383":{"market_hash_name":"Sticker | volt (Holo) | Shanghai 2024"},"8384":{"market_hash_name":"Sticker | volt (Gold) | Shanghai 2024"},"8385":{"market_hash_name":"Sticker | FL4MUS | Shanghai 2024"},"8386":{"market_hash_name":"Sticker | FL4MUS (Glitter) | Shanghai 2024"},"8387":{"market_hash_name":"Sticker | FL4MUS (Holo) | Shanghai 2024"},"8388":{"market_hash_name":"Sticker | FL4MUS (Gold) | Shanghai 2024"},"8389":{"market_hash_name":"Sticker | aNdu | Shanghai 2024"},"839":{"market_hash_name":"Sticker | EliGE | Cluj-Napoca 2015"},"8390":{"market_hash_name":"Sticker | aNdu (Glitter) | Shanghai 2024"},"8391":{"market_hash_name":"Sticker | aNdu (Holo) | Shanghai 2024"},"8392":{"market_hash_name":"Sticker | aNdu (Gold) | Shanghai 2024"},"8393":{"market_hash_name":"Sticker | drop | Shanghai 2024"},"8394":{"market_hash_name":"Sticker | drop (Glitter) | Shanghai 2024"},"8395":{"market_hash_name":"Sticker | drop (Holo) | Shanghai 2024"},"8396":{"market_hash_name":"Sticker | drop (Gold) | Shanghai 2024"},"8397":{"market_hash_name":"Sticker | saffee | Shanghai 2024"},"8398":{"market_hash_name":"Sticker | saffee (Glitter) | Shanghai 2024"},"8399":{"market_hash_name":"Sticker | saffee (Holo) | Shanghai 2024"},"84":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | Katowice 2014"},"840":{"market_hash_name":"Sticker | EliGE (Foil) | Cluj-Napoca 2015"},"8400":{"market_hash_name":"Sticker | saffee (Gold) | Shanghai 2024"},"8401":{"market_hash_name":"Sticker | insani | Shanghai 2024"},"8402":{"market_hash_name":"Sticker | insani (Glitter) | Shanghai 2024"},"8403":{"market_hash_name":"Sticker | insani (Holo) | Shanghai 2024"},"8404":{"market_hash_name":"Sticker | insani (Gold) | Shanghai 2024"},"8405":{"market_hash_name":"Sticker | brnz4n | Shanghai 2024"},"8406":{"market_hash_name":"Sticker | brnz4n (Glitter) | Shanghai 2024"},"8407":{"market_hash_name":"Sticker | brnz4n (Holo) | Shanghai 2024"},"8408":{"market_hash_name":"Sticker | brnz4n (Gold) | Shanghai 2024"},"8409":{"market_hash_name":"Sticker | exit | Shanghai 2024"},"841":{"market_hash_name":"Sticker | EliGE (Gold) | Cluj-Napoca 2015"},"8410":{"market_hash_name":"Sticker | exit (Glitter) | Shanghai 2024"},"8411":{"market_hash_name":"Sticker | exit (Holo) | Shanghai 2024"},"8412":{"market_hash_name":"Sticker | exit (Gold) | Shanghai 2024"},"8413":{"market_hash_name":"Sticker | Boombl4 | Shanghai 2024"},"8414":{"market_hash_name":"Sticker | Boombl4 (Glitter) | Shanghai 2024"},"8415":{"market_hash_name":"Sticker | Boombl4 (Holo) | Shanghai 2024"},"8416":{"market_hash_name":"Sticker | Boombl4 (Gold) | Shanghai 2024"},"8417":{"market_hash_name":"Sticker | Ax1Le | Shanghai 2024"},"8418":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Shanghai 2024"},"8419":{"market_hash_name":"Sticker | Ax1Le (Holo) | Shanghai 2024"},"842":{"market_hash_name":"Sticker | FugLy | Cluj-Napoca 2015"},"8420":{"market_hash_name":"Sticker | Ax1Le (Gold) | Shanghai 2024"},"8421":{"market_hash_name":"Sticker | Heavygod | Shanghai 2024"},"8422":{"market_hash_name":"Sticker | Heavygod (Glitter) | Shanghai 2024"},"8423":{"market_hash_name":"Sticker | Heavygod (Holo) | Shanghai 2024"},"8424":{"market_hash_name":"Sticker | Heavygod (Gold) | Shanghai 2024"},"8425":{"market_hash_name":"Sticker | ICY | Shanghai 2024"},"8426":{"market_hash_name":"Sticker | ICY (Glitter) | Shanghai 2024"},"8427":{"market_hash_name":"Sticker | ICY (Holo) | Shanghai 2024"},"8428":{"market_hash_name":"Sticker | ICY (Gold) | Shanghai 2024"},"8429":{"market_hash_name":"Sticker | Perfecto | Shanghai 2024"},"843":{"market_hash_name":"Sticker | FugLy (Foil) | Cluj-Napoca 2015"},"8430":{"market_hash_name":"Sticker | Perfecto (Glitter) | Shanghai 2024"},"8431":{"market_hash_name":"Sticker | Perfecto (Holo) | Shanghai 2024"},"8432":{"market_hash_name":"Sticker | Perfecto (Gold) | Shanghai 2024"},"8433":{"market_hash_name":"Sticker | dexter | Shanghai 2024"},"8434":{"market_hash_name":"Sticker | dexter (Glitter) | Shanghai 2024"},"8435":{"market_hash_name":"Sticker | dexter (Holo) | Shanghai 2024"},"8436":{"market_hash_name":"Sticker | dexter (Gold) | Shanghai 2024"},"8437":{"market_hash_name":"Sticker | Liazz | Shanghai 2024"},"8438":{"market_hash_name":"Sticker | Liazz (Glitter) | Shanghai 2024"},"8439":{"market_hash_name":"Sticker | Liazz (Holo) | Shanghai 2024"},"844":{"market_hash_name":"Sticker | FugLy (Gold) | Cluj-Napoca 2015"},"8440":{"market_hash_name":"Sticker | Liazz (Gold) | Shanghai 2024"},"8441":{"market_hash_name":"Sticker | aliStair | Shanghai 2024"},"8442":{"market_hash_name":"Sticker | aliStair (Glitter) | Shanghai 2024"},"8443":{"market_hash_name":"Sticker | aliStair (Holo) | Shanghai 2024"},"8444":{"market_hash_name":"Sticker | aliStair (Gold) | Shanghai 2024"},"8445":{"market_hash_name":"Sticker | INS | Shanghai 2024"},"8446":{"market_hash_name":"Sticker | INS (Glitter) | Shanghai 2024"},"8447":{"market_hash_name":"Sticker | INS (Holo) | Shanghai 2024"},"8448":{"market_hash_name":"Sticker | INS (Gold) | Shanghai 2024"},"8449":{"market_hash_name":"Sticker | vexite | Shanghai 2024"},"845":{"market_hash_name":"Sticker | Hiko | Cluj-Napoca 2015"},"8450":{"market_hash_name":"Sticker | vexite (Glitter) | Shanghai 2024"},"8451":{"market_hash_name":"Sticker | vexite (Holo) | Shanghai 2024"},"8452":{"market_hash_name":"Sticker | vexite (Gold) | Shanghai 2024"},"8453":{"market_hash_name":"Sticker | fEAR | Shanghai 2024"},"8454":{"market_hash_name":"Sticker | fEAR (Glitter) | Shanghai 2024"},"8455":{"market_hash_name":"Sticker | fEAR (Holo) | Shanghai 2024"},"8456":{"market_hash_name":"Sticker | fEAR (Gold) | Shanghai 2024"},"8457":{"market_hash_name":"Sticker | jambo | Shanghai 2024"},"8458":{"market_hash_name":"Sticker | jambo (Glitter) | Shanghai 2024"},"8459":{"market_hash_name":"Sticker | jambo (Holo) | Shanghai 2024"},"846":{"market_hash_name":"Sticker | Hiko (Foil) | Cluj-Napoca 2015"},"8460":{"market_hash_name":"Sticker | jambo (Gold) | Shanghai 2024"},"8461":{"market_hash_name":"Sticker | jackasmo | Shanghai 2024"},"8462":{"market_hash_name":"Sticker | jackasmo (Glitter) | Shanghai 2024"},"8463":{"market_hash_name":"Sticker | jackasmo (Holo) | Shanghai 2024"},"8464":{"market_hash_name":"Sticker | jackasmo (Gold) | Shanghai 2024"},"8465":{"market_hash_name":"Sticker | s-chilla | Shanghai 2024"},"8466":{"market_hash_name":"Sticker | s-chilla (Glitter) | Shanghai 2024"},"8467":{"market_hash_name":"Sticker | s-chilla (Holo) | Shanghai 2024"},"8468":{"market_hash_name":"Sticker | s-chilla (Gold) | Shanghai 2024"},"8469":{"market_hash_name":"Sticker | zeRRoFIX | Shanghai 2024"},"847":{"market_hash_name":"Sticker | Hiko (Gold) | Cluj-Napoca 2015"},"8470":{"market_hash_name":"Sticker | zeRRoFIX (Glitter) | Shanghai 2024"},"8471":{"market_hash_name":"Sticker | zeRRoFIX (Holo) | Shanghai 2024"},"8472":{"market_hash_name":"Sticker | zeRRoFIX (Gold) | Shanghai 2024"},"8473":{"market_hash_name":"Sticker | stanislaw | Shanghai 2024"},"8474":{"market_hash_name":"Sticker | stanislaw (Glitter) | Shanghai 2024"},"8475":{"market_hash_name":"Sticker | stanislaw (Holo) | Shanghai 2024"},"8476":{"market_hash_name":"Sticker | stanislaw (Gold) | Shanghai 2024"},"8477":{"market_hash_name":"Sticker | Sonic | Shanghai 2024"},"8478":{"market_hash_name":"Sticker | Sonic (Glitter) | Shanghai 2024"},"8479":{"market_hash_name":"Sticker | Sonic (Holo) | Shanghai 2024"},"848":{"market_hash_name":"Sticker | nitr0 | Cluj-Napoca 2015"},"8480":{"market_hash_name":"Sticker | Sonic (Gold) | Shanghai 2024"},"8481":{"market_hash_name":"Sticker | JBa | Shanghai 2024"},"8482":{"market_hash_name":"Sticker | JBa (Glitter) | Shanghai 2024"},"8483":{"market_hash_name":"Sticker | JBa (Holo) | Shanghai 2024"},"8484":{"market_hash_name":"Sticker | JBa (Gold) | Shanghai 2024"},"8485":{"market_hash_name":"Sticker | phzy | Shanghai 2024"},"8486":{"market_hash_name":"Sticker | phzy (Glitter) | Shanghai 2024"},"8487":{"market_hash_name":"Sticker | phzy (Holo) | Shanghai 2024"},"8488":{"market_hash_name":"Sticker | phzy (Gold) | Shanghai 2024"},"8489":{"market_hash_name":"Sticker | susp | Shanghai 2024"},"849":{"market_hash_name":"Sticker | nitr0 (Foil) | Cluj-Napoca 2015"},"8490":{"market_hash_name":"Sticker | susp (Glitter) | Shanghai 2024"},"8491":{"market_hash_name":"Sticker | susp (Holo) | Shanghai 2024"},"8492":{"market_hash_name":"Sticker | susp (Gold) | Shanghai 2024"},"8493":{"market_hash_name":"Sticker | Summer | Shanghai 2024"},"8494":{"market_hash_name":"Sticker | Summer (Glitter) | Shanghai 2024"},"8495":{"market_hash_name":"Sticker | Summer (Holo) | Shanghai 2024"},"8496":{"market_hash_name":"Sticker | Summer (Gold) | Shanghai 2024"},"8497":{"market_hash_name":"Sticker | ChildKing | Shanghai 2024"},"8498":{"market_hash_name":"Sticker | ChildKing (Glitter) | Shanghai 2024"},"8499":{"market_hash_name":"Sticker | ChildKing (Holo) | Shanghai 2024"},"85":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Katowice 2014"},"850":{"market_hash_name":"Sticker | nitr0 (Gold) | Cluj-Napoca 2015"},"8500":{"market_hash_name":"Sticker | ChildKing (Gold) | Shanghai 2024"},"8501":{"market_hash_name":"Sticker | somebody | Shanghai 2024"},"8502":{"market_hash_name":"Sticker | somebody (Glitter) | Shanghai 2024"},"8503":{"market_hash_name":"Sticker | somebody (Holo) | Shanghai 2024"},"8504":{"market_hash_name":"Sticker | somebody (Gold) | Shanghai 2024"},"8505":{"market_hash_name":"Sticker | L1haNg | Shanghai 2024"},"8506":{"market_hash_name":"Sticker | L1haNg (Glitter) | Shanghai 2024"},"8507":{"market_hash_name":"Sticker | L1haNg (Holo) | Shanghai 2024"},"8508":{"market_hash_name":"Sticker | L1haNg (Gold) | Shanghai 2024"},"8509":{"market_hash_name":"Sticker | Kaze | Shanghai 2024"},"851":{"market_hash_name":"Sticker | Ex6TenZ | Cluj-Napoca 2015"},"8510":{"market_hash_name":"Sticker | Kaze (Glitter) | Shanghai 2024"},"8511":{"market_hash_name":"Sticker | Kaze (Holo) | Shanghai 2024"},"8512":{"market_hash_name":"Sticker | Kaze (Gold) | Shanghai 2024"},"8513":{"market_hash_name":"Sticker | VINI | Shanghai 2024"},"8514":{"market_hash_name":"Sticker | VINI (Glitter) | Shanghai 2024"},"8515":{"market_hash_name":"Sticker | VINI (Holo) | Shanghai 2024"},"8516":{"market_hash_name":"Sticker | VINI (Gold) | Shanghai 2024"},"8517":{"market_hash_name":"Sticker | felps | Shanghai 2024"},"8518":{"market_hash_name":"Sticker | felps (Glitter) | Shanghai 2024"},"8519":{"market_hash_name":"Sticker | felps (Holo) | Shanghai 2024"},"852":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | Cluj-Napoca 2015"},"8520":{"market_hash_name":"Sticker | felps (Gold) | Shanghai 2024"},"8521":{"market_hash_name":"Sticker | TRY | Shanghai 2024"},"8522":{"market_hash_name":"Sticker | TRY (Glitter) | Shanghai 2024"},"8523":{"market_hash_name":"Sticker | TRY (Holo) | Shanghai 2024"},"8524":{"market_hash_name":"Sticker | TRY (Gold) | Shanghai 2024"},"8525":{"market_hash_name":"Sticker | decenty | Shanghai 2024"},"8526":{"market_hash_name":"Sticker | decenty (Glitter) | Shanghai 2024"},"8527":{"market_hash_name":"Sticker | decenty (Holo) | Shanghai 2024"},"8528":{"market_hash_name":"Sticker | decenty (Gold) | Shanghai 2024"},"8529":{"market_hash_name":"Sticker | noway | Shanghai 2024"},"853":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | Cluj-Napoca 2015"},"8530":{"market_hash_name":"Sticker | noway (Glitter) | Shanghai 2024"},"8531":{"market_hash_name":"Sticker | noway (Holo) | Shanghai 2024"},"8532":{"market_hash_name":"Sticker | noway (Gold) | Shanghai 2024"},"8533":{"market_hash_name":"Sticker | chopper (Champion) | Shanghai 2024"},"8534":{"market_hash_name":"Sticker | chopper (Glitter, Champion) | Shanghai 2024"},"8535":{"market_hash_name":"Sticker | chopper (Holo, Champion) | Shanghai 2024"},"8536":{"market_hash_name":"Sticker | chopper (Gold, Champion) | Shanghai 2024"},"8537":{"market_hash_name":"Sticker | magixx (Champion) | Shanghai 2024"},"8538":{"market_hash_name":"Sticker | magixx (Glitter, Champion) | Shanghai 2024"},"8539":{"market_hash_name":"Sticker | magixx (Holo, Champion) | Shanghai 2024"},"854":{"market_hash_name":"Sticker | RpK | Cluj-Napoca 2015"},"8540":{"market_hash_name":"Sticker | magixx (Gold, Champion) | Shanghai 2024"},"8541":{"market_hash_name":"Sticker | donk (Champion) | Shanghai 2024"},"8542":{"market_hash_name":"Sticker | donk (Glitter, Champion) | Shanghai 2024"},"8543":{"market_hash_name":"Sticker | donk (Holo, Champion) | Shanghai 2024"},"8544":{"market_hash_name":"Sticker | donk (Gold, Champion) | Shanghai 2024"},"8545":{"market_hash_name":"Sticker | sh1ro (Champion) | Shanghai 2024"},"8546":{"market_hash_name":"Sticker | sh1ro (Glitter, Champion) | Shanghai 2024"},"8547":{"market_hash_name":"Sticker | sh1ro (Holo, Champion) | Shanghai 2024"},"8548":{"market_hash_name":"Sticker | sh1ro (Gold, Champion) | Shanghai 2024"},"8549":{"market_hash_name":"Sticker | zont1x (Champion) | Shanghai 2024"},"855":{"market_hash_name":"Sticker | RpK (Foil) | Cluj-Napoca 2015"},"8550":{"market_hash_name":"Sticker | zont1x (Glitter, Champion) | Shanghai 2024"},"8551":{"market_hash_name":"Sticker | zont1x (Holo, Champion) | Shanghai 2024"},"8552":{"market_hash_name":"Sticker | zont1x (Gold, Champion) | Shanghai 2024"},"8553":{"market_hash_name":"Sticker | Train (Gold)"},"8554":{"market_hash_name":"Sticker | Vitality | Austin 2025"},"8555":{"market_hash_name":"Sticker | Vitality (Foil) | Austin 2025"},"8556":{"market_hash_name":"Sticker | Vitality (Holo) | Austin 2025"},"8557":{"market_hash_name":"Sticker | Vitality (Gold) | Austin 2025"},"8558":{"market_hash_name":"Sticker | MOUZ | Austin 2025"},"8559":{"market_hash_name":"Sticker | MOUZ (Foil) | Austin 2025"},"856":{"market_hash_name":"Sticker | RpK (Gold) | Cluj-Napoca 2015"},"8560":{"market_hash_name":"Sticker | MOUZ (Holo) | Austin 2025"},"8561":{"market_hash_name":"Sticker | MOUZ (Gold) | Austin 2025"},"8562":{"market_hash_name":"Sticker | Team Spirit | Austin 2025"},"8563":{"market_hash_name":"Sticker | Team Spirit (Foil) | Austin 2025"},"8564":{"market_hash_name":"Sticker | Team Spirit (Holo) | Austin 2025"},"8565":{"market_hash_name":"Sticker | Team Spirit (Gold) | Austin 2025"},"8566":{"market_hash_name":"Sticker | The Mongolz | Austin 2025"},"8567":{"market_hash_name":"Sticker | The Mongolz (Foil) | Austin 2025"},"8568":{"market_hash_name":"Sticker | The Mongolz (Holo) | Austin 2025"},"8569":{"market_hash_name":"Sticker | The Mongolz (Gold) | Austin 2025"},"857":{"market_hash_name":"Sticker | ScreaM | Cluj-Napoca 2015"},"8570":{"market_hash_name":"Sticker | Aurora | Austin 2025"},"8571":{"market_hash_name":"Sticker | Aurora (Foil) | Austin 2025"},"8572":{"market_hash_name":"Sticker | Aurora (Holo) | Austin 2025"},"8573":{"market_hash_name":"Sticker | Aurora (Gold) | Austin 2025"},"8574":{"market_hash_name":"Sticker | Natus Vincere | Austin 2025"},"8575":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Austin 2025"},"8576":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Austin 2025"},"8577":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Austin 2025"},"8578":{"market_hash_name":"Sticker | G2 Esports | Austin 2025"},"8579":{"market_hash_name":"Sticker | G2 Esports (Foil) | Austin 2025"},"858":{"market_hash_name":"Sticker | ScreaM (Foil) | Cluj-Napoca 2015"},"8580":{"market_hash_name":"Sticker | G2 Esports (Holo) | Austin 2025"},"8581":{"market_hash_name":"Sticker | G2 Esports (Gold) | Austin 2025"},"8582":{"market_hash_name":"Sticker | Team Liquid | Austin 2025"},"8583":{"market_hash_name":"Sticker | Team Liquid (Foil) | Austin 2025"},"8584":{"market_hash_name":"Sticker | Team Liquid (Holo) | Austin 2025"},"8585":{"market_hash_name":"Sticker | Team Liquid (Gold) | Austin 2025"},"8586":{"market_hash_name":"Sticker | Falcons | Austin 2025"},"8587":{"market_hash_name":"Sticker | Falcons (Foil) | Austin 2025"},"8588":{"market_hash_name":"Sticker | Falcons (Holo) | Austin 2025"},"8589":{"market_hash_name":"Sticker | Falcons (Gold) | Austin 2025"},"859":{"market_hash_name":"Sticker | ScreaM (Gold) | Cluj-Napoca 2015"},"8590":{"market_hash_name":"Sticker | FaZe Clan | Austin 2025"},"8591":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Austin 2025"},"8592":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Austin 2025"},"8593":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Austin 2025"},"8594":{"market_hash_name":"Sticker | 3DMAX | Austin 2025"},"8595":{"market_hash_name":"Sticker | 3DMAX (Foil) | Austin 2025"},"8596":{"market_hash_name":"Sticker | 3DMAX (Holo) | Austin 2025"},"8597":{"market_hash_name":"Sticker | 3DMAX (Gold) | Austin 2025"},"8598":{"market_hash_name":"Sticker | Virtus.Pro | Austin 2025"},"8599":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Austin 2025"},"86":{"market_hash_name":"Sticker | Fnatic (Foil) | Katowice 2014"},"860":{"market_hash_name":"Sticker | shox | Cluj-Napoca 2015"},"8600":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Austin 2025"},"8601":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Austin 2025"},"8602":{"market_hash_name":"Sticker | paiN Gaming | Austin 2025"},"8603":{"market_hash_name":"Sticker | paiN Gaming (Foil) | Austin 2025"},"8604":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Austin 2025"},"8605":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Austin 2025"},"8606":{"market_hash_name":"Sticker | FURIA | Austin 2025"},"8607":{"market_hash_name":"Sticker | FURIA (Foil) | Austin 2025"},"8608":{"market_hash_name":"Sticker | FURIA (Holo) | Austin 2025"},"8609":{"market_hash_name":"Sticker | FURIA (Gold) | Austin 2025"},"861":{"market_hash_name":"Sticker | shox (Foil) | Cluj-Napoca 2015"},"8610":{"market_hash_name":"Sticker | MIBR | Austin 2025"},"8611":{"market_hash_name":"Sticker | MIBR (Foil) | Austin 2025"},"8612":{"market_hash_name":"Sticker | MIBR (Holo) | Austin 2025"},"8613":{"market_hash_name":"Sticker | MIBR (Gold) | Austin 2025"},"8614":{"market_hash_name":"Sticker | M80 | Austin 2025"},"8615":{"market_hash_name":"Sticker | M80 (Foil) | Austin 2025"},"8616":{"market_hash_name":"Sticker | M80 (Holo) | Austin 2025"},"8617":{"market_hash_name":"Sticker | M80 (Gold) | Austin 2025"},"8618":{"market_hash_name":"Sticker | Complexity Gaming | Austin 2025"},"8619":{"market_hash_name":"Sticker | Complexity Gaming (Foil) | Austin 2025"},"862":{"market_hash_name":"Sticker | shox (Gold) | Cluj-Napoca 2015"},"8620":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Austin 2025"},"8621":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Austin 2025"},"8622":{"market_hash_name":"Sticker | Wildcard | Austin 2025"},"8623":{"market_hash_name":"Sticker | Wildcard (Foil) | Austin 2025"},"8624":{"market_hash_name":"Sticker | Wildcard (Holo) | Austin 2025"},"8625":{"market_hash_name":"Sticker | Wildcard (Gold) | Austin 2025"},"8626":{"market_hash_name":"Sticker | HEROIC | Austin 2025"},"8627":{"market_hash_name":"Sticker | HEROIC (Foil) | Austin 2025"},"8628":{"market_hash_name":"Sticker | HEROIC (Holo) | Austin 2025"},"8629":{"market_hash_name":"Sticker | HEROIC (Gold) | Austin 2025"},"863":{"market_hash_name":"Sticker | SmithZz | Cluj-Napoca 2015"},"8630":{"market_hash_name":"Sticker | B8 | Austin 2025"},"8631":{"market_hash_name":"Sticker | B8 (Foil) | Austin 2025"},"8632":{"market_hash_name":"Sticker | B8 (Holo) | Austin 2025"},"8633":{"market_hash_name":"Sticker | B8 (Gold) | Austin 2025"},"8634":{"market_hash_name":"Sticker | OG | Austin 2025"},"8635":{"market_hash_name":"Sticker | OG (Foil) | Austin 2025"},"8636":{"market_hash_name":"Sticker | OG (Holo) | Austin 2025"},"8637":{"market_hash_name":"Sticker | OG (Gold) | Austin 2025"},"8638":{"market_hash_name":"Sticker | Nemiga | Austin 2025"},"8639":{"market_hash_name":"Sticker | Nemiga (Foil) | Austin 2025"},"864":{"market_hash_name":"Sticker | SmithZz (Foil) | Cluj-Napoca 2015"},"8640":{"market_hash_name":"Sticker | Nemiga (Holo) | Austin 2025"},"8641":{"market_hash_name":"Sticker | Nemiga (Gold) | Austin 2025"},"8642":{"market_hash_name":"Sticker | BetBoom | Austin 2025"},"8643":{"market_hash_name":"Sticker | BetBoom (Foil) | Austin 2025"},"8644":{"market_hash_name":"Sticker | BetBoom (Holo) | Austin 2025"},"8645":{"market_hash_name":"Sticker | BetBoom (Gold) | Austin 2025"},"8646":{"market_hash_name":"Sticker | Imperial Esports | Austin 2025"},"8647":{"market_hash_name":"Sticker | Imperial Esports (Foil) | Austin 2025"},"8648":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Austin 2025"},"8649":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Austin 2025"},"865":{"market_hash_name":"Sticker | SmithZz (Gold) | Cluj-Napoca 2015"},"8650":{"market_hash_name":"Sticker | NRG | Austin 2025"},"8651":{"market_hash_name":"Sticker | NRG (Foil) | Austin 2025"},"8652":{"market_hash_name":"Sticker | NRG (Holo) | Austin 2025"},"8653":{"market_hash_name":"Sticker | NRG (Gold) | Austin 2025"},"8654":{"market_hash_name":"Sticker | FlyQuest | Austin 2025"},"8655":{"market_hash_name":"Sticker | FlyQuest (Foil) | Austin 2025"},"8656":{"market_hash_name":"Sticker | FlyQuest (Holo) | Austin 2025"},"8657":{"market_hash_name":"Sticker | FlyQuest (Gold) | Austin 2025"},"8658":{"market_hash_name":"Sticker | Metizport | Austin 2025"},"8659":{"market_hash_name":"Sticker | Metizport (Foil) | Austin 2025"},"866":{"market_hash_name":"Sticker | cajunb | Cluj-Napoca 2015"},"8660":{"market_hash_name":"Sticker | Metizport (Holo) | Austin 2025"},"8661":{"market_hash_name":"Sticker | Metizport (Gold) | Austin 2025"},"8662":{"market_hash_name":"Sticker | TYLOO | Austin 2025"},"8663":{"market_hash_name":"Sticker | TYLOO (Foil) | Austin 2025"},"8664":{"market_hash_name":"Sticker | TYLOO (Holo) | Austin 2025"},"8665":{"market_hash_name":"Sticker | TYLOO (Gold) | Austin 2025"},"8666":{"market_hash_name":"Sticker | Fluxo | Austin 2025"},"8667":{"market_hash_name":"Sticker | Fluxo (Foil) | Austin 2025"},"8668":{"market_hash_name":"Sticker | Fluxo (Holo) | Austin 2025"},"8669":{"market_hash_name":"Sticker | Fluxo (Gold) | Austin 2025"},"867":{"market_hash_name":"Sticker | cajunb (Foil) | Cluj-Napoca 2015"},"8670":{"market_hash_name":"Sticker | Chinggis Warriors | Austin 2025"},"8671":{"market_hash_name":"Sticker | Chinggis Warriors (Foil) | Austin 2025"},"8672":{"market_hash_name":"Sticker | Chinggis Warriors (Holo) | Austin 2025"},"8673":{"market_hash_name":"Sticker | Chinggis Warriors (Gold) | Austin 2025"},"8674":{"market_hash_name":"Sticker | Lynn Vision | Austin 2025"},"8675":{"market_hash_name":"Sticker | Lynn Vision (Foil) | Austin 2025"},"8676":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Austin 2025"},"8677":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Austin 2025"},"8678":{"market_hash_name":"Sticker | Legacy | Austin 2025"},"8679":{"market_hash_name":"Sticker | Legacy (Foil) | Austin 2025"},"868":{"market_hash_name":"Sticker | cajunb (Gold) | Cluj-Napoca 2015"},"8680":{"market_hash_name":"Sticker | Legacy (Holo) | Austin 2025"},"8681":{"market_hash_name":"Sticker | Legacy (Gold) | Austin 2025"},"8682":{"market_hash_name":"Sticker | BLAST.tv | Austin 2025"},"8683":{"market_hash_name":"Sticker | BLAST.tv (Foil) | Austin 2025"},"8684":{"market_hash_name":"Sticker | BLAST.tv (Holo) | Austin 2025"},"8685":{"market_hash_name":"Sticker | BLAST.tv (Gold) | Austin 2025"},"869":{"market_hash_name":"Sticker | device | Cluj-Napoca 2015"},"87":{"market_hash_name":"Sticker | HellRaisers (Foil) | Katowice 2014"},"870":{"market_hash_name":"Sticker | device (Foil) | Cluj-Napoca 2015"},"871":{"market_hash_name":"Sticker | device (Gold) | Cluj-Napoca 2015"},"8719":{"market_hash_name":"Sticker | apEX | Austin 2025"},"872":{"market_hash_name":"Sticker | dupreeh | Cluj-Napoca 2015"},"8720":{"market_hash_name":"Sticker | apEX (Foil) | Austin 2025"},"8721":{"market_hash_name":"Sticker | apEX (Holo) | Austin 2025"},"8722":{"market_hash_name":"Sticker | apEX (Gold) | Austin 2025"},"8723":{"market_hash_name":"Sticker | ZywOo | Austin 2025"},"8724":{"market_hash_name":"Sticker | ZywOo (Foil) | Austin 2025"},"8725":{"market_hash_name":"Sticker | ZywOo (Holo) | Austin 2025"},"8726":{"market_hash_name":"Sticker | ZywOo (Gold) | Austin 2025"},"8727":{"market_hash_name":"Sticker | FlameZ | Austin 2025"},"8728":{"market_hash_name":"Sticker | FlameZ (Foil) | Austin 2025"},"8729":{"market_hash_name":"Sticker | FlameZ (Holo) | Austin 2025"},"873":{"market_hash_name":"Sticker | dupreeh (Foil) | Cluj-Napoca 2015"},"8730":{"market_hash_name":"Sticker | FlameZ (Gold) | Austin 2025"},"8731":{"market_hash_name":"Sticker | mezii | Austin 2025"},"8732":{"market_hash_name":"Sticker | mezii (Foil) | Austin 2025"},"8733":{"market_hash_name":"Sticker | mezii (Holo) | Austin 2025"},"8734":{"market_hash_name":"Sticker | mezii (Gold) | Austin 2025"},"8735":{"market_hash_name":"Sticker | ropz | Austin 2025"},"8736":{"market_hash_name":"Sticker | ropz (Foil) | Austin 2025"},"8737":{"market_hash_name":"Sticker | ropz (Holo) | Austin 2025"},"8738":{"market_hash_name":"Sticker | ropz (Gold) | Austin 2025"},"8739":{"market_hash_name":"Sticker | torzsi | Austin 2025"},"874":{"market_hash_name":"Sticker | dupreeh (Gold) | Cluj-Napoca 2015"},"8740":{"market_hash_name":"Sticker | torzsi (Foil) | Austin 2025"},"8741":{"market_hash_name":"Sticker | torzsi (Holo) | Austin 2025"},"8742":{"market_hash_name":"Sticker | torzsi (Gold) | Austin 2025"},"8743":{"market_hash_name":"Sticker | Jimpphat | Austin 2025"},"8744":{"market_hash_name":"Sticker | Jimpphat (Foil) | Austin 2025"},"8745":{"market_hash_name":"Sticker | Jimpphat (Holo) | Austin 2025"},"8746":{"market_hash_name":"Sticker | Jimpphat (Gold) | Austin 2025"},"8747":{"market_hash_name":"Sticker | Brollan | Austin 2025"},"8748":{"market_hash_name":"Sticker | Brollan (Foil) | Austin 2025"},"8749":{"market_hash_name":"Sticker | Brollan (Holo) | Austin 2025"},"875":{"market_hash_name":"Sticker | karrigan | Cluj-Napoca 2015"},"8750":{"market_hash_name":"Sticker | Brollan (Gold) | Austin 2025"},"8751":{"market_hash_name":"Sticker | Spinx | Austin 2025"},"8752":{"market_hash_name":"Sticker | Spinx (Foil) | Austin 2025"},"8753":{"market_hash_name":"Sticker | Spinx (Holo) | Austin 2025"},"8754":{"market_hash_name":"Sticker | Spinx (Gold) | Austin 2025"},"8755":{"market_hash_name":"Sticker | xertioN | Austin 2025"},"8756":{"market_hash_name":"Sticker | xertioN (Foil) | Austin 2025"},"8757":{"market_hash_name":"Sticker | xertioN (Holo) | Austin 2025"},"8758":{"market_hash_name":"Sticker | xertioN (Gold) | Austin 2025"},"8759":{"market_hash_name":"Sticker | chopper | Austin 2025"},"876":{"market_hash_name":"Sticker | karrigan (Foil) | Cluj-Napoca 2015"},"8760":{"market_hash_name":"Sticker | chopper (Foil) | Austin 2025"},"8761":{"market_hash_name":"Sticker | chopper (Holo) | Austin 2025"},"8762":{"market_hash_name":"Sticker | chopper (Gold) | Austin 2025"},"8763":{"market_hash_name":"Sticker | magixx | Austin 2025"},"8764":{"market_hash_name":"Sticker | magixx (Foil) | Austin 2025"},"8765":{"market_hash_name":"Sticker | magixx (Holo) | Austin 2025"},"8766":{"market_hash_name":"Sticker | magixx (Gold) | Austin 2025"},"8767":{"market_hash_name":"Sticker | donk | Austin 2025"},"8768":{"market_hash_name":"Sticker | donk (Foil) | Austin 2025"},"8769":{"market_hash_name":"Sticker | donk (Holo) | Austin 2025"},"877":{"market_hash_name":"Sticker | karrigan (Gold) | Cluj-Napoca 2015"},"8770":{"market_hash_name":"Sticker | donk (Gold) | Austin 2025"},"8771":{"market_hash_name":"Sticker | sh1ro | Austin 2025"},"8772":{"market_hash_name":"Sticker | sh1ro (Foil) | Austin 2025"},"8773":{"market_hash_name":"Sticker | sh1ro (Holo) | Austin 2025"},"8774":{"market_hash_name":"Sticker | sh1ro (Gold) | Austin 2025"},"8775":{"market_hash_name":"Sticker | zont1x | Austin 2025"},"8776":{"market_hash_name":"Sticker | zont1x (Foil) | Austin 2025"},"8777":{"market_hash_name":"Sticker | zont1x (Holo) | Austin 2025"},"8778":{"market_hash_name":"Sticker | zont1x (Gold) | Austin 2025"},"8779":{"market_hash_name":"Sticker | bLitz | Austin 2025"},"878":{"market_hash_name":"Sticker | Xyp9x | Cluj-Napoca 2015"},"8780":{"market_hash_name":"Sticker | bLitz (Foil) | Austin 2025"},"8781":{"market_hash_name":"Sticker | bLitz (Holo) | Austin 2025"},"8782":{"market_hash_name":"Sticker | bLitz (Gold) | Austin 2025"},"8783":{"market_hash_name":"Sticker | Techno4K | Austin 2025"},"8784":{"market_hash_name":"Sticker | Techno4K (Foil) | Austin 2025"},"8785":{"market_hash_name":"Sticker | Techno4K (Holo) | Austin 2025"},"8786":{"market_hash_name":"Sticker | Techno4K (Gold) | Austin 2025"},"8787":{"market_hash_name":"Sticker | Senzu | Austin 2025"},"8788":{"market_hash_name":"Sticker | Senzu (Foil) | Austin 2025"},"8789":{"market_hash_name":"Sticker | Senzu (Holo) | Austin 2025"},"879":{"market_hash_name":"Sticker | Xyp9x (Foil) | Cluj-Napoca 2015"},"8790":{"market_hash_name":"Sticker | Senzu (Gold) | Austin 2025"},"8791":{"market_hash_name":"Sticker | 910 | Austin 2025"},"8792":{"market_hash_name":"Sticker | 910 (Foil) | Austin 2025"},"8793":{"market_hash_name":"Sticker | 910 (Holo) | Austin 2025"},"8794":{"market_hash_name":"Sticker | 910 (Gold) | Austin 2025"},"8795":{"market_hash_name":"Sticker | mzinho | Austin 2025"},"8796":{"market_hash_name":"Sticker | mzinho (Foil) | Austin 2025"},"8797":{"market_hash_name":"Sticker | mzinho (Holo) | Austin 2025"},"8798":{"market_hash_name":"Sticker | mzinho (Gold) | Austin 2025"},"8799":{"market_hash_name":"Sticker | MAJ3R | Austin 2025"},"88":{"market_hash_name":"Sticker | iBUYPOWER (Foil) | Katowice 2014"},"880":{"market_hash_name":"Sticker | Xyp9x (Gold) | Cluj-Napoca 2015"},"8800":{"market_hash_name":"Sticker | MAJ3R (Foil) | Austin 2025"},"8801":{"market_hash_name":"Sticker | MAJ3R (Holo) | Austin 2025"},"8802":{"market_hash_name":"Sticker | MAJ3R (Gold) | Austin 2025"},"8803":{"market_hash_name":"Sticker | XANTARES | Austin 2025"},"8804":{"market_hash_name":"Sticker | XANTARES (Foil) | Austin 2025"},"8805":{"market_hash_name":"Sticker | XANTARES (Holo) | Austin 2025"},"8806":{"market_hash_name":"Sticker | XANTARES (Gold) | Austin 2025"},"8807":{"market_hash_name":"Sticker | jottAAA | Austin 2025"},"8808":{"market_hash_name":"Sticker | jottAAA (Foil) | Austin 2025"},"8809":{"market_hash_name":"Sticker | jottAAA (Holo) | Austin 2025"},"881":{"market_hash_name":"Sticker | Furlan | Cluj-Napoca 2015"},"8810":{"market_hash_name":"Sticker | jottAAA (Gold) | Austin 2025"},"8811":{"market_hash_name":"Sticker | Wicadia | Austin 2025"},"8812":{"market_hash_name":"Sticker | Wicadia (Foil) | Austin 2025"},"8813":{"market_hash_name":"Sticker | Wicadia (Holo) | Austin 2025"},"8814":{"market_hash_name":"Sticker | Wicadia (Gold) | Austin 2025"},"8815":{"market_hash_name":"Sticker | woxic | Austin 2025"},"8816":{"market_hash_name":"Sticker | woxic (Foil) | Austin 2025"},"8817":{"market_hash_name":"Sticker | woxic (Holo) | Austin 2025"},"8818":{"market_hash_name":"Sticker | woxic (Gold) | Austin 2025"},"8819":{"market_hash_name":"Sticker | w0nderful | Austin 2025"},"882":{"market_hash_name":"Sticker | Furlan (Foil) | Cluj-Napoca 2015"},"8820":{"market_hash_name":"Sticker | w0nderful (Foil) | Austin 2025"},"8821":{"market_hash_name":"Sticker | w0nderful (Holo) | Austin 2025"},"8822":{"market_hash_name":"Sticker | w0nderful (Gold) | Austin 2025"},"8823":{"market_hash_name":"Sticker | Aleksib | Austin 2025"},"8824":{"market_hash_name":"Sticker | Aleksib (Foil) | Austin 2025"},"8825":{"market_hash_name":"Sticker | Aleksib (Holo) | Austin 2025"},"8826":{"market_hash_name":"Sticker | Aleksib (Gold) | Austin 2025"},"8827":{"market_hash_name":"Sticker | jL | Austin 2025"},"8828":{"market_hash_name":"Sticker | jL (Foil) | Austin 2025"},"8829":{"market_hash_name":"Sticker | jL (Holo) | Austin 2025"},"883":{"market_hash_name":"Sticker | Furlan (Gold) | Cluj-Napoca 2015"},"8830":{"market_hash_name":"Sticker | jL (Gold) | Austin 2025"},"8831":{"market_hash_name":"Sticker | b1t | Austin 2025"},"8832":{"market_hash_name":"Sticker | b1t (Foil) | Austin 2025"},"8833":{"market_hash_name":"Sticker | b1t (Holo) | Austin 2025"},"8834":{"market_hash_name":"Sticker | b1t (Gold) | Austin 2025"},"8835":{"market_hash_name":"Sticker | iM | Austin 2025"},"8836":{"market_hash_name":"Sticker | iM (Foil) | Austin 2025"},"8837":{"market_hash_name":"Sticker | iM (Holo) | Austin 2025"},"8838":{"market_hash_name":"Sticker | iM (Gold) | Austin 2025"},"8839":{"market_hash_name":"Sticker | Snax | Austin 2025"},"884":{"market_hash_name":"Sticker | GruBy | Cluj-Napoca 2015"},"8840":{"market_hash_name":"Sticker | Snax (Foil) | Austin 2025"},"8841":{"market_hash_name":"Sticker | Snax (Holo) | Austin 2025"},"8842":{"market_hash_name":"Sticker | Snax (Gold) | Austin 2025"},"8843":{"market_hash_name":"Sticker | huNter- | Austin 2025"},"8844":{"market_hash_name":"Sticker | huNter- (Foil) | Austin 2025"},"8845":{"market_hash_name":"Sticker | huNter- (Holo) | Austin 2025"},"8846":{"market_hash_name":"Sticker | huNter- (Gold) | Austin 2025"},"8847":{"market_hash_name":"Sticker | malbsMd | Austin 2025"},"8848":{"market_hash_name":"Sticker | malbsMd (Foil) | Austin 2025"},"8849":{"market_hash_name":"Sticker | malbsMd (Holo) | Austin 2025"},"885":{"market_hash_name":"Sticker | GruBy (Foil) | Cluj-Napoca 2015"},"8850":{"market_hash_name":"Sticker | malbsMd (Gold) | Austin 2025"},"8851":{"market_hash_name":"Sticker | Heavygod | Austin 2025"},"8852":{"market_hash_name":"Sticker | Heavygod (Foil) | Austin 2025"},"8853":{"market_hash_name":"Sticker | Heavygod (Holo) | Austin 2025"},"8854":{"market_hash_name":"Sticker | Heavygod (Gold) | Austin 2025"},"8855":{"market_hash_name":"Sticker | hades | Austin 2025"},"8856":{"market_hash_name":"Sticker | hades (Foil) | Austin 2025"},"8857":{"market_hash_name":"Sticker | hades (Holo) | Austin 2025"},"8858":{"market_hash_name":"Sticker | hades (Gold) | Austin 2025"},"8859":{"market_hash_name":"Sticker | Twistzz | Austin 2025"},"886":{"market_hash_name":"Sticker | GruBy (Gold) | Cluj-Napoca 2015"},"8860":{"market_hash_name":"Sticker | Twistzz (Foil) | Austin 2025"},"8861":{"market_hash_name":"Sticker | Twistzz (Holo) | Austin 2025"},"8862":{"market_hash_name":"Sticker | Twistzz (Gold) | Austin 2025"},"8863":{"market_hash_name":"Sticker | ultimate | Austin 2025"},"8864":{"market_hash_name":"Sticker | ultimate (Foil) | Austin 2025"},"8865":{"market_hash_name":"Sticker | ultimate (Holo) | Austin 2025"},"8866":{"market_hash_name":"Sticker | ultimate (Gold) | Austin 2025"},"8867":{"market_hash_name":"Sticker | NertZ | Austin 2025"},"8868":{"market_hash_name":"Sticker | NertZ (Foil) | Austin 2025"},"8869":{"market_hash_name":"Sticker | NertZ (Holo) | Austin 2025"},"887":{"market_hash_name":"Sticker | Hyper | Cluj-Napoca 2015"},"8870":{"market_hash_name":"Sticker | NertZ (Gold) | Austin 2025"},"8871":{"market_hash_name":"Sticker | siuhy | Austin 2025"},"8872":{"market_hash_name":"Sticker | siuhy (Foil) | Austin 2025"},"8873":{"market_hash_name":"Sticker | siuhy (Holo) | Austin 2025"},"8874":{"market_hash_name":"Sticker | siuhy (Gold) | Austin 2025"},"8875":{"market_hash_name":"Sticker | NAF | Austin 2025"},"8876":{"market_hash_name":"Sticker | NAF (Foil) | Austin 2025"},"8877":{"market_hash_name":"Sticker | NAF (Holo) | Austin 2025"},"8878":{"market_hash_name":"Sticker | NAF (Gold) | Austin 2025"},"8879":{"market_hash_name":"Sticker | NiKo | Austin 2025"},"888":{"market_hash_name":"Sticker | Hyper (Foil) | Cluj-Napoca 2015"},"8880":{"market_hash_name":"Sticker | NiKo (Foil) | Austin 2025"},"8881":{"market_hash_name":"Sticker | NiKo (Holo) | Austin 2025"},"8882":{"market_hash_name":"Sticker | NiKo (Gold) | Austin 2025"},"8883":{"market_hash_name":"Sticker | kyxsan | Austin 2025"},"8884":{"market_hash_name":"Sticker | kyxsan (Foil) | Austin 2025"},"8885":{"market_hash_name":"Sticker | kyxsan (Holo) | Austin 2025"},"8886":{"market_hash_name":"Sticker | kyxsan (Gold) | Austin 2025"},"8887":{"market_hash_name":"Sticker | m0NESY | Austin 2025"},"8888":{"market_hash_name":"Sticker | m0NESY (Foil) | Austin 2025"},"8889":{"market_hash_name":"Sticker | m0NESY (Holo) | Austin 2025"},"889":{"market_hash_name":"Sticker | Hyper (Gold) | Cluj-Napoca 2015"},"8890":{"market_hash_name":"Sticker | m0NESY (Gold) | Austin 2025"},"8891":{"market_hash_name":"Sticker | TeSeS | Austin 2025"},"8892":{"market_hash_name":"Sticker | TeSeS (Foil) | Austin 2025"},"8893":{"market_hash_name":"Sticker | TeSeS (Holo) | Austin 2025"},"8894":{"market_hash_name":"Sticker | TeSeS (Gold) | Austin 2025"},"8895":{"market_hash_name":"Sticker | Magisk | Austin 2025"},"8896":{"market_hash_name":"Sticker | Magisk (Foil) | Austin 2025"},"8897":{"market_hash_name":"Sticker | Magisk (Holo) | Austin 2025"},"8898":{"market_hash_name":"Sticker | Magisk (Gold) | Austin 2025"},"8899":{"market_hash_name":"Sticker | karrigan | Austin 2025"},"89":{"market_hash_name":"Sticker | Team LDLC.com (Foil) | Katowice 2014"},"890":{"market_hash_name":"Sticker | peet | Cluj-Napoca 2015"},"8900":{"market_hash_name":"Sticker | karrigan (Foil) | Austin 2025"},"8901":{"market_hash_name":"Sticker | karrigan (Holo) | Austin 2025"},"8902":{"market_hash_name":"Sticker | karrigan (Gold) | Austin 2025"},"8903":{"market_hash_name":"Sticker | broky | Austin 2025"},"8904":{"market_hash_name":"Sticker | broky (Foil) | Austin 2025"},"8905":{"market_hash_name":"Sticker | broky (Holo) | Austin 2025"},"8906":{"market_hash_name":"Sticker | broky (Gold) | Austin 2025"},"8907":{"market_hash_name":"Sticker | EliGE | Austin 2025"},"8908":{"market_hash_name":"Sticker | EliGE (Foil) | Austin 2025"},"8909":{"market_hash_name":"Sticker | EliGE (Holo) | Austin 2025"},"891":{"market_hash_name":"Sticker | peet (Foil) | Cluj-Napoca 2015"},"8910":{"market_hash_name":"Sticker | EliGE (Gold) | Austin 2025"},"8911":{"market_hash_name":"Sticker | frozen | Austin 2025"},"8912":{"market_hash_name":"Sticker | frozen (Foil) | Austin 2025"},"8913":{"market_hash_name":"Sticker | frozen (Holo) | Austin 2025"},"8914":{"market_hash_name":"Sticker | frozen (Gold) | Austin 2025"},"8915":{"market_hash_name":"Sticker | rain | Austin 2025"},"8916":{"market_hash_name":"Sticker | rain (Foil) | Austin 2025"},"8917":{"market_hash_name":"Sticker | rain (Holo) | Austin 2025"},"8918":{"market_hash_name":"Sticker | rain (Gold) | Austin 2025"},"8919":{"market_hash_name":"Sticker | Maka | Austin 2025"},"892":{"market_hash_name":"Sticker | peet (Gold) | Cluj-Napoca 2015"},"8920":{"market_hash_name":"Sticker | Maka (Foil) | Austin 2025"},"8921":{"market_hash_name":"Sticker | Maka (Holo) | Austin 2025"},"8922":{"market_hash_name":"Sticker | Maka (Gold) | Austin 2025"},"8923":{"market_hash_name":"Sticker | Ex3rcice | Austin 2025"},"8924":{"market_hash_name":"Sticker | Ex3rcice (Foil) | Austin 2025"},"8925":{"market_hash_name":"Sticker | Ex3rcice (Holo) | Austin 2025"},"8926":{"market_hash_name":"Sticker | Ex3rcice (Gold) | Austin 2025"},"8927":{"market_hash_name":"Sticker | Lucky | Austin 2025"},"8928":{"market_hash_name":"Sticker | Lucky (Foil) | Austin 2025"},"8929":{"market_hash_name":"Sticker | Lucky (Holo) | Austin 2025"},"893":{"market_hash_name":"Sticker | rallen | Cluj-Napoca 2015"},"8930":{"market_hash_name":"Sticker | Lucky (Gold) | Austin 2025"},"8931":{"market_hash_name":"Sticker | Graviti | Austin 2025"},"8932":{"market_hash_name":"Sticker | Graviti (Foil) | Austin 2025"},"8933":{"market_hash_name":"Sticker | Graviti (Holo) | Austin 2025"},"8934":{"market_hash_name":"Sticker | Graviti (Gold) | Austin 2025"},"8935":{"market_hash_name":"Sticker | bodyy | Austin 2025"},"8936":{"market_hash_name":"Sticker | bodyy (Foil) | Austin 2025"},"8937":{"market_hash_name":"Sticker | bodyy (Holo) | Austin 2025"},"8938":{"market_hash_name":"Sticker | bodyy (Gold) | Austin 2025"},"8939":{"market_hash_name":"Sticker | FL1T | Austin 2025"},"894":{"market_hash_name":"Sticker | rallen (Foil) | Cluj-Napoca 2015"},"8940":{"market_hash_name":"Sticker | FL1T (Foil) | Austin 2025"},"8941":{"market_hash_name":"Sticker | FL1T (Holo) | Austin 2025"},"8942":{"market_hash_name":"Sticker | FL1T (Gold) | Austin 2025"},"8943":{"market_hash_name":"Sticker | fame | Austin 2025"},"8944":{"market_hash_name":"Sticker | fame (Foil) | Austin 2025"},"8945":{"market_hash_name":"Sticker | fame (Holo) | Austin 2025"},"8946":{"market_hash_name":"Sticker | fame (Gold) | Austin 2025"},"8947":{"market_hash_name":"Sticker | electronic | Austin 2025"},"8948":{"market_hash_name":"Sticker | electronic (Foil) | Austin 2025"},"8949":{"market_hash_name":"Sticker | electronic (Holo) | Austin 2025"},"895":{"market_hash_name":"Sticker | rallen (Gold) | Cluj-Napoca 2015"},"8950":{"market_hash_name":"Sticker | electronic (Gold) | Austin 2025"},"8951":{"market_hash_name":"Sticker | FL4MUS | Austin 2025"},"8952":{"market_hash_name":"Sticker | FL4MUS (Foil) | Austin 2025"},"8953":{"market_hash_name":"Sticker | FL4MUS (Holo) | Austin 2025"},"8954":{"market_hash_name":"Sticker | FL4MUS (Gold) | Austin 2025"},"8955":{"market_hash_name":"Sticker | ICY | Austin 2025"},"8956":{"market_hash_name":"Sticker | ICY (Foil) | Austin 2025"},"8957":{"market_hash_name":"Sticker | ICY (Holo) | Austin 2025"},"8958":{"market_hash_name":"Sticker | ICY (Gold) | Austin 2025"},"8959":{"market_hash_name":"Sticker | biguzera | Austin 2025"},"896":{"market_hash_name":"Sticker | byali | Cluj-Napoca 2015"},"8960":{"market_hash_name":"Sticker | biguzera (Foil) | Austin 2025"},"8961":{"market_hash_name":"Sticker | biguzera (Holo) | Austin 2025"},"8962":{"market_hash_name":"Sticker | biguzera (Gold) | Austin 2025"},"8963":{"market_hash_name":"Sticker | NQZ | Austin 2025"},"8964":{"market_hash_name":"Sticker | NQZ (Foil) | Austin 2025"},"8965":{"market_hash_name":"Sticker | NQZ (Holo) | Austin 2025"},"8966":{"market_hash_name":"Sticker | NQZ (Gold) | Austin 2025"},"8967":{"market_hash_name":"Sticker | snow | Austin 2025"},"8968":{"market_hash_name":"Sticker | snow (Foil) | Austin 2025"},"8969":{"market_hash_name":"Sticker | snow (Holo) | Austin 2025"},"897":{"market_hash_name":"Sticker | byali (Foil) | Cluj-Napoca 2015"},"8970":{"market_hash_name":"Sticker | snow (Gold) | Austin 2025"},"8971":{"market_hash_name":"Sticker | dav1deuS | Austin 2025"},"8972":{"market_hash_name":"Sticker | dav1deuS (Foil) | Austin 2025"},"8973":{"market_hash_name":"Sticker | dav1deuS (Holo) | Austin 2025"},"8974":{"market_hash_name":"Sticker | dav1deuS (Gold) | Austin 2025"},"8975":{"market_hash_name":"Sticker | dgt | Austin 2025"},"8976":{"market_hash_name":"Sticker | dgt (Foil) | Austin 2025"},"8977":{"market_hash_name":"Sticker | dgt (Holo) | Austin 2025"},"8978":{"market_hash_name":"Sticker | dgt (Gold) | Austin 2025"},"8979":{"market_hash_name":"Sticker | FalleN | Austin 2025"},"898":{"market_hash_name":"Sticker | byali (Gold) | Cluj-Napoca 2015"},"8980":{"market_hash_name":"Sticker | FalleN (Foil) | Austin 2025"},"8981":{"market_hash_name":"Sticker | FalleN (Holo) | Austin 2025"},"8982":{"market_hash_name":"Sticker | FalleN (Gold) | Austin 2025"},"8983":{"market_hash_name":"Sticker | yuurih | Austin 2025"},"8984":{"market_hash_name":"Sticker | yuurih (Foil) | Austin 2025"},"8985":{"market_hash_name":"Sticker | yuurih (Holo) | Austin 2025"},"8986":{"market_hash_name":"Sticker | yuurih (Gold) | Austin 2025"},"8987":{"market_hash_name":"Sticker | KSCERATO | Austin 2025"},"8988":{"market_hash_name":"Sticker | KSCERATO (Foil) | Austin 2025"},"8989":{"market_hash_name":"Sticker | KSCERATO (Holo) | Austin 2025"},"899":{"market_hash_name":"Sticker | NEO | Cluj-Napoca 2015"},"8990":{"market_hash_name":"Sticker | KSCERATO (Gold) | Austin 2025"},"8991":{"market_hash_name":"Sticker | skullz | Austin 2025"},"8992":{"market_hash_name":"Sticker | skullz (Foil) | Austin 2025"},"8993":{"market_hash_name":"Sticker | skullz (Holo) | Austin 2025"},"8994":{"market_hash_name":"Sticker | skullz (Gold) | Austin 2025"},"8995":{"market_hash_name":"Sticker | molodoy | Austin 2025"},"8996":{"market_hash_name":"Sticker | molodoy (Foil) | Austin 2025"},"8997":{"market_hash_name":"Sticker | molodoy (Holo) | Austin 2025"},"8998":{"market_hash_name":"Sticker | molodoy (Gold) | Austin 2025"},"8999":{"market_hash_name":"Sticker | exit | Austin 2025"},"9":{"market_hash_name":"Sticker | Mountain"},"90":{"market_hash_name":"Sticker | LGB eSports (Foil) | Katowice 2014"},"900":{"market_hash_name":"Sticker | NEO (Foil) | Cluj-Napoca 2015"},"9000":{"market_hash_name":"Sticker | exit (Foil) | Austin 2025"},"9001":{"market_hash_name":"Sticker | exit (Holo) | Austin 2025"},"9002":{"market_hash_name":"Sticker | exit (Gold) | Austin 2025"},"9003":{"market_hash_name":"Sticker | insani | Austin 2025"},"9004":{"market_hash_name":"Sticker | insani (Foil) | Austin 2025"},"9005":{"market_hash_name":"Sticker | insani (Holo) | Austin 2025"},"9006":{"market_hash_name":"Sticker | insani (Gold) | Austin 2025"},"9007":{"market_hash_name":"Sticker | Lucaozy | Austin 2025"},"9008":{"market_hash_name":"Sticker | Lucaozy (Foil) | Austin 2025"},"9009":{"market_hash_name":"Sticker | Lucaozy (Holo) | Austin 2025"},"901":{"market_hash_name":"Sticker | NEO (Gold) | Cluj-Napoca 2015"},"9010":{"market_hash_name":"Sticker | Lucaozy (Gold) | Austin 2025"},"9011":{"market_hash_name":"Sticker | brnz4n | Austin 2025"},"9012":{"market_hash_name":"Sticker | brnz4n (Foil) | Austin 2025"},"9013":{"market_hash_name":"Sticker | brnz4n (Holo) | Austin 2025"},"9014":{"market_hash_name":"Sticker | brnz4n (Gold) | Austin 2025"},"9015":{"market_hash_name":"Sticker | saffee | Austin 2025"},"9016":{"market_hash_name":"Sticker | saffee (Foil) | Austin 2025"},"9017":{"market_hash_name":"Sticker | saffee (Holo) | Austin 2025"},"9018":{"market_hash_name":"Sticker | saffee (Gold) | Austin 2025"},"9019":{"market_hash_name":"Sticker | reck | Austin 2025"},"902":{"market_hash_name":"Sticker | pashaBiceps | Cluj-Napoca 2015"},"9020":{"market_hash_name":"Sticker | reck (Foil) | Austin 2025"},"9021":{"market_hash_name":"Sticker | reck (Holo) | Austin 2025"},"9022":{"market_hash_name":"Sticker | reck (Gold) | Austin 2025"},"9023":{"market_hash_name":"Sticker | Lake | Austin 2025"},"9024":{"market_hash_name":"Sticker | Lake (Foil) | Austin 2025"},"9025":{"market_hash_name":"Sticker | Lake (Holo) | Austin 2025"},"9026":{"market_hash_name":"Sticker | Lake (Gold) | Austin 2025"},"9027":{"market_hash_name":"Sticker | Swisher | Austin 2025"},"9028":{"market_hash_name":"Sticker | Swisher (Foil) | Austin 2025"},"9029":{"market_hash_name":"Sticker | Swisher (Holo) | Austin 2025"},"903":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Cluj-Napoca 2015"},"9030":{"market_hash_name":"Sticker | Swisher (Gold) | Austin 2025"},"9031":{"market_hash_name":"Sticker | slaxz- | Austin 2025"},"9032":{"market_hash_name":"Sticker | slaxz- (Foil) | Austin 2025"},"9033":{"market_hash_name":"Sticker | slaxz- (Holo) | Austin 2025"},"9034":{"market_hash_name":"Sticker | slaxz- (Gold) | Austin 2025"},"9035":{"market_hash_name":"Sticker | s1n | Austin 2025"},"9036":{"market_hash_name":"Sticker | s1n (Foil) | Austin 2025"},"9037":{"market_hash_name":"Sticker | s1n (Holo) | Austin 2025"},"9038":{"market_hash_name":"Sticker | s1n (Gold) | Austin 2025"},"9039":{"market_hash_name":"Sticker | Cxzi | Austin 2025"},"904":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Cluj-Napoca 2015"},"9040":{"market_hash_name":"Sticker | Cxzi (Foil) | Austin 2025"},"9041":{"market_hash_name":"Sticker | Cxzi (Holo) | Austin 2025"},"9042":{"market_hash_name":"Sticker | Cxzi (Gold) | Austin 2025"},"9043":{"market_hash_name":"Sticker | Grim | Austin 2025"},"9044":{"market_hash_name":"Sticker | Grim (Foil) | Austin 2025"},"9045":{"market_hash_name":"Sticker | Grim (Holo) | Austin 2025"},"9046":{"market_hash_name":"Sticker | Grim (Gold) | Austin 2025"},"9047":{"market_hash_name":"Sticker | hallzerk | Austin 2025"},"9048":{"market_hash_name":"Sticker | hallzerk (Foil) | Austin 2025"},"9049":{"market_hash_name":"Sticker | hallzerk (Holo) | Austin 2025"},"905":{"market_hash_name":"Sticker | Snax | Cluj-Napoca 2015"},"9050":{"market_hash_name":"Sticker | hallzerk (Gold) | Austin 2025"},"9051":{"market_hash_name":"Sticker | JT | Austin 2025"},"9052":{"market_hash_name":"Sticker | JT (Foil) | Austin 2025"},"9053":{"market_hash_name":"Sticker | JT (Holo) | Austin 2025"},"9054":{"market_hash_name":"Sticker | JT (Gold) | Austin 2025"},"9055":{"market_hash_name":"Sticker | nicx | Austin 2025"},"9056":{"market_hash_name":"Sticker | nicx (Foil) | Austin 2025"},"9057":{"market_hash_name":"Sticker | nicx (Holo) | Austin 2025"},"9058":{"market_hash_name":"Sticker | nicx (Gold) | Austin 2025"},"9059":{"market_hash_name":"Sticker | stanislaw | Austin 2025"},"906":{"market_hash_name":"Sticker | Snax (Foil) | Cluj-Napoca 2015"},"9060":{"market_hash_name":"Sticker | stanislaw (Foil) | Austin 2025"},"9061":{"market_hash_name":"Sticker | stanislaw (Holo) | Austin 2025"},"9062":{"market_hash_name":"Sticker | stanislaw (Gold) | Austin 2025"},"9063":{"market_hash_name":"Sticker | Sonic | Austin 2025"},"9064":{"market_hash_name":"Sticker | Sonic (Foil) | Austin 2025"},"9065":{"market_hash_name":"Sticker | Sonic (Holo) | Austin 2025"},"9066":{"market_hash_name":"Sticker | Sonic (Gold) | Austin 2025"},"9067":{"market_hash_name":"Sticker | phzy | Austin 2025"},"9068":{"market_hash_name":"Sticker | phzy (Foil) | Austin 2025"},"9069":{"market_hash_name":"Sticker | phzy (Holo) | Austin 2025"},"907":{"market_hash_name":"Sticker | Snax (Gold) | Cluj-Napoca 2015"},"9070":{"market_hash_name":"Sticker | phzy (Gold) | Austin 2025"},"9071":{"market_hash_name":"Sticker | susp | Austin 2025"},"9072":{"market_hash_name":"Sticker | susp (Foil) | Austin 2025"},"9073":{"market_hash_name":"Sticker | susp (Holo) | Austin 2025"},"9074":{"market_hash_name":"Sticker | susp (Gold) | Austin 2025"},"9075":{"market_hash_name":"Sticker | JBa | Austin 2025"},"9076":{"market_hash_name":"Sticker | JBa (Foil) | Austin 2025"},"9077":{"market_hash_name":"Sticker | JBa (Holo) | Austin 2025"},"9078":{"market_hash_name":"Sticker | JBa (Gold) | Austin 2025"},"9079":{"market_hash_name":"Sticker | tN1R | Austin 2025"},"908":{"market_hash_name":"Sticker | TaZ | Cluj-Napoca 2015"},"9080":{"market_hash_name":"Sticker | tN1R (Foil) | Austin 2025"},"9081":{"market_hash_name":"Sticker | tN1R (Holo) | Austin 2025"},"9082":{"market_hash_name":"Sticker | tN1R (Gold) | Austin 2025"},"9083":{"market_hash_name":"Sticker | SunPayus | Austin 2025"},"9084":{"market_hash_name":"Sticker | SunPayus (Foil) | Austin 2025"},"9085":{"market_hash_name":"Sticker | SunPayus (Holo) | Austin 2025"},"9086":{"market_hash_name":"Sticker | SunPayus (Gold) | Austin 2025"},"9087":{"market_hash_name":"Sticker | xfl0ud | Austin 2025"},"9088":{"market_hash_name":"Sticker | xfl0ud (Foil) | Austin 2025"},"9089":{"market_hash_name":"Sticker | xfl0ud (Holo) | Austin 2025"},"909":{"market_hash_name":"Sticker | TaZ (Foil) | Cluj-Napoca 2015"},"9090":{"market_hash_name":"Sticker | xfl0ud (Gold) | Austin 2025"},"9091":{"market_hash_name":"Sticker | LNZ | Austin 2025"},"9092":{"market_hash_name":"Sticker | LNZ (Foil) | Austin 2025"},"9093":{"market_hash_name":"Sticker | LNZ (Holo) | Austin 2025"},"9094":{"market_hash_name":"Sticker | LNZ (Gold) | Austin 2025"},"9095":{"market_hash_name":"Sticker | yxngstxr | Austin 2025"},"9096":{"market_hash_name":"Sticker | yxngstxr (Foil) | Austin 2025"},"9097":{"market_hash_name":"Sticker | yxngstxr (Holo) | Austin 2025"},"9098":{"market_hash_name":"Sticker | yxngstxr (Gold) | Austin 2025"},"9099":{"market_hash_name":"Sticker | headtr1ck | Austin 2025"},"91":{"market_hash_name":"Sticker | mousesports (Foil) | Katowice 2014"},"910":{"market_hash_name":"Sticker | TaZ (Gold) | Cluj-Napoca 2015"},"9100":{"market_hash_name":"Sticker | headtr1ck (Foil) | Austin 2025"},"9101":{"market_hash_name":"Sticker | headtr1ck (Holo) | Austin 2025"},"9102":{"market_hash_name":"Sticker | headtr1ck (Gold) | Austin 2025"},"9103":{"market_hash_name":"Sticker | kensizor | Austin 2025"},"9104":{"market_hash_name":"Sticker | kensizor (Foil) | Austin 2025"},"9105":{"market_hash_name":"Sticker | kensizor (Holo) | Austin 2025"},"9106":{"market_hash_name":"Sticker | kensizor (Gold) | Austin 2025"},"9107":{"market_hash_name":"Sticker | esenthial | Austin 2025"},"9108":{"market_hash_name":"Sticker | esenthial (Foil) | Austin 2025"},"9109":{"market_hash_name":"Sticker | esenthial (Holo) | Austin 2025"},"911":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cluj-Napoca 2015"},"9110":{"market_hash_name":"Sticker | esenthial (Gold) | Austin 2025"},"9111":{"market_hash_name":"Sticker | npl | Austin 2025"},"9112":{"market_hash_name":"Sticker | npl (Foil) | Austin 2025"},"9113":{"market_hash_name":"Sticker | npl (Holo) | Austin 2025"},"9114":{"market_hash_name":"Sticker | npl (Gold) | Austin 2025"},"9115":{"market_hash_name":"Sticker | alex666 | Austin 2025"},"9116":{"market_hash_name":"Sticker | alex666 (Foil) | Austin 2025"},"9117":{"market_hash_name":"Sticker | alex666 (Holo) | Austin 2025"},"9118":{"market_hash_name":"Sticker | alex666 (Gold) | Austin 2025"},"9119":{"market_hash_name":"Sticker | Chr1zN | Austin 2025"},"912":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cluj-Napoca 2015"},"9120":{"market_hash_name":"Sticker | Chr1zN (Foil) | Austin 2025"},"9121":{"market_hash_name":"Sticker | Chr1zN (Holo) | Austin 2025"},"9122":{"market_hash_name":"Sticker | Chr1zN (Gold) | Austin 2025"},"9123":{"market_hash_name":"Sticker | F1KU | Austin 2025"},"9124":{"market_hash_name":"Sticker | F1KU (Foil) | Austin 2025"},"9125":{"market_hash_name":"Sticker | F1KU (Holo) | Austin 2025"},"9126":{"market_hash_name":"Sticker | F1KU (Gold) | Austin 2025"},"9127":{"market_hash_name":"Sticker | nicoodoz | Austin 2025"},"9128":{"market_hash_name":"Sticker | nicoodoz (Foil) | Austin 2025"},"9129":{"market_hash_name":"Sticker | nicoodoz (Holo) | Austin 2025"},"913":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Cluj-Napoca 2015"},"9130":{"market_hash_name":"Sticker | nicoodoz (Gold) | Austin 2025"},"9131":{"market_hash_name":"Sticker | spooke | Austin 2025"},"9132":{"market_hash_name":"Sticker | spooke (Foil) | Austin 2025"},"9133":{"market_hash_name":"Sticker | spooke (Holo) | Austin 2025"},"9134":{"market_hash_name":"Sticker | spooke (Gold) | Austin 2025"},"9135":{"market_hash_name":"Sticker | Buzz | Austin 2025"},"9136":{"market_hash_name":"Sticker | Buzz (Foil) | Austin 2025"},"9137":{"market_hash_name":"Sticker | Buzz (Holo) | Austin 2025"},"9138":{"market_hash_name":"Sticker | Buzz (Gold) | Austin 2025"},"9139":{"market_hash_name":"Sticker | 1eeR | Austin 2025"},"914":{"market_hash_name":"Sticker | Team Dignitas | Cluj-Napoca 2015"},"9140":{"market_hash_name":"Sticker | 1eeR (Foil) | Austin 2025"},"9141":{"market_hash_name":"Sticker | 1eeR (Holo) | Austin 2025"},"9142":{"market_hash_name":"Sticker | 1eeR (Gold) | Austin 2025"},"9143":{"market_hash_name":"Sticker | Xant3r | Austin 2025"},"9144":{"market_hash_name":"Sticker | Xant3r (Foil) | Austin 2025"},"9145":{"market_hash_name":"Sticker | Xant3r (Holo) | Austin 2025"},"9146":{"market_hash_name":"Sticker | Xant3r (Gold) | Austin 2025"},"9147":{"market_hash_name":"Sticker | khaN | Austin 2025"},"9148":{"market_hash_name":"Sticker | khaN (Foil) | Austin 2025"},"9149":{"market_hash_name":"Sticker | khaN (Holo) | Austin 2025"},"915":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Cluj-Napoca 2015"},"9150":{"market_hash_name":"Sticker | khaN (Gold) | Austin 2025"},"9151":{"market_hash_name":"Sticker | riskyb0b | Austin 2025"},"9152":{"market_hash_name":"Sticker | riskyb0b (Foil) | Austin 2025"},"9153":{"market_hash_name":"Sticker | riskyb0b (Holo) | Austin 2025"},"9154":{"market_hash_name":"Sticker | riskyb0b (Gold) | Austin 2025"},"9155":{"market_hash_name":"Sticker | zweih | Austin 2025"},"9156":{"market_hash_name":"Sticker | zweih (Foil) | Austin 2025"},"9157":{"market_hash_name":"Sticker | zweih (Holo) | Austin 2025"},"9158":{"market_hash_name":"Sticker | zweih (Gold) | Austin 2025"},"9159":{"market_hash_name":"Sticker | zorte | Austin 2025"},"916":{"market_hash_name":"Sticker | Team Dignitas (Gold) | Cluj-Napoca 2015"},"9160":{"market_hash_name":"Sticker | zorte (Foil) | Austin 2025"},"9161":{"market_hash_name":"Sticker | zorte (Holo) | Austin 2025"},"9162":{"market_hash_name":"Sticker | zorte (Gold) | Austin 2025"},"9163":{"market_hash_name":"Sticker | S1ren | Austin 2025"},"9164":{"market_hash_name":"Sticker | S1ren (Foil) | Austin 2025"},"9165":{"market_hash_name":"Sticker | S1ren (Holo) | Austin 2025"},"9166":{"market_hash_name":"Sticker | S1ren (Gold) | Austin 2025"},"9167":{"market_hash_name":"Sticker | Magnojez | Austin 2025"},"9168":{"market_hash_name":"Sticker | Magnojez (Foil) | Austin 2025"},"9169":{"market_hash_name":"Sticker | Magnojez (Holo) | Austin 2025"},"917":{"market_hash_name":"Sticker | Counter Logic Gaming | Cluj-Napoca 2015"},"9170":{"market_hash_name":"Sticker | Magnojez (Gold) | Austin 2025"},"9171":{"market_hash_name":"Sticker | Ax1Le | Austin 2025"},"9172":{"market_hash_name":"Sticker | Ax1Le (Foil) | Austin 2025"},"9173":{"market_hash_name":"Sticker | Ax1Le (Holo) | Austin 2025"},"9174":{"market_hash_name":"Sticker | Ax1Le (Gold) | Austin 2025"},"9175":{"market_hash_name":"Sticker | Boombl4 | Austin 2025"},"9176":{"market_hash_name":"Sticker | Boombl4 (Foil) | Austin 2025"},"9177":{"market_hash_name":"Sticker | Boombl4 (Holo) | Austin 2025"},"9178":{"market_hash_name":"Sticker | Boombl4 (Gold) | Austin 2025"},"9179":{"market_hash_name":"Sticker | VINI | Austin 2025"},"918":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Cluj-Napoca 2015"},"9180":{"market_hash_name":"Sticker | VINI (Foil) | Austin 2025"},"9181":{"market_hash_name":"Sticker | VINI (Holo) | Austin 2025"},"9182":{"market_hash_name":"Sticker | VINI (Gold) | Austin 2025"},"9183":{"market_hash_name":"Sticker | TRY | Austin 2025"},"9184":{"market_hash_name":"Sticker | TRY (Foil) | Austin 2025"},"9185":{"market_hash_name":"Sticker | TRY (Holo) | Austin 2025"},"9186":{"market_hash_name":"Sticker | TRY (Gold) | Austin 2025"},"9187":{"market_hash_name":"Sticker | chayJESUS | Austin 2025"},"9188":{"market_hash_name":"Sticker | chayJESUS (Foil) | Austin 2025"},"9189":{"market_hash_name":"Sticker | chayJESUS (Holo) | Austin 2025"},"919":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Cluj-Napoca 2015"},"9190":{"market_hash_name":"Sticker | chayJESUS (Gold) | Austin 2025"},"9191":{"market_hash_name":"Sticker | decenty | Austin 2025"},"9192":{"market_hash_name":"Sticker | decenty (Foil) | Austin 2025"},"9193":{"market_hash_name":"Sticker | decenty (Holo) | Austin 2025"},"9194":{"market_hash_name":"Sticker | decenty (Gold) | Austin 2025"},"9195":{"market_hash_name":"Sticker | noway | Austin 2025"},"9196":{"market_hash_name":"Sticker | noway (Foil) | Austin 2025"},"9197":{"market_hash_name":"Sticker | noway (Holo) | Austin 2025"},"9198":{"market_hash_name":"Sticker | noway (Gold) | Austin 2025"},"9199":{"market_hash_name":"Sticker | oSee | Austin 2025"},"92":{"market_hash_name":"Sticker | Clan-Mystik (Foil) | Katowice 2014"},"920":{"market_hash_name":"Sticker | Vexed Gaming | Cluj-Napoca 2015"},"9200":{"market_hash_name":"Sticker | oSee (Foil) | Austin 2025"},"9201":{"market_hash_name":"Sticker | oSee (Holo) | Austin 2025"},"9202":{"market_hash_name":"Sticker | oSee (Gold) | Austin 2025"},"9203":{"market_hash_name":"Sticker | HexT | Austin 2025"},"9204":{"market_hash_name":"Sticker | HexT (Foil) | Austin 2025"},"9205":{"market_hash_name":"Sticker | HexT (Holo) | Austin 2025"},"9206":{"market_hash_name":"Sticker | HexT (Gold) | Austin 2025"},"9207":{"market_hash_name":"Sticker | br0 | Austin 2025"},"9208":{"market_hash_name":"Sticker | br0 (Foil) | Austin 2025"},"9209":{"market_hash_name":"Sticker | br0 (Holo) | Austin 2025"},"921":{"market_hash_name":"Sticker | Vexed Gaming (Foil) | Cluj-Napoca 2015"},"9210":{"market_hash_name":"Sticker | br0 (Gold) | Austin 2025"},"9211":{"market_hash_name":"Sticker | nitr0 | Austin 2025"},"9212":{"market_hash_name":"Sticker | nitr0 (Foil) | Austin 2025"},"9213":{"market_hash_name":"Sticker | nitr0 (Holo) | Austin 2025"},"9214":{"market_hash_name":"Sticker | nitr0 (Gold) | Austin 2025"},"9215":{"market_hash_name":"Sticker | jeorge | Austin 2025"},"9216":{"market_hash_name":"Sticker | jeorge (Foil) | Austin 2025"},"9217":{"market_hash_name":"Sticker | jeorge (Holo) | Austin 2025"},"9218":{"market_hash_name":"Sticker | jeorge (Gold) | Austin 2025"},"9219":{"market_hash_name":"Sticker | INS | Austin 2025"},"922":{"market_hash_name":"Sticker | Vexed Gaming (Gold) | Cluj-Napoca 2015"},"9220":{"market_hash_name":"Sticker | INS (Foil) | Austin 2025"},"9221":{"market_hash_name":"Sticker | INS (Holo) | Austin 2025"},"9222":{"market_hash_name":"Sticker | INS (Gold) | Austin 2025"},"9223":{"market_hash_name":"Sticker | Liazz | Austin 2025"},"9224":{"market_hash_name":"Sticker | Liazz (Foil) | Austin 2025"},"9225":{"market_hash_name":"Sticker | Liazz (Holo) | Austin 2025"},"9226":{"market_hash_name":"Sticker | Liazz (Gold) | Austin 2025"},"9227":{"market_hash_name":"Sticker | vexite | Austin 2025"},"9228":{"market_hash_name":"Sticker | vexite (Foil) | Austin 2025"},"9229":{"market_hash_name":"Sticker | vexite (Holo) | Austin 2025"},"923":{"market_hash_name":"Sticker | Flipsid3 Tactics | Cluj-Napoca 2015"},"9230":{"market_hash_name":"Sticker | vexite (Gold) | Austin 2025"},"9231":{"market_hash_name":"Sticker | regali | Austin 2025"},"9232":{"market_hash_name":"Sticker | regali (Foil) | Austin 2025"},"9233":{"market_hash_name":"Sticker | regali (Holo) | Austin 2025"},"9234":{"market_hash_name":"Sticker | regali (Gold) | Austin 2025"},"9235":{"market_hash_name":"Sticker | nettik | Austin 2025"},"9236":{"market_hash_name":"Sticker | nettik (Foil) | Austin 2025"},"9237":{"market_hash_name":"Sticker | nettik (Holo) | Austin 2025"},"9238":{"market_hash_name":"Sticker | nettik (Gold) | Austin 2025"},"9239":{"market_hash_name":"Sticker | hampus | Austin 2025"},"924":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Cluj-Napoca 2015"},"9240":{"market_hash_name":"Sticker | hampus (Foil) | Austin 2025"},"9241":{"market_hash_name":"Sticker | hampus (Holo) | Austin 2025"},"9242":{"market_hash_name":"Sticker | hampus (Gold) | Austin 2025"},"9243":{"market_hash_name":"Sticker | isak | Austin 2025"},"9244":{"market_hash_name":"Sticker | isak (Foil) | Austin 2025"},"9245":{"market_hash_name":"Sticker | isak (Holo) | Austin 2025"},"9246":{"market_hash_name":"Sticker | isak (Gold) | Austin 2025"},"9247":{"market_hash_name":"Sticker | Plopski | Austin 2025"},"9248":{"market_hash_name":"Sticker | Plopski (Foil) | Austin 2025"},"9249":{"market_hash_name":"Sticker | Plopski (Holo) | Austin 2025"},"925":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Cluj-Napoca 2015"},"9250":{"market_hash_name":"Sticker | Plopski (Gold) | Austin 2025"},"9251":{"market_hash_name":"Sticker | L00m1 | Austin 2025"},"9252":{"market_hash_name":"Sticker | L00m1 (Foil) | Austin 2025"},"9253":{"market_hash_name":"Sticker | L00m1 (Holo) | Austin 2025"},"9254":{"market_hash_name":"Sticker | L00m1 (Gold) | Austin 2025"},"9255":{"market_hash_name":"Sticker | adamb | Austin 2025"},"9256":{"market_hash_name":"Sticker | adamb (Foil) | Austin 2025"},"9257":{"market_hash_name":"Sticker | adamb (Holo) | Austin 2025"},"9258":{"market_hash_name":"Sticker | adamb (Gold) | Austin 2025"},"9259":{"market_hash_name":"Sticker | JamYoung | Austin 2025"},"926":{"market_hash_name":"Sticker | Team Liquid | Cluj-Napoca 2015"},"9260":{"market_hash_name":"Sticker | JamYoung (Foil) | Austin 2025"},"9261":{"market_hash_name":"Sticker | JamYoung (Holo) | Austin 2025"},"9262":{"market_hash_name":"Sticker | JamYoung (Gold) | Austin 2025"},"9263":{"market_hash_name":"Sticker | Moseyuh | Austin 2025"},"9264":{"market_hash_name":"Sticker | Moseyuh (Foil) | Austin 2025"},"9265":{"market_hash_name":"Sticker | Moseyuh (Holo) | Austin 2025"},"9266":{"market_hash_name":"Sticker | Moseyuh (Gold) | Austin 2025"},"9267":{"market_hash_name":"Sticker | Attacker | Austin 2025"},"9268":{"market_hash_name":"Sticker | Attacker (Foil) | Austin 2025"},"9269":{"market_hash_name":"Sticker | Attacker (Holo) | Austin 2025"},"927":{"market_hash_name":"Sticker | Team Liquid (Foil) | Cluj-Napoca 2015"},"9270":{"market_hash_name":"Sticker | Attacker (Gold) | Austin 2025"},"9271":{"market_hash_name":"Sticker | Jee | Austin 2025"},"9272":{"market_hash_name":"Sticker | Jee (Foil) | Austin 2025"},"9273":{"market_hash_name":"Sticker | Jee (Holo) | Austin 2025"},"9274":{"market_hash_name":"Sticker | Jee (Gold) | Austin 2025"},"9275":{"market_hash_name":"Sticker | Mercury | Austin 2025"},"9276":{"market_hash_name":"Sticker | Mercury (Foil) | Austin 2025"},"9277":{"market_hash_name":"Sticker | Mercury (Holo) | Austin 2025"},"9278":{"market_hash_name":"Sticker | Mercury (Gold) | Austin 2025"},"9279":{"market_hash_name":"Sticker | arT | Austin 2025"},"928":{"market_hash_name":"Sticker | Team Liquid (Gold) | Cluj-Napoca 2015"},"9280":{"market_hash_name":"Sticker | arT (Foil) | Austin 2025"},"9281":{"market_hash_name":"Sticker | arT (Holo) | Austin 2025"},"9282":{"market_hash_name":"Sticker | arT (Gold) | Austin 2025"},"9283":{"market_hash_name":"Sticker | piriajr | Austin 2025"},"9284":{"market_hash_name":"Sticker | piriajr (Foil) | Austin 2025"},"9285":{"market_hash_name":"Sticker | piriajr (Holo) | Austin 2025"},"9286":{"market_hash_name":"Sticker | piriajr (Gold) | Austin 2025"},"9287":{"market_hash_name":"Sticker | zevy | Austin 2025"},"9288":{"market_hash_name":"Sticker | zevy (Foil) | Austin 2025"},"9289":{"market_hash_name":"Sticker | zevy (Holo) | Austin 2025"},"929":{"market_hash_name":"Sticker | mousesports | Cluj-Napoca 2015"},"9290":{"market_hash_name":"Sticker | zevy (Gold) | Austin 2025"},"9291":{"market_hash_name":"Sticker | kye | Austin 2025"},"9292":{"market_hash_name":"Sticker | kye (Foil) | Austin 2025"},"9293":{"market_hash_name":"Sticker | kye (Holo) | Austin 2025"},"9294":{"market_hash_name":"Sticker | kye (Gold) | Austin 2025"},"9295":{"market_hash_name":"Sticker | mlhzin | Austin 2025"},"9296":{"market_hash_name":"Sticker | mlhzin (Foil) | Austin 2025"},"9297":{"market_hash_name":"Sticker | mlhzin (Holo) | Austin 2025"},"9298":{"market_hash_name":"Sticker | mlhzin (Gold) | Austin 2025"},"9299":{"market_hash_name":"Sticker | controlez | Austin 2025"},"93":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Katowice 2014"},"930":{"market_hash_name":"Sticker | mousesports (Foil) | Cluj-Napoca 2015"},"9300":{"market_hash_name":"Sticker | controlez (Foil) | Austin 2025"},"9301":{"market_hash_name":"Sticker | controlez (Holo) | Austin 2025"},"9302":{"market_hash_name":"Sticker | controlez (Gold) | Austin 2025"},"9303":{"market_hash_name":"Sticker | efire | Austin 2025"},"9304":{"market_hash_name":"Sticker | efire (Foil) | Austin 2025"},"9305":{"market_hash_name":"Sticker | efire (Holo) | Austin 2025"},"9306":{"market_hash_name":"Sticker | efire (Gold) | Austin 2025"},"9307":{"market_hash_name":"Sticker | ROUX | Austin 2025"},"9308":{"market_hash_name":"Sticker | ROUX (Foil) | Austin 2025"},"9309":{"market_hash_name":"Sticker | ROUX (Holo) | Austin 2025"},"931":{"market_hash_name":"Sticker | mousesports (Gold) | Cluj-Napoca 2015"},"9310":{"market_hash_name":"Sticker | ROUX (Gold) | Austin 2025"},"9311":{"market_hash_name":"Sticker | Ariucle | Austin 2025"},"9312":{"market_hash_name":"Sticker | Ariucle (Foil) | Austin 2025"},"9313":{"market_hash_name":"Sticker | Ariucle (Holo) | Austin 2025"},"9314":{"market_hash_name":"Sticker | Ariucle (Gold) | Austin 2025"},"9315":{"market_hash_name":"Sticker | cool4st | Austin 2025"},"9316":{"market_hash_name":"Sticker | cool4st (Foil) | Austin 2025"},"9317":{"market_hash_name":"Sticker | cool4st (Holo) | Austin 2025"},"9318":{"market_hash_name":"Sticker | cool4st (Gold) | Austin 2025"},"9319":{"market_hash_name":"Sticker | westmelon | Austin 2025"},"932":{"market_hash_name":"Sticker | Natus Vincere | Cluj-Napoca 2015"},"9320":{"market_hash_name":"Sticker | westmelon (Foil) | Austin 2025"},"9321":{"market_hash_name":"Sticker | westmelon (Holo) | Austin 2025"},"9322":{"market_hash_name":"Sticker | westmelon (Gold) | Austin 2025"},"9323":{"market_hash_name":"Sticker | z4KR | Austin 2025"},"9324":{"market_hash_name":"Sticker | z4KR (Foil) | Austin 2025"},"9325":{"market_hash_name":"Sticker | z4KR (Holo) | Austin 2025"},"9326":{"market_hash_name":"Sticker | z4KR (Gold) | Austin 2025"},"9327":{"market_hash_name":"Sticker | Starry | Austin 2025"},"9328":{"market_hash_name":"Sticker | Starry (Foil) | Austin 2025"},"9329":{"market_hash_name":"Sticker | Starry (Holo) | Austin 2025"},"933":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cluj-Napoca 2015"},"9330":{"market_hash_name":"Sticker | Starry (Gold) | Austin 2025"},"9331":{"market_hash_name":"Sticker | EmiliaQAQ | Austin 2025"},"9332":{"market_hash_name":"Sticker | EmiliaQAQ (Foil) | Austin 2025"},"9333":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Austin 2025"},"9334":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Austin 2025"},"9335":{"market_hash_name":"Sticker | C4LLM3SU3 | Austin 2025"},"9336":{"market_hash_name":"Sticker | C4LLM3SU3 (Foil) | Austin 2025"},"9337":{"market_hash_name":"Sticker | C4LLM3SU3 (Holo) | Austin 2025"},"9338":{"market_hash_name":"Sticker | C4LLM3SU3 (Gold) | Austin 2025"},"9339":{"market_hash_name":"Sticker | lux | Austin 2025"},"934":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cluj-Napoca 2015"},"9340":{"market_hash_name":"Sticker | lux (Foil) | Austin 2025"},"9341":{"market_hash_name":"Sticker | lux (Holo) | Austin 2025"},"9342":{"market_hash_name":"Sticker | lux (Gold) | Austin 2025"},"9343":{"market_hash_name":"Sticker | saadzin | Austin 2025"},"9344":{"market_hash_name":"Sticker | saadzin (Foil) | Austin 2025"},"9345":{"market_hash_name":"Sticker | saadzin (Holo) | Austin 2025"},"9346":{"market_hash_name":"Sticker | saadzin (Gold) | Austin 2025"},"9347":{"market_hash_name":"Sticker | latto | Austin 2025"},"9348":{"market_hash_name":"Sticker | latto (Foil) | Austin 2025"},"9349":{"market_hash_name":"Sticker | latto (Holo) | Austin 2025"},"935":{"market_hash_name":"Sticker | Virtus.Pro | Cluj-Napoca 2015"},"9350":{"market_hash_name":"Sticker | latto (Gold) | Austin 2025"},"9351":{"market_hash_name":"Sticker | dumau | Austin 2025"},"9352":{"market_hash_name":"Sticker | dumau (Foil) | Austin 2025"},"9353":{"market_hash_name":"Sticker | dumau (Holo) | Austin 2025"},"9354":{"market_hash_name":"Sticker | dumau (Gold) | Austin 2025"},"9355":{"market_hash_name":"Sticker | n1ssim | Austin 2025"},"9356":{"market_hash_name":"Sticker | n1ssim (Foil) | Austin 2025"},"9357":{"market_hash_name":"Sticker | n1ssim (Holo) | Austin 2025"},"9358":{"market_hash_name":"Sticker | n1ssim (Gold) | Austin 2025"},"9359":{"market_hash_name":"Sticker | Ultramarines"},"936":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cluj-Napoca 2015"},"9360":{"market_hash_name":"Sticker | Dark Angels"},"9361":{"market_hash_name":"Sticker | Blood Angels"},"9362":{"market_hash_name":"Sticker | Space Wolves"},"9363":{"market_hash_name":"Sticker | Imperial Fists"},"9364":{"market_hash_name":"Sticker | Salamanders"},"9365":{"market_hash_name":"Sticker | White Scars"},"9366":{"market_hash_name":"Sticker | Raven Guard"},"9367":{"market_hash_name":"Sticker | Astartes Skull"},"9368":{"market_hash_name":"Sticker | Raptors"},"9369":{"market_hash_name":"Sticker | Iron Hands"},"937":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Cluj-Napoca 2015"},"9370":{"market_hash_name":"Sticker | Iron Halo"},"9371":{"market_hash_name":"Sticker | Flesh Tearers"},"9372":{"market_hash_name":"Sticker | Scythes of the Emperor"},"9373":{"market_hash_name":"Sticker | Blood Ravens"},"9374":{"market_hash_name":"Sticker | Adeptus Astartes"},"9375":{"market_hash_name":"Sticker | Crimson Fists"},"9376":{"market_hash_name":"Sticker | Silver Skulls"},"9377":{"market_hash_name":"Sticker | World Eaters 1"},"9378":{"market_hash_name":"Sticker | World Eaters 2"},"9379":{"market_hash_name":"Sticker | Word Bearers 1"},"938":{"market_hash_name":"Sticker | Cloud9 | Cluj-Napoca 2015"},"9380":{"market_hash_name":"Sticker | Word Bearers 2"},"9381":{"market_hash_name":"Sticker | Thousand Sons 1"},"9382":{"market_hash_name":"Sticker | Thousand Sons 2"},"9383":{"market_hash_name":"Sticker | Night Lords 1"},"9384":{"market_hash_name":"Sticker | Night Lords 2"},"9385":{"market_hash_name":"Sticker | Iron Warriors 1"},"9386":{"market_hash_name":"Sticker | Iron Warriors 2"},"9387":{"market_hash_name":"Sticker | Emperor's Children 1"},"9388":{"market_hash_name":"Sticker | Emperor's Children 2"},"9389":{"market_hash_name":"Sticker | Death Guard 1"},"939":{"market_hash_name":"Sticker | Cloud9 (Foil) | Cluj-Napoca 2015"},"9390":{"market_hash_name":"Sticker | Death Guard 2"},"9391":{"market_hash_name":"Sticker | Black Legion 1"},"9392":{"market_hash_name":"Sticker | Black Legion 2"},"9393":{"market_hash_name":"Sticker | Alpha Legion 1"},"9394":{"market_hash_name":"Sticker | Alpha Legion 2"},"9395":{"market_hash_name":"Sticker | Ecclesiarchy"},"9396":{"market_hash_name":"Sticker | Inquisition"},"9397":{"market_hash_name":"Sticker | Imperial Knights"},"9398":{"market_hash_name":"Sticker | Astra Militarum 1"},"9399":{"market_hash_name":"Sticker | Astra Militarum 2"},"94":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Katowice 2014"},"940":{"market_hash_name":"Sticker | Cloud9 (Gold) | Cluj-Napoca 2015"},"9400":{"market_hash_name":"Sticker | Cadia"},"9401":{"market_hash_name":"Sticker | Adeptus Custodes 1"},"9402":{"market_hash_name":"Sticker | Adeptus Custodes 2"},"9403":{"market_hash_name":"Sticker | Officio Assassinorum"},"9404":{"market_hash_name":"Sticker | Sisters of Battle 1"},"9405":{"market_hash_name":"Sticker | Sisters of Battle 2"},"9406":{"market_hash_name":"Sticker | Adeptus Arbites"},"9407":{"market_hash_name":"Sticker | Catachan"},"9408":{"market_hash_name":"Sticker | Adeptus Titanicus 1"},"9409":{"market_hash_name":"Sticker | Adeptus Titanicus 2"},"941":{"market_hash_name":"Sticker | G2 Esports | Cluj-Napoca 2015"},"9410":{"market_hash_name":"Sticker | Adeptus Mechanicus 1"},"9411":{"market_hash_name":"Sticker | Adeptus Mechanicus 2"},"9412":{"market_hash_name":"Sticker | Rogue Trader"},"9413":{"market_hash_name":"Sticker | Tyranids 1"},"9414":{"market_hash_name":"Sticker | Tyranids 2"},"9415":{"market_hash_name":"Sticker | T'au Empire 1"},"9416":{"market_hash_name":"Sticker | T'au Empire 2"},"9417":{"market_hash_name":"Sticker | Orks 1"},"9418":{"market_hash_name":"Sticker | Orks 2"},"9419":{"market_hash_name":"Sticker | Necron Ankh"},"942":{"market_hash_name":"Sticker | G2 Esports (Foil) | Cluj-Napoca 2015"},"9420":{"market_hash_name":"Sticker | Necron Glyphs"},"9421":{"market_hash_name":"Sticker | Leagues of Votann 1"},"9422":{"market_hash_name":"Sticker | Leagues of Votann 2"},"9423":{"market_hash_name":"Sticker | Harlequins 1"},"9424":{"market_hash_name":"Sticker | Harlequins 2"},"9425":{"market_hash_name":"Sticker | Genestealer Cults 1"},"9426":{"market_hash_name":"Sticker | Genestealer Cults 2"},"9427":{"market_hash_name":"Sticker | Drukhari 1"},"9428":{"market_hash_name":"Sticker | Drukhari 2"},"9429":{"market_hash_name":"Sticker | Aeldari 1"},"943":{"market_hash_name":"Sticker | G2 Esports (Gold) | Cluj-Napoca 2015"},"9430":{"market_hash_name":"Sticker | Aeldari 2"},"9431":{"market_hash_name":"Sticker | apEX (Champion) | Austin 2025"},"9432":{"market_hash_name":"Sticker | apEX (Foil, Champion) | Austin 2025"},"9433":{"market_hash_name":"Sticker | apEX (Holo, Champion) | Austin 2025"},"9434":{"market_hash_name":"Sticker | apEX (Gold, Champion) | Austin 2025"},"9435":{"market_hash_name":"Sticker | ZywOo (Champion) | Austin 2025"},"9436":{"market_hash_name":"Sticker | ZywOo (Foil, Champion) | Austin 2025"},"9437":{"market_hash_name":"Sticker | ZywOo (Holo, Champion) | Austin 2025"},"9438":{"market_hash_name":"Sticker | ZywOo (Gold, Champion) | Austin 2025"},"9439":{"market_hash_name":"Sticker | FlameZ (Champion) | Austin 2025"},"944":{"market_hash_name":"Sticker | Titan | Cluj-Napoca 2015"},"9440":{"market_hash_name":"Sticker | FlameZ (Foil, Champion) | Austin 2025"},"9441":{"market_hash_name":"Sticker | FlameZ (Holo, Champion) | Austin 2025"},"9442":{"market_hash_name":"Sticker | FlameZ (Gold, Champion) | Austin 2025"},"9443":{"market_hash_name":"Sticker | mezii (Champion) | Austin 2025"},"9444":{"market_hash_name":"Sticker | mezii (Foil, Champion) | Austin 2025"},"9445":{"market_hash_name":"Sticker | mezii (Holo, Champion) | Austin 2025"},"9446":{"market_hash_name":"Sticker | mezii (Gold, Champion) | Austin 2025"},"9447":{"market_hash_name":"Sticker | ropz (Champion) | Austin 2025"},"9448":{"market_hash_name":"Sticker | ropz (Foil, Champion) | Austin 2025"},"9449":{"market_hash_name":"Sticker | ropz (Holo, Champion) | Austin 2025"},"945":{"market_hash_name":"Sticker | Titan (Foil) | Cluj-Napoca 2015"},"9450":{"market_hash_name":"Sticker | ropz (Gold, Champion) | Austin 2025"},"9451":{"market_hash_name":"Sticker | Candy Apples"},"9452":{"market_hash_name":"Sticker | Cubix Connexion"},"9453":{"market_hash_name":"Sticker | Eyes of Farlow"},"9454":{"market_hash_name":"Sticker | Fade Mangos"},"9455":{"market_hash_name":"Sticker | Gloves On"},"9456":{"market_hash_name":"Sticker | Lock In"},"9457":{"market_hash_name":"Sticker | Mimicapsule"},"9458":{"market_hash_name":"Sticker | Pop Pup"},"9459":{"market_hash_name":"Sticker | POTS"},"946":{"market_hash_name":"Sticker | Titan (Gold) | Cluj-Napoca 2015"},"9460":{"market_hash_name":"Sticker | Sent With Love"},"9461":{"market_hash_name":"Sticker | Skelly Stabby"},"9462":{"market_hash_name":"Sticker | Vice Cursor"},"9463":{"market_hash_name":"Sticker | CT Tracks (Glitter)"},"9464":{"market_hash_name":"Sticker | Overloaded (Glitter)"},"9465":{"market_hash_name":"Sticker | T Tracks (Glitter)"},"9466":{"market_hash_name":"Sticker | Bomb Planted (Holo)"},"9467":{"market_hash_name":"Sticker | Chrome Dome (Holo)"},"9468":{"market_hash_name":"Sticker | Cutie (Holo)"},"9469":{"market_hash_name":"Sticker | Evidence (Holo)"},"947":{"market_hash_name":"Sticker | Team SoloMid | Cluj-Napoca 2015"},"9470":{"market_hash_name":"Sticker | Froggles (Holo)"},"9471":{"market_hash_name":"Sticker | Ain't A Rental (Foil)"},"9472":{"market_hash_name":"Sticker | Eyes In The Sky (Foil)"},"9473":{"market_hash_name":"Sticker | Good As New (Foil)"},"9474":{"market_hash_name":"Sticker | Hands Off (Foil)"},"9475":{"market_hash_name":"Sticker | King Crasswater (Foil)"},"9476":{"market_hash_name":"Sticker | Queen Ava (Foil)"},"9477":{"market_hash_name":"Sticker | Digi-Strike (Lenticular)"},"9478":{"market_hash_name":"Sticker | Neon MVP (Lenticular)"},"9479":{"market_hash_name":"Sticker | BullHit (Lenticular)"},"948":{"market_hash_name":"Sticker | Team SoloMid (Foil) | Cluj-Napoca 2015"},"9480":{"market_hash_name":"Sticker | Clavis"},"9481":{"market_hash_name":"Sticker | Lorena"},"9482":{"market_hash_name":"Sticker | Lucas"},"9483":{"market_hash_name":"Sticker | Clavis (Holo)"},"9484":{"market_hash_name":"Sticker | Lorena (Holo)"},"9485":{"market_hash_name":"Sticker | Lucas (Holo)"},"9486":{"market_hash_name":"Sticker | Clavis (Foil)"},"9487":{"market_hash_name":"Sticker | Lorena (Foil)"},"9488":{"market_hash_name":"Sticker | Lucas (Foil)"},"9489":{"market_hash_name":"Sticker | FURIA | Budapest 2025"},"949":{"market_hash_name":"Sticker | Team SoloMid (Gold) | Cluj-Napoca 2015"},"9490":{"market_hash_name":"Sticker | FURIA (Embroidered) | Budapest 2025"},"9491":{"market_hash_name":"Sticker | FURIA (Holo) | Budapest 2025"},"9492":{"market_hash_name":"Sticker | FURIA (Gold) | Budapest 2025"},"9493":{"market_hash_name":"Sticker | Vitality | Budapest 2025"},"9494":{"market_hash_name":"Sticker | Vitality (Embroidered) | Budapest 2025"},"9495":{"market_hash_name":"Sticker | Vitality (Holo) | Budapest 2025"},"9496":{"market_hash_name":"Sticker | Vitality (Gold) | Budapest 2025"},"9497":{"market_hash_name":"Sticker | Falcons | Budapest 2025"},"9498":{"market_hash_name":"Sticker | Falcons (Embroidered) | Budapest 2025"},"9499":{"market_hash_name":"Sticker | Falcons (Holo) | Budapest 2025"},"95":{"market_hash_name":"Sticker | Reason Gaming (Foil) | Katowice 2014"},"950":{"market_hash_name":"Sticker | Team EnVyUs | Cluj-Napoca 2015"},"9500":{"market_hash_name":"Sticker | Falcons (Gold) | Budapest 2025"},"9501":{"market_hash_name":"Sticker | The Mongolz | Budapest 2025"},"9502":{"market_hash_name":"Sticker | The Mongolz (Embroidered) | Budapest 2025"},"9503":{"market_hash_name":"Sticker | The Mongolz (Holo) | Budapest 2025"},"9504":{"market_hash_name":"Sticker | The Mongolz (Gold) | Budapest 2025"},"9505":{"market_hash_name":"Sticker | MOUZ | Budapest 2025"},"9506":{"market_hash_name":"Sticker | MOUZ (Embroidered) | Budapest 2025"},"9507":{"market_hash_name":"Sticker | MOUZ (Holo) | Budapest 2025"},"9508":{"market_hash_name":"Sticker | MOUZ (Gold) | Budapest 2025"},"9509":{"market_hash_name":"Sticker | Team Spirit | Budapest 2025"},"951":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Cluj-Napoca 2015"},"9510":{"market_hash_name":"Sticker | Team Spirit (Embroidered) | Budapest 2025"},"9511":{"market_hash_name":"Sticker | Team Spirit (Holo) | Budapest 2025"},"9512":{"market_hash_name":"Sticker | Team Spirit (Gold) | Budapest 2025"},"9513":{"market_hash_name":"Sticker | G2 esports | Budapest 2025"},"9514":{"market_hash_name":"Sticker | G2 esports (Embroidered) | Budapest 2025"},"9515":{"market_hash_name":"Sticker | G2 esports (Holo) | Budapest 2025"},"9516":{"market_hash_name":"Sticker | G2 esports (Gold) | Budapest 2025"},"9517":{"market_hash_name":"Sticker | paiN Gaming | Budapest 2025"},"9518":{"market_hash_name":"Sticker | paiN Gaming (Embroidered) | Budapest 2025"},"9519":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Budapest 2025"},"952":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Cluj-Napoca 2015"},"9520":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Budapest 2025"},"9521":{"market_hash_name":"Sticker | Aurora | Budapest 2025"},"9522":{"market_hash_name":"Sticker | Aurora (Embroidered) | Budapest 2025"},"9523":{"market_hash_name":"Sticker | Aurora (Holo) | Budapest 2025"},"9524":{"market_hash_name":"Sticker | Aurora (Gold) | Budapest 2025"},"9525":{"market_hash_name":"Sticker | Natus Vincere | Budapest 2025"},"9526":{"market_hash_name":"Sticker | Natus Vincere (Embroidered) | Budapest 2025"},"9527":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Budapest 2025"},"9528":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Budapest 2025"},"9529":{"market_hash_name":"Sticker | Team Liquid | Budapest 2025"},"953":{"market_hash_name":"Sticker | Fnatic | Cluj-Napoca 2015"},"9530":{"market_hash_name":"Sticker | Team Liquid (Embroidered) | Budapest 2025"},"9531":{"market_hash_name":"Sticker | Team Liquid (Holo) | Budapest 2025"},"9532":{"market_hash_name":"Sticker | Team Liquid (Gold) | Budapest 2025"},"9533":{"market_hash_name":"Sticker | 3DMAX | Budapest 2025"},"9534":{"market_hash_name":"Sticker | 3DMAX (Embroidered) | Budapest 2025"},"9535":{"market_hash_name":"Sticker | 3DMAX (Holo) | Budapest 2025"},"9536":{"market_hash_name":"Sticker | 3DMAX (Gold) | Budapest 2025"},"9537":{"market_hash_name":"Sticker | Astralis | Budapest 2025"},"9538":{"market_hash_name":"Sticker | Astralis (Embroidered) | Budapest 2025"},"9539":{"market_hash_name":"Sticker | Astralis (Holo) | Budapest 2025"},"954":{"market_hash_name":"Sticker | Fnatic (Foil) | Cluj-Napoca 2015"},"9540":{"market_hash_name":"Sticker | Astralis (Gold) | Budapest 2025"},"9541":{"market_hash_name":"Sticker | TYLOO | Budapest 2025"},"9542":{"market_hash_name":"Sticker | TYLOO (Embroidered) | Budapest 2025"},"9543":{"market_hash_name":"Sticker | TYLOO (Holo) | Budapest 2025"},"9544":{"market_hash_name":"Sticker | TYLOO (Gold) | Budapest 2025"},"9545":{"market_hash_name":"Sticker | MIBR | Budapest 2025"},"9546":{"market_hash_name":"Sticker | MIBR (Embroidered) | Budapest 2025"},"9547":{"market_hash_name":"Sticker | MIBR (Holo) | Budapest 2025"},"9548":{"market_hash_name":"Sticker | MIBR (Gold) | Budapest 2025"},"9549":{"market_hash_name":"Sticker | Passion UA | Budapest 2025"},"955":{"market_hash_name":"Sticker | Fnatic (Gold) | Cluj-Napoca 2015"},"9550":{"market_hash_name":"Sticker | Passion UA (Embroidered) | Budapest 2025"},"9551":{"market_hash_name":"Sticker | Passion UA (Holo) | Budapest 2025"},"9552":{"market_hash_name":"Sticker | Passion UA (Gold) | Budapest 2025"},"9553":{"market_hash_name":"Sticker | Legacy | Budapest 2025"},"9554":{"market_hash_name":"Sticker | Legacy (Embroidered) | Budapest 2025"},"9555":{"market_hash_name":"Sticker | Legacy (Holo) | Budapest 2025"},"9556":{"market_hash_name":"Sticker | Legacy (Gold) | Budapest 2025"},"9557":{"market_hash_name":"Sticker | FaZe Clan | Budapest 2025"},"9558":{"market_hash_name":"Sticker | FaZe Clan (Embroidered) | Budapest 2025"},"9559":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Budapest 2025"},"956":{"market_hash_name":"Sticker | Luminosity Gaming | Cluj-Napoca 2015"},"9560":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Budapest 2025"},"9561":{"market_hash_name":"Sticker | B8 | Budapest 2025"},"9562":{"market_hash_name":"Sticker | B8 (Embroidered) | Budapest 2025"},"9563":{"market_hash_name":"Sticker | B8 (Holo) | Budapest 2025"},"9564":{"market_hash_name":"Sticker | B8 (Gold) | Budapest 2025"},"9565":{"market_hash_name":"Sticker | GamerLegion | Budapest 2025"},"9566":{"market_hash_name":"Sticker | GamerLegion (Embroidered) | Budapest 2025"},"9567":{"market_hash_name":"Sticker | GamerLegion (Holo) | Budapest 2025"},"9568":{"market_hash_name":"Sticker | GamerLegion (Gold) | Budapest 2025"},"9569":{"market_hash_name":"Sticker | fnatic | Budapest 2025"},"957":{"market_hash_name":"Sticker | Luminosity Gaming (Foil) | Cluj-Napoca 2015"},"9570":{"market_hash_name":"Sticker | fnatic (Embroidered) | Budapest 2025"},"9571":{"market_hash_name":"Sticker | fnatic (Holo) | Budapest 2025"},"9572":{"market_hash_name":"Sticker | fnatic (Gold) | Budapest 2025"},"9573":{"market_hash_name":"Sticker | PARIVISION | Budapest 2025"},"9574":{"market_hash_name":"Sticker | PARIVISION (Embroidered) | Budapest 2025"},"9575":{"market_hash_name":"Sticker | PARIVISION (Holo) | Budapest 2025"},"9576":{"market_hash_name":"Sticker | PARIVISION (Gold) | Budapest 2025"},"9577":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Budapest 2025"},"9578":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Embroidered) | Budapest 2025"},"9579":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Budapest 2025"},"958":{"market_hash_name":"Sticker | Luminosity Gaming (Gold) | Cluj-Napoca 2015"},"9580":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Budapest 2025"},"9581":{"market_hash_name":"Sticker | Imperial Esports | Budapest 2025"},"9582":{"market_hash_name":"Sticker | Imperial Esports (Embroidered) | Budapest 2025"},"9583":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Budapest 2025"},"9584":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Budapest 2025"},"9585":{"market_hash_name":"Sticker | FlyQuest | Budapest 2025"},"9586":{"market_hash_name":"Sticker | FlyQuest (Embroidered) | Budapest 2025"},"9587":{"market_hash_name":"Sticker | FlyQuest (Holo) | Budapest 2025"},"9588":{"market_hash_name":"Sticker | FlyQuest (Gold) | Budapest 2025"},"9589":{"market_hash_name":"Sticker | Lynn Vision | Budapest 2025"},"959":{"market_hash_name":"Sticker | DreamHack | Cluj-Napoca 2015"},"9590":{"market_hash_name":"Sticker | Lynn Vision (Embroidered) | Budapest 2025"},"9591":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Budapest 2025"},"9592":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Budapest 2025"},"9593":{"market_hash_name":"Sticker | M80 | Budapest 2025"},"9594":{"market_hash_name":"Sticker | M80 (Embroidered) | Budapest 2025"},"9595":{"market_hash_name":"Sticker | M80 (Holo) | Budapest 2025"},"9596":{"market_hash_name":"Sticker | M80 (Gold) | Budapest 2025"},"9597":{"market_hash_name":"Sticker | Fluxo | Budapest 2025"},"9598":{"market_hash_name":"Sticker | Fluxo (Embroidered) | Budapest 2025"},"9599":{"market_hash_name":"Sticker | Fluxo (Holo) | Budapest 2025"},"96":{"market_hash_name":"Sticker | Titan (Foil) | Katowice 2014"},"960":{"market_hash_name":"Sticker | DreamHack (Foil) | Cluj-Napoca 2015"},"9600":{"market_hash_name":"Sticker | Fluxo (Gold) | Budapest 2025"},"9601":{"market_hash_name":"Sticker | RED Canids | Budapest 2025"},"9602":{"market_hash_name":"Sticker | RED Canids (Embroidered) | Budapest 2025"},"9603":{"market_hash_name":"Sticker | RED Canids (Holo) | Budapest 2025"},"9604":{"market_hash_name":"Sticker | RED Canids (Gold) | Budapest 2025"},"9605":{"market_hash_name":"Sticker | The Huns | Budapest 2025"},"9606":{"market_hash_name":"Sticker | The Huns (Embroidered) | Budapest 2025"},"9607":{"market_hash_name":"Sticker | The Huns (Holo) | Budapest 2025"},"9608":{"market_hash_name":"Sticker | The Huns (Gold) | Budapest 2025"},"9609":{"market_hash_name":"Sticker | NRG | Budapest 2025"},"961":{"market_hash_name":"Sticker | DreamHack (Gold) | Cluj-Napoca 2015"},"9610":{"market_hash_name":"Sticker | NRG (Embroidered) | Budapest 2025"},"9611":{"market_hash_name":"Sticker | NRG (Holo) | Budapest 2025"},"9612":{"market_hash_name":"Sticker | NRG (Gold) | Budapest 2025"},"9613":{"market_hash_name":"Sticker | Rare Atom | Budapest 2025"},"9614":{"market_hash_name":"Sticker | Rare Atom (Embroidered) | Budapest 2025"},"9615":{"market_hash_name":"Sticker | Rare Atom (Holo) | Budapest 2025"},"9616":{"market_hash_name":"Sticker | Rare Atom (Gold) | Budapest 2025"},"9617":{"market_hash_name":"Sticker | StarLadder | Budapest 2025"},"9618":{"market_hash_name":"Sticker | StarLadder (Embroidered) | Budapest 2025"},"9619":{"market_hash_name":"Sticker | StarLadder (Holo) | Budapest 2025"},"962":{"market_hash_name":"Sticker | Ivette"},"9620":{"market_hash_name":"Sticker | StarLadder (Gold) | Budapest 2025"},"963":{"market_hash_name":"Sticker | Kimberly"},"964":{"market_hash_name":"Sticker | Martha"},"965":{"market_hash_name":"Sticker | Merietta"},"9654":{"market_hash_name":"Sticker | FalleN | Budapest 2025"},"9655":{"market_hash_name":"Sticker | FalleN (Embroidered) | Budapest 2025"},"9656":{"market_hash_name":"Sticker | FalleN (Holo) | Budapest 2025"},"9657":{"market_hash_name":"Sticker | FalleN (Gold) | Budapest 2025"},"9658":{"market_hash_name":"Sticker | KSCERATO | Budapest 2025"},"9659":{"market_hash_name":"Sticker | KSCERATO (Embroidered) | Budapest 2025"},"966":{"market_hash_name":"Sticker | Sherry"},"9660":{"market_hash_name":"Sticker | KSCERATO (Holo) | Budapest 2025"},"9661":{"market_hash_name":"Sticker | KSCERATO (Gold) | Budapest 2025"},"9662":{"market_hash_name":"Sticker | molodoy | Budapest 2025"},"9663":{"market_hash_name":"Sticker | molodoy (Embroidered) | Budapest 2025"},"9664":{"market_hash_name":"Sticker | molodoy (Holo) | Budapest 2025"},"9665":{"market_hash_name":"Sticker | molodoy (Gold) | Budapest 2025"},"9666":{"market_hash_name":"Sticker | YEKINDAR | Budapest 2025"},"9667":{"market_hash_name":"Sticker | YEKINDAR (Embroidered) | Budapest 2025"},"9668":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Budapest 2025"},"9669":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Budapest 2025"},"967":{"market_hash_name":"Sticker | Tamara"},"9670":{"market_hash_name":"Sticker | yuurih | Budapest 2025"},"9671":{"market_hash_name":"Sticker | yuurih (Embroidered) | Budapest 2025"},"9672":{"market_hash_name":"Sticker | yuurih (Holo) | Budapest 2025"},"9673":{"market_hash_name":"Sticker | yuurih (Gold) | Budapest 2025"},"9674":{"market_hash_name":"Sticker | apEX | Budapest 2025"},"9675":{"market_hash_name":"Sticker | apEX (Embroidered) | Budapest 2025"},"9676":{"market_hash_name":"Sticker | apEX (Holo) | Budapest 2025"},"9677":{"market_hash_name":"Sticker | apEX (Gold) | Budapest 2025"},"9678":{"market_hash_name":"Sticker | FlameZ | Budapest 2025"},"9679":{"market_hash_name":"Sticker | FlameZ (Embroidered) | Budapest 2025"},"968":{"market_hash_name":"Sticker | Ivette (Holo)"},"9680":{"market_hash_name":"Sticker | FlameZ (Holo) | Budapest 2025"},"9681":{"market_hash_name":"Sticker | FlameZ (Gold) | Budapest 2025"},"9682":{"market_hash_name":"Sticker | mezii | Budapest 2025"},"9683":{"market_hash_name":"Sticker | mezii (Embroidered) | Budapest 2025"},"9684":{"market_hash_name":"Sticker | mezii (Holo) | Budapest 2025"},"9685":{"market_hash_name":"Sticker | mezii (Gold) | Budapest 2025"},"9686":{"market_hash_name":"Sticker | ropz | Budapest 2025"},"9687":{"market_hash_name":"Sticker | ropz (Embroidered) | Budapest 2025"},"9688":{"market_hash_name":"Sticker | ropz (Holo) | Budapest 2025"},"9689":{"market_hash_name":"Sticker | ropz (Gold) | Budapest 2025"},"969":{"market_hash_name":"Sticker | Kimberly (Holo)"},"9690":{"market_hash_name":"Sticker | ZywOo | Budapest 2025"},"9691":{"market_hash_name":"Sticker | ZywOo (Embroidered) | Budapest 2025"},"9692":{"market_hash_name":"Sticker | ZywOo (Holo) | Budapest 2025"},"9693":{"market_hash_name":"Sticker | ZywOo (Gold) | Budapest 2025"},"9694":{"market_hash_name":"Sticker | kyousuke | Budapest 2025"},"9695":{"market_hash_name":"Sticker | kyousuke (Embroidered) | Budapest 2025"},"9696":{"market_hash_name":"Sticker | kyousuke (Holo) | Budapest 2025"},"9697":{"market_hash_name":"Sticker | kyousuke (Gold) | Budapest 2025"},"9698":{"market_hash_name":"Sticker | kyxsan | Budapest 2025"},"9699":{"market_hash_name":"Sticker | kyxsan (Embroidered) | Budapest 2025"},"97":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Katowice 2014"},"970":{"market_hash_name":"Sticker | Martha (Holo)"},"9700":{"market_hash_name":"Sticker | kyxsan (Holo) | Budapest 2025"},"9701":{"market_hash_name":"Sticker | kyxsan (Gold) | Budapest 2025"},"9702":{"market_hash_name":"Sticker | m0NESY | Budapest 2025"},"9703":{"market_hash_name":"Sticker | m0NESY (Embroidered) | Budapest 2025"},"9704":{"market_hash_name":"Sticker | m0NESY (Holo) | Budapest 2025"},"9705":{"market_hash_name":"Sticker | m0NESY (Gold) | Budapest 2025"},"9706":{"market_hash_name":"Sticker | NiKo | Budapest 2025"},"9707":{"market_hash_name":"Sticker | NiKo (Embroidered) | Budapest 2025"},"9708":{"market_hash_name":"Sticker | NiKo (Holo) | Budapest 2025"},"9709":{"market_hash_name":"Sticker | NiKo (Gold) | Budapest 2025"},"971":{"market_hash_name":"Sticker | Merietta (Holo)"},"9710":{"market_hash_name":"Sticker | TeSeS | Budapest 2025"},"9711":{"market_hash_name":"Sticker | TeSeS (Embroidered) | Budapest 2025"},"9712":{"market_hash_name":"Sticker | TeSeS (Holo) | Budapest 2025"},"9713":{"market_hash_name":"Sticker | TeSeS (Gold) | Budapest 2025"},"9714":{"market_hash_name":"Sticker | 910 | Budapest 2025"},"9715":{"market_hash_name":"Sticker | 910 (Embroidered) | Budapest 2025"},"9716":{"market_hash_name":"Sticker | 910 (Holo) | Budapest 2025"},"9717":{"market_hash_name":"Sticker | 910 (Gold) | Budapest 2025"},"9718":{"market_hash_name":"Sticker | bLitz | Budapest 2025"},"9719":{"market_hash_name":"Sticker | bLitz (Embroidered) | Budapest 2025"},"972":{"market_hash_name":"Sticker | Sherry (Holo)"},"9720":{"market_hash_name":"Sticker | bLitz (Holo) | Budapest 2025"},"9721":{"market_hash_name":"Sticker | bLitz (Gold) | Budapest 2025"},"9722":{"market_hash_name":"Sticker | mzinho | Budapest 2025"},"9723":{"market_hash_name":"Sticker | mzinho (Embroidered) | Budapest 2025"},"9724":{"market_hash_name":"Sticker | mzinho (Holo) | Budapest 2025"},"9725":{"market_hash_name":"Sticker | mzinho (Gold) | Budapest 2025"},"9726":{"market_hash_name":"Sticker | Senzu | Budapest 2025"},"9727":{"market_hash_name":"Sticker | Senzu (Embroidered) | Budapest 2025"},"9728":{"market_hash_name":"Sticker | Senzu (Holo) | Budapest 2025"},"9729":{"market_hash_name":"Sticker | Senzu (Gold) | Budapest 2025"},"973":{"market_hash_name":"Sticker | Tamara (Holo)"},"9730":{"market_hash_name":"Sticker | Techno4K | Budapest 2025"},"9731":{"market_hash_name":"Sticker | Techno4K (Embroidered) | Budapest 2025"},"9732":{"market_hash_name":"Sticker | Techno4K (Holo) | Budapest 2025"},"9733":{"market_hash_name":"Sticker | Techno4K (Gold) | Budapest 2025"},"9734":{"market_hash_name":"Sticker | Brollan | Budapest 2025"},"9735":{"market_hash_name":"Sticker | Brollan (Embroidered) | Budapest 2025"},"9736":{"market_hash_name":"Sticker | Brollan (Holo) | Budapest 2025"},"9737":{"market_hash_name":"Sticker | Brollan (Gold) | Budapest 2025"},"9738":{"market_hash_name":"Sticker | Jimpphat | Budapest 2025"},"9739":{"market_hash_name":"Sticker | Jimpphat (Embroidered) | Budapest 2025"},"974":{"market_hash_name":"Sticker | Boom"},"9740":{"market_hash_name":"Sticker | Jimpphat (Holo) | Budapest 2025"},"9741":{"market_hash_name":"Sticker | Jimpphat (Gold) | Budapest 2025"},"9742":{"market_hash_name":"Sticker | Spinx | Budapest 2025"},"9743":{"market_hash_name":"Sticker | Spinx (Embroidered) | Budapest 2025"},"9744":{"market_hash_name":"Sticker | Spinx (Holo) | Budapest 2025"},"9745":{"market_hash_name":"Sticker | Spinx (Gold) | Budapest 2025"},"9746":{"market_hash_name":"Sticker | torzsi | Budapest 2025"},"9747":{"market_hash_name":"Sticker | torzsi (Embroidered) | Budapest 2025"},"9748":{"market_hash_name":"Sticker | torzsi (Holo) | Budapest 2025"},"9749":{"market_hash_name":"Sticker | torzsi (Gold) | Budapest 2025"},"975":{"market_hash_name":"Sticker | Boom (Holo)"},"9750":{"market_hash_name":"Sticker | xertioN | Budapest 2025"},"9751":{"market_hash_name":"Sticker | xertioN (Embroidered) | Budapest 2025"},"9752":{"market_hash_name":"Sticker | xertioN (Holo) | Budapest 2025"},"9753":{"market_hash_name":"Sticker | xertioN (Gold) | Budapest 2025"},"9754":{"market_hash_name":"Sticker | chopper | Budapest 2025"},"9755":{"market_hash_name":"Sticker | chopper (Embroidered) | Budapest 2025"},"9756":{"market_hash_name":"Sticker | chopper (Holo) | Budapest 2025"},"9757":{"market_hash_name":"Sticker | chopper (Gold) | Budapest 2025"},"9758":{"market_hash_name":"Sticker | donk | Budapest 2025"},"9759":{"market_hash_name":"Sticker | donk (Embroidered) | Budapest 2025"},"976":{"market_hash_name":"Sticker | Boom (Foil)"},"9760":{"market_hash_name":"Sticker | donk (Holo) | Budapest 2025"},"9761":{"market_hash_name":"Sticker | donk (Gold) | Budapest 2025"},"9762":{"market_hash_name":"Sticker | sh1ro | Budapest 2025"},"9763":{"market_hash_name":"Sticker | sh1ro (Embroidered) | Budapest 2025"},"9764":{"market_hash_name":"Sticker | sh1ro (Holo) | Budapest 2025"},"9765":{"market_hash_name":"Sticker | sh1ro (Gold) | Budapest 2025"},"9766":{"market_hash_name":"Sticker | zont1x | Budapest 2025"},"9767":{"market_hash_name":"Sticker | zont1x (Embroidered) | Budapest 2025"},"9768":{"market_hash_name":"Sticker | zont1x (Holo) | Budapest 2025"},"9769":{"market_hash_name":"Sticker | zont1x (Gold) | Budapest 2025"},"977":{"market_hash_name":"Sticker | Countdown"},"9770":{"market_hash_name":"Sticker | zweih | Budapest 2025"},"9771":{"market_hash_name":"Sticker | zweih (Embroidered) | Budapest 2025"},"9772":{"market_hash_name":"Sticker | zweih (Holo) | Budapest 2025"},"9773":{"market_hash_name":"Sticker | zweih (Gold) | Budapest 2025"},"9774":{"market_hash_name":"Sticker | Heavygod | Budapest 2025"},"9775":{"market_hash_name":"Sticker | Heavygod (Embroidered) | Budapest 2025"},"9776":{"market_hash_name":"Sticker | Heavygod (Holo) | Budapest 2025"},"9777":{"market_hash_name":"Sticker | Heavygod (Gold) | Budapest 2025"},"9778":{"market_hash_name":"Sticker | huNter- | Budapest 2025"},"9779":{"market_hash_name":"Sticker | huNter- (Embroidered) | Budapest 2025"},"978":{"market_hash_name":"Sticker | Countdown (Holo)"},"9780":{"market_hash_name":"Sticker | huNter- (Holo) | Budapest 2025"},"9781":{"market_hash_name":"Sticker | huNter- (Gold) | Budapest 2025"},"9782":{"market_hash_name":"Sticker | malbsMd | Budapest 2025"},"9783":{"market_hash_name":"Sticker | malbsMd (Embroidered) | Budapest 2025"},"9784":{"market_hash_name":"Sticker | malbsMd (Holo) | Budapest 2025"},"9785":{"market_hash_name":"Sticker | malbsMd (Gold) | Budapest 2025"},"9786":{"market_hash_name":"Sticker | MATYS | Budapest 2025"},"9787":{"market_hash_name":"Sticker | MATYS (Embroidered) | Budapest 2025"},"9788":{"market_hash_name":"Sticker | MATYS (Holo) | Budapest 2025"},"9789":{"market_hash_name":"Sticker | MATYS (Gold) | Budapest 2025"},"979":{"market_hash_name":"Sticker | Countdown (Foil)"},"9790":{"market_hash_name":"Sticker | SunPayus | Budapest 2025"},"9791":{"market_hash_name":"Sticker | SunPayus (Embroidered) | Budapest 2025"},"9792":{"market_hash_name":"Sticker | SunPayus (Holo) | Budapest 2025"},"9793":{"market_hash_name":"Sticker | SunPayus (Gold) | Budapest 2025"},"9794":{"market_hash_name":"Sticker | biguzera | Budapest 2025"},"9795":{"market_hash_name":"Sticker | biguzera (Embroidered) | Budapest 2025"},"9796":{"market_hash_name":"Sticker | biguzera (Holo) | Budapest 2025"},"9797":{"market_hash_name":"Sticker | biguzera (Gold) | Budapest 2025"},"9798":{"market_hash_name":"Sticker | dav1deuS | Budapest 2025"},"9799":{"market_hash_name":"Sticker | dav1deuS (Embroidered) | Budapest 2025"},"98":{"market_hash_name":"Sticker | Vox Eminor (Foil) | Katowice 2014"},"980":{"market_hash_name":"Sticker | Don't Worry"},"9800":{"market_hash_name":"Sticker | dav1deuS (Holo) | Budapest 2025"},"9801":{"market_hash_name":"Sticker | dav1deuS (Gold) | Budapest 2025"},"9802":{"market_hash_name":"Sticker | dgt | Budapest 2025"},"9803":{"market_hash_name":"Sticker | dgt (Embroidered) | Budapest 2025"},"9804":{"market_hash_name":"Sticker | dgt (Holo) | Budapest 2025"},"9805":{"market_hash_name":"Sticker | dgt (Gold) | Budapest 2025"},"9806":{"market_hash_name":"Sticker | NQZ | Budapest 2025"},"9807":{"market_hash_name":"Sticker | NQZ (Embroidered) | Budapest 2025"},"9808":{"market_hash_name":"Sticker | NQZ (Holo) | Budapest 2025"},"9809":{"market_hash_name":"Sticker | NQZ (Gold) | Budapest 2025"},"981":{"market_hash_name":"Sticker | Don't Worry (Holo)"},"9810":{"market_hash_name":"Sticker | snow | Budapest 2025"},"9811":{"market_hash_name":"Sticker | snow (Embroidered) | Budapest 2025"},"9812":{"market_hash_name":"Sticker | snow (Holo) | Budapest 2025"},"9813":{"market_hash_name":"Sticker | snow (Gold) | Budapest 2025"},"9814":{"market_hash_name":"Sticker | jottAAA | Budapest 2025"},"9815":{"market_hash_name":"Sticker | jottAAA (Embroidered) | Budapest 2025"},"9816":{"market_hash_name":"Sticker | jottAAA (Holo) | Budapest 2025"},"9817":{"market_hash_name":"Sticker | jottAAA (Gold) | Budapest 2025"},"9818":{"market_hash_name":"Sticker | MAJ3R | Budapest 2025"},"9819":{"market_hash_name":"Sticker | MAJ3R (Embroidered) | Budapest 2025"},"982":{"market_hash_name":"Sticker | Don't Worry (Foil)"},"9820":{"market_hash_name":"Sticker | MAJ3R (Holo) | Budapest 2025"},"9821":{"market_hash_name":"Sticker | MAJ3R (Gold) | Budapest 2025"},"9822":{"market_hash_name":"Sticker | Wicadia | Budapest 2025"},"9823":{"market_hash_name":"Sticker | Wicadia (Embroidered) | Budapest 2025"},"9824":{"market_hash_name":"Sticker | Wicadia (Holo) | Budapest 2025"},"9825":{"market_hash_name":"Sticker | Wicadia (Gold) | Budapest 2025"},"9826":{"market_hash_name":"Sticker | woxic | Budapest 2025"},"9827":{"market_hash_name":"Sticker | woxic (Embroidered) | Budapest 2025"},"9828":{"market_hash_name":"Sticker | woxic (Holo) | Budapest 2025"},"9829":{"market_hash_name":"Sticker | woxic (Gold) | Budapest 2025"},"983":{"market_hash_name":"Sticker | Hard Cluck Life"},"9830":{"market_hash_name":"Sticker | XANTARES | Budapest 2025"},"9831":{"market_hash_name":"Sticker | XANTARES (Embroidered) | Budapest 2025"},"9832":{"market_hash_name":"Sticker | XANTARES (Holo) | Budapest 2025"},"9833":{"market_hash_name":"Sticker | XANTARES (Gold) | Budapest 2025"},"9834":{"market_hash_name":"Sticker | Aleksib | Budapest 2025"},"9835":{"market_hash_name":"Sticker | Aleksib (Embroidered) | Budapest 2025"},"9836":{"market_hash_name":"Sticker | Aleksib (Holo) | Budapest 2025"},"9837":{"market_hash_name":"Sticker | Aleksib (Gold) | Budapest 2025"},"9838":{"market_hash_name":"Sticker | b1t | Budapest 2025"},"9839":{"market_hash_name":"Sticker | b1t (Embroidered) | Budapest 2025"},"984":{"market_hash_name":"Sticker | Hard Cluck Life (Holo)"},"9840":{"market_hash_name":"Sticker | b1t (Holo) | Budapest 2025"},"9841":{"market_hash_name":"Sticker | b1t (Gold) | Budapest 2025"},"9842":{"market_hash_name":"Sticker | iM | Budapest 2025"},"9843":{"market_hash_name":"Sticker | iM (Embroidered) | Budapest 2025"},"9844":{"market_hash_name":"Sticker | iM (Holo) | Budapest 2025"},"9845":{"market_hash_name":"Sticker | iM (Gold) | Budapest 2025"},"9846":{"market_hash_name":"Sticker | makazze | Budapest 2025"},"9847":{"market_hash_name":"Sticker | makazze (Embroidered) | Budapest 2025"},"9848":{"market_hash_name":"Sticker | makazze (Holo) | Budapest 2025"},"9849":{"market_hash_name":"Sticker | makazze (Gold) | Budapest 2025"},"985":{"market_hash_name":"Sticker | Hard Cluck Life (Foil)"},"9850":{"market_hash_name":"Sticker | w0nderful | Budapest 2025"},"9851":{"market_hash_name":"Sticker | w0nderful (Embroidered) | Budapest 2025"},"9852":{"market_hash_name":"Sticker | w0nderful (Holo) | Budapest 2025"},"9853":{"market_hash_name":"Sticker | w0nderful (Gold) | Budapest 2025"},"9854":{"market_hash_name":"Sticker | EliGE | Budapest 2025"},"9855":{"market_hash_name":"Sticker | EliGE (Embroidered) | Budapest 2025"},"9856":{"market_hash_name":"Sticker | EliGE (Holo) | Budapest 2025"},"9857":{"market_hash_name":"Sticker | EliGE (Gold) | Budapest 2025"},"9858":{"market_hash_name":"Sticker | NAF | Budapest 2025"},"9859":{"market_hash_name":"Sticker | NAF (Embroidered) | Budapest 2025"},"986":{"market_hash_name":"Sticker | Move It"},"9860":{"market_hash_name":"Sticker | NAF (Holo) | Budapest 2025"},"9861":{"market_hash_name":"Sticker | NAF (Gold) | Budapest 2025"},"9862":{"market_hash_name":"Sticker | NertZ | Budapest 2025"},"9863":{"market_hash_name":"Sticker | NertZ (Embroidered) | Budapest 2025"},"9864":{"market_hash_name":"Sticker | NertZ (Holo) | Budapest 2025"},"9865":{"market_hash_name":"Sticker | NertZ (Gold) | Budapest 2025"},"9866":{"market_hash_name":"Sticker | siuhy | Budapest 2025"},"9867":{"market_hash_name":"Sticker | siuhy (Embroidered) | Budapest 2025"},"9868":{"market_hash_name":"Sticker | siuhy (Holo) | Budapest 2025"},"9869":{"market_hash_name":"Sticker | siuhy (Gold) | Budapest 2025"},"987":{"market_hash_name":"Sticker | Move It (Holo)"},"9870":{"market_hash_name":"Sticker | ultimate | Budapest 2025"},"9871":{"market_hash_name":"Sticker | ultimate (Embroidered) | Budapest 2025"},"9872":{"market_hash_name":"Sticker | ultimate (Holo) | Budapest 2025"},"9873":{"market_hash_name":"Sticker | ultimate (Gold) | Budapest 2025"},"9874":{"market_hash_name":"Sticker | bodyy | Budapest 2025"},"9875":{"market_hash_name":"Sticker | bodyy (Embroidered) | Budapest 2025"},"9876":{"market_hash_name":"Sticker | bodyy (Holo) | Budapest 2025"},"9877":{"market_hash_name":"Sticker | bodyy (Gold) | Budapest 2025"},"9878":{"market_hash_name":"Sticker | Ex3rcice | Budapest 2025"},"9879":{"market_hash_name":"Sticker | Ex3rcice (Embroidered) | Budapest 2025"},"988":{"market_hash_name":"Sticker | Move It (Foil)"},"9880":{"market_hash_name":"Sticker | Ex3rcice (Holo) | Budapest 2025"},"9881":{"market_hash_name":"Sticker | Ex3rcice (Gold) | Budapest 2025"},"9882":{"market_hash_name":"Sticker | Graviti | Budapest 2025"},"9883":{"market_hash_name":"Sticker | Graviti (Embroidered) | Budapest 2025"},"9884":{"market_hash_name":"Sticker | Graviti (Holo) | Budapest 2025"},"9885":{"market_hash_name":"Sticker | Graviti (Gold) | Budapest 2025"},"9886":{"market_hash_name":"Sticker | Lucky | Budapest 2025"},"9887":{"market_hash_name":"Sticker | Lucky (Embroidered) | Budapest 2025"},"9888":{"market_hash_name":"Sticker | Lucky (Holo) | Budapest 2025"},"9889":{"market_hash_name":"Sticker | Lucky (Gold) | Budapest 2025"},"989":{"market_hash_name":"Sticker | The Awper"},"9890":{"market_hash_name":"Sticker | Maka | Budapest 2025"},"9891":{"market_hash_name":"Sticker | Maka (Embroidered) | Budapest 2025"},"9892":{"market_hash_name":"Sticker | Maka (Holo) | Budapest 2025"},"9893":{"market_hash_name":"Sticker | Maka (Gold) | Budapest 2025"},"9894":{"market_hash_name":"Sticker | device | Budapest 2025"},"9895":{"market_hash_name":"Sticker | device (Embroidered) | Budapest 2025"},"9896":{"market_hash_name":"Sticker | device (Holo) | Budapest 2025"},"9897":{"market_hash_name":"Sticker | device (Gold) | Budapest 2025"},"9898":{"market_hash_name":"Sticker | HooXi | Budapest 2025"},"9899":{"market_hash_name":"Sticker | HooXi (Embroidered) | Budapest 2025"},"99":{"market_hash_name":"Sticker | Gold ESL Wolf (Foil) | Katowice 2014"},"990":{"market_hash_name":"Sticker | The Baiter"},"9900":{"market_hash_name":"Sticker | HooXi (Holo) | Budapest 2025"},"9901":{"market_hash_name":"Sticker | HooXi (Gold) | Budapest 2025"},"9902":{"market_hash_name":"Sticker | jabbi | Budapest 2025"},"9903":{"market_hash_name":"Sticker | jabbi (Embroidered) | Budapest 2025"},"9904":{"market_hash_name":"Sticker | jabbi (Holo) | Budapest 2025"},"9905":{"market_hash_name":"Sticker | jabbi (Gold) | Budapest 2025"},"9906":{"market_hash_name":"Sticker | Magisk | Budapest 2025"},"9907":{"market_hash_name":"Sticker | Magisk (Embroidered) | Budapest 2025"},"9908":{"market_hash_name":"Sticker | Magisk (Holo) | Budapest 2025"},"9909":{"market_hash_name":"Sticker | Magisk (Gold) | Budapest 2025"},"991":{"market_hash_name":"Sticker | The Bomber"},"9910":{"market_hash_name":"Sticker | Staehr | Budapest 2025"},"9911":{"market_hash_name":"Sticker | Staehr (Embroidered) | Budapest 2025"},"9912":{"market_hash_name":"Sticker | Staehr (Holo) | Budapest 2025"},"9913":{"market_hash_name":"Sticker | Staehr (Gold) | Budapest 2025"},"9914":{"market_hash_name":"Sticker | Attacker | Budapest 2025"},"9915":{"market_hash_name":"Sticker | Attacker (Embroidered) | Budapest 2025"},"9916":{"market_hash_name":"Sticker | Attacker (Holo) | Budapest 2025"},"9917":{"market_hash_name":"Sticker | Attacker (Gold) | Budapest 2025"},"9918":{"market_hash_name":"Sticker | JamYoung | Budapest 2025"},"9919":{"market_hash_name":"Sticker | JamYoung (Embroidered) | Budapest 2025"},"992":{"market_hash_name":"Sticker | The Bot"},"9920":{"market_hash_name":"Sticker | JamYoung (Holo) | Budapest 2025"},"9921":{"market_hash_name":"Sticker | JamYoung (Gold) | Budapest 2025"},"9922":{"market_hash_name":"Sticker | Jee | Budapest 2025"},"9923":{"market_hash_name":"Sticker | Jee (Embroidered) | Budapest 2025"},"9924":{"market_hash_name":"Sticker | Jee (Holo) | Budapest 2025"},"9925":{"market_hash_name":"Sticker | Jee (Gold) | Budapest 2025"},"9926":{"market_hash_name":"Sticker | Mercury | Budapest 2025"},"9927":{"market_hash_name":"Sticker | Mercury (Embroidered) | Budapest 2025"},"9928":{"market_hash_name":"Sticker | Mercury (Holo) | Budapest 2025"},"9929":{"market_hash_name":"Sticker | Mercury (Gold) | Budapest 2025"},"993":{"market_hash_name":"Sticker | The Fragger"},"9930":{"market_hash_name":"Sticker | Moseyuh | Budapest 2025"},"9931":{"market_hash_name":"Sticker | Moseyuh (Embroidered) | Budapest 2025"},"9932":{"market_hash_name":"Sticker | Moseyuh (Holo) | Budapest 2025"},"9933":{"market_hash_name":"Sticker | Moseyuh (Gold) | Budapest 2025"},"9934":{"market_hash_name":"Sticker | brnz4n | Budapest 2025"},"9935":{"market_hash_name":"Sticker | brnz4n (Embroidered) | Budapest 2025"},"9936":{"market_hash_name":"Sticker | brnz4n (Holo) | Budapest 2025"},"9937":{"market_hash_name":"Sticker | brnz4n (Gold) | Budapest 2025"},"9938":{"market_hash_name":"Sticker | exit | Budapest 2025"},"9939":{"market_hash_name":"Sticker | exit (Embroidered) | Budapest 2025"},"994":{"market_hash_name":"Sticker | The Leader"},"9940":{"market_hash_name":"Sticker | exit (Holo) | Budapest 2025"},"9941":{"market_hash_name":"Sticker | exit (Gold) | Budapest 2025"},"9942":{"market_hash_name":"Sticker | insani | Budapest 2025"},"9943":{"market_hash_name":"Sticker | insani (Embroidered) | Budapest 2025"},"9944":{"market_hash_name":"Sticker | insani (Holo) | Budapest 2025"},"9945":{"market_hash_name":"Sticker | insani (Gold) | Budapest 2025"},"9946":{"market_hash_name":"Sticker | kl1m | Budapest 2025"},"9947":{"market_hash_name":"Sticker | kl1m (Embroidered) | Budapest 2025"},"9948":{"market_hash_name":"Sticker | kl1m (Holo) | Budapest 2025"},"9949":{"market_hash_name":"Sticker | kl1m (Gold) | Budapest 2025"},"995":{"market_hash_name":"Sticker | The Lurker"},"9950":{"market_hash_name":"Sticker | qikert | Budapest 2025"},"9951":{"market_hash_name":"Sticker | qikert (Embroidered) | Budapest 2025"},"9952":{"market_hash_name":"Sticker | qikert (Holo) | Budapest 2025"},"9953":{"market_hash_name":"Sticker | qikert (Gold) | Budapest 2025"},"9954":{"market_hash_name":"Sticker | Grim | Budapest 2025"},"9955":{"market_hash_name":"Sticker | Grim (Embroidered) | Budapest 2025"},"9956":{"market_hash_name":"Sticker | Grim (Holo) | Budapest 2025"},"9957":{"market_hash_name":"Sticker | Grim (Gold) | Budapest 2025"},"9958":{"market_hash_name":"Sticker | hallzerk | Budapest 2025"},"9959":{"market_hash_name":"Sticker | hallzerk (Embroidered) | Budapest 2025"},"996":{"market_hash_name":"Sticker | The 'Nader"},"9960":{"market_hash_name":"Sticker | hallzerk (Holo) | Budapest 2025"},"9961":{"market_hash_name":"Sticker | hallzerk (Gold) | Budapest 2025"},"9962":{"market_hash_name":"Sticker | JT | Budapest 2025"},"9963":{"market_hash_name":"Sticker | JT (Embroidered) | Budapest 2025"},"9964":{"market_hash_name":"Sticker | JT (Holo) | Budapest 2025"},"9965":{"market_hash_name":"Sticker | JT (Gold) | Budapest 2025"},"9966":{"market_hash_name":"Sticker | Kvem | Budapest 2025"},"9967":{"market_hash_name":"Sticker | Kvem (Embroidered) | Budapest 2025"},"9968":{"market_hash_name":"Sticker | Kvem (Holo) | Budapest 2025"},"9969":{"market_hash_name":"Sticker | Kvem (Gold) | Budapest 2025"},"997":{"market_hash_name":"Sticker | The Ninja"},"9970":{"market_hash_name":"Sticker | nicx | Budapest 2025"},"9971":{"market_hash_name":"Sticker | nicx (Embroidered) | Budapest 2025"},"9972":{"market_hash_name":"Sticker | nicx (Holo) | Budapest 2025"},"9973":{"market_hash_name":"Sticker | nicx (Gold) | Budapest 2025"},"9974":{"market_hash_name":"Sticker | dumau | Budapest 2025"},"9975":{"market_hash_name":"Sticker | dumau (Embroidered) | Budapest 2025"},"9976":{"market_hash_name":"Sticker | dumau (Holo) | Budapest 2025"},"9977":{"market_hash_name":"Sticker | dumau (Gold) | Budapest 2025"},"9978":{"market_hash_name":"Sticker | latto | Budapest 2025"},"9979":{"market_hash_name":"Sticker | latto (Embroidered) | Budapest 2025"},"998":{"market_hash_name":"Sticker | Support"},"9980":{"market_hash_name":"Sticker | latto (Holo) | Budapest 2025"},"9981":{"market_hash_name":"Sticker | latto (Gold) | Budapest 2025"},"9982":{"market_hash_name":"Sticker | lux | Budapest 2025"},"9983":{"market_hash_name":"Sticker | lux (Embroidered) | Budapest 2025"},"9984":{"market_hash_name":"Sticker | lux (Holo) | Budapest 2025"},"9985":{"market_hash_name":"Sticker | lux (Gold) | Budapest 2025"},"9986":{"market_hash_name":"Sticker | n1ssim | Budapest 2025"},"9987":{"market_hash_name":"Sticker | n1ssim (Embroidered) | Budapest 2025"},"9988":{"market_hash_name":"Sticker | n1ssim (Holo) | Budapest 2025"},"9989":{"market_hash_name":"Sticker | n1ssim (Gold) | Budapest 2025"},"999":{"market_hash_name":"Sticker | The Awper (Foil)"},"9990":{"market_hash_name":"Sticker | saadzin | Budapest 2025"},"9991":{"market_hash_name":"Sticker | saadzin (Embroidered) | Budapest 2025"},"9992":{"market_hash_name":"Sticker | saadzin (Holo) | Budapest 2025"},"9993":{"market_hash_name":"Sticker | saadzin (Gold) | Budapest 2025"},"9994":{"market_hash_name":"Sticker | broky | Budapest 2025"},"9995":{"market_hash_name":"Sticker | broky (Embroidered) | Budapest 2025"},"9996":{"market_hash_name":"Sticker | broky (Holo) | Budapest 2025"},"9997":{"market_hash_name":"Sticker | broky (Gold) | Budapest 2025"},"9998":{"market_hash_name":"Sticker | frozen | Budapest 2025"},"9999":{"market_hash_name":"Sticker | frozen (Embroidered) | Budapest 2025"}},"keychains":{"1":{"market_hash_name":"Charm | Lil' Ava"},"10":{"market_hash_name":"Charm | Hot Sauce"},"11":{"market_hash_name":"Charm | Diamond Dog"},"12":{"market_hash_name":"Charm | Pinch O' Salt"},"13":{"market_hash_name":"Charm | Diner Dog"},"14":{"market_hash_name":"Charm | Lil' Teacup"},"15":{"market_hash_name":"Charm | Lil' SAS"},"16":{"market_hash_name":"Charm | Hot Wurst"},"17":{"market_hash_name":"Charm | Baby's AK"},"18":{"market_hash_name":"Charm | Die-cast AK"},"19":{"market_hash_name":"Charm | Pocket AWP"},"2":{"market_hash_name":"Charm | That's Bananas"},"20":{"market_hash_name":"Charm | Titeenium AWP"},"21":{"market_hash_name":"Charm | Baby Karat CT"},"22":{"market_hash_name":"Charm | Whittle Knife"},"23":{"market_hash_name":"Charm | POP Art"},"24":{"market_hash_name":"Charm | Lil' Squirt"},"25":{"market_hash_name":"Charm | Disco MAC"},"26":{"market_hash_name":"Charm | Backsplash"},"27":{"market_hash_name":"Charm | Lil' Cap Gun"},"28":{"market_hash_name":"Charm | Hot Hands"},"29":{"market_hash_name":"Charm | Semi-Precious"},"3":{"market_hash_name":"Charm | Lil' Whiskers"},"30":{"market_hash_name":"Charm | Baby Karat T"},"31":{"market_hash_name":"Charm | Glamour Shot"},"32":{"market_hash_name":"Charm | Stitch-Loaded"},"33":{"market_hash_name":"Charm | Lil' Squatch"},"36":{"market_hash_name":"Charm | Austin 2025 Highlight"},"37":{"market_hash_name":"Charm | Sticker Slab"},"38":{"market_hash_name":"Charm | Lil' Curse"},"39":{"market_hash_name":"Charm | Lil' Serpent"},"4":{"market_hash_name":"Charm | Lil' Sandy"},"40":{"market_hash_name":"Charm | Lil' Baller"},"41":{"market_hash_name":"Charm | Dead Weight"},"42":{"market_hash_name":"Charm | Lil' Prick"},"43":{"market_hash_name":"Charm | Lil' Buns"},"44":{"market_hash_name":"Charm | Lil' Smokey"},"45":{"market_hash_name":"Charm | Lil' Eldritch"},"46":{"market_hash_name":"Charm | Lil' Happy"},"47":{"market_hash_name":"Charm | Magmatude"},"48":{"market_hash_name":"Charm | Lil' Cackle"},"49":{"market_hash_name":"Charm | Quick Silver"},"5":{"market_hash_name":"Charm | Chicken Lil'"},"50":{"market_hash_name":"Charm | Lil' No. 2"},"51":{"market_hash_name":"Charm | Piñatita"},"52":{"market_hash_name":"Charm | Pocket Pop"},"53":{"market_hash_name":"Charm | Lil' Hero"},"54":{"market_hash_name":"Charm | Lil' Tusk"},"55":{"market_hash_name":"Charm | Lil' Goop"},"56":{"market_hash_name":"Charm | Hang Loose"},"57":{"market_hash_name":"Charm | Lil' Vino"},"58":{"market_hash_name":"Charm | Lil' Moments"},"59":{"market_hash_name":"Charm | Lil' Boo"},"6":{"market_hash_name":"Charm | Lil' Crass"},"60":{"market_hash_name":"Charm | Lil' Chirp"},"61":{"market_hash_name":"Charm | Big Brain"},"62":{"market_hash_name":"Charm | Biomech"},"63":{"market_hash_name":"Charm | Splatter Cat"},"64":{"market_hash_name":"Charm | Gritty"},"65":{"market_hash_name":"Charm | Fluffy"},"66":{"market_hash_name":"Charm | Whittle Guy"},"67":{"market_hash_name":"Charm | Lil' Zen"},"68":{"market_hash_name":"Charm | Lil' Facelift"},"69":{"market_hash_name":"Charm | Lil' Chomper"},"7":{"market_hash_name":"Charm | Hot Howl"},"70":{"market_hash_name":"Charm | Lil' Bloody"},"71":{"market_hash_name":"Charm | Lil' Dumplin'"},"72":{"market_hash_name":"Charm | Bomb Tag"},"73":{"market_hash_name":"Charm | Glitter Bomb"},"74":{"market_hash_name":"Charm | Lil' Eco"},"75":{"market_hash_name":"Charm | Hungry Eyes"},"76":{"market_hash_name":"Charm | Eye of Ball"},"77":{"market_hash_name":"Charm | Lil' Yeti"},"78":{"market_hash_name":"Charm | 8 Ball IGL"},"79":{"market_hash_name":"Charm | Flash Bomb"},"8":{"market_hash_name":"Charm | Big Kev"},"80":{"market_hash_name":"Charm | Lil' Ferno"},"81":{"market_hash_name":"Charm | Butane Buddy"},"82":{"market_hash_name":"Charm | Dr. Brian"},"83":{"market_hash_name":"Charm | Budapest 2025 Highlight"},"84":{"market_hash_name":"Charm | Cologne 2026 Highlight"},"9":{"market_hash_name":"Charm | Lil' Monster"}},"collectibles":{"4682":{"market_hash_name":"Civil Protection Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-POo1IqbFC2PHxe0nsbE8GC22zUx-sDvcmYn6cHPEbAd0XJZ1ReIK50XpjJS5YM2GeADW","rarity":6,"price":1562},"4683":{"market_hash_name":"Sustenance! Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-P-ppd6fGXjeUl-wl5rU5HC3kx04j5DjTn9j6cHORawQnCsBzR-Bc4xbqjJS5YEDBxb_n","rarity":5,"price":611},"4684":{"market_hash_name":"Vortigaunt Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-MepvJKiRDGbCkLYu47U7Hi22xktw5GmGyYqvcymeawRzDZsiRrYI4xK6jJS5YFv2VefZ","rarity":5,"price":614},"4685":{"market_hash_name":"Headcrab Glyph Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-Peo_eKaWCDSVw7pytrhqTS-wwBkk4z6GzNn7dS6faVB0AppwE-8Cu0LujJS5YAoC0a5w","rarity":4,"price":464},"4686":{"market_hash_name":"Health Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983_Ouo6IqiQCGHDkOsm5OJqTnq3xkwj4WrVztagcC7CaQ8jX8cmQbUOs0S9jJS5YI3K3yOE","rarity":4,"price":2091},"4687":{"market_hash_name":"Lambda Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-OepsIvOXCzSRw7gns7g8SS3lzR925j7QwtqudC6Ub1IgCMNwQO4L5Be8jJS5YIYAgqaU","rarity":3,"price":516},"4688":{"market_hash_name":"Copper Lambda Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-Ouo-IafGWWHDwuol5-NsG3Dgwx90sWSHm9eocnqXPA92D8BxEOdfthHtjJS5YHLdlSug","rarity":4,"price":566},"4689":{"market_hash_name":"CMB Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-O-ppeaPLXTKSlb9yteU5GnjqkRlysj-GzdardH3EZwAmCJUmF-JfukLpjJS5YJoNZVF-","rarity":3,"price":363},"4690":{"market_hash_name":"Black Mesa Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-Puo5IvWQDTHHkLwg5rFtFyjgzB8lsGTQztmreHuXOgMhWcFwQe4IsELrjJS5YLQKtvDj","rarity":3,"price":451},"4691":{"market_hash_name":"Combine Helmet Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-MOpoJfHGCmXGxLx1tbdtHy3klxx152uHno6uJHnFbAUjA5YmQOBetBbujJS5YBnSVKcz","rarity":3,"price":394},"4692":{"market_hash_name":"City 17 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983_OepvI_PADGLCx7Zw6bY7FijlzU0h4GzTmdb4JHufPFMgWMAlRe8I4RK5jJS5YKPJo3vd","rarity":3,"price":304},"6101":{"market_hash_name":"Dust II Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-TdI-6DgOqY5IqmVCGPEkewi5LdqGX_ixkR_5T6Gwt-oeHqUaQQgA8NxReNZ5w74zIPppRxQfg","rarity":6,"price":2935},"6102":{"market_hash_name":"Guardian Elite Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaapoLPmHCynDlr8g4rg7HXCwkEx1tWjXzo2rcC2ebw4oX5VyFOYO40O8kYLnNbvk-UWA3DGIpJ3Y","rarity":6,"price":3266},"6103":{"market_hash_name":"Mirage Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8CtJ7vWrJvc8JKaVXWWVx7pw6bZvGC3llk1x62zXyN77cnvDag4oDcZ1EecNshWm0oqwbKmGaXg","rarity":5,"price":932},"6104":{"market_hash_name":"Inferno Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9Cxd6uCgZ-o4JKjLWGKTkrci5eVvTXznkUh_42jSztquJyrCalImX5okEeEKtUS7jJS5YMeVnaEz","rarity":5,"price":542},"6105":{"market_hash_name":"Italy Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9DZa4-vgMPQ5c6OWXz7GkOgu5Oc7Snu1wkwm62zUzN2geXiWZgEpApp0QLRY4w74zIMBHEAMQQ","rarity":4,"price":287},"6106":{"market_hash_name":"Victory Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6ytY-_28ceo4c6PCVmKSw75z4-VvF3rrwUxxsWXUw9auc3mWOlV0W5d2QbYP4RO_jJS5YEEizVQ6","rarity":4,"price":467},"6107":{"market_hash_name":"Militia Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8CtX5uanaepsdaTECzfFmbwvsrY4G3HmzEpwsmWBmYn_dSjDZlMiCcZ2E7MMthjsjJS5YJ6H7qp0","rarity":4,"price":327},"6108":{"market_hash_name":"Nuke Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8zdQ6rz7Mfc9JqGSWTGWxbYv5bJqHiy1kB9-4jjRntuseCnDZgJxC8NyTbFZrFDmxfMDMe6Y","rarity":3,"price":524},"6109":{"market_hash_name":"Train Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6TBa5vzgPvE_JaKQWjbAwLsgtrY4HHDmlhxy5G_Qydv_IH-VbwcoA5B4FOQNtQ74zIMnqsHSTw","rarity":3,"price":310},"6110":{"market_hash_name":"Guardian Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaaojJaXGCz_Jmb0utLM_G361zUQl6mrWzN2ocnvDOgImCccjEO9b5kO4x8qnab3wc3zI_w","rarity":3,"price":336},"6111":{"market_hash_name":"Tactics Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6SNY-_ute-o7IaDGDTDEwLci5uQ_HXnhwRwh5zjTmYuqJH-VOgEpD5ckQLFe50PtjJS5YBzTReYq","rarity":3,"price":304},"6112":{"market_hash_name":"Guardian 2 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaapScr7CDzeVlegn5eI-Gnu2wh4itzvVntf9cX6QbAZ1CJcjQeMLuhCwmtbnKaq8sJtUlEYN","rarity":3,"price":306},"6113":{"market_hash_name":"Bravo Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_zBa-f3gO6A0eKmVDDKUk-xy6LZqTHDikRgl4GnczdmoIymQbwVyD5AlRLIL5A74zIPjyfU6UQ","rarity":3,"price":293},"6114":{"market_hash_name":"Baggage Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_yNc6POpbeo7IfKSX2LCl-gu47Y5GSyxzBsl4G2Gy4qpd3LFalIlWcAkFuFbtRi-jJS5YMmlO3-V","rarity":3,"price":274},"6115":{"market_hash_name":"Phoenix Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf7SpU6vyncOo5d_TFCzbAlbxw6LhvFnjmkUt2sGmDw438ICrEaFMmCJZxROVbtkXqjJS5YPuQfFr9","rarity":3,"price":333},"6116":{"market_hash_name":"Office Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8iRd5vGrJvJoJfbAXzaTwr5y4OVtH3Hjl0t142mGwtn8dC6WaAV0DJRzQeQOsxCm0oqwx6fT5bE","rarity":4,"price":611},"6117":{"market_hash_name":"Cobblestone Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_i1Z7f6re7BiLvXdC2TJwugm5rM9GHq3wEQh6zzdzY77cHPGOlRzDcMkQrJZ4BXuwIXmY_SiuVIIpUYynw","rarity":4,"price":725},"6118":{"market_hash_name":"Overpass Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8jRe_eKve7cjIqeQVj_BkbcntuRtTXvhkEklsGndw9yvIi_BPFJ0Wcd2F7QKsRLql8qnab3blaApHQ","rarity":4,"price":296},"6119":{"market_hash_name":"Bloodhound Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_y5U4PamZ7FjJL7EVz_FketwseBqFnuywht0tzzUmN2sc3KWagR2DJV0Q-FY50S5kYbhKaq8sCJEMPex","rarity":5,"price":560},"6120":{"market_hash_name":"Cache Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_iNY5_fgPPE6cqnHDGXImLYjtrhrHXy1whxzsGnRz96gd3KUOFAjCZAlF7YOsA74zINPPdgdEg","rarity":5,"price":1564},"6121":{"market_hash_name":"Valeria Phoenix Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6yNX6uCnaeo8d_HLXj-Uxbwl4OVqHi2xkEgitWuHnNqsdinGaQR1CJF4Qe9e5xK5jJS5YMqaU_tR","rarity":6,"price":4771},"6122":{"market_hash_name":"Chroma Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_ipJ4P-vJv05daDCDzGRw74i5uc6Gy-1wR8j4WjVwt2udn6ROlUjW5ZwFrQMsRGm0oqwitzjS5Q","rarity":6,"price":1158},"6123":{"market_hash_name":"Guardian 3 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaapSc77KV2TAlbkk4OA8Fi3jlBgm4jvQm9esI3iWOlQoW5VxF-Ze5hC-wIWzKaq8sP_rqume","rarity":3,"price":244},"6124":{"market_hash_name":"Canals Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_iNV7v69JvM7d6WRDTbFk7514rJoGnmyzEh0tW-DzNj9eS2ROFQoW5V3QOZb4EWm0oqwd_tTteU","rarity":3,"price":275},"6125":{"market_hash_name":"Welcome to the Clutch Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6idX7P2jbZt5L8-HBmKvwuJjpOJhAX_nlh535W_cmNerdnufbwNzWJRzRuVZ5kS9xtS0MLvi5A2N2Y9HzX_gznQeAZAPHrk","rarity":3,"price":304},"6126":{"market_hash_name":"Death Sentence Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-Sda-_qRe6FjNPWdDWLew7h047E9GijmzE935mXWytirdinFPwV0A8MkQbRYtBe-m4W0Yb7g7xue1dzixNaRHA","rarity":3,"price":319},"6127":{"market_hash_name":"Inferno 2 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9Cxd6uCgZ5s_bqWVVzWRlbcksbM4HSjnxRt-tW2AytmrcX_Fb1cmD8d0E-9YsRG-wNP5d7S1bIMTRb4","rarity":4,"price":292},"6128":{"market_hash_name":"Wildfire Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6itX6_SneqEjIvPLDDbGx-wnsrk7Fyzmx0R35T_TwomudyrGalckX5RzRLYMtUS8wMqnab2__2r_Pw","rarity":4,"price":396},"6129":{"market_hash_name":"Easy Peasy Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-CNI9s2-baV-Ob7CDWPDxeok5bc4HX-yzEp0427Twor4c3uQawIgCMB0F7NbsRa5kYDlKaq8sEkrBB7j","rarity":4,"price":307},"6130":{"market_hash_name":"Aces High Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_CFe_M2mYaNlbqTKCzHAlLon57c5Fy3nzRhxt2-Am974IinFbVJxD5V4Q7UJthjplN35d7S1i96h-Rg","rarity":5,"price":736},"6131":{"market_hash_name":"Hydra Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9Ttf_fPgMfduefKSDDPDlL8j47g4SnnhkBx05zjRyNyqc3LFagUgWJZ2TOMJ4A74zIOghqDGLQ","rarity":5,"price":540},"6132":{"market_hash_name":"Howl Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9S1M47ytaaFsePOWXD7GmL0uteVsTnvrwUh35GnTyIqvcH-WaVV1A8cjEOBYrFDmxemoXWxJ","rarity":6,"price":4488},"6133":{"market_hash_name":"Brigadier General Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_zBS6POqYaF_H_eWAGKCwOI45LloHCvjkxtw5j7Rz93_JS-fbQQkX5olQrMC4RTqwd2yZerl41eIiZUFk3ubFYxEoQ","rarity":6,"price":1292},"6134":{"market_hash_name":"Alyx Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983_OOo6c6jECmXEluoltLBsTCqywht14m7Wm9qgIi-eaA8nDJdxQOQK5BPqjJS5YAqVR3CV","rarity":6,"price":2854}},"containers":{"4001":{"market_hash_name":"CS:GO Weapon Case"},"4002":{"market_hash_name":"eSports 2013 Case"},"4003":{"market_hash_name":"Operation Bravo Case"},"4004":{"market_hash_name":"CS:GO Weapon Case 2"},"4005":{"market_hash_name":"eSports 2013 Winter Case"},"4006":{"market_hash_name":"DreamHack 2013 Souvenir Package"},"4007":{"market_hash_name":"Sticker Capsule"},"4009":{"market_hash_name":"Winter Offensive Weapon Case"},"4010":{"market_hash_name":"CS:GO Weapon Case 3"},"4011":{"market_hash_name":"Operation Phoenix Weapon Case"},"4012":{"market_hash_name":"Sticker Capsule 2"},"4013":{"market_hash_name":"EMS One 2014 Souvenir Package"},"4014":{"market_hash_name":"EMS Katowice 2014 Challengers"},"4015":{"market_hash_name":"EMS Katowice 2014 Legends"},"4016":{"market_hash_name":"Community Sticker Capsule 1"},"4017":{"market_hash_name":"Huntsman Weapon Case"},"4018":{"market_hash_name":"Operation Breakout Weapon Case"},"4019":{"market_hash_name":"eSports 2014 Summer Case"},"4020":{"market_hash_name":"ESL One Cologne 2014 Legends"},"4021":{"market_hash_name":"ESL One Cologne 2014 Challengers"},"4022":{"market_hash_name":"ESL One Cologne 2014 Dust II Souvenir Package"},"4023":{"market_hash_name":"ESL One Cologne 2014 Inferno Souvenir Package"},"4024":{"market_hash_name":"ESL One Cologne 2014 Mirage Souvenir Package"},"4025":{"market_hash_name":"ESL One Cologne 2014 Nuke Souvenir Package"},"4026":{"market_hash_name":"ESL One Cologne 2014 Cache Souvenir Package"},"4027":{"market_hash_name":"ESL One Cologne 2014 Cobblestone Souvenir Package"},"4028":{"market_hash_name":"ESL One Cologne 2014 Overpass Souvenir Package"},"4029":{"market_hash_name":"Operation Vanguard Weapon Case"},"4030":{"market_hash_name":"DreamHack 2014 Legends (Holo-Foil)"},"4031":{"market_hash_name":"DreamHack 2014 Dust II Souvenir Package"},"4032":{"market_hash_name":"DreamHack 2014 Inferno Souvenir Package"},"4033":{"market_hash_name":"DreamHack 2014 Mirage Souvenir Package"},"4034":{"market_hash_name":"DreamHack 2014 Nuke Souvenir Package"},"4035":{"market_hash_name":"DreamHack 2014 Cache Souvenir Package"},"4036":{"market_hash_name":"DreamHack 2014 Cobblestone Souvenir Package"},"4037":{"market_hash_name":"DreamHack 2014 Overpass Souvenir Package"},"4061":{"market_hash_name":"Chroma Case"},"4079":{"market_hash_name":"ESL One Katowice 2015 Dust II Souvenir Package"},"4080":{"market_hash_name":"ESL One Katowice 2015 Inferno Souvenir Package"},"4081":{"market_hash_name":"ESL One Katowice 2015 Mirage Souvenir Package"},"4082":{"market_hash_name":"ESL One Katowice 2015 Nuke Souvenir Package"},"4083":{"market_hash_name":"ESL One Katowice 2015 Cache Souvenir Package"},"4084":{"market_hash_name":"ESL One Katowice 2015 Cobblestone Souvenir Package"},"4085":{"market_hash_name":"ESL One Katowice 2015 Overpass Souvenir Package"},"4086":{"market_hash_name":"ESL One Katowice 2015 Legends (Holo-Foil)"},"4087":{"market_hash_name":"ESL One Katowice 2015 Challengers (Holo-Foil)"},"4089":{"market_hash_name":"Chroma 2 Case"},"4090":{"market_hash_name":"Enfu Sticker Capsule"},"4091":{"market_hash_name":"Falchion Case"},"4109":{"market_hash_name":"ESL One Cologne 2015 Legends (Foil)"},"4110":{"market_hash_name":"ESL One Cologne 2015 Challengers (Foil)"},"4111":{"market_hash_name":"Autograph Capsule | Group A (Foil) | Cologne 2015"},"4112":{"market_hash_name":"Autograph Capsule | Group B (Foil) | Cologne 2015"},"4113":{"market_hash_name":"Autograph Capsule | Group C (Foil) | Cologne 2015"},"4114":{"market_hash_name":"Autograph Capsule | Group D (Foil) | Cologne 2015"},"4115":{"market_hash_name":"Autograph Capsule | Fnatic | Cologne 2015"},"4116":{"market_hash_name":"Autograph Capsule | Luminosity Gaming | Cologne 2015"},"4117":{"market_hash_name":"Autograph Capsule | Natus Vincere | Cologne 2015"},"4118":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | Cologne 2015"},"4119":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Cologne 2015"},"4120":{"market_hash_name":"Autograph Capsule | Titan | Cologne 2015"},"4121":{"market_hash_name":"Autograph Capsule | Team SoloMid | Cologne 2015"},"4122":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Cologne 2015"},"4123":{"market_hash_name":"Autograph Capsule | mousesports | Cologne 2015"},"4124":{"market_hash_name":"Autograph Capsule | Renegades | Cologne 2015"},"4125":{"market_hash_name":"Autograph Capsule | Team Immunity | Cologne 2015"},"4126":{"market_hash_name":"Autograph Capsule | Team eBettle | Cologne 2015"},"4127":{"market_hash_name":"Autograph Capsule | Team Kinguin | Cologne 2015"},"4128":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Cologne 2015"},"4129":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | Cologne 2015"},"4130":{"market_hash_name":"Autograph Capsule | Cloud9 G2A | Cologne 2015"},"4131":{"market_hash_name":"ESL One Cologne 2015 Dust II Souvenir Package"},"4132":{"market_hash_name":"ESL One Cologne 2015 Mirage Souvenir Package"},"4133":{"market_hash_name":"ESL One Cologne 2015 Inferno Souvenir Package"},"4134":{"market_hash_name":"ESL One Cologne 2015 Cobblestone Souvenir Package"},"4135":{"market_hash_name":"ESL One Cologne 2015 Overpass Souvenir Package"},"4136":{"market_hash_name":"ESL One Cologne 2015 Cache Souvenir Package"},"4137":{"market_hash_name":"ESL One Cologne 2015 Train Souvenir Package"},"4138":{"market_hash_name":"Shadow Case"},"4156":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Legends (Foil)"},"4157":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Challengers (Foil)"},"4158":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | Cluj-Napoca 2015"},"4159":{"market_hash_name":"Autograph Capsule | Legends (Foil) | Cluj-Napoca 2015"},"4160":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | Cluj-Napoca 2015"},"4161":{"market_hash_name":"Autograph Capsule | Team Dignitas | Cluj-Napoca 2015"},"4162":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | Cluj-Napoca 2015"},"4163":{"market_hash_name":"Autograph Capsule | Vexed Gaming | Cluj-Napoca 2015"},"4164":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Cluj-Napoca 2015"},"4165":{"market_hash_name":"Autograph Capsule | Team Liquid | Cluj-Napoca 2015"},"4166":{"market_hash_name":"Autograph Capsule | mousesports | Cluj-Napoca 2015"},"4167":{"market_hash_name":"Autograph Capsule | Natus Vincere | Cluj-Napoca 2015"},"4168":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Cluj-Napoca 2015"},"4169":{"market_hash_name":"Autograph Capsule | Cloud9 | Cluj-Napoca 2015"},"4170":{"market_hash_name":"Autograph Capsule | G2 Esports | Cluj-Napoca 2015"},"4171":{"market_hash_name":"Autograph Capsule | Titan | Cluj-Napoca 2015"},"4172":{"market_hash_name":"Autograph Capsule | Team SoloMid | Cluj-Napoca 2015"},"4173":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Cluj-Napoca 2015"},"4174":{"market_hash_name":"Autograph Capsule | Fnatic | Cluj-Napoca 2015"},"4175":{"market_hash_name":"Autograph Capsule | Luminosity Gaming | Cluj-Napoca 2015"},"4176":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Dust II Souvenir Package"},"4177":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Mirage Souvenir Package"},"4178":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Inferno Souvenir Package"},"4179":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package"},"4180":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Overpass Souvenir Package"},"4181":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Cache Souvenir Package"},"4182":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Train Souvenir Package"},"4183":{"market_hash_name":"Pinups Capsule"},"4184":{"market_hash_name":"Slid3 Capsule"},"4185":{"market_hash_name":"Team Roles Capsule"},"4186":{"market_hash_name":"Revolver Case"},"4187":{"market_hash_name":"Operation Wildfire Case"},"4205":{"market_hash_name":"MLG Columbus 2016 Legends (Holo-Foil)"},"4206":{"market_hash_name":"MLG Columbus 2016 Challengers (Holo-Foil)"},"4207":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | MLG Columbus 2016"},"4208":{"market_hash_name":"Autograph Capsule | Legends (Foil) | MLG Columbus 2016"},"4209":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | MLG Columbus 2016"},"4210":{"market_hash_name":"Autograph Capsule | Splyce | MLG Columbus 2016"},"4211":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | MLG Columbus 2016"},"4212":{"market_hash_name":"Autograph Capsule | Gambit Gaming | MLG Columbus 2016"},"4213":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | MLG Columbus 2016"},"4214":{"market_hash_name":"Autograph Capsule | Team Liquid | MLG Columbus 2016"},"4215":{"market_hash_name":"Autograph Capsule | mousesports | MLG Columbus 2016"},"4216":{"market_hash_name":"Autograph Capsule | Natus Vincere | MLG Columbus 2016"},"4217":{"market_hash_name":"Autograph Capsule | Virtus.Pro | MLG Columbus 2016"},"4218":{"market_hash_name":"Autograph Capsule | Cloud9 | MLG Columbus 2016"},"4219":{"market_hash_name":"Autograph Capsule | G2 Esports | MLG Columbus 2016"},"4220":{"market_hash_name":"Autograph Capsule | FaZe Clan | MLG Columbus 2016"},"4221":{"market_hash_name":"Autograph Capsule | Astralis | MLG Columbus 2016"},"4222":{"market_hash_name":"Autograph Capsule | Team EnVyUs | MLG Columbus 2016"},"4223":{"market_hash_name":"Autograph Capsule | Fnatic | MLG Columbus 2016"},"4224":{"market_hash_name":"Autograph Capsule | Luminosity Gaming | MLG Columbus 2016"},"4225":{"market_hash_name":"MLG Columbus 2016 Dust II Souvenir Package"},"4226":{"market_hash_name":"MLG Columbus 2016 Mirage Souvenir Package"},"4227":{"market_hash_name":"MLG Columbus 2016 Inferno Souvenir Package"},"4228":{"market_hash_name":"MLG Columbus 2016 Cobblestone Souvenir Package"},"4229":{"market_hash_name":"MLG Columbus 2016 Overpass Souvenir Package"},"4230":{"market_hash_name":"MLG Columbus 2016 Cache Souvenir Package"},"4231":{"market_hash_name":"MLG Columbus 2016 Train Souvenir Package"},"4232":{"market_hash_name":"MLG Columbus 2016 Nuke Souvenir Package"},"4233":{"market_hash_name":"Chroma 3 Case"},"4234":{"market_hash_name":"Community Graffiti Box 1"},"4235":{"market_hash_name":"Collectible Pins Capsule Series 1"},"4236":{"market_hash_name":"Gamma Case"},"4254":{"market_hash_name":"Cologne 2016 Legends (Holo-Foil)"},"4255":{"market_hash_name":"Cologne 2016 Challengers (Holo-Foil)"},"4256":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | Cologne 2016"},"4257":{"market_hash_name":"Autograph Capsule | Legends (Foil) | Cologne 2016"},"4258":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | Cologne 2016"},"4259":{"market_hash_name":"Autograph Capsule | OpTic Gaming | Cologne 2016"},"4260":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | Cologne 2016"},"4261":{"market_hash_name":"Autograph Capsule | Gambit Gaming | Cologne 2016"},"4262":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Cologne 2016"},"4263":{"market_hash_name":"Autograph Capsule | Team Liquid | Cologne 2016"},"4264":{"market_hash_name":"Autograph Capsule | mousesports | Cologne 2016"},"4265":{"market_hash_name":"Autograph Capsule | Natus Vincere | Cologne 2016"},"4266":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Cologne 2016"},"4267":{"market_hash_name":"Autograph Capsule | SK Gaming | Cologne 2016"},"4268":{"market_hash_name":"Autograph Capsule | G2 Esports | Cologne 2016"},"4269":{"market_hash_name":"Autograph Capsule | FaZe Clan | Cologne 2016"},"4270":{"market_hash_name":"Autograph Capsule | Astralis | Cologne 2016"},"4271":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Cologne 2016"},"4272":{"market_hash_name":"Autograph Capsule | Fnatic | Cologne 2016"},"4273":{"market_hash_name":"Autograph Capsule | Team Dignitas | Cologne 2016"},"4274":{"market_hash_name":"Cologne 2016 Dust II Souvenir Package"},"4275":{"market_hash_name":"Cologne 2016 Mirage Souvenir Package"},"4276":{"market_hash_name":"Cologne 2016 Cobblestone Souvenir Package"},"4277":{"market_hash_name":"Cologne 2016 Overpass Souvenir Package"},"4278":{"market_hash_name":"Cologne 2016 Cache Souvenir Package"},"4279":{"market_hash_name":"Cologne 2016 Train Souvenir Package"},"4280":{"market_hash_name":"Cologne 2016 Nuke Souvenir Package"},"4281":{"market_hash_name":"Gamma 2 Case"},"4282":{"market_hash_name":"Sugarface Capsule"},"4283":{"market_hash_name":"Bestiary Capsule"},"4284":{"market_hash_name":"Collectible Pins Capsule Series 2"},"4285":{"market_hash_name":"CS:GO Graffiti Box"},"4286":{"market_hash_name":"Perfect World Graffiti Box"},"4287":{"market_hash_name":"StatTrak™ Radicals Box"},"4288":{"market_hash_name":"Glove Case"},"4323":{"market_hash_name":"Atlanta 2017 Legends (Holo-Foil)"},"4324":{"market_hash_name":"Atlanta 2017 Challengers (Holo-Foil)"},"4325":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | Atlanta 2017"},"4326":{"market_hash_name":"Autograph Capsule | Legends (Foil) | Atlanta 2017"},"4327":{"market_hash_name":"Autograph Capsule | Astralis | Atlanta 2017"},"4328":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Atlanta 2017"},"4329":{"market_hash_name":"Autograph Capsule | FaZe Clan | Atlanta 2017"},"4330":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Atlanta 2017"},"4331":{"market_hash_name":"Autograph Capsule | Fnatic | Atlanta 2017"},"4332":{"market_hash_name":"Autograph Capsule | G2 Esports | Atlanta 2017"},"4333":{"market_hash_name":"Autograph Capsule | Gambit Gaming | Atlanta 2017"},"4334":{"market_hash_name":"Autograph Capsule | GODSENT | Atlanta 2017"},"4335":{"market_hash_name":"Autograph Capsule | HellRaisers | Atlanta 2017"},"4336":{"market_hash_name":"Autograph Capsule | mousesports | Atlanta 2017"},"4337":{"market_hash_name":"Autograph Capsule | Natus Vincere | Atlanta 2017"},"4338":{"market_hash_name":"Autograph Capsule | North | Atlanta 2017"},"4339":{"market_hash_name":"Autograph Capsule | OpTic Gaming | Atlanta 2017"},"4340":{"market_hash_name":"Autograph Capsule | SK Gaming | Atlanta 2017"},"4341":{"market_hash_name":"Autograph Capsule | Team Liquid | Atlanta 2017"},"4342":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Atlanta 2017"},"4344":{"market_hash_name":"Atlanta 2017 Dust II Souvenir Package"},"4345":{"market_hash_name":"Atlanta 2017 Mirage Souvenir Package"},"4346":{"market_hash_name":"Atlanta 2017 Cobblestone Souvenir Package"},"4347":{"market_hash_name":"Atlanta 2017 Overpass Souvenir Package"},"4348":{"market_hash_name":"Atlanta 2017 Cache Souvenir Package"},"4349":{"market_hash_name":"Atlanta 2017 Train Souvenir Package"},"4350":{"market_hash_name":"Atlanta 2017 Nuke Souvenir Package"},"4351":{"market_hash_name":"Spectrum Case"},"4352":{"market_hash_name":"Operation Hydra Case"},"4391":{"market_hash_name":"Krakow 2017 Legends (Holo-Foil)"},"4392":{"market_hash_name":"Krakow 2017 Challengers (Holo-Foil)"},"4393":{"market_hash_name":"Krakow 2017 Challengers Autograph Capsule"},"4394":{"market_hash_name":"Krakow 2017 Legends Autograph Capsule"},"4396":{"market_hash_name":"Krakow 2017 Inferno Souvenir Package"},"4397":{"market_hash_name":"Krakow 2017 Mirage Souvenir Package"},"4398":{"market_hash_name":"Krakow 2017 Cobblestone Souvenir Package"},"4399":{"market_hash_name":"Krakow 2017 Overpass Souvenir Package"},"4400":{"market_hash_name":"Krakow 2017 Cache Souvenir Package"},"4401":{"market_hash_name":"Krakow 2017 Train Souvenir Package"},"4402":{"market_hash_name":"Krakow 2017 Nuke Souvenir Package"},"4403":{"market_hash_name":"Spectrum 2 Case"},"4404":{"market_hash_name":"Perfect World Sticker Capsule 1"},"4405":{"market_hash_name":"Perfect World Sticker Capsule 2"},"4456":{"market_hash_name":"Boston 2018 Legends (Holo-Foil)"},"4457":{"market_hash_name":"Boston 2018 Returning Challengers (Holo-Foil)"},"4458":{"market_hash_name":"Boston 2018 Minor Challengers (Holo-Foil)"},"4459":{"market_hash_name":"Boston 2018 Legends Autograph Capsule"},"4460":{"market_hash_name":"Boston 2018 Returning Challengers Autograph Capsule"},"4461":{"market_hash_name":"Boston 2018 Minor Challengers Autograph Capsule"},"4463":{"market_hash_name":"Boston 2018 Inferno Souvenir Package"},"4464":{"market_hash_name":"Boston 2018 Mirage Souvenir Package"},"4465":{"market_hash_name":"Boston 2018 Cobblestone Souvenir Package"},"4466":{"market_hash_name":"Boston 2018 Overpass Souvenir Package"},"4467":{"market_hash_name":"Boston 2018 Cache Souvenir Package"},"4468":{"market_hash_name":"Boston 2018 Train Souvenir Package"},"4469":{"market_hash_name":"Boston 2018 Nuke Souvenir Package"},"4470":{"market_hash_name":"Community Capsule 2018"},"4471":{"market_hash_name":"Clutch Case"},"4474":{"market_hash_name":"Boston 2018 Minor Challengers with Flash Gaming (Holo-Foil)"},"4475":{"market_hash_name":"Boston 2018 Minor Challengers with Flash Gaming Autograph Capsule"},"4477":{"market_hash_name":"Chicken Capsule"},"4478":{"market_hash_name":"Boston 2018 Attending Legends (Holo-Foil)"},"4479":{"market_hash_name":"Boston 2018 Attending Legends Autograph Capsule"},"4481":{"market_hash_name":"Collectible Pins Capsule Series 3"},"4482":{"market_hash_name":"Horizon Case"},"4533":{"market_hash_name":"London 2018 Legends (Holo-Foil)"},"4534":{"market_hash_name":"London 2018 Returning Challengers (Holo-Foil)"},"4535":{"market_hash_name":"London 2018 Minor Challengers (Holo-Foil)"},"4536":{"market_hash_name":"London 2018 Legends Autograph Capsule"},"4537":{"market_hash_name":"London 2018 Returning Challengers Autograph Capsule"},"4538":{"market_hash_name":"London 2018 Minor Challengers Autograph Capsule"},"4540":{"market_hash_name":"London 2018 Inferno Souvenir Package"},"4541":{"market_hash_name":"London 2018 Mirage Souvenir Package"},"4542":{"market_hash_name":"London 2018 Dust II Souvenir Package"},"4543":{"market_hash_name":"London 2018 Overpass Souvenir Package"},"4544":{"market_hash_name":"London 2018 Cache Souvenir Package"},"4545":{"market_hash_name":"London 2018 Train Souvenir Package"},"4546":{"market_hash_name":"London 2018 Nuke Souvenir Package"},"4547":{"market_hash_name":"Skill Groups Capsule"},"4548":{"market_hash_name":"Danger Zone Case"},"4584":{"market_hash_name":"Katowice 2019 Legends (Holo-Foil)"},"4585":{"market_hash_name":"Katowice 2019 Returning Challengers (Holo-Foil)"},"4586":{"market_hash_name":"Katowice 2019 Minor Challengers (Holo-Foil)"},"4587":{"market_hash_name":"Katowice 2019 Legends Autograph Capsule"},"4588":{"market_hash_name":"Katowice 2019 Returning Challengers Autograph Capsule"},"4589":{"market_hash_name":"Katowice 2019 Minor Challengers Autograph Capsule"},"4590":{"market_hash_name":"Katowice 2019 Inferno Souvenir Package"},"4591":{"market_hash_name":"Katowice 2019 Mirage Souvenir Package"},"4592":{"market_hash_name":"Katowice 2019 Dust II Souvenir Package"},"4593":{"market_hash_name":"Katowice 2019 Overpass Souvenir Package"},"4594":{"market_hash_name":"Katowice 2019 Cache Souvenir Package"},"4595":{"market_hash_name":"Katowice 2019 Train Souvenir Package"},"4596":{"market_hash_name":"Katowice 2019 Nuke Souvenir Package"},"4597":{"market_hash_name":"Halo Capsule"},"4598":{"market_hash_name":"Prisma Case"},"4599":{"market_hash_name":"Feral Predators Capsule"},"4610":{"market_hash_name":"CS:GO Patch Pack"},"4615":{"market_hash_name":"Half-Life: Alyx Patch Pack"},"4616":{"market_hash_name":"Warhammer 40,000 Sticker Capsule"},"4620":{"market_hash_name":"Shattered Web Case"},"4654":{"market_hash_name":"Berlin 2019 Legends (Holo-Foil)"},"4655":{"market_hash_name":"Berlin 2019 Returning Challengers (Holo-Foil)"},"4656":{"market_hash_name":"Berlin 2019 Minor Challengers (Holo-Foil)"},"4657":{"market_hash_name":"Berlin 2019 Legends Autograph Capsule"},"4658":{"market_hash_name":"Berlin 2019 Returning Challengers Autograph Capsule"},"4659":{"market_hash_name":"Berlin 2019 Minor Challengers Autograph Capsule"},"4660":{"market_hash_name":"Berlin 2019 Inferno Souvenir Package"},"4661":{"market_hash_name":"Berlin 2019 Mirage Souvenir Package"},"4662":{"market_hash_name":"Berlin 2019 Dust II Souvenir Package"},"4663":{"market_hash_name":"Berlin 2019 Overpass Souvenir Package"},"4664":{"market_hash_name":"Berlin 2019 Train Souvenir Package"},"4665":{"market_hash_name":"Berlin 2019 Nuke Souvenir Package"},"4666":{"market_hash_name":"Berlin 2019 Vertigo Souvenir Package"},"4668":{"market_hash_name":"X-Ray P250 Package"},"4669":{"market_hash_name":"CS20 Case"},"4670":{"market_hash_name":"CS20 Sticker Capsule"},"4693":{"market_hash_name":"Half-Life: Alyx Collectible Pins Capsule"},"4694":{"market_hash_name":"Half-Life: Alyx Sticker Capsule"},"4695":{"market_hash_name":"Prisma 2 Case"},"4696":{"market_hash_name":"Masterminds Music Kit Box"},"4697":{"market_hash_name":"StatTrak™ Masterminds Music Kit Box"},"4698":{"market_hash_name":"Fracture Case"},"4717":{"market_hash_name":"Operation Broken Fang Case"},"4743":{"market_hash_name":"2020 RMR Legends"},"4744":{"market_hash_name":"2020 RMR Challengers"},"4745":{"market_hash_name":"2020 RMR Contenders"},"4746":{"market_hash_name":"Poorly Drawn Capsule"},"4747":{"market_hash_name":"Snakebite Case"},"4754":{"market_hash_name":"Tacticians Music Kit Box"},"4755":{"market_hash_name":"StatTrak™ Tacticians Music Kit Box"},"4782":{"market_hash_name":"2021 Community Sticker Capsule"},"4784":{"market_hash_name":"The Boardroom Sticker Capsule"},"4789":{"market_hash_name":"Battlefield 2042 Sticker Capsule"},"4790":{"market_hash_name":"Operation Riptide Case"},"4803":{"market_hash_name":"Stockholm 2021 Legends Sticker Capsule"},"4804":{"market_hash_name":"Stockholm 2021 Challengers Sticker Capsule"},"4805":{"market_hash_name":"Stockholm 2021 Contenders Sticker Capsule"},"4806":{"market_hash_name":"Stockholm 2021 Legends Patch Pack"},"4807":{"market_hash_name":"Stockholm 2021 Challengers Patch Pack"},"4808":{"market_hash_name":"Stockholm 2021 Contenders Patch Pack"},"4809":{"market_hash_name":"Stockholm 2021 Inferno Souvenir Package"},"4810":{"market_hash_name":"Stockholm 2021 Mirage Souvenir Package"},"4811":{"market_hash_name":"Stockholm 2021 Dust II Souvenir Package"},"4812":{"market_hash_name":"Stockholm 2021 Overpass Souvenir Package"},"4813":{"market_hash_name":"Stockholm 2021 Ancient Souvenir Package"},"4814":{"market_hash_name":"Stockholm 2021 Nuke Souvenir Package"},"4815":{"market_hash_name":"Stockholm 2021 Vertigo Souvenir Package"},"4816":{"market_hash_name":"Stockholm 2021 Champions Autograph Capsule"},"4817":{"market_hash_name":"Stockholm 2021 Finalists Autograph Capsule"},"4818":{"market_hash_name":"Dreams \u0026 Nightmares Case"},"4832":{"market_hash_name":"Antwerp 2022 Legends Sticker Capsule"},"4833":{"market_hash_name":"Antwerp 2022 Challengers Sticker Capsule"},"4834":{"market_hash_name":"Antwerp 2022 Contenders Sticker Capsule"},"4835":{"market_hash_name":"Antwerp 2022 Inferno Souvenir Package"},"4836":{"market_hash_name":"Antwerp 2022 Mirage Souvenir Package"},"4837":{"market_hash_name":"Antwerp 2022 Dust II Souvenir Package"},"4838":{"market_hash_name":"Antwerp 2022 Overpass Souvenir Package"},"4839":{"market_hash_name":"Antwerp 2022 Ancient Souvenir Package"},"4840":{"market_hash_name":"Antwerp 2022 Nuke Souvenir Package"},"4841":{"market_hash_name":"Antwerp 2022 Vertigo Souvenir Package"},"4842":{"market_hash_name":"Antwerp 2022 Legends Autograph Capsule"},"4843":{"market_hash_name":"Antwerp 2022 Challengers Autograph Capsule"},"4844":{"market_hash_name":"Antwerp 2022 Contenders Autograph Capsule"},"4845":{"market_hash_name":"Antwerp 2022 Champions Autograph Capsule"},"4846":{"market_hash_name":"Recoil Case"},"4847":{"market_hash_name":"10 Year Birthday Sticker Capsule"},"4848":{"market_hash_name":"Initiators Music Kit Box"},"4849":{"market_hash_name":"StatTrak™ Initiators Music Kit Box"},"4857":{"market_hash_name":"Rio 2022 Legends Sticker Capsule"},"4858":{"market_hash_name":"Rio 2022 Challengers Sticker Capsule"},"4859":{"market_hash_name":"Rio 2022 Contenders Sticker Capsule"},"4860":{"market_hash_name":"Rio 2022 Inferno Souvenir Package"},"4861":{"market_hash_name":"Rio 2022 Mirage Souvenir Package"},"4862":{"market_hash_name":"Rio 2022 Dust II Souvenir Package"},"4863":{"market_hash_name":"Rio 2022 Overpass Souvenir Package"},"4864":{"market_hash_name":"Rio 2022 Ancient Souvenir Package"},"4865":{"market_hash_name":"Rio 2022 Nuke Souvenir Package"},"4866":{"market_hash_name":"Rio 2022 Vertigo Souvenir Package"},"4867":{"market_hash_name":"Rio 2022 Legends Autograph Capsule"},"4868":{"market_hash_name":"Rio 2022 Challengers Autograph Capsule"},"4869":{"market_hash_name":"Rio 2022 Contenders Autograph Capsule"},"4870":{"market_hash_name":"Rio 2022 Champions Autograph Capsule"},"4879":{"market_hash_name":"Espionage Sticker Capsule"},"4880":{"market_hash_name":"Revolution Case"},"4882":{"market_hash_name":"Anubis Collection Package"},"4890":{"market_hash_name":"Paris 2023 Legends Sticker Capsule"},"4891":{"market_hash_name":"Paris 2023 Challengers Sticker Capsule"},"4892":{"market_hash_name":"Paris 2023 Contenders Sticker Capsule"},"4893":{"market_hash_name":"Paris 2023 Inferno Souvenir Package"},"4894":{"market_hash_name":"Paris 2023 Mirage Souvenir Package"},"4895":{"market_hash_name":"Paris 2023 Anubis Souvenir Package"},"4896":{"market_hash_name":"Paris 2023 Overpass Souvenir Package"},"4897":{"market_hash_name":"Paris 2023 Ancient Souvenir Package"},"4898":{"market_hash_name":"Paris 2023 Nuke Souvenir Package"},"4899":{"market_hash_name":"Paris 2023 Vertigo Souvenir Package"},"4900":{"market_hash_name":"Paris 2023 Legends Autograph Capsule"},"4901":{"market_hash_name":"Paris 2023 Challengers Autograph Capsule"},"4902":{"market_hash_name":"Paris 2023 Contenders Autograph Capsule"},"4903":{"market_hash_name":"Paris 2023 Champions Autograph Capsule"},"4904":{"market_hash_name":"Kilowatt Case"},"4905":{"market_hash_name":"Ambush Sticker Capsule"},"4914":{"market_hash_name":"NIGHTMODE Music Kit Box"},"4915":{"market_hash_name":"StatTrak™ NIGHTMODE Music Kit Box"},"4923":{"market_hash_name":"Copenhagen 2024 Legends Sticker Capsule"},"4924":{"market_hash_name":"Copenhagen 2024 Challengers Sticker Capsule"},"4925":{"market_hash_name":"Copenhagen 2024 Contenders Sticker Capsule"},"4926":{"market_hash_name":"Copenhagen 2024 Inferno Souvenir Package"},"4927":{"market_hash_name":"Copenhagen 2024 Mirage Souvenir Package"},"4928":{"market_hash_name":"Copenhagen 2024 Anubis Souvenir Package"},"4929":{"market_hash_name":"Copenhagen 2024 Overpass Souvenir Package"},"4930":{"market_hash_name":"Copenhagen 2024 Ancient Souvenir Package"},"4931":{"market_hash_name":"Copenhagen 2024 Nuke Souvenir Package"},"4932":{"market_hash_name":"Copenhagen 2024 Vertigo Souvenir Package"},"4937":{"market_hash_name":"Copenhagen 2024 Legends Autograph Capsule"},"4938":{"market_hash_name":"Copenhagen 2024 Challengers Autograph Capsule"},"4939":{"market_hash_name":"Copenhagen 2024 Contenders Autograph Capsule"},"4940":{"market_hash_name":"Copenhagen 2024 Champions Autograph Capsule"},"4946":{"market_hash_name":"Masterminds 2 Music Kit Box"},"4947":{"market_hash_name":"StatTrak™ Masterminds 2 Music Kit Box"},"4964":{"market_hash_name":"Shanghai 2024 Legends Sticker Capsule"},"4965":{"market_hash_name":"Shanghai 2024 Challengers Sticker Capsule"},"4966":{"market_hash_name":"Shanghai 2024 Contenders Sticker Capsule"},"4967":{"market_hash_name":"Shanghai 2024 Inferno Souvenir Package"},"4968":{"market_hash_name":"Shanghai 2024 Mirage Souvenir Package"},"4969":{"market_hash_name":"Shanghai 2024 Anubis Souvenir Package"},"4970":{"market_hash_name":"Shanghai 2024 Dust II Souvenir Package"},"4971":{"market_hash_name":"Shanghai 2024 Ancient Souvenir Package"},"4972":{"market_hash_name":"Shanghai 2024 Nuke Souvenir Package"},"4973":{"market_hash_name":"Shanghai 2024 Vertigo Souvenir Package"},"4978":{"market_hash_name":"Shanghai 2024 Legends Autograph Capsule"},"4979":{"market_hash_name":"Shanghai 2024 Challengers Autograph Capsule"},"4980":{"market_hash_name":"Shanghai 2024 Contenders Autograph Capsule"},"4981":{"market_hash_name":"Shanghai 2024 Champions Autograph Capsule"},"5117":{"market_hash_name":"Austin 2025 Legends Sticker Capsule"},"5118":{"market_hash_name":"Austin 2025 Challengers Sticker Capsule"},"5119":{"market_hash_name":"Austin 2025 Contenders Sticker Capsule"},"5120":{"market_hash_name":"Austin 2025 Inferno Souvenir Package","highlight_market_hash_name":"Austin 2025 Inferno Souvenir Highlight Package"},"5121":{"market_hash_name":"Austin 2025 Mirage Souvenir Package","highlight_market_hash_name":"Austin 2025 Mirage Souvenir Highlight Package"},"5122":{"market_hash_name":"Austin 2025 Anubis Souvenir Package","highlight_market_hash_name":"Austin 2025 Anubis Souvenir Highlight Package"},"5123":{"market_hash_name":"Austin 2025 Dust II Souvenir Package","highlight_market_hash_name":"Austin 2025 Dust II Souvenir Highlight Package"},"5124":{"market_hash_name":"Austin 2025 Ancient Souvenir Package","highlight_market_hash_name":"Austin 2025 Ancient Souvenir Highlight Package"},"5125":{"market_hash_name":"Austin 2025 Nuke Souvenir Package","highlight_market_hash_name":"Austin 2025 Nuke Souvenir Highlight Package"},"5126":{"market_hash_name":"Austin 2025 Train Souvenir Package","highlight_market_hash_name":"Austin 2025 Train Souvenir Highlight Package"},"5131":{"market_hash_name":"Austin 2025 Legends Autograph Capsule"},"5132":{"market_hash_name":"Austin 2025 Challengers Autograph Capsule"},"5133":{"market_hash_name":"Austin 2025 Contenders Autograph Capsule"},"5134":{"market_hash_name":"Austin 2025 Champions Autograph Capsule"},"5176":{"market_hash_name":"Sealed Genesis Terminal"},"5181":{"market_hash_name":"Sealed Dead Hand Terminal"},"5216":{"market_hash_name":"Budapest 2025 Legends Sticker Capsule"},"5217":{"market_hash_name":"Budapest 2025 Challengers Sticker Capsule"},"5218":{"market_hash_name":"Budapest 2025 Contenders Sticker Capsule"},"5219":{"market_hash_name":"Budapest 2025 Inferno Souvenir Package","highlight_market_hash_name":"Budapest 2025 Inferno Souvenir Highlight Package"},"5220":{"market_hash_name":"Budapest 2025 Mirage Souvenir Package","highlight_market_hash_name":"Budapest 2025 Mirage Souvenir Highlight Package"},"5221":{"market_hash_name":"Budapest 2025 Overpass Souvenir Package","highlight_market_hash_name":"Budapest 2025 Overpass Souvenir Highlight Package"},"5222":{"market_hash_name":"Budapest 2025 Dust II Souvenir Package","highlight_market_hash_name":"Budapest 2025 Dust II Souvenir Highlight Package"},"5223":{"market_hash_name":"Budapest 2025 Ancient Souvenir Package","highlight_market_hash_name":"Budapest 2025 Ancient Souvenir Highlight Package"},"5224":{"market_hash_name":"Budapest 2025 Nuke Souvenir Package","highlight_market_hash_name":"Budapest 2025 Nuke Souvenir Highlight Package"},"5225":{"market_hash_name":"Budapest 2025 Train Souvenir Package","highlight_market_hash_name":"Budapest 2025 Train Souvenir Highlight Package"},"5230":{"market_hash_name":"Budapest 2025 Legends Autograph Capsule"},"5231":{"market_hash_name":"Budapest 2025 Challengers Autograph Capsule"},"5232":{"market_hash_name":"Budapest 2025 Contenders Autograph Capsule"},"5233":{"market_hash_name":"Budapest 2025 Champions Autograph Capsule"},"5316":{"market_hash_name":"Cologne 2026 Sticker Capsule"},"5317":{"market_hash_name":"Cologne 2026 Team Sticker Capsule"},"5318":{"market_hash_name":"Cologne 2026 Autograph Capsule"},"7003":{"market_hash_name":"Gallery Case"},"7007":{"market_hash_name":"Fever Case"},"7011":{"market_hash_name":"Warhammer 40,000 Traitor Astartes Sticker Capsule"},"7013":{"market_hash_name":"Warhammer 40,000 Adeptus Astartes Sticker Capsule"},"7015":{"market_hash_name":"Warhammer 40,000 Imperium Sticker Capsule"},"7017":{"market_hash_name":"Warhammer 40,000 Xenos Sticker Capsule"},"7019":{"market_hash_name":"Deluge Music Kit Box"},"7021":{"market_hash_name":"StatTrak™ Deluge Music Kit Box"}},"agents":{"4613":{"market_hash_name":"Bloody Darryl The Strapped | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWlKAhtLhqHXDilxgm4z7dztesJH2SbgApCMchFrQNsRSxw4XhYeK0swbYlcsbmucxTysR","rarity":5,"price":3397,"faction":"t"},"4619":{"market_hash_name":"'Blueberries' Buckshot | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPrdXWLElL5ytbBsTXrqzUxzsWmHzN-gI3-TbwQmC5pzQLELsUbrx9bmP_SiuVJe8Pfo4Q","rarity":4,"price":1625,"faction":"ct"},"4680":{"market_hash_name":"'Two Times' McCoy | TACP Cavalry","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPzdCGbJxb1zs-JvGCrql0h3tm7cyov_JS-XblImDcAhQe8OtBK4k4bgZPSiuVIHzmbjrQ","rarity":5,"price":823,"faction":"ct"},"4711":{"market_hash_name":"Cmdr. Mae 'Dead Cold' Jamison | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSWQDGVlbx34-Q8HC3nk012tWzTzY79JHiQOgYpW8B3EeYN40HtxtzlNuz8p1uJLMIs6sE","rarity":6,"price":2166,"faction":"ct"},"4712":{"market_hash_name":"1st Lieutenant Farlow | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSVQGLFx7h0tbU6GHG1lERz62WEm9j6cimebgB0WZd4Ee4Ks0a-lNbjZrj8p1uJLRQDiME","rarity":5,"price":982,"faction":"ct"},"4713":{"market_hash_name":"John 'Van Healen' Kask | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSUQDLIle0jtOM-SXm2xBkjsW_dyImhc3iWOgcmAsR0TLVe4BjrkIWzN-P8p1uJ4p5BSY8","rarity":4,"price":1264,"faction":"ct"},"4714":{"market_hash_name":"Bio-Haz Specialist | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSbQDPGkO0i4bE4THq1xRh3sjuEz9muJX7EZlIiC8RyQbIPsBPtk9fmNrj8p1uJwRLd8H0","rarity":3,"price":1157,"faction":"ct"},"4715":{"market_hash_name":"Sergeant Bombson | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSaQD6Umbp15-RtHX21kxl-sG-Gy9f6ci2XPA8lDMAiTbJc5BfuwNXgYbn8p1uJ3rbO8bk","rarity":4,"price":1399,"faction":"ct"},"4716":{"market_hash_name":"Chem-Haz Specialist | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSZQGKRmOpyseJsF3rkzR4ht2_TwtugcH7DbAQgW5VyFLIDuxnqmtPiNb78p1uJZinYneA","rarity":3,"price":1133,"faction":"ct"},"4718":{"market_hash_name":"Rezan the Redshirt | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBSnClrkg5eBoGSvikU915G_dyo2vcimTOFAoX8cmR7MDsBS_m4G2Zui2-UWA3FkeyBmz","rarity":5,"price":802,"faction":"t"},"4726":{"market_hash_name":"Sir Bloody Miami Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWj-gn47Q-GH7qxkhwsWjWyN6pJynGZld0CJR3QOdbtRa4lIGxY7_g7wfAy9USZdxTISw","rarity":6,"price":9320,"faction":"t"},"4727":{"market_hash_name":"Safecracker Voltzmann | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WXj7536LVoFivmkEghsWXQmd37IniRPwUoCMFwEeAItxCwkdXvNr624wXAy9USEc8H9qQ","rarity":5,"price":1919,"faction":"t"},"4728":{"market_hash_name":"Little Kev | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WYj74g6LVvGyznlB8itm7XyY2od3LBOA4jWcByEe4J40S_kYfmYurm41fAy9USidzQq1U","rarity":4,"price":3240,"faction":"t"},"4730":{"market_hash_name":"Getaway Sally | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3Waj-0h4LM5H3jjzR9-4zmHzIuucXOWaAEkCsR5FrFcsEG5wNGzNeng71TAy9UScc7Ksy8","rarity":4,"price":7474,"faction":"t"},"4732":{"market_hash_name":"Number K | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WZj7wuseM-GnG2lh4h5m2EmderdX7DaA9zW8N2QuBbtBG-mty2N-i0tADAy9USaSI87As","rarity":5,"price":4947,"faction":"t"},"4733":{"market_hash_name":"Sir Bloody Silent Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWkKAv5OVoGyjilkR14mzcmdz4JHiXaQQiDZAkTO5euxW-loC1Zbm25wSPlcsbmmtPiU71","rarity":6,"price":3556,"faction":"t"},"4734":{"market_hash_name":"Sir Bloody Skullhead Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWk6Ajs7FtHni2lh5_smmDnNj8I3yVOFJyW5J5FLRYtxO6l9GxZu7h4AeIlcsbmjPHDP8B","rarity":6,"price":3684,"faction":"t"},"4735":{"market_hash_name":"Sir Bloody Darryl Royale | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWkqAg6ec5THznk05-4jvXntz7JHjBOwYkDZAhQrZfskXuw9HiN-m3tAfclcsbmmRuIYiQ","rarity":6,"price":4495,"faction":"t"},"4736":{"market_hash_name":"Sir Bloody Loudmouth Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWlaAlsrk9G3C1xkl-5T_Vyo6odSmWPFRzC5FyEONfuhK9lYG2Nem04gPclcsbmsgBcrK7","rarity":6,"price":5885,"faction":"t"},"4749":{"market_hash_name":"Sous-Lieutenant Medic | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBisa9qTnjhxBwk5D-Ano79cXnGbgYmDJJ2FO4MtxK-l9HnZb_h5Qba3d5N02yg2UOShGfb","rarity":4,"price":1523,"faction":"ct"},"4750":{"market_hash_name":"Chem-Haz Capitaine | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBisq9tGnnhkxt0sTjcwtyrcnqXO1AgDZJyQbEMsxbqwIayZrnhswHfg4gU02yg2bd7mpZ0","rarity":5,"price":2213,"faction":"ct"},"4751":{"market_hash_name":"Chef d'Escadron Rouchard | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBis69vSijgx01-4WvUytireS2SalVyDpoiR-MN4Rfsw4HnMem2tgbc3d5B02yg2bQY5H89","rarity":6,"price":2191,"faction":"ct"},"4752":{"market_hash_name":"Aspirant | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBitK8-HH22w0Ul42mAw4r_eSnBPQB0DZp0FOBY4RPsw4a2PrzhtgDdjt5D02yg2f2sw1lc","rarity":3,"price":1549,"faction":"ct"},"4753":{"market_hash_name":"Officer Jacques Beltram | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBita87GCuxzBwl5jjVyNyveXvCbgQhCsN3EOACsBOwktGyYrnn5FOI3okT02yg2Q7tnUpK","rarity":4,"price":1837,"faction":"ct"},"4756":{"market_hash_name":"Lieutenant 'Tree Hugger' Farlow | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSYQDDAk75w4bU7FivkkBsj52vWz9f8cCqTbVN0W5R1ELJYukWxkdXmZOr8p1uJJ_LT_Tg","rarity":4,"price":2057,"faction":"ct"},"4757":{"market_hash_name":"Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nk9DRe_c24abZkIf6HDymVwLhz4rJsHH6xzEQk5zyDydaudi6XZwJxDJUkRrIItULpw4W1Ybvk-UWA3FCleMc7","rarity":6,"price":4647,"faction":"ct"},"4771":{"market_hash_name":"Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nk9DRe_c24abZkIf6HDCmSkrh35uRvHXG1lkp_6zjUzY2gcimRP1N2XJJxTOYKuhDsxNC2YePi-UWA3IGWyCLX","rarity":6,"price":4407,"faction":"ct"},"4772":{"market_hash_name":"Lieutenant Rex Krikey | SEAL Frogman","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nk9DRe_c24abZkIf6HDSmUxbd05bIxH3vqzRgj4GXTm4qtJXPGbg8oXpt2QeVYs0TpkdDmMuPq-UWA3P4QMOVd","rarity":5,"price":2886,"faction":"ct"},"4773":{"market_hash_name":"Elite Trapper Solman | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOAnSSjqwkUi5W-ByYz4cnyVZlIgDJciQu8LsxXumta0Nrjh4gTf2NpGnzK-0H1TOhLF6Q","rarity":5,"price":3504,"faction":"t"},"4774":{"market_hash_name":"Crasswater The Forgotten | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOMnTH-3kU8m5D6Gz4qodX2SbAdxCJUlROAD5kS7w4WyYuyz4QOMj94QmzK-0H2dcvV-Fg","rarity":6,"price":2511,"faction":"t"},"4775":{"market_hash_name":"Arno The Overgrown | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOInTSrkwRlx6z7Xwtn9In6eZwQnDsd5TOYDsxi9xNe2N7-0slHe2NlDmzK-0H38E8rQtQ","rarity":5,"price":2134,"faction":"t"},"4776":{"market_hash_name":"Col. Mangos Dabisi | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOUnSXy3w0gjt2rVy42rcirFO1UgDpElTOYDtRexxtS1Ybmw4gzb3YlAyjK-0H0x0ZHEbw","rarity":4,"price":2940,"faction":"t"},"4777":{"market_hash_name":"Vypa Sista of the Revolution | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOQnGH3rzRt_4miDmNb8dinBPwF2ApJ2FuRe5hW4xNfjZbzk5gDajI8QzTK-0H0XsiWpag","rarity":6,"price":4405,"faction":"t"},"4778":{"market_hash_name":"Trapper Aggressor | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOcnS3u1xEp042mAz9n_IinBPQckCpAkR7UC40TtltKxMu3h4gWLjI9AzzK-0H3_4J31MA","rarity":3,"price":2494,"faction":"t"},"4780":{"market_hash_name":"'Medium Rare' Crasswater | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOM7AXGwwBxz5G2Gy9qqdy_GaARyDcF2FrUK50LuwICzM-3i4wzZj4NFyn_gznQeAuFLUp4","rarity":6,"price":2796,"faction":"t"},"4781":{"market_hash_name":"Trapper | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOc7ASi2zRwj5TuEz9yreHLBbAInW5YlEbQNsxCxkdXgNe-25gTaj9lNznngznQecRJv7X0","rarity":4,"price":2929,"faction":"t"},"5105":{"market_hash_name":"Ground Rebel | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPfdVmHAxOgj4uNtGyqxxRki52jSyoqseHiRalRyWcdzE-APuxK8xNbmYvSiuVLQnSKAnQ","rarity":3,"price":957,"faction":"t"},"5106":{"market_hash_name":"Osiris | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPjdDDXEk7p35uAxTHDqxRh25DuDzI2sdC7BOwZ1W5BwRe4O4BfsktKxZPSiuVIisGC3vg","rarity":4,"price":861,"faction":"t"},"5107":{"market_hash_name":"Prof. Shahmat | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPndCDCTk74k4LA5GX_mxR4mtWSDmYz9cy6ROAQoCMB1E-AK5BG9wNziNPSiuVKTaodKjw","rarity":5,"price":791,"faction":"t"},"5108":{"market_hash_name":"The Elite Mr. Muhlik | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPbdDTORmbsl5LQ-F3DlwE1y6jnWytqucnmfawMmWJEkFuQJskKwmoexM_SiuVLDZa0BGw","rarity":6,"price":1083,"faction":"t"},"5109":{"market_hash_name":"Jungle Rebel | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPrdWDWRlrch5LU6H3-wzEoj5Dncn9evcXuTOAZyW5p4QuJc50TqwdPlPvSiuVKlREwxsg","rarity":3,"price":2890,"faction":"t"},"5205":{"market_hash_name":"Soldier | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGm_elrd05uUwSn-wxB5_52zRyd39cHuWOgEmW5R3QbQM5xi4mtayMunq5hue1dxmxRjA3w","rarity":3,"price":558,"faction":"t"},"5206":{"market_hash_name":"Enforcer | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGmHexbZ3tLM9G3jhzRt-5WqEydaqdS-QPAMjX8NxFLRY5hftx9XkNOm35xue1dyPr1iSWw","rarity":3,"price":604,"faction":"t"},"5207":{"market_hash_name":"Slingshot | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGmDelb8n4LAwHHqxxU8jtjndztf7dC_EOFQnCpV3QrUCshG4wYHjNeu25hue1dzy4v_RuA","rarity":4,"price":808,"faction":"t"},"5208":{"market_hash_name":"Street Soldier | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGm7ex78n4LU_GSrmzBxx4Dncntn_InmWPwcmCccjTO8L50awwdC2N-uwsxue1dwGHFtFrw","rarity":3,"price":2508,"faction":"t"},"5305":{"market_hash_name":"Operator | FBI SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPbdCjfAkbcl5LM6S3jkxUsj42TQzdf7JH_Caw5zDMMlEOAIt0Hqk9bmY_SiuVKnm4HYYQ","rarity":3,"price":971,"faction":"ct"},"5306":{"market_hash_name":"Markus Delrow | FBI HRT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPfdWT7Dx7dy5OJtGnDhkE5xtj6Hyd6veXjEbVUnW8YiRrVeuhTtk4fvY_SiuVKEkIDFLQ","rarity":4,"price":839,"faction":"ct"},"5307":{"market_hash_name":"Michael Syfers | FBI Sniper","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPjdXjWRkegi57FoHyrglkh-62ndz4yrIimfOFRxCZQmQeQOsEK9wNfnYvSiuVJ9Bmql3Q","rarity":5,"price":1216,"faction":"ct"},"5308":{"market_hash_name":"Special Agent Ava | FBI","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPLdXz6TkLdw5LY4Hnmwl0wktj7dn4r9I3OWPFApC5F1QeAO5xi4lIDiM_SiuVKk3V4ZcQ","rarity":6,"price":1974,"faction":"ct"},"5400":{"market_hash_name":"3rd Commando Company | KSK","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPvdWTbJwOsm4rI4GnDjx0t3sWWHw934IH_BO1UnWZd1EO8K5kK4l4fgMvSiuVLu5GcAvQ","rarity":3,"price":1189,"faction":"ct"},"5401":{"market_hash_name":"Seal Team 6 Soldier | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPXdXDHBxLZz4bI-Fn-yxhwhsjyDyNepcSjEbgQmApclFOMNthbslNKyPvSiuVLpMkmXWg","rarity":3,"price":1025,"faction":"ct"},"5402":{"market_hash_name":"Buckshot | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPfdCzfBx7gl5LQ-GnrkkR4l4DyDzIv8cnKXaQ4jXsQjEOcJ4RHuxNTuMPSiuVIYxifJkQ","rarity":4,"price":673,"faction":"ct"},"5403":{"market_hash_name":"'Two Times' McCoy | USAF TACP","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNP3dDDLHl7kks7U4Gi2xkUoj42XXntypcHyQO1J0DsZzFuAJsBW4kNPlN_SiuVKK_o8s4A","rarity":5,"price":768,"faction":"ct"},"5404":{"market_hash_name":"Lt. Commander Ricksaw | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPndVz-Ul74hsbNoHi21kUly6mrQzNagcijBPQEnCsciTOdY4Rm6m4XvN_SiuVLIl2LQXw","rarity":6,"price":2200,"faction":"ct"},"5405":{"market_hash_name":"Primeiro Tenente | Brazilian 1st Battalion","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNP7dV2bFlesvtbM_Sn7gx010tTncmdn7ICqePQ4mWMB5EeALtRS7w4XuP_SiuVLSDPMGxQ","rarity":3,"price":8485,"faction":"ct"},"5500":{"market_hash_name":"Dragomir | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HCCnExbdz5uIxF3jiwUp1sD-Gyon6cniQb1dyWMQjTbQMs0G9w4KzZLi0-UWA3DCqT-14","rarity":4,"price":668,"faction":"t"},"5501":{"market_hash_name":"Maximus | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBynEl7wg5bc4Tnm1k0V34GSGntupdCnCbwEiW8ElTOMCsUTtm4XmNOng-UWA3F74ACBx","rarity":4,"price":691,"faction":"t"},"5502":{"market_hash_name":"Rezan The Ready | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HCSnCk79w47BqGSvjxEt3tjuDmYyocy2UbgRzXJIiEeULsRXqmtCxYrm2-UWA3FAo97Sl","rarity":5,"price":839,"faction":"t"},"5503":{"market_hash_name":"Blackwolf | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBCnIxLxw5uI9HXHklh4m4TjXw4qsIHPFOFByCMAmTbQJ4Ua4kdfhN7u3-UWA3G22ywJ7","rarity":5,"price":807,"faction":"t"},"5504":{"market_hash_name":"'The Doctor' Romanov | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBinGlu0k4bU7Givnk01352yByd_6IHLGZgElDpchEbNZtxewx9zhNr_m-UWA3HK9C48i","rarity":6,"price":1324,"faction":"t"},"5505":{"market_hash_name":"Dragomir | Sabre Footsoldier","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HAimWlb9w57hoGHrmlB9_4j-Gm439d3rCPAEiDZNwQrUD40K9m9GzNu-0-UWA3CLCQ0Kd","rarity":3,"price":925,"faction":"t"},"5601":{"market_hash_name":"B Squadron Officer | SAS","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz_DFk-fO8YaVjNPbdXmTGk-hw4rlvGSzjx0tz6jnWwo2odHnDblIjCcZwFu4NsBexkYexMvSiuVIb0S_y2g","rarity":3,"price":990,"faction":"ct"},"5602":{"market_hash_name":"D Squadron Officer | NZSAS","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz_DFk-fO8YaVjNPfdWDDDxeokseNoTX-1k0R-smSDz4qqcHieZlUhA5QkRuIMu0KwwdDmYfSiuVJoTILK3g","rarity":3,"price":7198,"faction":"ct"}},"custom_stickers":{"C10003":{"group":3,"name":"Sticker | 100 Thieves (Normal)","count":2},"C10011":{"group":3,"name":"Sticker | 100 Thieves (Foil)","count":2},"C10019":{"group":3,"name":"Sticker | 100 Thieves (Gold)","count":2},"C10027":{"group":3,"name":"Sticker | 100 Thieves (Holo)","count":2},"C10123":{"group":3,"name":"Sticker | Flash Gaming","count":4},"C10131":{"group":3,"name":"Sticker | Flash Gaming (Normal)","count":1},"C10139":{"group":3,"name":"Sticker | Flash Gaming (Foil)","count":1},"C10147":{"group":3,"name":"Sticker | Flash Gaming (Gold)","count":1},"C10155":{"group":3,"name":"Sticker | Flash Gaming (Holo)","count":1},"C10204271498":{"group":2,"name":"Sticker | coldzera","count":38},"C10204271506":{"group":2,"name":"Sticker | coldzera (Normal)","count":12},"C10204271514":{"group":2,"name":"Sticker | coldzera (Foil)","count":10},"C10204271522":{"group":2,"name":"Sticker | coldzera (Gold)","count":12},"C10204271530":{"group":2,"name":"Sticker | coldzera (Holo)","count":2},"C10204271538":{"group":2,"name":"Sticker | coldzera (Glitter)","count":2},"C10230901898":{"group":2,"name":"Sticker | speed4k","count":3},"C10230901906":{"group":2,"name":"Sticker | speed4k (Normal)","count":1},"C10230901914":{"group":2,"name":"Sticker | speed4k (Foil)","count":1},"C10230901922":{"group":2,"name":"Sticker | speed4k (Gold)","count":1},"C10251":{"group":3,"name":"Sticker | MIBR","count":32},"C10259":{"group":3,"name":"Sticker | MIBR (Normal)","count":8},"C10267":{"group":3,"name":"Sticker | MIBR (Foil)","count":5},"C10275":{"group":3,"name":"Sticker | MIBR (Gold)","count":8},"C10279868426":{"group":2,"name":"Sticker | sdy","count":14},"C10279868434":{"group":2,"name":"Sticker | sdy (Normal)","count":4},"C10279868442":{"group":2,"name":"Sticker | sdy (Foil)","count":2},"C10279868450":{"group":2,"name":"Sticker | sdy (Gold)","count":4},"C10279868458":{"group":2,"name":"Sticker | sdy (Holo)","count":2},"C10279868466":{"group":2,"name":"Sticker | sdy (Glitter)","count":2},"C10283":{"group":3,"name":"Sticker | MIBR (Holo)","count":8},"C10291":{"group":3,"name":"Sticker | MIBR (Glitter)","count":2},"C10299":{"group":3,"name":"Sticker | MIBR (Embroidered)","count":1},"C1033":{"group":1,"name":"Sticker | Cluj-Napoca 2015","count":291},"C10379":{"group":3,"name":"Sticker | Team Spirit","count":44},"C10387":{"group":3,"name":"Sticker | Team Spirit (Normal)","count":11},"C10387361930":{"group":2,"name":"Sticker | Dycha","count":16},"C10387361938":{"group":2,"name":"Sticker | Dycha (Normal)","count":4},"C10387361954":{"group":2,"name":"Sticker | Dycha (Gold)","count":4},"C10387361962":{"group":2,"name":"Sticker | Dycha (Holo)","count":4},"C10387361970":{"group":2,"name":"Sticker | Dycha (Glitter)","count":4},"C10395":{"group":3,"name":"Sticker | Team Spirit (Foil)","count":6},"C1039889290":{"group":2,"name":"Sticker | adamS","count":4},"C1039889298":{"group":2,"name":"Sticker | adamS (Normal)","count":1},"C1039889314":{"group":2,"name":"Sticker | adamS (Gold)","count":1},"C1039889322":{"group":2,"name":"Sticker | adamS (Holo)","count":1},"C1039889330":{"group":2,"name":"Sticker | adamS (Glitter)","count":1},"C10403":{"group":3,"name":"Sticker | Team Spirit (Gold)","count":11},"C1041":{"group":1,"name":"Sticker | Cluj-Napoca 2015 (Normal)","count":97},"C10411":{"group":3,"name":"Sticker | Team Spirit (Holo)","count":11},"C10419":{"group":3,"name":"Sticker | Team Spirit (Glitter)","count":4},"C10421459210":{"group":2,"name":"Sticker | NiKo","count":58},"C10421459218":{"group":2,"name":"Sticker | NiKo (Normal)","count":17},"C10421459226":{"group":2,"name":"Sticker | NiKo (Foil)","count":11},"C10421459234":{"group":2,"name":"Sticker | NiKo (Gold)","count":17},"C10421459242":{"group":2,"name":"Sticker | NiKo (Holo)","count":8},"C10421459250":{"group":2,"name":"Sticker | NiKo (Glitter)","count":4},"C10421459258":{"group":2,"name":"Sticker | NiKo (Embroidered)","count":1},"C10427":{"group":3,"name":"Sticker | Team Spirit (Embroidered)","count":1},"C10473764234":{"group":2,"name":"Sticker | LETN1","count":3},"C10473764242":{"group":2,"name":"Sticker | LETN1 (Normal)","count":1},"C10473764250":{"group":2,"name":"Sticker | LETN1 (Foil)","count":1},"C10473764258":{"group":2,"name":"Sticker | LETN1 (Gold)","count":1},"C1049":{"group":1,"name":"Sticker | Cluj-Napoca 2015 (Foil)","count":97},"C10507":{"group":3,"name":"Sticker | Rogue","count":4},"C10515":{"group":3,"name":"Sticker | Rogue (Normal)","count":1},"C10523":{"group":3,"name":"Sticker | Rogue (Foil)","count":1},"C10531":{"group":3,"name":"Sticker | Rogue (Gold)","count":1},"C10539":{"group":3,"name":"Sticker | Rogue (Holo)","count":1},"C105634314":{"group":2,"name":"Sticker | dimasick","count":3},"C105634322":{"group":2,"name":"Sticker | dimasick (Normal)","count":1},"C105634330":{"group":2,"name":"Sticker | dimasick (Foil)","count":1},"C105634338":{"group":2,"name":"Sticker | dimasick (Gold)","count":1},"C1057":{"group":1,"name":"Sticker | Cluj-Napoca 2015 (Gold)","count":97},"C10616409610":{"group":2,"name":"Sticker | ableJ","count":6},"C10616409618":{"group":2,"name":"Sticker | ableJ (Normal)","count":2},"C10616409626":{"group":2,"name":"Sticker | ableJ (Foil)","count":2},"C10616409634":{"group":2,"name":"Sticker | ableJ (Gold)","count":2},"C10635":{"group":3,"name":"Sticker | Winstrike Team","count":8},"C10643":{"group":3,"name":"Sticker | Winstrike Team (Normal)","count":2},"C10651":{"group":3,"name":"Sticker | Winstrike Team (Foil)","count":2},"C10659":{"group":3,"name":"Sticker | Winstrike Team (Gold)","count":2},"C10667":{"group":3,"name":"Sticker | Winstrike Team (Holo)","count":2},"C10688492042":{"group":2,"name":"Sticker | arT","count":37},"C10688492050":{"group":2,"name":"Sticker | arT (Normal)","count":10},"C10688492058":{"group":2,"name":"Sticker | arT (Foil)","count":4},"C10688492066":{"group":2,"name":"Sticker | arT (Gold)","count":10},"C10688492074":{"group":2,"name":"Sticker | arT (Holo)","count":8},"C10688492082":{"group":2,"name":"Sticker | arT (Glitter)","count":4},"C10688492090":{"group":2,"name":"Sticker | arT (Embroidered)","count":1},"C10704176138":{"group":2,"name":"Sticker | JUGi","count":6},"C10704176146":{"group":2,"name":"Sticker | JUGi (Normal)","count":2},"C10704176154":{"group":2,"name":"Sticker | JUGi (Foil)","count":2},"C10704176162":{"group":2,"name":"Sticker | JUGi (Gold)","count":2},"C10723760522":{"group":2,"name":"Sticker | electronic","count":45},"C10723760530":{"group":2,"name":"Sticker | electronic (Normal)","count":13},"C10723760538":{"group":2,"name":"Sticker | electronic (Foil)","count":7},"C10723760546":{"group":2,"name":"Sticker | electronic (Gold)","count":13},"C10723760554":{"group":2,"name":"Sticker | electronic (Holo)","count":7},"C10723760562":{"group":2,"name":"Sticker | electronic (Glitter)","count":5},"C10724135050":{"group":2,"name":"Sticker | almazer","count":3},"C10724135058":{"group":2,"name":"Sticker | almazer (Normal)","count":1},"C10724135066":{"group":2,"name":"Sticker | almazer (Foil)","count":1},"C10724135074":{"group":2,"name":"Sticker | almazer (Gold)","count":1},"C10733192714":{"group":2,"name":"Sticker | XANTARES","count":29},"C10733192722":{"group":2,"name":"Sticker | XANTARES (Normal)","count":8},"C10733192730":{"group":2,"name":"Sticker | XANTARES (Foil)","count":5},"C10733192738":{"group":2,"name":"Sticker | XANTARES (Gold)","count":8},"C10733192746":{"group":2,"name":"Sticker | XANTARES (Holo)","count":5},"C10733192754":{"group":2,"name":"Sticker | XANTARES (Glitter)","count":2},"C10733192762":{"group":2,"name":"Sticker | XANTARES (Embroidered)","count":1},"C107401522442":{"group":2,"name":"Sticker | degster","count":16},"C107401522450":{"group":2,"name":"Sticker | degster (Normal)","count":4},"C107401522466":{"group":2,"name":"Sticker | degster (Gold)","count":4},"C107401522474":{"group":2,"name":"Sticker | degster (Holo)","count":4},"C107401522482":{"group":2,"name":"Sticker | degster (Glitter)","count":4},"C107512811402":{"group":2,"name":"Sticker | noway","count":16},"C107512811410":{"group":2,"name":"Sticker | noway (Normal)","count":4},"C107512811418":{"group":2,"name":"Sticker | noway (Foil)","count":1},"C107512811426":{"group":2,"name":"Sticker | noway (Gold)","count":4},"C107512811434":{"group":2,"name":"Sticker | noway (Holo)","count":4},"C107512811442":{"group":2,"name":"Sticker | noway (Glitter)","count":2},"C107512811450":{"group":2,"name":"Sticker | noway (Embroidered)","count":1},"C107518438154":{"group":2,"name":"Sticker | jambo","count":8},"C107518438162":{"group":2,"name":"Sticker | jambo (Normal)","count":2},"C107518438178":{"group":2,"name":"Sticker | jambo (Gold)","count":2},"C107518438186":{"group":2,"name":"Sticker | jambo (Holo)","count":2},"C107518438194":{"group":2,"name":"Sticker | jambo (Glitter)","count":1},"C107518438202":{"group":2,"name":"Sticker | jambo (Embroidered)","count":1},"C10763":{"group":3,"name":"Sticker | ENCE","count":28},"C10771":{"group":3,"name":"Sticker | ENCE (Normal)","count":7},"C10779":{"group":3,"name":"Sticker | ENCE (Foil)","count":3},"C10787":{"group":3,"name":"Sticker | ENCE (Gold)","count":7},"C10795":{"group":3,"name":"Sticker | ENCE (Holo)","count":7},"C10803":{"group":3,"name":"Sticker | ENCE (Glitter)","count":4},"C10850821898":{"group":2,"name":"Sticker | EspiranTo","count":3},"C10850821906":{"group":2,"name":"Sticker | EspiranTo (Normal)","count":1},"C10850821914":{"group":2,"name":"Sticker | EspiranTo (Foil)","count":1},"C10850821922":{"group":2,"name":"Sticker | EspiranTo (Gold)","count":1},"C108697158154":{"group":2,"name":"Sticker | koala","count":4},"C108697158162":{"group":2,"name":"Sticker | koala (Normal)","count":1},"C108697158170":{"group":2,"name":"Sticker | koala (Foil)","count":1},"C108697158178":{"group":2,"name":"Sticker | koala (Gold)","count":1},"C108697158186":{"group":2,"name":"Sticker | koala (Holo)","count":1},"C10891":{"group":3,"name":"Sticker | FURIA","count":48},"C10896879754":{"group":2,"name":"Sticker | somebody","count":16},"C10896879762":{"group":2,"name":"Sticker | somebody (Normal)","count":5},"C10896879770":{"group":2,"name":"Sticker | somebody (Foil)","count":4},"C10896879778":{"group":2,"name":"Sticker | somebody (Gold)","count":5},"C10896879786":{"group":2,"name":"Sticker | somebody (Holo)","count":1},"C10896879794":{"group":2,"name":"Sticker | somebody (Glitter)","count":1},"C10899":{"group":3,"name":"Sticker | FURIA (Normal)","count":12},"C10901449738":{"group":2,"name":"Sticker | Ax1Le","count":23},"C10901449746":{"group":2,"name":"Sticker | Ax1Le (Normal)","count":6},"C10901449754":{"group":2,"name":"Sticker | Ax1Le (Foil)","count":1},"C10901449762":{"group":2,"name":"Sticker | Ax1Le (Gold)","count":6},"C10901449770":{"group":2,"name":"Sticker | Ax1Le (Holo)","count":6},"C10901449778":{"group":2,"name":"Sticker | Ax1Le (Glitter)","count":4},"C10907":{"group":3,"name":"Sticker | FURIA (Foil)","count":6},"C109087768970":{"group":2,"name":"Sticker | Wicadia","count":16},"C109087768978":{"group":2,"name":"Sticker | Wicadia (Normal)","count":4},"C109087768986":{"group":2,"name":"Sticker | Wicadia (Foil)","count":2},"C109087768994":{"group":2,"name":"Sticker | Wicadia (Gold)","count":4},"C109087769002":{"group":2,"name":"Sticker | Wicadia (Holo)","count":4},"C109087769010":{"group":2,"name":"Sticker | Wicadia (Glitter)","count":1},"C109087769018":{"group":2,"name":"Sticker | Wicadia (Embroidered)","count":1},"C10915":{"group":3,"name":"Sticker | FURIA (Gold)","count":12},"C10923":{"group":3,"name":"Sticker | FURIA (Holo)","count":12},"C10925866634":{"group":2,"name":"Sticker | Karsa","count":3},"C10925866642":{"group":2,"name":"Sticker | Karsa (Normal)","count":1},"C10925866650":{"group":2,"name":"Sticker | Karsa (Foil)","count":1},"C10925866658":{"group":2,"name":"Sticker | Karsa (Gold)","count":1},"C10931":{"group":3,"name":"Sticker | FURIA (Glitter)","count":5},"C10939":{"group":3,"name":"Sticker | FURIA (Embroidered)","count":1},"C10940229898":{"group":2,"name":"Sticker | Marek","count":4},"C10940229906":{"group":2,"name":"Sticker | Marek (Normal)","count":1},"C10940229922":{"group":2,"name":"Sticker | Marek (Gold)","count":1},"C10940229930":{"group":2,"name":"Sticker | Marek (Holo)","count":1},"C10940229946":{"group":2,"name":"Sticker | Marek (Embroidered)","count":1},"C10940676234":{"group":2,"name":"Sticker | Maka","count":12},"C10940676242":{"group":2,"name":"Sticker | Maka (Normal)","count":3},"C10940676250":{"group":2,"name":"Sticker | Maka (Foil)","count":1},"C10940676258":{"group":2,"name":"Sticker | Maka (Gold)","count":3},"C10940676266":{"group":2,"name":"Sticker | Maka (Holo)","count":3},"C10940676274":{"group":2,"name":"Sticker | Maka (Glitter)","count":1},"C10940676282":{"group":2,"name":"Sticker | Maka (Embroidered)","count":1},"C10961041418":{"group":2,"name":"Sticker | chopper","count":40},"C10961041426":{"group":2,"name":"Sticker | chopper (Normal)","count":11},"C10961041434":{"group":2,"name":"Sticker | chopper (Foil)","count":5},"C10961041442":{"group":2,"name":"Sticker | chopper (Gold)","count":11},"C10961041450":{"group":2,"name":"Sticker | chopper (Holo)","count":7},"C10961041458":{"group":2,"name":"Sticker | chopper (Glitter)","count":5},"C10961041466":{"group":2,"name":"Sticker | chopper (Embroidered)","count":1},"C109627606154":{"group":2,"name":"Sticker | EmiliaQAQ","count":16},"C109627606162":{"group":2,"name":"Sticker | EmiliaQAQ (Normal)","count":4},"C109627606170":{"group":2,"name":"Sticker | EmiliaQAQ (Foil)","count":2},"C109627606178":{"group":2,"name":"Sticker | EmiliaQAQ (Gold)","count":4},"C109627606186":{"group":2,"name":"Sticker | EmiliaQAQ (Holo)","count":4},"C109627606194":{"group":2,"name":"Sticker | EmiliaQAQ (Glitter)","count":1},"C109627606202":{"group":2,"name":"Sticker | EmiliaQAQ (Embroidered)","count":1},"C11008386058":{"group":2,"name":"Sticker | ShahZaM","count":12},"C11008386066":{"group":2,"name":"Sticker | ShahZaM (Normal)","count":4},"C11008386074":{"group":2,"name":"Sticker | ShahZaM (Foil)","count":4},"C11008386082":{"group":2,"name":"Sticker | ShahZaM (Gold)","count":4},"C11019":{"group":3,"name":"Sticker | Grayhound Gaming","count":16},"C11027":{"group":3,"name":"Sticker | Grayhound Gaming (Normal)","count":4},"C11035":{"group":3,"name":"Sticker | Grayhound Gaming (Foil)","count":2},"C11043":{"group":3,"name":"Sticker | Grayhound Gaming (Gold)","count":4},"C110484494730":{"group":2,"name":"Sticker | sk0R","count":16},"C110484494738":{"group":2,"name":"Sticker | sk0R (Normal)","count":4},"C110484494754":{"group":2,"name":"Sticker | sk0R (Gold)","count":4},"C110484494762":{"group":2,"name":"Sticker | sk0R (Holo)","count":4},"C110484494770":{"group":2,"name":"Sticker | sk0R (Glitter)","count":3},"C110484494778":{"group":2,"name":"Sticker | sk0R (Embroidered)","count":1},"C11051":{"group":3,"name":"Sticker | Grayhound Gaming (Holo)","count":4},"C11059":{"group":3,"name":"Sticker | Grayhound Gaming (Glitter)","count":2},"C111174922":{"group":2,"name":"Sticker | magixx","count":28},"C111174930":{"group":2,"name":"Sticker | magixx (Normal)","count":7},"C111174938":{"group":2,"name":"Sticker | magixx (Foil)","count":2},"C111174946":{"group":2,"name":"Sticker | magixx (Gold)","count":7},"C111174954":{"group":2,"name":"Sticker | magixx (Holo)","count":7},"C111174962":{"group":2,"name":"Sticker | magixx (Glitter)","count":5},"C11127451786":{"group":2,"name":"Sticker | kraghen","count":4},"C11127451794":{"group":2,"name":"Sticker | kraghen (Normal)","count":1},"C11127451810":{"group":2,"name":"Sticker | kraghen (Gold)","count":1},"C11127451818":{"group":2,"name":"Sticker | kraghen (Holo)","count":1},"C11127451826":{"group":2,"name":"Sticker | kraghen (Glitter)","count":1},"C11147":{"group":3,"name":"Sticker | NRG","count":20},"C11153553162":{"group":2,"name":"Sticker | stadodo","count":4},"C11153553170":{"group":2,"name":"Sticker | stadodo (Normal)","count":1},"C11153553186":{"group":2,"name":"Sticker | stadodo (Gold)","count":1},"C11153553194":{"group":2,"name":"Sticker | stadodo (Holo)","count":1},"C11153553202":{"group":2,"name":"Sticker | stadodo (Glitter)","count":1},"C11155":{"group":3,"name":"Sticker | NRG (Normal)","count":5},"C11162471178":{"group":2,"name":"Sticker | oSee","count":20},"C11162471186":{"group":2,"name":"Sticker | oSee (Normal)","count":5},"C11162471194":{"group":2,"name":"Sticker | oSee (Foil)","count":2},"C11162471202":{"group":2,"name":"Sticker | oSee (Gold)","count":5},"C11162471210":{"group":2,"name":"Sticker | oSee (Holo)","count":5},"C11162471218":{"group":2,"name":"Sticker | oSee (Glitter)","count":3},"C11163":{"group":3,"name":"Sticker | NRG (Foil)","count":4},"C11171":{"group":3,"name":"Sticker | NRG (Gold)","count":5},"C11179":{"group":3,"name":"Sticker | NRG (Holo)","count":5},"C11195":{"group":3,"name":"Sticker | NRG (Embroidered)","count":1},"C11214238986":{"group":2,"name":"Sticker | Djoko","count":4},"C11214238994":{"group":2,"name":"Sticker | Djoko (Normal)","count":1},"C11214239010":{"group":2,"name":"Sticker | Djoko (Gold)","count":1},"C11214239018":{"group":2,"name":"Sticker | Djoko (Holo)","count":1},"C11214239026":{"group":2,"name":"Sticker | Djoko (Glitter)","count":1},"C112237015050":{"group":2,"name":"Sticker | 1eeR","count":4},"C112237015058":{"group":2,"name":"Sticker | 1eeR (Normal)","count":1},"C112237015066":{"group":2,"name":"Sticker | 1eeR (Foil)","count":1},"C112237015074":{"group":2,"name":"Sticker | 1eeR (Gold)","count":1},"C112237015082":{"group":2,"name":"Sticker | 1eeR (Holo)","count":1},"C112455277322":{"group":2,"name":"Sticker | mzinho","count":20},"C112455277330":{"group":2,"name":"Sticker | mzinho (Normal)","count":5},"C112455277338":{"group":2,"name":"Sticker | mzinho (Foil)","count":2},"C112455277346":{"group":2,"name":"Sticker | mzinho (Gold)","count":5},"C112455277354":{"group":2,"name":"Sticker | mzinho (Holo)","count":5},"C112455277362":{"group":2,"name":"Sticker | mzinho (Glitter)","count":2},"C112455277370":{"group":2,"name":"Sticker | mzinho (Embroidered)","count":1},"C112517137546":{"group":2,"name":"Sticker | Xant3r","count":4},"C112517137554":{"group":2,"name":"Sticker | Xant3r (Normal)","count":1},"C112517137562":{"group":2,"name":"Sticker | Xant3r (Foil)","count":1},"C112517137570":{"group":2,"name":"Sticker | Xant3r (Gold)","count":1},"C112517137578":{"group":2,"name":"Sticker | Xant3r (Holo)","count":1},"C11264132618":{"group":2,"name":"Sticker | Attacker","count":17},"C11264132626":{"group":2,"name":"Sticker | Attacker (Normal)","count":5},"C11264132634":{"group":2,"name":"Sticker | Attacker (Foil)","count":4},"C11264132642":{"group":2,"name":"Sticker | Attacker (Gold)","count":5},"C11264132650":{"group":2,"name":"Sticker | Attacker (Holo)","count":2},"C11264132666":{"group":2,"name":"Sticker | Attacker (Embroidered)","count":1},"C11275":{"group":3,"name":"Sticker | ViCi Gaming","count":4},"C11283":{"group":3,"name":"Sticker | ViCi Gaming (Normal)","count":1},"C11291":{"group":3,"name":"Sticker | ViCi Gaming (Foil)","count":1},"C112970558474":{"group":2,"name":"Sticker | cool4st","count":4},"C112970558482":{"group":2,"name":"Sticker | cool4st (Normal)","count":1},"C112970558490":{"group":2,"name":"Sticker | cool4st (Foil)","count":1},"C112970558498":{"group":2,"name":"Sticker | cool4st (Gold)","count":1},"C112970558506":{"group":2,"name":"Sticker | cool4st (Holo)","count":1},"C11299":{"group":3,"name":"Sticker | ViCi Gaming (Gold)","count":1},"C11307":{"group":3,"name":"Sticker | ViCi Gaming (Holo)","count":1},"C113301880074":{"group":2,"name":"Sticker | Kvem","count":4},"C113301880082":{"group":2,"name":"Sticker | Kvem (Normal)","count":1},"C113301880098":{"group":2,"name":"Sticker | Kvem (Gold)","count":1},"C113301880106":{"group":2,"name":"Sticker | Kvem (Holo)","count":1},"C113301880122":{"group":2,"name":"Sticker | Kvem (Embroidered)","count":1},"C113888570634":{"group":2,"name":"Sticker | latto","count":20},"C113888570642":{"group":2,"name":"Sticker | latto (Normal)","count":5},"C113888570650":{"group":2,"name":"Sticker | latto (Foil)","count":2},"C113888570658":{"group":2,"name":"Sticker | latto (Gold)","count":5},"C113888570666":{"group":2,"name":"Sticker | latto (Holo)","count":5},"C113888570674":{"group":2,"name":"Sticker | latto (Glitter)","count":2},"C113888570682":{"group":2,"name":"Sticker | latto (Embroidered)","count":1},"C114022631818":{"group":2,"name":"Sticker | adamb","count":4},"C114022631826":{"group":2,"name":"Sticker | adamb (Normal)","count":1},"C114022631834":{"group":2,"name":"Sticker | adamb (Foil)","count":1},"C114022631842":{"group":2,"name":"Sticker | adamb (Gold)","count":1},"C114022631850":{"group":2,"name":"Sticker | adamb (Holo)","count":1},"C11403":{"group":3,"name":"Sticker | Vitality","count":48},"C11411":{"group":3,"name":"Sticker | Vitality (Normal)","count":12},"C11419":{"group":3,"name":"Sticker | Vitality (Foil)","count":6},"C11427":{"group":3,"name":"Sticker | Vitality (Gold)","count":12},"C11435":{"group":3,"name":"Sticker | Vitality (Holo)","count":12},"C11443":{"group":3,"name":"Sticker | Vitality (Glitter)","count":5},"C11451":{"group":3,"name":"Sticker | Vitality (Embroidered)","count":1},"C114574028426":{"group":2,"name":"Sticker | Jimpphat","count":20},"C114574028434":{"group":2,"name":"Sticker | Jimpphat (Normal)","count":5},"C114574028442":{"group":2,"name":"Sticker | Jimpphat (Foil)","count":2},"C114574028450":{"group":2,"name":"Sticker | Jimpphat (Gold)","count":5},"C114574028458":{"group":2,"name":"Sticker | Jimpphat (Holo)","count":5},"C114574028466":{"group":2,"name":"Sticker | Jimpphat (Glitter)","count":2},"C114574028474":{"group":2,"name":"Sticker | Jimpphat (Embroidered)","count":1},"C11459674378":{"group":2,"name":"Sticker | DeStiNy","count":3},"C11459674386":{"group":2,"name":"Sticker | DeStiNy (Normal)","count":1},"C11459674394":{"group":2,"name":"Sticker | DeStiNy (Foil)","count":1},"C11459674402":{"group":2,"name":"Sticker | DeStiNy (Gold)","count":1},"C114638189066":{"group":2,"name":"Sticker | brnz4n","count":16},"C114638189074":{"group":2,"name":"Sticker | brnz4n (Normal)","count":4},"C114638189082":{"group":2,"name":"Sticker | brnz4n (Foil)","count":2},"C114638189090":{"group":2,"name":"Sticker | brnz4n (Gold)","count":4},"C114638189098":{"group":2,"name":"Sticker | brnz4n (Holo)","count":4},"C114638189106":{"group":2,"name":"Sticker | brnz4n (Glitter)","count":1},"C114638189114":{"group":2,"name":"Sticker | brnz4n (Embroidered)","count":1},"C114824377098":{"group":2,"name":"Sticker | rox","count":4},"C114824377106":{"group":2,"name":"Sticker | rox (Normal)","count":1},"C114824377122":{"group":2,"name":"Sticker | rox (Gold)","count":1},"C114824377130":{"group":2,"name":"Sticker | rox (Holo)","count":1},"C114824377138":{"group":2,"name":"Sticker | rox (Glitter)","count":1},"C11518016650":{"group":2,"name":"Sticker | iM","count":32},"C11518016658":{"group":2,"name":"Sticker | iM (Normal)","count":8},"C11518016666":{"group":2,"name":"Sticker | iM (Foil)","count":2},"C11518016674":{"group":2,"name":"Sticker | iM (Gold)","count":8},"C11518016682":{"group":2,"name":"Sticker | iM (Holo)","count":8},"C11518016690":{"group":2,"name":"Sticker | iM (Glitter)","count":5},"C11518016698":{"group":2,"name":"Sticker | iM (Embroidered)","count":1},"C11528890378":{"group":2,"name":"Sticker | yel","count":3},"C11528890386":{"group":2,"name":"Sticker | yel (Normal)","count":1},"C11528890394":{"group":2,"name":"Sticker | yel (Foil)","count":1},"C11528890402":{"group":2,"name":"Sticker | yel (Gold)","count":1},"C11531":{"group":3,"name":"Sticker | forZe eSports","count":12},"C11539":{"group":3,"name":"Sticker | forZe eSports (Normal)","count":3},"C11547":{"group":3,"name":"Sticker | forZe eSports (Foil)","count":1},"C11555":{"group":3,"name":"Sticker | forZe eSports (Gold)","count":3},"C11563":{"group":3,"name":"Sticker | forZe eSports (Holo)","count":3},"C11568482954":{"group":2,"name":"Sticker | nex","count":21},"C11568482962":{"group":2,"name":"Sticker | nex (Normal)","count":7},"C11568482970":{"group":2,"name":"Sticker | nex (Foil)","count":7},"C11568482978":{"group":2,"name":"Sticker | nex (Gold)","count":7},"C11571":{"group":3,"name":"Sticker | forZe eSports (Glitter)","count":2},"C11604003850":{"group":2,"name":"Sticker | hades","count":16},"C11604003858":{"group":2,"name":"Sticker | hades (Normal)","count":4},"C11604003866":{"group":2,"name":"Sticker | hades (Foil)","count":1},"C11604003874":{"group":2,"name":"Sticker | hades (Gold)","count":4},"C11604003882":{"group":2,"name":"Sticker | hades (Holo)","count":4},"C11604003890":{"group":2,"name":"Sticker | hades (Glitter)","count":3},"C11607708682":{"group":2,"name":"Sticker | aizy","count":24},"C11607708690":{"group":2,"name":"Sticker | aizy (Normal)","count":8},"C11607708698":{"group":2,"name":"Sticker | aizy (Foil)","count":8},"C11607708706":{"group":2,"name":"Sticker | aizy (Gold)","count":8},"C1161":{"group":1,"name":"Sticker | Columbus 2016","count":308},"C1163":{"group":3,"name":"Sticker | LGB eSports","count":7},"C11659":{"group":3,"name":"Sticker | CR4ZY","count":4},"C11667":{"group":3,"name":"Sticker | CR4ZY (Normal)","count":1},"C116683915914":{"group":2,"name":"Sticker | zevy","count":12},"C116683915922":{"group":2,"name":"Sticker | zevy (Normal)","count":3},"C116683915930":{"group":2,"name":"Sticker | zevy (Foil)","count":1},"C116683915938":{"group":2,"name":"Sticker | zevy (Gold)","count":3},"C116683915946":{"group":2,"name":"Sticker | zevy (Holo)","count":3},"C116683915954":{"group":2,"name":"Sticker | zevy (Glitter)","count":1},"C116683915962":{"group":2,"name":"Sticker | zevy (Embroidered)","count":1},"C116703672330":{"group":2,"name":"Sticker | tN1R","count":8},"C116703672338":{"group":2,"name":"Sticker | tN1R (Normal)","count":2},"C116703672346":{"group":2,"name":"Sticker | tN1R (Foil)","count":2},"C116703672354":{"group":2,"name":"Sticker | tN1R (Gold)","count":2},"C116703672362":{"group":2,"name":"Sticker | tN1R (Holo)","count":2},"C11675":{"group":3,"name":"Sticker | CR4ZY (Foil)","count":1},"C11683":{"group":3,"name":"Sticker | CR4ZY (Gold)","count":1},"C1169":{"group":1,"name":"Sticker | Columbus 2016 (Normal)","count":97},"C11691":{"group":3,"name":"Sticker | CR4ZY (Holo)","count":1},"C1171":{"group":3,"name":"Sticker | LGB eSports (Normal)","count":2},"C117167033738":{"group":2,"name":"Sticker | dem0n","count":4},"C117167033746":{"group":2,"name":"Sticker | dem0n (Normal)","count":1},"C117167033754":{"group":2,"name":"Sticker | dem0n (Foil)","count":1},"C117167033762":{"group":2,"name":"Sticker | dem0n (Gold)","count":1},"C117167033770":{"group":2,"name":"Sticker | dem0n (Holo)","count":1},"C1177":{"group":1,"name":"Sticker | Columbus 2016 (Foil)","count":97},"C117764328330":{"group":2,"name":"Sticker | Starry","count":16},"C117764328338":{"group":2,"name":"Sticker | Starry (Normal)","count":4},"C117764328346":{"group":2,"name":"Sticker | Starry (Foil)","count":2},"C117764328354":{"group":2,"name":"Sticker | Starry (Gold)","count":4},"C117764328362":{"group":2,"name":"Sticker | Starry (Holo)","count":4},"C117764328370":{"group":2,"name":"Sticker | Starry (Glitter)","count":1},"C117764328378":{"group":2,"name":"Sticker | Starry (Embroidered)","count":1},"C11787":{"group":3,"name":"Sticker | Syman Gaming","count":4},"C1179":{"group":3,"name":"Sticker | LGB eSports (Foil)","count":2},"C11795":{"group":3,"name":"Sticker | Syman Gaming (Normal)","count":1},"C11803":{"group":3,"name":"Sticker | Syman Gaming (Foil)","count":1},"C1180722698":{"group":2,"name":"Sticker | BIT","count":3},"C1180722706":{"group":2,"name":"Sticker | BIT (Normal)","count":1},"C1180722714":{"group":2,"name":"Sticker | BIT (Foil)","count":1},"C1180722722":{"group":2,"name":"Sticker | BIT (Gold)","count":1},"C11811":{"group":3,"name":"Sticker | Syman Gaming (Gold)","count":1},"C11811908746":{"group":2,"name":"Sticker | Calyx","count":14},"C11811908754":{"group":2,"name":"Sticker | Calyx (Normal)","count":4},"C11811908762":{"group":2,"name":"Sticker | Calyx (Foil)","count":2},"C11811908770":{"group":2,"name":"Sticker | Calyx (Gold)","count":4},"C11811908778":{"group":2,"name":"Sticker | Calyx (Holo)","count":2},"C11811908786":{"group":2,"name":"Sticker | Calyx (Glitter)","count":2},"C11819":{"group":3,"name":"Sticker | Syman Gaming (Holo)","count":1},"C118421067402":{"group":2,"name":"Sticker | History","count":8},"C118421067410":{"group":2,"name":"Sticker | History (Normal)","count":2},"C118421067426":{"group":2,"name":"Sticker | History (Gold)","count":2},"C118421067434":{"group":2,"name":"Sticker | History (Holo)","count":2},"C118421067442":{"group":2,"name":"Sticker | History (Glitter)","count":1},"C118421067450":{"group":2,"name":"Sticker | History (Embroidered)","count":1},"C1185":{"group":1,"name":"Sticker | Columbus 2016 (Gold)","count":97},"C118524426":{"group":2,"name":"Sticker | Maikelele","count":9},"C118524434":{"group":2,"name":"Sticker | Maikelele (Normal)","count":3},"C118524442":{"group":2,"name":"Sticker | Maikelele (Foil)","count":3},"C118524450":{"group":2,"name":"Sticker | Maikelele (Gold)","count":3},"C11855669130":{"group":2,"name":"Sticker | vexite","count":24},"C11855669138":{"group":2,"name":"Sticker | vexite (Normal)","count":6},"C11855669146":{"group":2,"name":"Sticker | vexite (Foil)","count":2},"C11855669154":{"group":2,"name":"Sticker | vexite (Gold)","count":6},"C11855669162":{"group":2,"name":"Sticker | vexite (Holo)","count":6},"C11855669170":{"group":2,"name":"Sticker | vexite (Glitter)","count":3},"C11855669178":{"group":2,"name":"Sticker | vexite (Embroidered)","count":1},"C1187":{"group":3,"name":"Sticker | LGB eSports (Gold)","count":1},"C11886197386":{"group":2,"name":"Sticker | NertZ","count":24},"C11886197394":{"group":2,"name":"Sticker | NertZ (Normal)","count":6},"C11886197402":{"group":2,"name":"Sticker | NertZ (Foil)","count":2},"C11886197410":{"group":2,"name":"Sticker | NertZ (Gold)","count":6},"C11886197418":{"group":2,"name":"Sticker | NertZ (Holo)","count":6},"C11886197426":{"group":2,"name":"Sticker | NertZ (Glitter)","count":3},"C11886197434":{"group":2,"name":"Sticker | NertZ (Embroidered)","count":1},"C118908710026":{"group":2,"name":"Sticker | riskyb0b","count":4},"C118908710034":{"group":2,"name":"Sticker | riskyb0b (Normal)","count":1},"C118908710042":{"group":2,"name":"Sticker | riskyb0b (Foil)","count":1},"C118908710050":{"group":2,"name":"Sticker | riskyb0b (Gold)","count":1},"C118908710058":{"group":2,"name":"Sticker | riskyb0b (Holo)","count":1},"C119068937738":{"group":2,"name":"Sticker | L00m1","count":4},"C119068937746":{"group":2,"name":"Sticker | L00m1 (Normal)","count":1},"C119068937754":{"group":2,"name":"Sticker | L00m1 (Foil)","count":1},"C119068937762":{"group":2,"name":"Sticker | L00m1 (Gold)","count":1},"C119068937770":{"group":2,"name":"Sticker | L00m1 (Holo)","count":1},"C11915":{"group":3,"name":"Sticker | DreamEaters","count":4},"C11923":{"group":3,"name":"Sticker | DreamEaters (Normal)","count":1},"C1193":{"group":1,"name":"Sticker | Columbus 2016 (Holo)","count":17},"C11931":{"group":3,"name":"Sticker | DreamEaters (Foil)","count":1},"C11939":{"group":3,"name":"Sticker | DreamEaters (Gold)","count":1},"C11947":{"group":3,"name":"Sticker | DreamEaters (Holo)","count":1},"C1195":{"group":3,"name":"Sticker | LGB eSports (Holo)","count":2},"C11996682":{"group":2,"name":"Sticker | f0rest","count":21},"C11996690":{"group":2,"name":"Sticker | f0rest (Normal)","count":7},"C11996698":{"group":2,"name":"Sticker | f0rest (Foil)","count":7},"C11996706":{"group":2,"name":"Sticker | f0rest (Gold)","count":7},"C12003462410":{"group":2,"name":"Sticker | neaLaN","count":7},"C12003462418":{"group":2,"name":"Sticker | neaLaN (Normal)","count":2},"C12003462426":{"group":2,"name":"Sticker | neaLaN (Foil)","count":1},"C12003462434":{"group":2,"name":"Sticker | neaLaN (Gold)","count":2},"C12003462442":{"group":2,"name":"Sticker | neaLaN (Holo)","count":1},"C12003462450":{"group":2,"name":"Sticker | neaLaN (Glitter)","count":1},"C12043":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB","count":4},"C12051":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Normal)","count":1},"C1205655306":{"group":2,"name":"Sticker | pronax","count":9},"C1205655314":{"group":2,"name":"Sticker | pronax (Normal)","count":3},"C1205655322":{"group":2,"name":"Sticker | pronax (Foil)","count":3},"C1205655330":{"group":2,"name":"Sticker | pronax (Gold)","count":3},"C12059":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Foil)","count":1},"C12067":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Gold)","count":1},"C12075":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Holo)","count":1},"C12103008778":{"group":2,"name":"Sticker | JOTA","count":8},"C12103008786":{"group":2,"name":"Sticker | JOTA (Normal)","count":2},"C12103008794":{"group":2,"name":"Sticker | JOTA (Foil)","count":1},"C12103008802":{"group":2,"name":"Sticker | JOTA (Gold)","count":2},"C12103008810":{"group":2,"name":"Sticker | JOTA (Holo)","count":2},"C12103008818":{"group":2,"name":"Sticker | JOTA (Glitter)","count":1},"C12108212618":{"group":2,"name":"Sticker | Brehze","count":10},"C12108212626":{"group":2,"name":"Sticker | Brehze (Normal)","count":3},"C12108212634":{"group":2,"name":"Sticker | Brehze (Foil)","count":2},"C12108212642":{"group":2,"name":"Sticker | Brehze (Gold)","count":3},"C12108212650":{"group":2,"name":"Sticker | Brehze (Holo)","count":1},"C12108212658":{"group":2,"name":"Sticker | Brehze (Glitter)","count":1},"C12109455498":{"group":2,"name":"Sticker | autimatic","count":16},"C12109455506":{"group":2,"name":"Sticker | autimatic (Normal)","count":5},"C12109455514":{"group":2,"name":"Sticker | autimatic (Foil)","count":4},"C12109455522":{"group":2,"name":"Sticker | autimatic (Gold)","count":5},"C12109455530":{"group":2,"name":"Sticker | autimatic (Holo)","count":1},"C12109455538":{"group":2,"name":"Sticker | autimatic (Glitter)","count":1},"C12139942410":{"group":2,"name":"Sticker | ICY","count":12},"C12139942418":{"group":2,"name":"Sticker | ICY (Normal)","count":3},"C12139942426":{"group":2,"name":"Sticker | ICY (Foil)","count":1},"C12139942434":{"group":2,"name":"Sticker | ICY (Gold)","count":3},"C12139942442":{"group":2,"name":"Sticker | ICY (Holo)","count":3},"C12139942450":{"group":2,"name":"Sticker | ICY (Glitter)","count":2},"C12171":{"group":3,"name":"Sticker | HEROIC","count":36},"C12179":{"group":3,"name":"Sticker | HEROIC (Normal)","count":9},"C12187":{"group":3,"name":"Sticker | HEROIC (Foil)","count":4},"C12195":{"group":3,"name":"Sticker | HEROIC (Gold)","count":9},"C12203":{"group":3,"name":"Sticker | HEROIC (Holo)","count":9},"C12211":{"group":3,"name":"Sticker | HEROIC (Glitter)","count":5},"C122938149002":{"group":2,"name":"Sticker | Senzu","count":16},"C122938149010":{"group":2,"name":"Sticker | Senzu (Normal)","count":4},"C122938149018":{"group":2,"name":"Sticker | Senzu (Foil)","count":1},"C122938149026":{"group":2,"name":"Sticker | Senzu (Gold)","count":4},"C122938149034":{"group":2,"name":"Sticker | Senzu (Holo)","count":4},"C122938149042":{"group":2,"name":"Sticker | Senzu (Glitter)","count":2},"C122938149050":{"group":2,"name":"Sticker | Senzu (Embroidered)","count":1},"C12299":{"group":3,"name":"Sticker | OG","count":16},"C12307":{"group":3,"name":"Sticker | OG (Normal)","count":4},"C12315":{"group":3,"name":"Sticker | OG (Foil)","count":2},"C12323":{"group":3,"name":"Sticker | OG (Gold)","count":4},"C12331":{"group":3,"name":"Sticker | OG (Holo)","count":4},"C12339":{"group":3,"name":"Sticker | OG (Glitter)","count":2},"C12418138122":{"group":2,"name":"Sticker | kyxsan","count":24},"C12418138130":{"group":2,"name":"Sticker | kyxsan (Normal)","count":6},"C12418138138":{"group":2,"name":"Sticker | kyxsan (Foil)","count":2},"C12418138146":{"group":2,"name":"Sticker | kyxsan (Gold)","count":6},"C12418138154":{"group":2,"name":"Sticker | kyxsan (Holo)","count":6},"C12418138162":{"group":2,"name":"Sticker | kyxsan (Glitter)","count":3},"C12418138170":{"group":2,"name":"Sticker | kyxsan (Embroidered)","count":1},"C12427":{"group":3,"name":"Sticker | ESPADA","count":4},"C12435":{"group":3,"name":"Sticker | ESPADA (Normal)","count":1},"C12443":{"group":3,"name":"Sticker | ESPADA (Foil)","count":1},"C12451":{"group":3,"name":"Sticker | ESPADA (Gold)","count":1},"C12459":{"group":3,"name":"Sticker | ESPADA (Holo)","count":1},"C125067154186":{"group":2,"name":"Sticker | ROUX","count":4},"C125067154194":{"group":2,"name":"Sticker | ROUX (Normal)","count":1},"C125067154202":{"group":2,"name":"Sticker | ROUX (Foil)","count":1},"C125067154210":{"group":2,"name":"Sticker | ROUX (Gold)","count":1},"C125067154218":{"group":2,"name":"Sticker | ROUX (Holo)","count":1},"C12520454410":{"group":2,"name":"Sticker | znajder","count":3},"C12520454418":{"group":2,"name":"Sticker | znajder (Normal)","count":1},"C12520454426":{"group":2,"name":"Sticker | znajder (Foil)","count":1},"C12520454434":{"group":2,"name":"Sticker | znajder (Gold)","count":1},"C12555":{"group":3,"name":"Sticker | Evil Geniuses","count":12},"C12563":{"group":3,"name":"Sticker | Evil Geniuses (Normal)","count":3},"C12571":{"group":3,"name":"Sticker | Evil Geniuses (Foil)","count":2},"C12574049802":{"group":2,"name":"Sticker | KSCERATO","count":41},"C12574049810":{"group":2,"name":"Sticker | KSCERATO (Normal)","count":11},"C12574049818":{"group":2,"name":"Sticker | KSCERATO (Foil)","count":4},"C12574049826":{"group":2,"name":"Sticker | KSCERATO (Gold)","count":11},"C12574049834":{"group":2,"name":"Sticker | KSCERATO (Holo)","count":9},"C12574049842":{"group":2,"name":"Sticker | KSCERATO (Glitter)","count":5},"C12574049850":{"group":2,"name":"Sticker | KSCERATO (Embroidered)","count":1},"C12579":{"group":3,"name":"Sticker | Evil Geniuses (Gold)","count":3},"C12587":{"group":3,"name":"Sticker | Evil Geniuses (Holo)","count":3},"C12595":{"group":3,"name":"Sticker | Evil Geniuses (Glitter)","count":1},"C12683":{"group":3,"name":"Sticker | Gen.G Esports","count":4},"C126873845770":{"group":2,"name":"Sticker | khaN","count":4},"C126873845778":{"group":2,"name":"Sticker | khaN (Normal)","count":1},"C126873845786":{"group":2,"name":"Sticker | khaN (Foil)","count":1},"C126873845794":{"group":2,"name":"Sticker | khaN (Gold)","count":1},"C126873845802":{"group":2,"name":"Sticker | khaN (Holo)","count":1},"C12691":{"group":3,"name":"Sticker | Gen.G Esports (Normal)","count":1},"C12699":{"group":3,"name":"Sticker | Gen.G Esports (Foil)","count":1},"C12707":{"group":3,"name":"Sticker | Gen.G Esports (Gold)","count":1},"C12715":{"group":3,"name":"Sticker | Gen.G Esports (Holo)","count":1},"C12716630282":{"group":2,"name":"Sticker | zorte","count":16},"C12716630290":{"group":2,"name":"Sticker | zorte (Normal)","count":4},"C12716630298":{"group":2,"name":"Sticker | zorte (Foil)","count":2},"C12716630306":{"group":2,"name":"Sticker | zorte (Gold)","count":4},"C12716630314":{"group":2,"name":"Sticker | zorte (Holo)","count":4},"C12716630322":{"group":2,"name":"Sticker | zorte (Glitter)","count":2},"C12729395210":{"group":2,"name":"Sticker | nafany","count":11},"C12729395218":{"group":2,"name":"Sticker | nafany (Normal)","count":3},"C12729395234":{"group":2,"name":"Sticker | nafany (Gold)","count":3},"C12729395242":{"group":2,"name":"Sticker | nafany (Holo)","count":3},"C12729395250":{"group":2,"name":"Sticker | nafany (Glitter)","count":2},"C12735256586":{"group":2,"name":"Sticker | zhokiNg","count":3},"C12735256594":{"group":2,"name":"Sticker | zhokiNg (Normal)","count":1},"C12735256602":{"group":2,"name":"Sticker | zhokiNg (Foil)","count":1},"C12735256610":{"group":2,"name":"Sticker | zhokiNg (Gold)","count":1},"C127570421130":{"group":2,"name":"Sticker | Zero","count":4},"C127570421138":{"group":2,"name":"Sticker | Zero (Normal)","count":1},"C127570421146":{"group":2,"name":"Sticker | Zero (Foil)","count":1},"C127570421154":{"group":2,"name":"Sticker | Zero (Gold)","count":1},"C127570421162":{"group":2,"name":"Sticker | Zero (Holo)","count":1},"C127943470090":{"group":2,"name":"Sticker | bLitz","count":32},"C127943470098":{"group":2,"name":"Sticker | bLitz (Normal)","count":8},"C127943470106":{"group":2,"name":"Sticker | bLitz (Foil)","count":2},"C127943470114":{"group":2,"name":"Sticker | bLitz (Gold)","count":8},"C127943470122":{"group":2,"name":"Sticker | bLitz (Holo)","count":8},"C127943470130":{"group":2,"name":"Sticker | bLitz (Glitter)","count":5},"C127943470138":{"group":2,"name":"Sticker | bLitz (Embroidered)","count":1},"C12811":{"group":3,"name":"Sticker | Boom Esports","count":4},"C12813002506":{"group":2,"name":"Sticker | hallzerk","count":20},"C12813002514":{"group":2,"name":"Sticker | hallzerk (Normal)","count":5},"C12813002522":{"group":2,"name":"Sticker | hallzerk (Foil)","count":1},"C12813002530":{"group":2,"name":"Sticker | hallzerk (Gold)","count":5},"C12813002538":{"group":2,"name":"Sticker | hallzerk (Holo)","count":5},"C12813002546":{"group":2,"name":"Sticker | hallzerk (Glitter)","count":3},"C12813002554":{"group":2,"name":"Sticker | hallzerk (Embroidered)","count":1},"C12819":{"group":3,"name":"Sticker | Boom Esports (Normal)","count":1},"C12827":{"group":3,"name":"Sticker | Boom Esports (Foil)","count":1},"C12827912330":{"group":2,"name":"Sticker | br0","count":12},"C12827912338":{"group":2,"name":"Sticker | br0 (Normal)","count":3},"C12827912346":{"group":2,"name":"Sticker | br0 (Foil)","count":2},"C12827912354":{"group":2,"name":"Sticker | br0 (Gold)","count":3},"C12827912362":{"group":2,"name":"Sticker | br0 (Holo)","count":3},"C12827912378":{"group":2,"name":"Sticker | br0 (Embroidered)","count":1},"C12828751498":{"group":2,"name":"Sticker | sterling","count":3},"C12828751506":{"group":2,"name":"Sticker | sterling (Normal)","count":1},"C12828751514":{"group":2,"name":"Sticker | sterling (Foil)","count":1},"C12828751522":{"group":2,"name":"Sticker | sterling (Gold)","count":1},"C1283227018":{"group":2,"name":"Sticker | Havoc","count":3},"C1283227026":{"group":2,"name":"Sticker | Havoc (Normal)","count":1},"C1283227034":{"group":2,"name":"Sticker | Havoc (Foil)","count":1},"C1283227042":{"group":2,"name":"Sticker | Havoc (Gold)","count":1},"C12835":{"group":3,"name":"Sticker | Boom Esports (Gold)","count":1},"C12843":{"group":3,"name":"Sticker | Boom Esports (Holo)","count":1},"C128483453834":{"group":2,"name":"Sticker | s-chilla","count":4},"C128483453842":{"group":2,"name":"Sticker | s-chilla (Normal)","count":1},"C128483453858":{"group":2,"name":"Sticker | s-chilla (Gold)","count":1},"C128483453866":{"group":2,"name":"Sticker | s-chilla (Holo)","count":1},"C128483453874":{"group":2,"name":"Sticker | s-chilla (Glitter)","count":1},"C12868390026":{"group":2,"name":"Sticker | DAVEY","count":3},"C12868390034":{"group":2,"name":"Sticker | DAVEY (Normal)","count":1},"C12868390042":{"group":2,"name":"Sticker | DAVEY (Foil)","count":1},"C12868390050":{"group":2,"name":"Sticker | DAVEY (Gold)","count":1},"C128777527306":{"group":2,"name":"Sticker | Techno4K","count":32},"C128777527314":{"group":2,"name":"Sticker | Techno4K (Normal)","count":8},"C128777527322":{"group":2,"name":"Sticker | Techno4K (Foil)","count":2},"C128777527330":{"group":2,"name":"Sticker | Techno4K (Gold)","count":8},"C128777527338":{"group":2,"name":"Sticker | Techno4K (Holo)","count":8},"C128777527346":{"group":2,"name":"Sticker | Techno4K (Glitter)","count":5},"C128777527354":{"group":2,"name":"Sticker | Techno4K (Embroidered)","count":1},"C1289":{"group":1,"name":"Sticker | Cologne 2016","count":308},"C1291":{"group":3,"name":"Sticker | Copenhagen Wolves","count":5},"C12939":{"group":3,"name":"Sticker | Copenhagen Flames","count":8},"C12947":{"group":3,"name":"Sticker | Copenhagen Flames (Normal)","count":2},"C12948224266":{"group":2,"name":"Sticker | insani","count":16},"C12948224274":{"group":2,"name":"Sticker | insani (Normal)","count":4},"C12948224282":{"group":2,"name":"Sticker | insani (Foil)","count":2},"C12948224290":{"group":2,"name":"Sticker | insani (Gold)","count":4},"C12948224298":{"group":2,"name":"Sticker | insani (Holo)","count":4},"C12948224306":{"group":2,"name":"Sticker | insani (Glitter)","count":1},"C12948224314":{"group":2,"name":"Sticker | insani (Embroidered)","count":1},"C12955":{"group":3,"name":"Sticker | Copenhagen Flames (Foil)","count":1},"C129603856010":{"group":2,"name":"Sticker | lauNX","count":8},"C129603856018":{"group":2,"name":"Sticker | lauNX (Normal)","count":2},"C129603856026":{"group":2,"name":"Sticker | lauNX (Foil)","count":1},"C129603856034":{"group":2,"name":"Sticker | lauNX (Gold)","count":2},"C129603856042":{"group":2,"name":"Sticker | lauNX (Holo)","count":2},"C129603856050":{"group":2,"name":"Sticker | lauNX (Glitter)","count":1},"C12963":{"group":3,"name":"Sticker | Copenhagen Flames (Gold)","count":2},"C129697502858":{"group":2,"name":"Sticker | Tiger","count":4},"C129697502866":{"group":2,"name":"Sticker | Tiger (Normal)","count":1},"C129697502882":{"group":2,"name":"Sticker | Tiger (Gold)","count":1},"C129697502890":{"group":2,"name":"Sticker | Tiger (Holo)","count":1},"C129697502906":{"group":2,"name":"Sticker | Tiger (Embroidered)","count":1},"C1297":{"group":1,"name":"Sticker | Cologne 2016 (Normal)","count":97},"C12971":{"group":3,"name":"Sticker | Copenhagen Flames (Holo)","count":2},"C12979":{"group":3,"name":"Sticker | Copenhagen Flames (Glitter)","count":1},"C129821235338":{"group":2,"name":"Sticker | AZUWU","count":4},"C129821235346":{"group":2,"name":"Sticker | AZUWU (Normal)","count":1},"C129821235354":{"group":2,"name":"Sticker | AZUWU (Foil)","count":1},"C129821235362":{"group":2,"name":"Sticker | AZUWU (Gold)","count":1},"C129821235370":{"group":2,"name":"Sticker | AZUWU (Holo)","count":1},"C129894950282":{"group":2,"name":"Sticker | nota","count":8},"C129894950290":{"group":2,"name":"Sticker | nota (Normal)","count":2},"C129894950298":{"group":2,"name":"Sticker | nota (Foil)","count":1},"C129894950306":{"group":2,"name":"Sticker | nota (Gold)","count":2},"C129894950314":{"group":2,"name":"Sticker | nota (Holo)","count":2},"C129894950330":{"group":2,"name":"Sticker | nota (Embroidered)","count":1},"C1299":{"group":3,"name":"Sticker | Copenhagen Wolves (Normal)","count":2},"C12991727114":{"group":2,"name":"Sticker | n1ssim","count":16},"C12991727122":{"group":2,"name":"Sticker | n1ssim (Normal)","count":4},"C12991727130":{"group":2,"name":"Sticker | n1ssim (Foil)","count":2},"C12991727138":{"group":2,"name":"Sticker | n1ssim (Gold)","count":4},"C12991727146":{"group":2,"name":"Sticker | n1ssim (Holo)","count":4},"C12991727154":{"group":2,"name":"Sticker | n1ssim (Glitter)","count":1},"C12991727162":{"group":2,"name":"Sticker | n1ssim (Embroidered)","count":1},"C129943927306":{"group":2,"name":"Sticker | Woro2k","count":4},"C129943927314":{"group":2,"name":"Sticker | Woro2k (Normal)","count":1},"C129943927330":{"group":2,"name":"Sticker | Woro2k (Gold)","count":1},"C129943927338":{"group":2,"name":"Sticker | Woro2k (Holo)","count":1},"C129943927346":{"group":2,"name":"Sticker | Woro2k (Glitter)","count":1},"C12996545674":{"group":2,"name":"Sticker | dexter","count":22},"C12996545682":{"group":2,"name":"Sticker | dexter (Normal)","count":6},"C12996545690":{"group":2,"name":"Sticker | dexter (Foil)","count":3},"C12996545698":{"group":2,"name":"Sticker | dexter (Gold)","count":6},"C12996545706":{"group":2,"name":"Sticker | dexter (Holo)","count":4},"C12996545714":{"group":2,"name":"Sticker | dexter (Glitter)","count":3},"C130141373962":{"group":2,"name":"Sticker | XotiC","count":4},"C130141373970":{"group":2,"name":"Sticker | XotiC (Normal)","count":1},"C130141373986":{"group":2,"name":"Sticker | XotiC (Gold)","count":1},"C130141373994":{"group":2,"name":"Sticker | XotiC (Holo)","count":1},"C130141374010":{"group":2,"name":"Sticker | XotiC (Embroidered)","count":1},"C1305":{"group":1,"name":"Sticker | Cologne 2016 (Foil)","count":97},"C13067":{"group":3,"name":"Sticker | paiN Gaming","count":28},"C1307":{"group":3,"name":"Sticker | Copenhagen Wolves (Foil)","count":1},"C13075":{"group":3,"name":"Sticker | paiN Gaming (Normal)","count":7},"C13083":{"group":3,"name":"Sticker | paiN Gaming (Foil)","count":3},"C13091":{"group":3,"name":"Sticker | paiN Gaming (Gold)","count":7},"C13099":{"group":3,"name":"Sticker | paiN Gaming (Holo)","count":7},"C13107":{"group":3,"name":"Sticker | paiN Gaming (Glitter)","count":3},"C13115":{"group":3,"name":"Sticker | paiN Gaming (Embroidered)","count":1},"C1313":{"group":1,"name":"Sticker | Cologne 2016 (Gold)","count":97},"C1315":{"group":3,"name":"Sticker | Copenhagen Wolves (Gold)","count":1},"C13193046922":{"group":2,"name":"Sticker | Spinx","count":36},"C13193046930":{"group":2,"name":"Sticker | Spinx (Normal)","count":9},"C13193046938":{"group":2,"name":"Sticker | Spinx (Foil)","count":2},"C13193046946":{"group":2,"name":"Sticker | Spinx (Gold)","count":9},"C13193046954":{"group":2,"name":"Sticker | Spinx (Holo)","count":9},"C13193046962":{"group":2,"name":"Sticker | Spinx (Glitter)","count":6},"C13193046970":{"group":2,"name":"Sticker | Spinx (Embroidered)","count":1},"C13195":{"group":3,"name":"Sticker | Movistar Riders","count":4},"C131969625226":{"group":2,"name":"Sticker | Krabeni","count":4},"C131969625234":{"group":2,"name":"Sticker | Krabeni (Normal)","count":1},"C131969625242":{"group":2,"name":"Sticker | Krabeni (Foil)","count":1},"C131969625250":{"group":2,"name":"Sticker | Krabeni (Gold)","count":1},"C131969625258":{"group":2,"name":"Sticker | Krabeni (Holo)","count":1},"C13203":{"group":3,"name":"Sticker | Movistar Riders (Normal)","count":1},"C1321":{"group":1,"name":"Sticker | Cologne 2016 (Holo)","count":17},"C13211":{"group":3,"name":"Sticker | Movistar Riders (Foil)","count":1},"C13219":{"group":3,"name":"Sticker | Movistar Riders (Gold)","count":1},"C13227":{"group":3,"name":"Sticker | Movistar Riders (Holo)","count":1},"C1323":{"group":3,"name":"Sticker | Copenhagen Wolves (Holo)","count":1},"C132558739082":{"group":2,"name":"Sticker | zont1x","count":24},"C132558739090":{"group":2,"name":"Sticker | zont1x (Normal)","count":6},"C132558739098":{"group":2,"name":"Sticker | zont1x (Foil)","count":2},"C132558739106":{"group":2,"name":"Sticker | zont1x (Gold)","count":6},"C132558739114":{"group":2,"name":"Sticker | zont1x (Holo)","count":6},"C132558739122":{"group":2,"name":"Sticker | zont1x (Glitter)","count":3},"C132558739130":{"group":2,"name":"Sticker | zont1x (Embroidered)","count":1},"C1325757578":{"group":2,"name":"Sticker | Hyper","count":6},"C1325757586":{"group":2,"name":"Sticker | Hyper (Normal)","count":2},"C1325757594":{"group":2,"name":"Sticker | Hyper (Foil)","count":2},"C1325757602":{"group":2,"name":"Sticker | Hyper (Gold)","count":2},"C13285533450":{"group":2,"name":"Sticker | junior","count":4},"C13285533458":{"group":2,"name":"Sticker | junior (Normal)","count":1},"C13285533474":{"group":2,"name":"Sticker | junior (Gold)","count":1},"C13285533482":{"group":2,"name":"Sticker | junior (Holo)","count":1},"C13285533490":{"group":2,"name":"Sticker | junior (Glitter)","count":1},"C13323":{"group":3,"name":"Sticker | Sharks Esports","count":8},"C13323192458":{"group":2,"name":"Sticker | slaxz-","count":16},"C13323192466":{"group":2,"name":"Sticker | slaxz- (Normal)","count":4},"C13323192474":{"group":2,"name":"Sticker | slaxz- (Foil)","count":2},"C13323192482":{"group":2,"name":"Sticker | slaxz- (Gold)","count":4},"C13323192490":{"group":2,"name":"Sticker | slaxz- (Holo)","count":4},"C13323192498":{"group":2,"name":"Sticker | slaxz- (Glitter)","count":1},"C13323192506":{"group":2,"name":"Sticker | slaxz- (Embroidered)","count":1},"C133282897162":{"group":2,"name":"Sticker | s1zzi","count":4},"C133282897170":{"group":2,"name":"Sticker | s1zzi (Normal)","count":1},"C133282897178":{"group":2,"name":"Sticker | s1zzi (Foil)","count":1},"C133282897186":{"group":2,"name":"Sticker | s1zzi (Gold)","count":1},"C133282897194":{"group":2,"name":"Sticker | s1zzi (Holo)","count":1},"C13331":{"group":3,"name":"Sticker | Sharks Esports (Normal)","count":2},"C13339":{"group":3,"name":"Sticker | Sharks Esports (Foil)","count":2},"C13347":{"group":3,"name":"Sticker | Sharks Esports (Gold)","count":2},"C13355":{"group":3,"name":"Sticker | Sharks Esports (Holo)","count":2},"C13355598986":{"group":2,"name":"Sticker | peet","count":6},"C13355598994":{"group":2,"name":"Sticker | peet (Normal)","count":2},"C13355599002":{"group":2,"name":"Sticker | peet (Foil)","count":2},"C13355599010":{"group":2,"name":"Sticker | peet (Gold)","count":2},"C13388604170":{"group":2,"name":"Sticker | refrezh","count":11},"C13388604178":{"group":2,"name":"Sticker | refrezh (Normal)","count":3},"C13388604194":{"group":2,"name":"Sticker | refrezh (Gold)","count":3},"C13388604202":{"group":2,"name":"Sticker | refrezh (Holo)","count":3},"C13388604210":{"group":2,"name":"Sticker | refrezh (Glitter)","count":2},"C134297974666":{"group":2,"name":"Sticker | ztr","count":8},"C134297974674":{"group":2,"name":"Sticker | ztr (Normal)","count":2},"C134297974690":{"group":2,"name":"Sticker | ztr (Gold)","count":2},"C134297974698":{"group":2,"name":"Sticker | ztr (Holo)","count":2},"C134297974706":{"group":2,"name":"Sticker | ztr (Glitter)","count":1},"C134297974714":{"group":2,"name":"Sticker | ztr (Embroidered)","count":1},"C13451":{"group":3,"name":"Sticker | Entropiq","count":4},"C13459":{"group":3,"name":"Sticker | Entropiq (Normal)","count":1},"C13463376906":{"group":2,"name":"Sticker | story","count":8},"C13463376914":{"group":2,"name":"Sticker | story (Normal)","count":2},"C13463376922":{"group":2,"name":"Sticker | story (Foil)","count":1},"C13463376930":{"group":2,"name":"Sticker | story (Gold)","count":2},"C13463376938":{"group":2,"name":"Sticker | story (Holo)","count":2},"C13463376946":{"group":2,"name":"Sticker | story (Glitter)","count":1},"C13467":{"group":3,"name":"Sticker | Entropiq (Foil)","count":1},"C13475":{"group":3,"name":"Sticker | Entropiq (Gold)","count":1},"C13483":{"group":3,"name":"Sticker | Entropiq (Holo)","count":1},"C135160395530":{"group":2,"name":"Sticker | L1haNg","count":8},"C135160395538":{"group":2,"name":"Sticker | L1haNg (Normal)","count":2},"C135160395554":{"group":2,"name":"Sticker | L1haNg (Gold)","count":2},"C135160395562":{"group":2,"name":"Sticker | L1haNg (Holo)","count":2},"C135160395570":{"group":2,"name":"Sticker | L1haNg (Glitter)","count":1},"C135160395578":{"group":2,"name":"Sticker | L1haNg (Embroidered)","count":1},"C13579":{"group":3,"name":"Sticker | MOUZ","count":32},"C13587":{"group":3,"name":"Sticker | MOUZ (Normal)","count":8},"C13595":{"group":3,"name":"Sticker | MOUZ (Foil)","count":3},"C13603":{"group":3,"name":"Sticker | MOUZ (Gold)","count":8},"C13611":{"group":3,"name":"Sticker | MOUZ (Holo)","count":8},"C13619":{"group":3,"name":"Sticker | MOUZ (Glitter)","count":4},"C13622785418":{"group":2,"name":"Sticker | EliGE","count":56},"C13622785426":{"group":2,"name":"Sticker | EliGE (Normal)","count":16},"C13622785434":{"group":2,"name":"Sticker | EliGE (Foil)","count":10},"C13622785442":{"group":2,"name":"Sticker | EliGE (Gold)","count":16},"C13622785450":{"group":2,"name":"Sticker | EliGE (Holo)","count":8},"C13622785458":{"group":2,"name":"Sticker | EliGE (Glitter)","count":5},"C13622785466":{"group":2,"name":"Sticker | EliGE (Embroidered)","count":1},"C13627":{"group":3,"name":"Sticker | MOUZ (Embroidered)","count":1},"C137":{"group":1,"name":"Sticker | DreamHack 2013","count":12},"C137050428170":{"group":2,"name":"Sticker | maxxkor","count":4},"C137050428178":{"group":2,"name":"Sticker | maxxkor (Normal)","count":1},"C137050428186":{"group":2,"name":"Sticker | maxxkor (Foil)","count":1},"C137050428194":{"group":2,"name":"Sticker | maxxkor (Gold)","count":1},"C137050428202":{"group":2,"name":"Sticker | maxxkor (Holo)","count":1},"C13706552330":{"group":2,"name":"Sticker | imoRR","count":4},"C13706552338":{"group":2,"name":"Sticker | imoRR (Normal)","count":1},"C13706552354":{"group":2,"name":"Sticker | imoRR (Gold)","count":1},"C13706552362":{"group":2,"name":"Sticker | imoRR (Holo)","count":1},"C13706552370":{"group":2,"name":"Sticker | imoRR (Glitter)","count":1},"C13707":{"group":3,"name":"Sticker | Nemiga","count":8},"C13715":{"group":3,"name":"Sticker | Nemiga (Normal)","count":2},"C137182783498":{"group":2,"name":"Sticker | kyousuke","count":8},"C137182783506":{"group":2,"name":"Sticker | kyousuke (Normal)","count":2},"C137182783514":{"group":2,"name":"Sticker | kyousuke (Foil)","count":1},"C137182783522":{"group":2,"name":"Sticker | kyousuke (Gold)","count":2},"C137182783530":{"group":2,"name":"Sticker | kyousuke (Holo)","count":2},"C137182783546":{"group":2,"name":"Sticker | kyousuke (Embroidered)","count":1},"C13723":{"group":3,"name":"Sticker | Nemiga (Foil)","count":2},"C13731":{"group":3,"name":"Sticker | Nemiga (Gold)","count":2},"C13739":{"group":3,"name":"Sticker | Nemiga (Holo)","count":2},"C13754428170":{"group":2,"name":"Sticker | luchov","count":4},"C13754428178":{"group":2,"name":"Sticker | luchov (Normal)","count":1},"C13754428186":{"group":2,"name":"Sticker | luchov (Foil)","count":1},"C13754428194":{"group":2,"name":"Sticker | luchov (Gold)","count":1},"C13754428202":{"group":2,"name":"Sticker | luchov (Holo)","count":1},"C13759756810":{"group":2,"name":"Sticker | chelo","count":23},"C13759756818":{"group":2,"name":"Sticker | chelo (Normal)","count":6},"C13759756826":{"group":2,"name":"Sticker | chelo (Foil)","count":1},"C13759756834":{"group":2,"name":"Sticker | chelo (Gold)","count":6},"C13759756842":{"group":2,"name":"Sticker | chelo (Holo)","count":5},"C13759756850":{"group":2,"name":"Sticker | chelo (Glitter)","count":4},"C13759756858":{"group":2,"name":"Sticker | chelo (Embroidered)","count":1},"C13782037898":{"group":2,"name":"Sticker | KrizzeN","count":6},"C13782037906":{"group":2,"name":"Sticker | KrizzeN (Normal)","count":2},"C13782037914":{"group":2,"name":"Sticker | KrizzeN (Foil)","count":2},"C13782037922":{"group":2,"name":"Sticker | KrizzeN (Gold)","count":2},"C13790369930":{"group":2,"name":"Sticker | Heavygod","count":16},"C13790369938":{"group":2,"name":"Sticker | Heavygod (Normal)","count":4},"C13790369946":{"group":2,"name":"Sticker | Heavygod (Foil)","count":2},"C13790369954":{"group":2,"name":"Sticker | Heavygod (Gold)","count":4},"C13790369962":{"group":2,"name":"Sticker | Heavygod (Holo)","count":4},"C13790369970":{"group":2,"name":"Sticker | Heavygod (Glitter)","count":1},"C13790369978":{"group":2,"name":"Sticker | Heavygod (Embroidered)","count":1},"C13833833610":{"group":2,"name":"Sticker | dennis","count":24},"C13833833618":{"group":2,"name":"Sticker | dennis (Normal)","count":8},"C13833833626":{"group":2,"name":"Sticker | dennis (Foil)","count":8},"C13833833634":{"group":2,"name":"Sticker | dennis (Gold)","count":8},"C13835":{"group":3,"name":"Sticker | IHC Esports","count":8},"C13843":{"group":3,"name":"Sticker | IHC Esports (Normal)","count":2},"C13844100362":{"group":2,"name":"Sticker | frozen","count":27},"C13844100370":{"group":2,"name":"Sticker | frozen (Normal)","count":7},"C13844100378":{"group":2,"name":"Sticker | frozen (Foil)","count":2},"C13844100386":{"group":2,"name":"Sticker | frozen (Gold)","count":7},"C13844100394":{"group":2,"name":"Sticker | frozen (Holo)","count":6},"C13844100402":{"group":2,"name":"Sticker | frozen (Glitter)","count":4},"C13844100410":{"group":2,"name":"Sticker | frozen (Embroidered)","count":1},"C13859":{"group":3,"name":"Sticker | IHC Esports (Gold)","count":2},"C13867":{"group":3,"name":"Sticker | IHC Esports (Holo)","count":2},"C13875":{"group":3,"name":"Sticker | IHC Esports (Glitter)","count":2},"C139":{"group":3,"name":"Sticker | Ninjas in Pyjamas","count":64},"C139035234954":{"group":2,"name":"Sticker | MATYS","count":12},"C139035234962":{"group":2,"name":"Sticker | MATYS (Normal)","count":3},"C139035234970":{"group":2,"name":"Sticker | MATYS (Foil)","count":1},"C139035234978":{"group":2,"name":"Sticker | MATYS (Gold)","count":3},"C139035234986":{"group":2,"name":"Sticker | MATYS (Holo)","count":3},"C139035234994":{"group":2,"name":"Sticker | MATYS (Glitter)","count":1},"C139035235002":{"group":2,"name":"Sticker | MATYS (Embroidered)","count":1},"C13910940554":{"group":2,"name":"Sticker | AmaNEk","count":9},"C13910940562":{"group":2,"name":"Sticker | AmaNEk (Normal)","count":3},"C13910940570":{"group":2,"name":"Sticker | AmaNEk (Foil)","count":2},"C13910940578":{"group":2,"name":"Sticker | AmaNEk (Gold)","count":3},"C13910940586":{"group":2,"name":"Sticker | AmaNEk (Holo)","count":1},"C13921290506":{"group":2,"name":"Sticker | FugLy","count":9},"C13921290514":{"group":2,"name":"Sticker | FugLy (Normal)","count":3},"C13921290522":{"group":2,"name":"Sticker | FugLy (Foil)","count":3},"C13921290530":{"group":2,"name":"Sticker | FugLy (Gold)","count":3},"C13956628746":{"group":2,"name":"Sticker | captainMo","count":6},"C13956628754":{"group":2,"name":"Sticker | captainMo (Normal)","count":2},"C13956628762":{"group":2,"name":"Sticker | captainMo (Foil)","count":2},"C13956628770":{"group":2,"name":"Sticker | captainMo (Gold)","count":2},"C13963":{"group":3,"name":"Sticker | Outsiders","count":8},"C13971":{"group":3,"name":"Sticker | Outsiders (Normal)","count":2},"C13987":{"group":3,"name":"Sticker | Outsiders (Gold)","count":2},"C139921290":{"group":2,"name":"Sticker | Lekr0","count":15},"C139921298":{"group":2,"name":"Sticker | Lekr0 (Normal)","count":5},"C139921306":{"group":2,"name":"Sticker | Lekr0 (Foil)","count":5},"C139921314":{"group":2,"name":"Sticker | Lekr0 (Gold)","count":5},"C13995":{"group":3,"name":"Sticker | Outsiders (Holo)","count":2},"C14003":{"group":3,"name":"Sticker | Outsiders (Glitter)","count":2},"C14015683338":{"group":2,"name":"Sticker | spaze","count":3},"C14015683346":{"group":2,"name":"Sticker | spaze (Normal)","count":1},"C14015683354":{"group":2,"name":"Sticker | spaze (Foil)","count":1},"C14015683362":{"group":2,"name":"Sticker | spaze (Gold)","count":1},"C14057837578":{"group":2,"name":"Sticker | xand","count":3},"C14057837586":{"group":2,"name":"Sticker | xand (Normal)","count":1},"C14057837594":{"group":2,"name":"Sticker | xand (Foil)","count":1},"C14057837602":{"group":2,"name":"Sticker | xand (Gold)","count":1},"C14091":{"group":3,"name":"Sticker | Eternal Fire","count":8},"C14099":{"group":3,"name":"Sticker | Eternal Fire (Normal)","count":2},"C14115":{"group":3,"name":"Sticker | Eternal Fire (Gold)","count":2},"C141158798346":{"group":2,"name":"Sticker | w0nderful","count":28},"C141158798354":{"group":2,"name":"Sticker | w0nderful (Normal)","count":7},"C141158798362":{"group":2,"name":"Sticker | w0nderful (Foil)","count":2},"C141158798370":{"group":2,"name":"Sticker | w0nderful (Gold)","count":7},"C141158798378":{"group":2,"name":"Sticker | w0nderful (Holo)","count":7},"C141158798386":{"group":2,"name":"Sticker | w0nderful (Glitter)","count":4},"C141158798394":{"group":2,"name":"Sticker | w0nderful (Embroidered)","count":1},"C14123":{"group":3,"name":"Sticker | Eternal Fire (Holo)","count":2},"C14131":{"group":3,"name":"Sticker | Eternal Fire (Glitter)","count":2},"C14158149386":{"group":2,"name":"Sticker | Nodios","count":4},"C14158149394":{"group":2,"name":"Sticker | Nodios (Normal)","count":1},"C14158149410":{"group":2,"name":"Sticker | Nodios (Gold)","count":1},"C14158149418":{"group":2,"name":"Sticker | Nodios (Holo)","count":1},"C14158149426":{"group":2,"name":"Sticker | Nodios (Glitter)","count":1},"C1417":{"group":1,"name":"Sticker | Atlanta 2017","count":308},"C14219":{"group":3,"name":"Sticker | Complexity Gaming","count":20},"C14227":{"group":3,"name":"Sticker | Complexity Gaming (Normal)","count":5},"C14235":{"group":3,"name":"Sticker | Complexity Gaming (Foil)","count":1},"C14243":{"group":3,"name":"Sticker | Complexity Gaming (Gold)","count":5},"C1425":{"group":1,"name":"Sticker | Atlanta 2017 (Normal)","count":97},"C14251":{"group":3,"name":"Sticker | Complexity Gaming (Holo)","count":5},"C14259":{"group":3,"name":"Sticker | Complexity Gaming (Glitter)","count":4},"C14263911562":{"group":2,"name":"Sticker | snatchie","count":3},"C14263911570":{"group":2,"name":"Sticker | snatchie (Normal)","count":1},"C14263911578":{"group":2,"name":"Sticker | snatchie (Foil)","count":1},"C14263911586":{"group":2,"name":"Sticker | snatchie (Gold)","count":1},"C142838257162":{"group":2,"name":"Sticker | makazze","count":8},"C142838257170":{"group":2,"name":"Sticker | makazze (Normal)","count":2},"C142838257178":{"group":2,"name":"Sticker | makazze (Foil)","count":1},"C142838257186":{"group":2,"name":"Sticker | makazze (Gold)","count":2},"C142838257194":{"group":2,"name":"Sticker | makazze (Holo)","count":2},"C142838257210":{"group":2,"name":"Sticker | makazze (Embroidered)","count":1},"C14290513546":{"group":2,"name":"Sticker | isak","count":16},"C14290513554":{"group":2,"name":"Sticker | isak (Normal)","count":4},"C14290513562":{"group":2,"name":"Sticker | isak (Foil)","count":1},"C14290513570":{"group":2,"name":"Sticker | isak (Gold)","count":4},"C14290513578":{"group":2,"name":"Sticker | isak (Holo)","count":4},"C14290513586":{"group":2,"name":"Sticker | isak (Glitter)","count":3},"C14312641546":{"group":2,"name":"Sticker | BnTeT","count":12},"C14312641554":{"group":2,"name":"Sticker | BnTeT (Normal)","count":4},"C14312641562":{"group":2,"name":"Sticker | BnTeT (Foil)","count":4},"C14312641570":{"group":2,"name":"Sticker | BnTeT (Gold)","count":4},"C1433":{"group":1,"name":"Sticker | Atlanta 2017 (Foil)","count":97},"C14337820938":{"group":2,"name":"Sticker | xsepower","count":3},"C14337820946":{"group":2,"name":"Sticker | xsepower (Normal)","count":1},"C14337820954":{"group":2,"name":"Sticker | xsepower (Foil)","count":1},"C14337820962":{"group":2,"name":"Sticker | xsepower (Gold)","count":1},"C14343166474":{"group":2,"name":"Sticker | Liazz","count":30},"C14343166482":{"group":2,"name":"Sticker | Liazz (Normal)","count":8},"C14343166490":{"group":2,"name":"Sticker | Liazz (Foil)","count":4},"C14343166498":{"group":2,"name":"Sticker | Liazz (Gold)","count":8},"C14343166506":{"group":2,"name":"Sticker | Liazz (Holo)","count":6},"C14343166514":{"group":2,"name":"Sticker | Liazz (Glitter)","count":4},"C14347":{"group":3,"name":"Sticker | 9z Team","count":12},"C14355":{"group":3,"name":"Sticker | 9z Team (Normal)","count":3},"C14363":{"group":3,"name":"Sticker | 9z Team (Foil)","count":1},"C14371":{"group":3,"name":"Sticker | 9z Team (Gold)","count":3},"C14379":{"group":3,"name":"Sticker | 9z Team (Holo)","count":3},"C14387":{"group":3,"name":"Sticker | 9z Team (Glitter)","count":2},"C1441":{"group":1,"name":"Sticker | Atlanta 2017 (Gold)","count":97},"C14444979082":{"group":2,"name":"Sticker | nicoodoz","count":20},"C14444979090":{"group":2,"name":"Sticker | nicoodoz (Normal)","count":5},"C14444979098":{"group":2,"name":"Sticker | nicoodoz (Foil)","count":1},"C14444979106":{"group":2,"name":"Sticker | nicoodoz (Gold)","count":5},"C14444979114":{"group":2,"name":"Sticker | nicoodoz (Holo)","count":5},"C14444979122":{"group":2,"name":"Sticker | nicoodoz (Glitter)","count":4},"C14475":{"group":3,"name":"Sticker | Imperial Esports","count":24},"C14483":{"group":3,"name":"Sticker | Imperial Esports (Normal)","count":6},"C1449":{"group":1,"name":"Sticker | Atlanta 2017 (Holo)","count":17},"C14491":{"group":3,"name":"Sticker | Imperial Esports (Foil)","count":1},"C14499":{"group":3,"name":"Sticker | Imperial Esports (Gold)","count":6},"C145":{"group":1,"name":"Sticker | DreamHack 2013 (Normal)","count":7},"C14507":{"group":3,"name":"Sticker | Imperial Esports (Holo)","count":6},"C14515":{"group":3,"name":"Sticker | Imperial Esports (Glitter)","count":4},"C14523":{"group":3,"name":"Sticker | Imperial Esports (Embroidered)","count":1},"C145377972874":{"group":2,"name":"Sticker | kye","count":8},"C145377972882":{"group":2,"name":"Sticker | kye (Normal)","count":2},"C145377972890":{"group":2,"name":"Sticker | kye (Foil)","count":1},"C145377972898":{"group":2,"name":"Sticker | kye (Gold)","count":2},"C145377972906":{"group":2,"name":"Sticker | kye (Holo)","count":2},"C145377972922":{"group":2,"name":"Sticker | kye (Embroidered)","count":1},"C14560248330":{"group":2,"name":"Sticker | lux","count":16},"C14560248338":{"group":2,"name":"Sticker | lux (Normal)","count":4},"C14560248346":{"group":2,"name":"Sticker | lux (Foil)","count":1},"C14560248354":{"group":2,"name":"Sticker | lux (Gold)","count":4},"C14560248362":{"group":2,"name":"Sticker | lux (Holo)","count":4},"C14560248370":{"group":2,"name":"Sticker | lux (Glitter)","count":2},"C14560248378":{"group":2,"name":"Sticker | lux (Embroidered)","count":1},"C145978894090":{"group":2,"name":"Sticker | dziugss","count":4},"C145978894098":{"group":2,"name":"Sticker | dziugss (Normal)","count":1},"C145978894106":{"group":2,"name":"Sticker | dziugss (Foil)","count":1},"C145978894114":{"group":2,"name":"Sticker | dziugss (Gold)","count":1},"C145978894122":{"group":2,"name":"Sticker | dziugss (Holo)","count":1},"C14603":{"group":3,"name":"Sticker | Bad News Eagles","count":12},"C14611":{"group":3,"name":"Sticker | Bad News Eagles (Normal)","count":3},"C14627":{"group":3,"name":"Sticker | Bad News Eagles (Gold)","count":3},"C14635":{"group":3,"name":"Sticker | Bad News Eagles (Holo)","count":3},"C14643":{"group":3,"name":"Sticker | Bad News Eagles (Glitter)","count":3},"C14655625354":{"group":2,"name":"Sticker | m0NESY","count":28},"C14655625362":{"group":2,"name":"Sticker | m0NESY (Normal)","count":7},"C14655625370":{"group":2,"name":"Sticker | m0NESY (Foil)","count":2},"C14655625378":{"group":2,"name":"Sticker | m0NESY (Gold)","count":7},"C14655625386":{"group":2,"name":"Sticker | m0NESY (Holo)","count":7},"C14655625394":{"group":2,"name":"Sticker | m0NESY (Glitter)","count":4},"C14655625402":{"group":2,"name":"Sticker | m0NESY (Embroidered)","count":1},"C147":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Normal)","count":17},"C14731":{"group":3,"name":"Sticker | GamerLegion","count":24},"C14739":{"group":3,"name":"Sticker | GamerLegion (Normal)","count":6},"C14747":{"group":3,"name":"Sticker | GamerLegion (Foil)","count":1},"C14748599434":{"group":2,"name":"Sticker | jmqa","count":6},"C14748599442":{"group":2,"name":"Sticker | jmqa (Normal)","count":2},"C14748599450":{"group":2,"name":"Sticker | jmqa (Foil)","count":2},"C14748599458":{"group":2,"name":"Sticker | jmqa (Gold)","count":2},"C14755":{"group":3,"name":"Sticker | GamerLegion (Gold)","count":6},"C14763":{"group":3,"name":"Sticker | GamerLegion (Holo)","count":6},"C14771":{"group":3,"name":"Sticker | GamerLegion (Glitter)","count":4},"C14779":{"group":3,"name":"Sticker | GamerLegion (Embroidered)","count":1},"C14814994570":{"group":2,"name":"Sticker | facecrack","count":3},"C14814994578":{"group":2,"name":"Sticker | facecrack (Normal)","count":1},"C14814994586":{"group":2,"name":"Sticker | facecrack (Foil)","count":1},"C14814994594":{"group":2,"name":"Sticker | facecrack (Gold)","count":1},"C148585322890":{"group":2,"name":"Sticker | zeRRoFIX","count":4},"C148585322898":{"group":2,"name":"Sticker | zeRRoFIX (Normal)","count":1},"C148585322914":{"group":2,"name":"Sticker | zeRRoFIX (Gold)","count":1},"C148585322922":{"group":2,"name":"Sticker | zeRRoFIX (Holo)","count":1},"C148585322930":{"group":2,"name":"Sticker | zeRRoFIX (Glitter)","count":1},"C14859":{"group":3,"name":"Sticker | 00 Nation","count":4},"C14867":{"group":3,"name":"Sticker | 00 Nation (Normal)","count":1},"C148757130":{"group":2,"name":"Sticker | gob b","count":18},"C148757138":{"group":2,"name":"Sticker | gob b (Normal)","count":6},"C148757146":{"group":2,"name":"Sticker | gob b (Foil)","count":6},"C148757154":{"group":2,"name":"Sticker | gob b (Gold)","count":6},"C14883":{"group":3,"name":"Sticker | 00 Nation (Gold)","count":1},"C14891":{"group":3,"name":"Sticker | 00 Nation (Holo)","count":1},"C14899":{"group":3,"name":"Sticker | 00 Nation (Glitter)","count":1},"C14903169674":{"group":2,"name":"Sticker | Kylar","count":8},"C14903169682":{"group":2,"name":"Sticker | Kylar (Normal)","count":2},"C14903169698":{"group":2,"name":"Sticker | Kylar (Gold)","count":2},"C14903169706":{"group":2,"name":"Sticker | Kylar (Holo)","count":2},"C14903169714":{"group":2,"name":"Sticker | Kylar (Glitter)","count":2},"C14913215626":{"group":2,"name":"Sticker | Golden","count":12},"C14913215634":{"group":2,"name":"Sticker | Golden (Normal)","count":4},"C14913215642":{"group":2,"name":"Sticker | Golden (Foil)","count":4},"C14913215650":{"group":2,"name":"Sticker | Golden (Gold)","count":4},"C14933119114":{"group":2,"name":"Sticker | devoduvek","count":3},"C14933119122":{"group":2,"name":"Sticker | devoduvek (Normal)","count":1},"C14933119130":{"group":2,"name":"Sticker | devoduvek (Foil)","count":1},"C14933119138":{"group":2,"name":"Sticker | devoduvek (Gold)","count":1},"C14987":{"group":3,"name":"Sticker | Apeks","count":8},"C14995":{"group":3,"name":"Sticker | Apeks (Normal)","count":2},"C15011":{"group":3,"name":"Sticker | Apeks (Gold)","count":2},"C15019":{"group":3,"name":"Sticker | Apeks (Holo)","count":2},"C1502378634":{"group":2,"name":"Sticker | Ex6TenZ","count":12},"C1502378642":{"group":2,"name":"Sticker | Ex6TenZ (Normal)","count":4},"C1502378650":{"group":2,"name":"Sticker | Ex6TenZ (Foil)","count":4},"C1502378658":{"group":2,"name":"Sticker | Ex6TenZ (Gold)","count":4},"C15027":{"group":3,"name":"Sticker | Apeks (Glitter)","count":2},"C150640406666":{"group":2,"name":"Sticker | yxngstxr","count":8},"C150640406674":{"group":2,"name":"Sticker | yxngstxr (Normal)","count":2},"C150640406682":{"group":2,"name":"Sticker | yxngstxr (Foil)","count":2},"C150640406690":{"group":2,"name":"Sticker | yxngstxr (Gold)","count":2},"C150640406698":{"group":2,"name":"Sticker | yxngstxr (Holo)","count":2},"C15115":{"group":3,"name":"Sticker | Into The Breach","count":4},"C15123":{"group":3,"name":"Sticker | Into The Breach (Normal)","count":1},"C15139":{"group":3,"name":"Sticker | Into The Breach (Gold)","count":1},"C15147":{"group":3,"name":"Sticker | Into The Breach (Holo)","count":1},"C15155":{"group":3,"name":"Sticker | Into The Breach (Glitter)","count":1},"C15168722570":{"group":2,"name":"Sticker | JDC","count":16},"C15168722578":{"group":2,"name":"Sticker | JDC (Normal)","count":4},"C15168722586":{"group":2,"name":"Sticker | JDC (Foil)","count":1},"C15168722594":{"group":2,"name":"Sticker | JDC (Gold)","count":4},"C15168722602":{"group":2,"name":"Sticker | JDC (Holo)","count":4},"C15168722610":{"group":2,"name":"Sticker | JDC (Glitter)","count":3},"C15221457034":{"group":2,"name":"Sticker | spooke","count":4},"C15221457042":{"group":2,"name":"Sticker | spooke (Normal)","count":1},"C15221457050":{"group":2,"name":"Sticker | spooke (Foil)","count":1},"C15221457058":{"group":2,"name":"Sticker | spooke (Gold)","count":1},"C15221457066":{"group":2,"name":"Sticker | spooke (Holo)","count":1},"C152261968010":{"group":2,"name":"Sticker | esenthial","count":12},"C152261968018":{"group":2,"name":"Sticker | esenthial (Normal)","count":3},"C152261968026":{"group":2,"name":"Sticker | esenthial (Foil)","count":2},"C152261968034":{"group":2,"name":"Sticker | esenthial (Gold)","count":3},"C152261968042":{"group":2,"name":"Sticker | esenthial (Holo)","count":3},"C152261968058":{"group":2,"name":"Sticker | esenthial (Embroidered)","count":1},"C15243":{"group":3,"name":"Sticker | Monte","count":8},"C15251":{"group":3,"name":"Sticker | Monte (Normal)","count":2},"C15259":{"group":3,"name":"Sticker | Monte (Foil)","count":1},"C15267":{"group":3,"name":"Sticker | Monte (Gold)","count":2},"C15275":{"group":3,"name":"Sticker | Monte (Holo)","count":2},"C15283":{"group":3,"name":"Sticker | Monte (Glitter)","count":1},"C1533080202":{"group":2,"name":"Sticker | JaCkz","count":13},"C1533080210":{"group":2,"name":"Sticker | JaCkz (Normal)","count":4},"C1533080218":{"group":2,"name":"Sticker | JaCkz (Foil)","count":2},"C1533080226":{"group":2,"name":"Sticker | JaCkz (Gold)","count":4},"C1533080234":{"group":2,"name":"Sticker | JaCkz (Holo)","count":2},"C1533080242":{"group":2,"name":"Sticker | JaCkz (Glitter)","count":1},"C15340648714":{"group":2,"name":"Sticker | fame","count":20},"C15340648722":{"group":2,"name":"Sticker | fame (Normal)","count":5},"C15340648730":{"group":2,"name":"Sticker | fame (Foil)","count":1},"C15340648738":{"group":2,"name":"Sticker | fame (Gold)","count":5},"C15340648746":{"group":2,"name":"Sticker | fame (Holo)","count":5},"C15340648754":{"group":2,"name":"Sticker | fame (Glitter)","count":4},"C15371":{"group":3,"name":"Sticker | 9INE","count":4},"C15379":{"group":3,"name":"Sticker | 9INE (Normal)","count":1},"C15395":{"group":3,"name":"Sticker | 9INE (Gold)","count":1},"C15403":{"group":3,"name":"Sticker | 9INE (Holo)","count":1},"C15411":{"group":3,"name":"Sticker | 9INE (Glitter)","count":1},"C15415989130":{"group":2,"name":"Sticker | malbsMd","count":16},"C15415989138":{"group":2,"name":"Sticker | malbsMd (Normal)","count":4},"C15415989146":{"group":2,"name":"Sticker | malbsMd (Foil)","count":2},"C15415989154":{"group":2,"name":"Sticker | malbsMd (Gold)","count":4},"C15415989162":{"group":2,"name":"Sticker | malbsMd (Holo)","count":4},"C15415989170":{"group":2,"name":"Sticker | malbsMd (Glitter)","count":1},"C15415989178":{"group":2,"name":"Sticker | malbsMd (Embroidered)","count":1},"C1544357770":{"group":2,"name":"Sticker | GuardiaN","count":30},"C1544357778":{"group":2,"name":"Sticker | GuardiaN (Normal)","count":10},"C1544357786":{"group":2,"name":"Sticker | GuardiaN (Foil)","count":10},"C1544357794":{"group":2,"name":"Sticker | GuardiaN (Gold)","count":10},"C1545":{"group":1,"name":"Sticker | Krakow 2017","count":308},"C1547":{"group":3,"name":"Sticker | Natus Vincere","count":92},"C15499":{"group":3,"name":"Sticker | Fluxo","count":12},"C155":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Foil)","count":13},"C15507":{"group":3,"name":"Sticker | Fluxo (Normal)","count":3},"C15515":{"group":3,"name":"Sticker | Fluxo (Foil)","count":1},"C15516038026":{"group":2,"name":"Sticker | sh1ro","count":35},"C15516038034":{"group":2,"name":"Sticker | sh1ro (Normal)","count":9},"C15516038042":{"group":2,"name":"Sticker | sh1ro (Foil)","count":2},"C15516038050":{"group":2,"name":"Sticker | sh1ro (Gold)","count":9},"C15516038058":{"group":2,"name":"Sticker | sh1ro (Holo)","count":9},"C15516038066":{"group":2,"name":"Sticker | sh1ro (Glitter)","count":5},"C15516038074":{"group":2,"name":"Sticker | sh1ro (Embroidered)","count":1},"C15521687434":{"group":2,"name":"Sticker | misutaaa","count":7},"C15521687442":{"group":2,"name":"Sticker | misutaaa (Normal)","count":2},"C15521687458":{"group":2,"name":"Sticker | misutaaa (Gold)","count":2},"C15521687466":{"group":2,"name":"Sticker | misutaaa (Holo)","count":2},"C15521687474":{"group":2,"name":"Sticker | misutaaa (Glitter)","count":1},"C15523":{"group":3,"name":"Sticker | Fluxo (Gold)","count":3},"C1553":{"group":1,"name":"Sticker | Krakow 2017 (Normal)","count":97},"C15531":{"group":3,"name":"Sticker | Fluxo (Holo)","count":3},"C15539":{"group":3,"name":"Sticker | Fluxo (Glitter)","count":1},"C15542016138":{"group":2,"name":"Sticker | KEi","count":4},"C15542016146":{"group":2,"name":"Sticker | KEi (Normal)","count":1},"C15542016162":{"group":2,"name":"Sticker | KEi (Gold)","count":1},"C15542016170":{"group":2,"name":"Sticker | KEi (Holo)","count":1},"C15542016178":{"group":2,"name":"Sticker | KEi (Glitter)","count":1},"C15547":{"group":3,"name":"Sticker | Fluxo (Embroidered)","count":1},"C1555":{"group":3,"name":"Sticker | Natus Vincere (Normal)","count":24},"C1561":{"group":1,"name":"Sticker | Krakow 2017 (Foil)","count":97},"C15627":{"group":3,"name":"Sticker | The MongolZ","count":24},"C1563":{"group":3,"name":"Sticker | Natus Vincere (Foil)","count":18},"C15635":{"group":3,"name":"Sticker | The MongolZ (Normal)","count":6},"C15643":{"group":3,"name":"Sticker | The MongolZ (Foil)","count":2},"C15651":{"group":3,"name":"Sticker | The MongolZ (Gold)","count":6},"C15659":{"group":3,"name":"Sticker | The MongolZ (Holo)","count":6},"C15667":{"group":3,"name":"Sticker | The MongolZ (Glitter)","count":3},"C15675":{"group":3,"name":"Sticker | The MongolZ (Embroidered)","count":1},"C1569":{"group":1,"name":"Sticker | Krakow 2017 (Gold)","count":97},"C156921866":{"group":2,"name":"Sticker | tabseN","count":28},"C156921874":{"group":2,"name":"Sticker | tabseN (Normal)","count":8},"C156921882":{"group":2,"name":"Sticker | tabseN (Foil)","count":5},"C156921890":{"group":2,"name":"Sticker | tabseN (Gold)","count":8},"C156921898":{"group":2,"name":"Sticker | tabseN (Holo)","count":4},"C156921906":{"group":2,"name":"Sticker | tabseN (Glitter)","count":3},"C1571":{"group":3,"name":"Sticker | Natus Vincere (Gold)","count":22},"C15755":{"group":3,"name":"Sticker | AMKAL ESPORTS","count":4},"C15763":{"group":3,"name":"Sticker | AMKAL ESPORTS (Normal)","count":1},"C1577":{"group":1,"name":"Sticker | Krakow 2017 (Holo)","count":17},"C15772131594":{"group":2,"name":"Sticker | woxic","count":29},"C15772131602":{"group":2,"name":"Sticker | woxic (Normal)","count":8},"C15772131610":{"group":2,"name":"Sticker | woxic (Foil)","count":5},"C15772131618":{"group":2,"name":"Sticker | woxic (Gold)","count":8},"C15772131626":{"group":2,"name":"Sticker | woxic (Holo)","count":5},"C15772131634":{"group":2,"name":"Sticker | woxic (Glitter)","count":2},"C15772131642":{"group":2,"name":"Sticker | woxic (Embroidered)","count":1},"C15779":{"group":3,"name":"Sticker | AMKAL ESPORTS (Gold)","count":1},"C15787":{"group":3,"name":"Sticker | AMKAL ESPORTS (Holo)","count":1},"C1579":{"group":3,"name":"Sticker | Natus Vincere (Holo)","count":22},"C15795":{"group":3,"name":"Sticker | AMKAL ESPORTS (Glitter)","count":1},"C1587":{"group":3,"name":"Sticker | Natus Vincere (Glitter)","count":5},"C15883":{"group":3,"name":"Sticker | ECSTATIC","count":4},"C15891":{"group":3,"name":"Sticker | ECSTATIC (Normal)","count":1},"C15907":{"group":3,"name":"Sticker | ECSTATIC (Gold)","count":1},"C159142094986":{"group":2,"name":"Sticker | 910","count":20},"C159142094994":{"group":2,"name":"Sticker | 910 (Normal)","count":5},"C159142095002":{"group":2,"name":"Sticker | 910 (Foil)","count":2},"C159142095010":{"group":2,"name":"Sticker | 910 (Gold)","count":5},"C159142095018":{"group":2,"name":"Sticker | 910 (Holo)","count":5},"C159142095026":{"group":2,"name":"Sticker | 910 (Glitter)","count":2},"C159142095034":{"group":2,"name":"Sticker | 910 (Embroidered)","count":1},"C15915":{"group":3,"name":"Sticker | ECSTATIC (Holo)","count":1},"C15923":{"group":3,"name":"Sticker | ECSTATIC (Glitter)","count":1},"C1595":{"group":3,"name":"Sticker | Natus Vincere (Embroidered)","count":1},"C16011":{"group":3,"name":"Sticker | KOI","count":4},"C16019":{"group":3,"name":"Sticker | KOI (Normal)","count":1},"C16035":{"group":3,"name":"Sticker | KOI (Gold)","count":1},"C16043":{"group":3,"name":"Sticker | KOI (Holo)","count":1},"C16051":{"group":3,"name":"Sticker | KOI (Glitter)","count":1},"C16139":{"group":3,"name":"Sticker | Legacy","count":16},"C16147":{"group":3,"name":"Sticker | Legacy (Normal)","count":4},"C16155":{"group":3,"name":"Sticker | Legacy (Foil)","count":2},"C16163":{"group":3,"name":"Sticker | Legacy (Gold)","count":4},"C16171":{"group":3,"name":"Sticker | Legacy (Holo)","count":4},"C16179":{"group":3,"name":"Sticker | Legacy (Glitter)","count":1},"C16187":{"group":3,"name":"Sticker | Legacy (Embroidered)","count":1},"C16215068426":{"group":2,"name":"Sticker | hampus","count":15},"C16215068434":{"group":2,"name":"Sticker | hampus (Normal)","count":4},"C16215068442":{"group":2,"name":"Sticker | hampus (Foil)","count":1},"C16215068450":{"group":2,"name":"Sticker | hampus (Gold)","count":4},"C16215068458":{"group":2,"name":"Sticker | hampus (Holo)","count":4},"C16215068466":{"group":2,"name":"Sticker | hampus (Glitter)","count":2},"C16267":{"group":3,"name":"Sticker | Lynn Vision","count":16},"C16275":{"group":3,"name":"Sticker | Lynn Vision (Normal)","count":4},"C1628175882":{"group":2,"name":"Sticker | waterfaLLZ","count":6},"C1628175890":{"group":2,"name":"Sticker | waterfaLLZ (Normal)","count":2},"C1628175898":{"group":2,"name":"Sticker | waterfaLLZ (Foil)","count":2},"C1628175906":{"group":2,"name":"Sticker | waterfaLLZ (Gold)","count":2},"C16283":{"group":3,"name":"Sticker | Lynn Vision (Foil)","count":2},"C16291":{"group":3,"name":"Sticker | Lynn Vision (Gold)","count":4},"C16299":{"group":3,"name":"Sticker | Lynn Vision (Holo)","count":4},"C163":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Gold)","count":15},"C16307":{"group":3,"name":"Sticker | Lynn Vision (Glitter)","count":1},"C16315":{"group":3,"name":"Sticker | Lynn Vision (Embroidered)","count":1},"C164755570186":{"group":2,"name":"Sticker | efire","count":4},"C164755570194":{"group":2,"name":"Sticker | efire (Normal)","count":1},"C164755570202":{"group":2,"name":"Sticker | efire (Foil)","count":1},"C164755570210":{"group":2,"name":"Sticker | efire (Gold)","count":1},"C164755570218":{"group":2,"name":"Sticker | efire (Holo)","count":1},"C1647995402":{"group":2,"name":"Sticker | mezii","count":36},"C1647995410":{"group":2,"name":"Sticker | mezii (Normal)","count":9},"C1647995418":{"group":2,"name":"Sticker | mezii (Foil)","count":3},"C1647995426":{"group":2,"name":"Sticker | mezii (Gold)","count":9},"C1647995434":{"group":2,"name":"Sticker | mezii (Holo)","count":9},"C1647995442":{"group":2,"name":"Sticker | mezii (Glitter)","count":4},"C1647995450":{"group":2,"name":"Sticker | mezii (Embroidered)","count":2},"C16523":{"group":3,"name":"Sticker | SAW","count":4},"C16531":{"group":3,"name":"Sticker | SAW (Normal)","count":1},"C16547":{"group":3,"name":"Sticker | SAW (Gold)","count":1},"C16555":{"group":3,"name":"Sticker | SAW (Holo)","count":1},"C16563":{"group":3,"name":"Sticker | SAW (Glitter)","count":1},"C16651":{"group":3,"name":"Sticker | Wildcard","count":8},"C16659":{"group":3,"name":"Sticker | Wildcard (Normal)","count":2},"C16667":{"group":3,"name":"Sticker | Wildcard (Foil)","count":1},"C16675":{"group":3,"name":"Sticker | Wildcard (Gold)","count":2},"C16683":{"group":3,"name":"Sticker | Wildcard (Holo)","count":2},"C16691":{"group":3,"name":"Sticker | Wildcard (Glitter)","count":1},"C1673":{"group":1,"name":"Sticker | Boston 2018","count":479},"C16779":{"group":3,"name":"Sticker | Rare Atom","count":8},"C16787":{"group":3,"name":"Sticker | Rare Atom (Normal)","count":2},"C16803":{"group":3,"name":"Sticker | Rare Atom (Gold)","count":2},"C16807110154":{"group":2,"name":"Sticker | erkaSt","count":6},"C16807110162":{"group":2,"name":"Sticker | erkaSt (Normal)","count":2},"C16807110170":{"group":2,"name":"Sticker | erkaSt (Foil)","count":2},"C16807110178":{"group":2,"name":"Sticker | erkaSt (Gold)","count":2},"C1681":{"group":1,"name":"Sticker | Boston 2018 (Normal)","count":151},"C16811":{"group":3,"name":"Sticker | Rare Atom (Holo)","count":2},"C16819":{"group":3,"name":"Sticker | Rare Atom (Glitter)","count":1},"C16827":{"group":3,"name":"Sticker | Rare Atom (Embroidered)","count":1},"C1689":{"group":1,"name":"Sticker | Boston 2018 (Foil)","count":151},"C169":{"group":1,"name":"Sticker | DreamHack 2013 (Holo)","count":5},"C16907":{"group":3,"name":"Sticker | Flyquest","count":16},"C16915":{"group":3,"name":"Sticker | Flyquest (Normal)","count":4},"C16923":{"group":3,"name":"Sticker | Flyquest (Foil)","count":2},"C16931":{"group":3,"name":"Sticker | Flyquest (Gold)","count":4},"C16939":{"group":3,"name":"Sticker | Flyquest (Holo)","count":4},"C16947":{"group":3,"name":"Sticker | Flyquest (Glitter)","count":1},"C16955":{"group":3,"name":"Sticker | Flyquest (Embroidered)","count":1},"C1697":{"group":1,"name":"Sticker | Boston 2018 (Gold)","count":151},"C17035":{"group":3,"name":"Sticker | Passion UA","count":8},"C17039440266":{"group":2,"name":"Sticker | Bymas","count":4},"C17039440274":{"group":2,"name":"Sticker | Bymas (Normal)","count":1},"C17039440282":{"group":2,"name":"Sticker | Bymas (Foil)","count":1},"C17039440290":{"group":2,"name":"Sticker | Bymas (Gold)","count":1},"C17039440298":{"group":2,"name":"Sticker | Bymas (Holo)","count":1},"C17043":{"group":3,"name":"Sticker | Passion UA (Normal)","count":2},"C1705":{"group":1,"name":"Sticker | Boston 2018 (Holo)","count":26},"C17059":{"group":3,"name":"Sticker | Passion UA (Gold)","count":2},"C17067":{"group":3,"name":"Sticker | Passion UA (Holo)","count":2},"C17075":{"group":3,"name":"Sticker | Passion UA (Glitter)","count":1},"C17083":{"group":3,"name":"Sticker | Passion UA (Embroidered)","count":1},"C171":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Holo)","count":15},"C17163":{"group":3,"name":"Sticker | Aurora","count":12},"C17171":{"group":3,"name":"Sticker | Aurora (Normal)","count":3},"C17179":{"group":3,"name":"Sticker | Aurora (Foil)","count":2},"C17187":{"group":3,"name":"Sticker | Aurora (Gold)","count":3},"C17195":{"group":3,"name":"Sticker | Aurora (Holo)","count":3},"C17211":{"group":3,"name":"Sticker | Aurora (Embroidered)","count":1},"C172191498":{"group":2,"name":"Sticker | allu","count":18},"C172191506":{"group":2,"name":"Sticker | allu (Normal)","count":6},"C172191514":{"group":2,"name":"Sticker | allu (Foil)","count":6},"C172191522":{"group":2,"name":"Sticker | allu (Gold)","count":6},"C1723529610":{"group":2,"name":"Sticker | Spiidi","count":15},"C1723529618":{"group":2,"name":"Sticker | Spiidi (Normal)","count":5},"C1723529626":{"group":2,"name":"Sticker | Spiidi (Foil)","count":5},"C1723529634":{"group":2,"name":"Sticker | Spiidi (Gold)","count":5},"C1726985482":{"group":2,"name":"Sticker | arrozdoce","count":4},"C1726985490":{"group":2,"name":"Sticker | arrozdoce (Normal)","count":1},"C1726985506":{"group":2,"name":"Sticker | arrozdoce (Gold)","count":1},"C1726985514":{"group":2,"name":"Sticker | arrozdoce (Holo)","count":1},"C1726985522":{"group":2,"name":"Sticker | arrozdoce (Glitter)","count":1},"C17291":{"group":3,"name":"Sticker | B8","count":12},"C17299":{"group":3,"name":"Sticker | B8 (Normal)","count":3},"C17307":{"group":3,"name":"Sticker | B8 (Foil)","count":2},"C17315":{"group":3,"name":"Sticker | B8 (Gold)","count":3},"C17323":{"group":3,"name":"Sticker | B8 (Holo)","count":3},"C173273923978":{"group":2,"name":"Sticker | cmtry","count":4},"C173273923986":{"group":2,"name":"Sticker | cmtry (Normal)","count":1},"C173273923994":{"group":2,"name":"Sticker | cmtry (Foil)","count":1},"C173273924002":{"group":2,"name":"Sticker | cmtry (Gold)","count":1},"C173273924010":{"group":2,"name":"Sticker | cmtry (Holo)","count":1},"C17339":{"group":3,"name":"Sticker | B8 (Embroidered)","count":1},"C17347613066":{"group":2,"name":"Sticker | juanflatroo","count":12},"C17347613074":{"group":2,"name":"Sticker | juanflatroo (Normal)","count":3},"C17347613090":{"group":2,"name":"Sticker | juanflatroo (Gold)","count":3},"C17347613098":{"group":2,"name":"Sticker | juanflatroo (Holo)","count":3},"C17347613106":{"group":2,"name":"Sticker | juanflatroo (Glitter)","count":3},"C17360743946":{"group":2,"name":"Sticker | doc","count":4},"C17360743954":{"group":2,"name":"Sticker | doc (Normal)","count":1},"C17360743962":{"group":2,"name":"Sticker | doc (Foil)","count":1},"C17360743970":{"group":2,"name":"Sticker | doc (Gold)","count":1},"C17360743978":{"group":2,"name":"Sticker | doc (Holo)","count":1},"C1738251530":{"group":2,"name":"Sticker | pashaBiceps","count":24},"C1738251538":{"group":2,"name":"Sticker | pashaBiceps (Normal)","count":8},"C1738251546":{"group":2,"name":"Sticker | pashaBiceps (Foil)","count":8},"C1738251554":{"group":2,"name":"Sticker | pashaBiceps (Gold)","count":8},"C17405371914":{"group":2,"name":"Sticker | vice","count":3},"C17405371922":{"group":2,"name":"Sticker | vice (Normal)","count":1},"C17405371930":{"group":2,"name":"Sticker | vice (Foil)","count":1},"C17405371938":{"group":2,"name":"Sticker | vice (Gold)","count":1},"C174852234":{"group":2,"name":"Sticker | adreN","count":6},"C174852242":{"group":2,"name":"Sticker | adreN (Normal)","count":2},"C174852250":{"group":2,"name":"Sticker | adreN (Foil)","count":2},"C174852258":{"group":2,"name":"Sticker | adreN (Gold)","count":2},"C17547":{"group":3,"name":"Sticker | BetBoom","count":8},"C17555":{"group":3,"name":"Sticker | BetBoom (Normal)","count":2},"C17563":{"group":3,"name":"Sticker | BetBoom (Foil)","count":2},"C17571":{"group":3,"name":"Sticker | BetBoom (Gold)","count":2},"C17579":{"group":3,"name":"Sticker | BetBoom (Holo)","count":2},"C17639163530":{"group":2,"name":"Sticker | sl3nd","count":4},"C17639163538":{"group":2,"name":"Sticker | sl3nd (Normal)","count":1},"C17639163554":{"group":2,"name":"Sticker | sl3nd (Gold)","count":1},"C17639163562":{"group":2,"name":"Sticker | sl3nd (Holo)","count":1},"C17639163570":{"group":2,"name":"Sticker | sl3nd (Glitter)","count":1},"C17674050058":{"group":2,"name":"Sticker | Keoz","count":15},"C17674050066":{"group":2,"name":"Sticker | Keoz (Normal)","count":4},"C17674050074":{"group":2,"name":"Sticker | Keoz (Foil)","count":1},"C17674050082":{"group":2,"name":"Sticker | Keoz (Gold)","count":4},"C17674050090":{"group":2,"name":"Sticker | Keoz (Holo)","count":3},"C17674050098":{"group":2,"name":"Sticker | Keoz (Glitter)","count":3},"C17674365706":{"group":2,"name":"Sticker | aliStair","count":20},"C17674365714":{"group":2,"name":"Sticker | aliStair (Normal)","count":5},"C17674365722":{"group":2,"name":"Sticker | aliStair (Foil)","count":1},"C17674365730":{"group":2,"name":"Sticker | aliStair (Gold)","count":5},"C17674365738":{"group":2,"name":"Sticker | aliStair (Holo)","count":5},"C17674365746":{"group":2,"name":"Sticker | aliStair (Glitter)","count":4},"C17675":{"group":3,"name":"Sticker | Chinggis Warriors","count":4},"C17683":{"group":3,"name":"Sticker | Chinggis Warriors (Normal)","count":1},"C17684001290":{"group":2,"name":"Sticker | oBo","count":3},"C17684001298":{"group":2,"name":"Sticker | oBo (Normal)","count":1},"C17684001306":{"group":2,"name":"Sticker | oBo (Foil)","count":1},"C17684001314":{"group":2,"name":"Sticker | oBo (Gold)","count":1},"C17689280138":{"group":2,"name":"Sticker | regali","count":8},"C17689280146":{"group":2,"name":"Sticker | regali (Normal)","count":2},"C17689280154":{"group":2,"name":"Sticker | regali (Foil)","count":1},"C17689280162":{"group":2,"name":"Sticker | regali (Gold)","count":2},"C17689280170":{"group":2,"name":"Sticker | regali (Holo)","count":2},"C17689280186":{"group":2,"name":"Sticker | regali (Embroidered)","count":1},"C17691":{"group":3,"name":"Sticker | Chinggis Warriors (Foil)","count":1},"C17699":{"group":3,"name":"Sticker | Chinggis Warriors (Gold)","count":1},"C17707":{"group":3,"name":"Sticker | Chinggis Warriors (Holo)","count":1},"C17803":{"group":3,"name":"Sticker | Falcons","count":12},"C17811":{"group":3,"name":"Sticker | Falcons (Normal)","count":3},"C17819":{"group":3,"name":"Sticker | Falcons (Foil)","count":2},"C17827":{"group":3,"name":"Sticker | Falcons (Gold)","count":3},"C17835":{"group":3,"name":"Sticker | Falcons (Holo)","count":3},"C17851":{"group":3,"name":"Sticker | Falcons (Embroidered)","count":1},"C179":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Glitter)","count":3},"C17931":{"group":3,"name":"Sticker | M80","count":12},"C17939":{"group":3,"name":"Sticker | M80 (Normal)","count":3},"C17947":{"group":3,"name":"Sticker | M80 (Foil)","count":2},"C17949341962":{"group":2,"name":"Sticker | saadzin","count":12},"C17949341970":{"group":2,"name":"Sticker | saadzin (Normal)","count":3},"C17949341978":{"group":2,"name":"Sticker | saadzin (Foil)","count":2},"C17949341986":{"group":2,"name":"Sticker | saadzin (Gold)","count":3},"C17949341994":{"group":2,"name":"Sticker | saadzin (Holo)","count":3},"C17949342010":{"group":2,"name":"Sticker | saadzin (Embroidered)","count":1},"C17955":{"group":3,"name":"Sticker | M80 (Gold)","count":3},"C17963":{"group":3,"name":"Sticker | M80 (Holo)","count":3},"C17979":{"group":3,"name":"Sticker | M80 (Embroidered)","count":1},"C1801":{"group":1,"name":"Sticker | London 2018","count":460},"C1803":{"group":3,"name":"Sticker | SK Gaming","count":16},"C18059":{"group":3,"name":"Sticker | Metizport","count":4},"C18067":{"group":3,"name":"Sticker | Metizport (Normal)","count":1},"C18075":{"group":3,"name":"Sticker | Metizport (Foil)","count":1},"C18083":{"group":3,"name":"Sticker | Metizport (Gold)","count":1},"C1809":{"group":1,"name":"Sticker | London 2018 (Normal)","count":145},"C18091":{"group":3,"name":"Sticker | Metizport (Holo)","count":1},"C1811":{"group":3,"name":"Sticker | SK Gaming (Normal)","count":4},"C1817":{"group":1,"name":"Sticker | London 2018 (Foil)","count":145},"C18175750154":{"group":2,"name":"Sticker | salazar","count":4},"C18175750162":{"group":2,"name":"Sticker | salazar (Normal)","count":1},"C18175750178":{"group":2,"name":"Sticker | salazar (Gold)","count":1},"C18175750186":{"group":2,"name":"Sticker | salazar (Holo)","count":1},"C18175750194":{"group":2,"name":"Sticker | salazar (Glitter)","count":1},"C18187":{"group":3,"name":"Sticker | PARIVISION","count":8},"C1819":{"group":3,"name":"Sticker | SK Gaming (Foil)","count":4},"C18195":{"group":3,"name":"Sticker | PARIVISION (Normal)","count":2},"C18203":{"group":3,"name":"Sticker | PARIVISION (Foil)","count":1},"C18211":{"group":3,"name":"Sticker | PARIVISION (Gold)","count":2},"C18219":{"group":3,"name":"Sticker | PARIVISION (Holo)","count":2},"C18235":{"group":3,"name":"Sticker | PARIVISION (Embroidered)","count":1},"C1825":{"group":1,"name":"Sticker | London 2018 (Gold)","count":145},"C1827":{"group":3,"name":"Sticker | SK Gaming (Gold)","count":4},"C18315":{"group":3,"name":"Sticker | The Huns","count":4},"C18323":{"group":3,"name":"Sticker | The Huns (Normal)","count":1},"C1833":{"group":1,"name":"Sticker | London 2018 (Holo)","count":25},"C1833205642":{"group":2,"name":"Sticker | SmithZz","count":18},"C1833205650":{"group":2,"name":"Sticker | SmithZz (Normal)","count":6},"C1833205658":{"group":2,"name":"Sticker | SmithZz (Foil)","count":6},"C1833205666":{"group":2,"name":"Sticker | SmithZz (Gold)","count":6},"C18339":{"group":3,"name":"Sticker | The Huns (Gold)","count":1},"C18347":{"group":3,"name":"Sticker | The Huns (Holo)","count":1},"C1835":{"group":3,"name":"Sticker | SK Gaming (Holo)","count":4},"C18363":{"group":3,"name":"Sticker | The Huns (Embroidered)","count":1},"C18443":{"group":3,"name":"Sticker | RED Canids","count":4},"C18451":{"group":3,"name":"Sticker | RED Canids (Normal)","count":1},"C18467":{"group":3,"name":"Sticker | RED Canids (Gold)","count":1},"C18475":{"group":3,"name":"Sticker | RED Canids (Holo)","count":1},"C18478229130":{"group":2,"name":"Sticker | LNZ","count":11},"C18478229138":{"group":2,"name":"Sticker | LNZ (Normal)","count":3},"C18478229146":{"group":2,"name":"Sticker | LNZ (Foil)","count":2},"C18478229154":{"group":2,"name":"Sticker | LNZ (Gold)","count":3},"C18478229162":{"group":2,"name":"Sticker | LNZ (Holo)","count":3},"C18491":{"group":3,"name":"Sticker | RED Canids (Embroidered)","count":1},"C18571":{"group":3,"name":"Sticker | FUT","count":4},"C18579":{"group":3,"name":"Sticker | FUT (Normal)","count":1},"C18587":{"group":3,"name":"Sticker | FUT (Foil)","count":1},"C18595":{"group":3,"name":"Sticker | FUT (Gold)","count":1},"C18603":{"group":3,"name":"Sticker | FUT (Holo)","count":1},"C18699":{"group":3,"name":"Sticker | Gaimin Gladiators","count":4},"C187":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Embroidered)","count":1},"C18707":{"group":3,"name":"Sticker | Gaimin Gladiators (Normal)","count":1},"C18715":{"group":3,"name":"Sticker | Gaimin Gladiators (Foil)","count":1},"C18723":{"group":3,"name":"Sticker | Gaimin Gladiators (Gold)","count":1},"C18731":{"group":3,"name":"Sticker | Gaimin Gladiators (Holo)","count":1},"C18770115850":{"group":2,"name":"Sticker | Dosia","count":18},"C18770115858":{"group":2,"name":"Sticker | Dosia (Normal)","count":6},"C18770115866":{"group":2,"name":"Sticker | Dosia (Foil)","count":6},"C18770115874":{"group":2,"name":"Sticker | Dosia (Gold)","count":6},"C18812711946":{"group":2,"name":"Sticker | westmelon","count":16},"C18812711954":{"group":2,"name":"Sticker | westmelon (Normal)","count":4},"C18812711962":{"group":2,"name":"Sticker | westmelon (Foil)","count":2},"C18812711970":{"group":2,"name":"Sticker | westmelon (Gold)","count":4},"C18812711978":{"group":2,"name":"Sticker | westmelon (Holo)","count":4},"C18812711986":{"group":2,"name":"Sticker | westmelon (Glitter)","count":1},"C18812711994":{"group":2,"name":"Sticker | westmelon (Embroidered)","count":1},"C188237577610":{"group":2,"name":"Sticker | cobra","count":8},"C188237577618":{"group":2,"name":"Sticker | cobra (Normal)","count":2},"C188237577626":{"group":2,"name":"Sticker | cobra (Foil)","count":1},"C188237577634":{"group":2,"name":"Sticker | cobra (Gold)","count":2},"C188237577642":{"group":2,"name":"Sticker | cobra (Holo)","count":2},"C188237577658":{"group":2,"name":"Sticker | cobra (Embroidered)","count":1},"C18827":{"group":3,"name":"Sticker | SINNERS","count":4},"C18835":{"group":3,"name":"Sticker | SINNERS (Normal)","count":1},"C18843":{"group":3,"name":"Sticker | SINNERS (Foil)","count":1},"C18851":{"group":3,"name":"Sticker | SINNERS (Gold)","count":1},"C18859":{"group":3,"name":"Sticker | SINNERS (Holo)","count":1},"C18879503114":{"group":2,"name":"Sticker | Ramz1kBO$$","count":3},"C18879503122":{"group":2,"name":"Sticker | Ramz1kBO$$ (Normal)","count":1},"C18879503130":{"group":2,"name":"Sticker | Ramz1kBO$$ (Foil)","count":1},"C18879503138":{"group":2,"name":"Sticker | Ramz1kBO$$ (Gold)","count":1},"C18955":{"group":3,"name":"Sticker | THUNDERdOWNUNDER","count":4},"C18963":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Normal)","count":1},"C18971":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Foil)","count":1},"C18979":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Gold)","count":1},"C18987":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Holo)","count":1},"C19011936138":{"group":2,"name":"Sticker | Mercury","count":12},"C19011936146":{"group":2,"name":"Sticker | Mercury (Normal)","count":3},"C19011936154":{"group":2,"name":"Sticker | Mercury (Foil)","count":2},"C19011936162":{"group":2,"name":"Sticker | Mercury (Gold)","count":3},"C19011936170":{"group":2,"name":"Sticker | Mercury (Holo)","count":3},"C19011936186":{"group":2,"name":"Sticker | Mercury (Embroidered)","count":1},"C1902607754":{"group":2,"name":"Sticker | Sonic","count":16},"C1902607762":{"group":2,"name":"Sticker | Sonic (Normal)","count":4},"C1902607770":{"group":2,"name":"Sticker | Sonic (Foil)","count":2},"C1902607778":{"group":2,"name":"Sticker | Sonic (Gold)","count":4},"C1902607786":{"group":2,"name":"Sticker | Sonic (Holo)","count":4},"C1902607794":{"group":2,"name":"Sticker | Sonic (Glitter)","count":1},"C1902607802":{"group":2,"name":"Sticker | Sonic (Embroidered)","count":1},"C1929":{"group":1,"name":"Sticker | Katowice 2019","count":460},"C1937":{"group":1,"name":"Sticker | Katowice 2019 (Normal)","count":145},"C1945":{"group":1,"name":"Sticker | Katowice 2019 (Foil)","count":145},"C1953":{"group":1,"name":"Sticker | Katowice 2019 (Gold)","count":145},"C1961":{"group":1,"name":"Sticker | Katowice 2019 (Holo)","count":25},"C19635259530":{"group":2,"name":"Sticker | ZywOo","count":53},"C19635259538":{"group":2,"name":"Sticker | ZywOo (Normal)","count":14},"C19635259546":{"group":2,"name":"Sticker | ZywOo (Foil)","count":5},"C19635259554":{"group":2,"name":"Sticker | ZywOo (Gold)","count":14},"C19635259562":{"group":2,"name":"Sticker | ZywOo (Holo)","count":12},"C19635259570":{"group":2,"name":"Sticker | ZywOo (Glitter)","count":6},"C19635259578":{"group":2,"name":"Sticker | ZywOo (Embroidered)","count":2},"C19797009930":{"group":2,"name":"Sticker | v4lde","count":13},"C19797009938":{"group":2,"name":"Sticker | v4lde (Normal)","count":4},"C19797009946":{"group":2,"name":"Sticker | v4lde (Foil)","count":3},"C19797009954":{"group":2,"name":"Sticker | v4lde (Gold)","count":4},"C19797009962":{"group":2,"name":"Sticker | v4lde (Holo)","count":1},"C19797009970":{"group":2,"name":"Sticker | v4lde (Glitter)","count":1},"C20000966154":{"group":2,"name":"Sticker | flamie","count":30},"C20000966162":{"group":2,"name":"Sticker | flamie (Normal)","count":10},"C20000966170":{"group":2,"name":"Sticker | flamie (Foil)","count":10},"C20000966178":{"group":2,"name":"Sticker | flamie (Gold)","count":10},"C2014541066":{"group":2,"name":"Sticker | tonyblack","count":6},"C2014541074":{"group":2,"name":"Sticker | tonyblack (Normal)","count":2},"C2014541082":{"group":2,"name":"Sticker | tonyblack (Foil)","count":2},"C2014541090":{"group":2,"name":"Sticker | tonyblack (Gold)","count":2},"C20215086602":{"group":2,"name":"Sticker | faveN","count":12},"C20215086610":{"group":2,"name":"Sticker | faveN (Normal)","count":3},"C20215086618":{"group":2,"name":"Sticker | faveN (Foil)","count":1},"C20215086626":{"group":2,"name":"Sticker | faveN (Gold)","count":3},"C20215086634":{"group":2,"name":"Sticker | faveN (Holo)","count":3},"C20215086642":{"group":2,"name":"Sticker | faveN (Glitter)","count":2},"C20272757258":{"group":2,"name":"Sticker | skullz","count":16},"C20272757266":{"group":2,"name":"Sticker | skullz (Normal)","count":4},"C20272757274":{"group":2,"name":"Sticker | skullz (Foil)","count":1},"C20272757282":{"group":2,"name":"Sticker | skullz (Gold)","count":4},"C20272757290":{"group":2,"name":"Sticker | skullz (Holo)","count":4},"C20272757298":{"group":2,"name":"Sticker | skullz (Glitter)","count":2},"C20272757306":{"group":2,"name":"Sticker | skullz (Embroidered)","count":1},"C20330568202":{"group":2,"name":"Sticker | CRUC1AL","count":4},"C20330568210":{"group":2,"name":"Sticker | CRUC1AL (Normal)","count":1},"C20330568226":{"group":2,"name":"Sticker | CRUC1AL (Gold)","count":1},"C20330568234":{"group":2,"name":"Sticker | CRUC1AL (Holo)","count":1},"C20330568242":{"group":2,"name":"Sticker | CRUC1AL (Glitter)","count":1},"C20367744906":{"group":2,"name":"Sticker | draken","count":3},"C20367744914":{"group":2,"name":"Sticker | draken (Normal)","count":1},"C20367744922":{"group":2,"name":"Sticker | draken (Foil)","count":1},"C20367744930":{"group":2,"name":"Sticker | draken (Gold)","count":1},"C20508874634":{"group":2,"name":"Sticker | dav1d","count":16},"C20508874642":{"group":2,"name":"Sticker | dav1d (Normal)","count":4},"C20508874650":{"group":2,"name":"Sticker | dav1d (Foil)","count":1},"C20508874658":{"group":2,"name":"Sticker | dav1d (Gold)","count":4},"C20508874666":{"group":2,"name":"Sticker | dav1d (Holo)","count":4},"C20508874674":{"group":2,"name":"Sticker | dav1d (Glitter)","count":2},"C20508874682":{"group":2,"name":"Sticker | dav1d (Embroidered)","count":1},"C20517327370":{"group":2,"name":"Sticker | jabbi","count":20},"C20517327378":{"group":2,"name":"Sticker | jabbi (Normal)","count":5},"C20517327386":{"group":2,"name":"Sticker | jabbi (Foil)","count":1},"C20517327394":{"group":2,"name":"Sticker | jabbi (Gold)","count":5},"C20517327402":{"group":2,"name":"Sticker | jabbi (Holo)","count":5},"C20517327410":{"group":2,"name":"Sticker | jabbi (Glitter)","count":3},"C20517327418":{"group":2,"name":"Sticker | jabbi (Embroidered)","count":1},"C2057":{"group":1,"name":"Sticker | Berlin 2019","count":460},"C20602209034":{"group":2,"name":"Sticker | Perfecto","count":26},"C20602209042":{"group":2,"name":"Sticker | Perfecto (Normal)","count":7},"C20602209050":{"group":2,"name":"Sticker | Perfecto (Foil)","count":1},"C20602209058":{"group":2,"name":"Sticker | Perfecto (Gold)","count":7},"C20602209066":{"group":2,"name":"Sticker | Perfecto (Holo)","count":6},"C20602209074":{"group":2,"name":"Sticker | Perfecto (Glitter)","count":5},"C20639537674":{"group":2,"name":"Sticker | kabal","count":8},"C20639537682":{"group":2,"name":"Sticker | kabal (Normal)","count":2},"C20639537698":{"group":2,"name":"Sticker | kabal (Gold)","count":2},"C20639537706":{"group":2,"name":"Sticker | kabal (Holo)","count":2},"C20639537714":{"group":2,"name":"Sticker | kabal (Glitter)","count":2},"C20641652106":{"group":2,"name":"Sticker | disco doplan","count":3},"C20641652114":{"group":2,"name":"Sticker | disco doplan (Normal)","count":1},"C20641652122":{"group":2,"name":"Sticker | disco doplan (Foil)","count":1},"C20641652130":{"group":2,"name":"Sticker | disco doplan (Gold)","count":1},"C2064325258":{"group":2,"name":"Sticker | Kaze","count":10},"C2064325266":{"group":2,"name":"Sticker | Kaze (Normal)","count":3},"C2064325274":{"group":2,"name":"Sticker | Kaze (Foil)","count":2},"C2064325282":{"group":2,"name":"Sticker | Kaze (Gold)","count":3},"C2064325290":{"group":2,"name":"Sticker | Kaze (Holo)","count":1},"C2064325298":{"group":2,"name":"Sticker | Kaze (Glitter)","count":1},"C2065":{"group":1,"name":"Sticker | Berlin 2019 (Normal)","count":145},"C20683530":{"group":2,"name":"Sticker | koosta","count":3},"C20683538":{"group":2,"name":"Sticker | koosta (Normal)","count":1},"C20683546":{"group":2,"name":"Sticker | koosta (Foil)","count":1},"C20683554":{"group":2,"name":"Sticker | koosta (Gold)","count":1},"C2073":{"group":1,"name":"Sticker | Berlin 2019 (Foil)","count":145},"C2081":{"group":1,"name":"Sticker | Berlin 2019 (Gold)","count":145},"C2087488138":{"group":2,"name":"Sticker | zehN","count":6},"C2087488146":{"group":2,"name":"Sticker | zehN (Normal)","count":2},"C2087488154":{"group":2,"name":"Sticker | zehN (Foil)","count":2},"C2087488162":{"group":2,"name":"Sticker | zehN (Gold)","count":2},"C2089":{"group":1,"name":"Sticker | Berlin 2019 (Holo)","count":25},"C20909890698":{"group":2,"name":"Sticker | Nifty","count":6},"C20909890706":{"group":2,"name":"Sticker | Nifty (Normal)","count":2},"C20909890714":{"group":2,"name":"Sticker | Nifty (Foil)","count":2},"C20909890722":{"group":2,"name":"Sticker | Nifty (Gold)","count":2},"C20992522":{"group":2,"name":"Sticker | seang@res","count":9},"C20992530":{"group":2,"name":"Sticker | seang@res (Normal)","count":3},"C20992538":{"group":2,"name":"Sticker | seang@res (Foil)","count":3},"C20992546":{"group":2,"name":"Sticker | seang@res (Gold)","count":3},"C21094771594":{"group":2,"name":"Sticker | kl1m","count":8},"C21094771602":{"group":2,"name":"Sticker | kl1m (Normal)","count":2},"C21094771610":{"group":2,"name":"Sticker | kl1m (Foil)","count":1},"C21094771618":{"group":2,"name":"Sticker | kl1m (Gold)","count":2},"C21094771626":{"group":2,"name":"Sticker | kl1m (Holo)","count":2},"C21094771642":{"group":2,"name":"Sticker | kl1m (Embroidered)","count":1},"C21235929354":{"group":2,"name":"Sticker | DemQQ","count":4},"C21235929362":{"group":2,"name":"Sticker | DemQQ (Normal)","count":1},"C21235929378":{"group":2,"name":"Sticker | DemQQ (Gold)","count":1},"C21235929386":{"group":2,"name":"Sticker | DemQQ (Holo)","count":1},"C21235929394":{"group":2,"name":"Sticker | DemQQ (Glitter)","count":1},"C21372231946":{"group":2,"name":"Sticker | qikert","count":28},"C21372231954":{"group":2,"name":"Sticker | qikert (Normal)","count":8},"C21372231962":{"group":2,"name":"Sticker | qikert (Foil)","count":3},"C21372231970":{"group":2,"name":"Sticker | qikert (Gold)","count":8},"C21372231978":{"group":2,"name":"Sticker | qikert (Holo)","count":5},"C21372231986":{"group":2,"name":"Sticker | qikert (Glitter)","count":3},"C21372231994":{"group":2,"name":"Sticker | qikert (Embroidered)","count":1},"C21529327370":{"group":2,"name":"Sticker | nin9","count":8},"C21529327378":{"group":2,"name":"Sticker | nin9 (Normal)","count":2},"C21529327394":{"group":2,"name":"Sticker | nin9 (Gold)","count":2},"C21529327402":{"group":2,"name":"Sticker | nin9 (Holo)","count":2},"C21529327410":{"group":2,"name":"Sticker | nin9 (Glitter)","count":1},"C21529327418":{"group":2,"name":"Sticker | nin9 (Embroidered)","count":1},"C2155450378":{"group":2,"name":"Sticker | jks","count":31},"C2155450386":{"group":2,"name":"Sticker | jks (Normal)","count":9},"C2155450394":{"group":2,"name":"Sticker | jks (Foil)","count":6},"C2155450402":{"group":2,"name":"Sticker | jks (Gold)","count":9},"C2155450410":{"group":2,"name":"Sticker | jks (Holo)","count":4},"C2155450418":{"group":2,"name":"Sticker | jks (Glitter)","count":2},"C2155450426":{"group":2,"name":"Sticker | jks (Embroidered)","count":1},"C2161033098":{"group":2,"name":"Sticker | freakazoid","count":9},"C2161033106":{"group":2,"name":"Sticker | freakazoid (Normal)","count":3},"C2161033114":{"group":2,"name":"Sticker | freakazoid (Foil)","count":3},"C2161033122":{"group":2,"name":"Sticker | freakazoid (Gold)","count":3},"C21654758666":{"group":2,"name":"Sticker | Ethan","count":6},"C21654758674":{"group":2,"name":"Sticker | Ethan (Normal)","count":2},"C21654758682":{"group":2,"name":"Sticker | Ethan (Foil)","count":2},"C21654758690":{"group":2,"name":"Sticker | Ethan (Gold)","count":2},"C21736813322":{"group":2,"name":"Sticker | b4rtiN","count":4},"C21736813330":{"group":2,"name":"Sticker | b4rtiN (Normal)","count":1},"C21736813346":{"group":2,"name":"Sticker | b4rtiN (Gold)","count":1},"C21736813354":{"group":2,"name":"Sticker | b4rtiN (Holo)","count":1},"C21736813362":{"group":2,"name":"Sticker | b4rtiN (Glitter)","count":1},"C21757774986":{"group":2,"name":"Sticker | DD","count":6},"C21757774994":{"group":2,"name":"Sticker | DD (Normal)","count":2},"C21757775002":{"group":2,"name":"Sticker | DD (Foil)","count":2},"C21757775010":{"group":2,"name":"Sticker | DD (Gold)","count":2},"C21782857482":{"group":2,"name":"Sticker | fnx","count":13},"C21782857490":{"group":2,"name":"Sticker | fnx (Normal)","count":4},"C21782857498":{"group":2,"name":"Sticker | fnx (Foil)","count":3},"C21782857506":{"group":2,"name":"Sticker | fnx (Gold)","count":4},"C21782857514":{"group":2,"name":"Sticker | fnx (Holo)","count":1},"C21782857522":{"group":2,"name":"Sticker | fnx (Glitter)","count":1},"C2185":{"group":1,"name":"Sticker | RMR 2020","count":96},"C2193":{"group":1,"name":"Sticker | RMR 2020 (Normal)","count":24},"C21942411274":{"group":2,"name":"Sticker | oskar","count":12},"C21942411282":{"group":2,"name":"Sticker | oskar (Normal)","count":4},"C21942411290":{"group":2,"name":"Sticker | oskar (Foil)","count":4},"C21942411298":{"group":2,"name":"Sticker | oskar (Gold)","count":4},"C21985337866":{"group":2,"name":"Sticker | fEAR","count":8},"C21985337874":{"group":2,"name":"Sticker | fEAR (Normal)","count":2},"C21985337890":{"group":2,"name":"Sticker | fEAR (Gold)","count":2},"C21985337898":{"group":2,"name":"Sticker | fEAR (Holo)","count":2},"C21985337906":{"group":2,"name":"Sticker | fEAR (Glitter)","count":1},"C21985337914":{"group":2,"name":"Sticker | fEAR (Embroidered)","count":1},"C2201":{"group":1,"name":"Sticker | RMR 2020 (Foil)","count":24},"C2209":{"group":1,"name":"Sticker | RMR 2020 (Gold)","count":24},"C2217":{"group":1,"name":"Sticker | RMR 2020 (Holo)","count":24},"C22289433226":{"group":2,"name":"Sticker | YEKINDAR","count":27},"C22289433234":{"group":2,"name":"Sticker | YEKINDAR (Normal)","count":7},"C22289433242":{"group":2,"name":"Sticker | YEKINDAR (Foil)","count":1},"C22289433250":{"group":2,"name":"Sticker | YEKINDAR (Gold)","count":7},"C22289433258":{"group":2,"name":"Sticker | YEKINDAR (Holo)","count":7},"C22289433266":{"group":2,"name":"Sticker | YEKINDAR (Glitter)","count":4},"C22289433274":{"group":2,"name":"Sticker | YEKINDAR (Embroidered)","count":1},"C22381787146":{"group":2,"name":"Sticker | S0tF1k","count":6},"C22381787154":{"group":2,"name":"Sticker | S0tF1k (Normal)","count":2},"C22381787162":{"group":2,"name":"Sticker | S0tF1k (Foil)","count":2},"C22381787170":{"group":2,"name":"Sticker | S0tF1k (Gold)","count":2},"C22395255050":{"group":2,"name":"Sticker | gafolo","count":4},"C22395255058":{"group":2,"name":"Sticker | gafolo (Normal)","count":1},"C22395255066":{"group":2,"name":"Sticker | gafolo (Foil)","count":1},"C22395255074":{"group":2,"name":"Sticker | gafolo (Gold)","count":1},"C22395255082":{"group":2,"name":"Sticker | gafolo (Holo)","count":1},"C2243328906":{"group":2,"name":"Sticker | kRYSTAL","count":6},"C2243328914":{"group":2,"name":"Sticker | kRYSTAL (Normal)","count":2},"C2243328922":{"group":2,"name":"Sticker | kRYSTAL (Foil)","count":2},"C2243328930":{"group":2,"name":"Sticker | kRYSTAL (Gold)","count":2},"C22478472970":{"group":2,"name":"Sticker | Plopski","count":11},"C22478472978":{"group":2,"name":"Sticker | Plopski (Normal)","count":3},"C22478472986":{"group":2,"name":"Sticker | Plopski (Foil)","count":1},"C22478472994":{"group":2,"name":"Sticker | Plopski (Gold)","count":3},"C22478473002":{"group":2,"name":"Sticker | Plopski (Holo)","count":3},"C22478473010":{"group":2,"name":"Sticker | Plopski (Glitter)","count":1},"C2248282378":{"group":2,"name":"Sticker | FNS","count":6},"C2248282386":{"group":2,"name":"Sticker | FNS (Normal)","count":2},"C2248282394":{"group":2,"name":"Sticker | FNS (Foil)","count":2},"C2248282402":{"group":2,"name":"Sticker | FNS (Gold)","count":2},"C22710887306":{"group":2,"name":"Sticker | xccurate","count":6},"C22710887314":{"group":2,"name":"Sticker | xccurate (Normal)","count":2},"C22710887322":{"group":2,"name":"Sticker | xccurate (Foil)","count":2},"C22710887330":{"group":2,"name":"Sticker | xccurate (Gold)","count":2},"C22719471754":{"group":2,"name":"Sticker | Furlan","count":6},"C22719471762":{"group":2,"name":"Sticker | Furlan (Normal)","count":2},"C22719471770":{"group":2,"name":"Sticker | Furlan (Foil)","count":2},"C22719471778":{"group":2,"name":"Sticker | Furlan (Gold)","count":2},"C22722270090":{"group":2,"name":"Sticker | z4KR","count":16},"C22722270098":{"group":2,"name":"Sticker | z4KR (Normal)","count":4},"C22722270106":{"group":2,"name":"Sticker | z4KR (Foil)","count":2},"C22722270114":{"group":2,"name":"Sticker | z4KR (Gold)","count":4},"C22722270122":{"group":2,"name":"Sticker | z4KR (Holo)","count":4},"C22722270130":{"group":2,"name":"Sticker | z4KR (Glitter)","count":1},"C22722270138":{"group":2,"name":"Sticker | z4KR (Embroidered)","count":1},"C22764551946":{"group":2,"name":"Sticker | Rainwaker","count":4},"C22764551954":{"group":2,"name":"Sticker | Rainwaker (Normal)","count":1},"C22764551962":{"group":2,"name":"Sticker | Rainwaker (Foil)","count":1},"C22764551970":{"group":2,"name":"Sticker | Rainwaker (Gold)","count":1},"C22764551978":{"group":2,"name":"Sticker | Rainwaker (Holo)","count":1},"C22856031626":{"group":2,"name":"Sticker | Brollan","count":35},"C22856031634":{"group":2,"name":"Sticker | Brollan (Normal)","count":9},"C22856031642":{"group":2,"name":"Sticker | Brollan (Foil)","count":3},"C22856031650":{"group":2,"name":"Sticker | Brollan (Gold)","count":9},"C22856031658":{"group":2,"name":"Sticker | Brollan (Holo)","count":8},"C22856031666":{"group":2,"name":"Sticker | Brollan (Glitter)","count":5},"C22856031674":{"group":2,"name":"Sticker | Brollan (Embroidered)","count":1},"C22883007370":{"group":2,"name":"Sticker | BOROS","count":4},"C22883007378":{"group":2,"name":"Sticker | BOROS (Normal)","count":1},"C22883007394":{"group":2,"name":"Sticker | BOROS (Gold)","count":1},"C22883007402":{"group":2,"name":"Sticker | BOROS (Holo)","count":1},"C22883007410":{"group":2,"name":"Sticker | BOROS (Glitter)","count":1},"C2289582346":{"group":2,"name":"Sticker | ngiN","count":6},"C2289582354":{"group":2,"name":"Sticker | ngiN (Normal)","count":2},"C2289582362":{"group":2,"name":"Sticker | ngiN (Foil)","count":2},"C2289582370":{"group":2,"name":"Sticker | ngiN (Gold)","count":2},"C2300879882":{"group":2,"name":"Sticker | Happy","count":18},"C2300879890":{"group":2,"name":"Sticker | Happy (Normal)","count":6},"C2300879898":{"group":2,"name":"Sticker | Happy (Foil)","count":6},"C2300879906":{"group":2,"name":"Sticker | Happy (Gold)","count":6},"C2311976330":{"group":2,"name":"Sticker | cajunb","count":24},"C2311976338":{"group":2,"name":"Sticker | cajunb (Normal)","count":8},"C2311976346":{"group":2,"name":"Sticker | cajunb (Foil)","count":8},"C2311976354":{"group":2,"name":"Sticker | cajunb (Gold)","count":8},"C2313":{"group":1,"name":"Sticker | Stockholm 2021","count":220},"C23168809482":{"group":2,"name":"Sticker | xiELO","count":8},"C23168809490":{"group":2,"name":"Sticker | xiELO (Normal)","count":2},"C23168809498":{"group":2,"name":"Sticker | xiELO (Foil)","count":1},"C23168809506":{"group":2,"name":"Sticker | xiELO (Gold)","count":2},"C23168809514":{"group":2,"name":"Sticker | xiELO (Holo)","count":2},"C23168809530":{"group":2,"name":"Sticker | xiELO (Embroidered)","count":1},"C2321":{"group":1,"name":"Sticker | Stockholm 2021 (Normal)","count":65},"C23283913354":{"group":2,"name":"Sticker | malta","count":6},"C23283913362":{"group":2,"name":"Sticker | malta (Normal)","count":2},"C23283913370":{"group":2,"name":"Sticker | malta (Foil)","count":2},"C23283913378":{"group":2,"name":"Sticker | malta (Gold)","count":2},"C2329":{"group":1,"name":"Sticker | Stockholm 2021 (Foil)","count":25},"C2331679626":{"group":2,"name":"Sticker | tarik","count":24},"C2331679634":{"group":2,"name":"Sticker | tarik (Normal)","count":8},"C2331679642":{"group":2,"name":"Sticker | tarik (Foil)","count":8},"C2331679650":{"group":2,"name":"Sticker | tarik (Gold)","count":8},"C2337":{"group":1,"name":"Sticker | Stockholm 2021 (Gold)","count":65},"C2345":{"group":1,"name":"Sticker | Stockholm 2021 (Holo)","count":65},"C2376887306":{"group":2,"name":"Sticker | FlameZ","count":36},"C2376887314":{"group":2,"name":"Sticker | FlameZ (Normal)","count":9},"C2376887322":{"group":2,"name":"Sticker | FlameZ (Foil)","count":3},"C2376887330":{"group":2,"name":"Sticker | FlameZ (Gold)","count":9},"C2376887338":{"group":2,"name":"Sticker | FlameZ (Holo)","count":9},"C2376887346":{"group":2,"name":"Sticker | FlameZ (Glitter)","count":4},"C2376887354":{"group":2,"name":"Sticker | FlameZ (Embroidered)","count":2},"C23800491274":{"group":2,"name":"Sticker | Boombl4","count":35},"C23800491282":{"group":2,"name":"Sticker | Boombl4 (Normal)","count":10},"C23800491290":{"group":2,"name":"Sticker | Boombl4 (Foil)","count":6},"C23800491298":{"group":2,"name":"Sticker | Boombl4 (Gold)","count":10},"C23800491306":{"group":2,"name":"Sticker | Boombl4 (Holo)","count":6},"C23800491314":{"group":2,"name":"Sticker | Boombl4 (Glitter)","count":3},"C238034698":{"group":2,"name":"Sticker | es3tag","count":8},"C238034706":{"group":2,"name":"Sticker | es3tag (Normal)","count":2},"C238034722":{"group":2,"name":"Sticker | es3tag (Gold)","count":2},"C238034730":{"group":2,"name":"Sticker | es3tag (Holo)","count":2},"C238034738":{"group":2,"name":"Sticker | es3tag (Glitter)","count":2},"C240995722":{"group":2,"name":"Sticker | NickelBack","count":4},"C240995730":{"group":2,"name":"Sticker | NickelBack (Normal)","count":1},"C240995746":{"group":2,"name":"Sticker | NickelBack (Gold)","count":1},"C240995754":{"group":2,"name":"Sticker | NickelBack (Holo)","count":1},"C240995762":{"group":2,"name":"Sticker | NickelBack (Glitter)","count":1},"C2414125322":{"group":2,"name":"Sticker | byali","count":24},"C2414125330":{"group":2,"name":"Sticker | byali (Normal)","count":8},"C2414125338":{"group":2,"name":"Sticker | byali (Foil)","count":8},"C2414125346":{"group":2,"name":"Sticker | byali (Gold)","count":8},"C2419616650":{"group":2,"name":"Sticker | USTILO","count":9},"C2419616658":{"group":2,"name":"Sticker | USTILO (Normal)","count":3},"C2419616666":{"group":2,"name":"Sticker | USTILO (Foil)","count":3},"C2419616674":{"group":2,"name":"Sticker | USTILO (Gold)","count":3},"C24372176906":{"group":2,"name":"Sticker | siuhy","count":28},"C24372176914":{"group":2,"name":"Sticker | siuhy (Normal)","count":7},"C24372176922":{"group":2,"name":"Sticker | siuhy (Foil)","count":2},"C24372176930":{"group":2,"name":"Sticker | siuhy (Gold)","count":7},"C24372176938":{"group":2,"name":"Sticker | siuhy (Holo)","count":7},"C24372176946":{"group":2,"name":"Sticker | siuhy (Glitter)","count":4},"C24372176954":{"group":2,"name":"Sticker | siuhy (Embroidered)","count":1},"C2441":{"group":1,"name":"Sticker | Antwerp 2022","count":600},"C2449":{"group":1,"name":"Sticker | Antwerp 2022 (Normal)","count":150},"C24578512906":{"group":2,"name":"Sticker | DickStacy","count":6},"C24578512914":{"group":2,"name":"Sticker | DickStacy (Normal)","count":2},"C24578512922":{"group":2,"name":"Sticker | DickStacy (Foil)","count":2},"C24578512930":{"group":2,"name":"Sticker | DickStacy (Gold)","count":2},"C24590394762":{"group":2,"name":"Sticker | SENER1","count":12},"C24590394770":{"group":2,"name":"Sticker | SENER1 (Normal)","count":3},"C24590394786":{"group":2,"name":"Sticker | SENER1 (Gold)","count":3},"C24590394794":{"group":2,"name":"Sticker | SENER1 (Holo)","count":3},"C24590394802":{"group":2,"name":"Sticker | SENER1 (Glitter)","count":3},"C2465":{"group":1,"name":"Sticker | Antwerp 2022 (Gold)","count":150},"C2473":{"group":1,"name":"Sticker | Antwerp 2022 (Holo)","count":150},"C24753425034":{"group":2,"name":"Sticker | nawwk","count":8},"C24753425042":{"group":2,"name":"Sticker | nawwk (Normal)","count":2},"C24753425058":{"group":2,"name":"Sticker | nawwk (Gold)","count":2},"C24753425066":{"group":2,"name":"Sticker | nawwk (Holo)","count":2},"C24753425074":{"group":2,"name":"Sticker | nawwk (Glitter)","count":2},"C247863434":{"group":2,"name":"Sticker | ANDROID","count":3},"C247863442":{"group":2,"name":"Sticker | ANDROID (Normal)","count":1},"C247863450":{"group":2,"name":"Sticker | ANDROID (Foil)","count":1},"C247863458":{"group":2,"name":"Sticker | ANDROID (Gold)","count":1},"C2481":{"group":1,"name":"Sticker | Antwerp 2022 (Glitter)","count":150},"C248260618":{"group":2,"name":"Sticker | fox","count":15},"C248260626":{"group":2,"name":"Sticker | fox (Normal)","count":5},"C248260634":{"group":2,"name":"Sticker | fox (Foil)","count":5},"C248260642":{"group":2,"name":"Sticker | fox (Gold)","count":5},"C2483641226":{"group":2,"name":"Sticker | k0nfig","count":23},"C2483641234":{"group":2,"name":"Sticker | k0nfig (Normal)","count":7},"C2483641242":{"group":2,"name":"Sticker | k0nfig (Foil)","count":5},"C2483641250":{"group":2,"name":"Sticker | k0nfig (Gold)","count":7},"C2483641258":{"group":2,"name":"Sticker | k0nfig (Holo)","count":2},"C2483641266":{"group":2,"name":"Sticker | k0nfig (Glitter)","count":2},"C24913776522":{"group":2,"name":"Sticker | Norwi","count":4},"C24913776530":{"group":2,"name":"Sticker | Norwi (Normal)","count":1},"C24913776546":{"group":2,"name":"Sticker | Norwi (Gold)","count":1},"C24913776554":{"group":2,"name":"Sticker | Norwi (Holo)","count":1},"C24913776562":{"group":2,"name":"Sticker | Norwi (Glitter)","count":1},"C25022556042":{"group":2,"name":"Sticker | volt","count":12},"C25022556050":{"group":2,"name":"Sticker | volt (Normal)","count":3},"C25022556066":{"group":2,"name":"Sticker | volt (Gold)","count":3},"C25022556074":{"group":2,"name":"Sticker | volt (Holo)","count":3},"C25022556082":{"group":2,"name":"Sticker | volt (Glitter)","count":3},"C25099283850":{"group":2,"name":"Sticker | CeRq","count":10},"C25099283858":{"group":2,"name":"Sticker | CeRq (Normal)","count":3},"C25099283866":{"group":2,"name":"Sticker | CeRq (Foil)","count":2},"C25099283874":{"group":2,"name":"Sticker | CeRq (Gold)","count":3},"C25099283882":{"group":2,"name":"Sticker | CeRq (Holo)","count":1},"C25099283890":{"group":2,"name":"Sticker | CeRq (Glitter)","count":1},"C2513107722":{"group":2,"name":"Sticker | emagine","count":3},"C2513107730":{"group":2,"name":"Sticker | emagine (Normal)","count":1},"C2513107738":{"group":2,"name":"Sticker | emagine (Foil)","count":1},"C2513107746":{"group":2,"name":"Sticker | emagine (Gold)","count":1},"C25231711370":{"group":2,"name":"Sticker | Lucaozy","count":12},"C25231711378":{"group":2,"name":"Sticker | Lucaozy (Normal)","count":3},"C25231711386":{"group":2,"name":"Sticker | Lucaozy (Foil)","count":1},"C25231711394":{"group":2,"name":"Sticker | Lucaozy (Gold)","count":3},"C25231711402":{"group":2,"name":"Sticker | Lucaozy (Holo)","count":3},"C25231711410":{"group":2,"name":"Sticker | Lucaozy (Glitter)","count":1},"C25231711418":{"group":2,"name":"Sticker | Lucaozy (Embroidered)","count":1},"C25358274058":{"group":2,"name":"Sticker | Zyphon","count":8},"C25358274066":{"group":2,"name":"Sticker | Zyphon (Normal)","count":2},"C25358274082":{"group":2,"name":"Sticker | Zyphon (Gold)","count":2},"C25358274090":{"group":2,"name":"Sticker | Zyphon (Holo)","count":2},"C25358274098":{"group":2,"name":"Sticker | Zyphon (Glitter)","count":2},"C2541730442":{"group":2,"name":"Sticker | syrsoN","count":12},"C2541730450":{"group":2,"name":"Sticker | syrsoN (Normal)","count":3},"C2541730466":{"group":2,"name":"Sticker | syrsoN (Gold)","count":3},"C2541730474":{"group":2,"name":"Sticker | syrsoN (Holo)","count":3},"C2541730482":{"group":2,"name":"Sticker | syrsoN (Glitter)","count":3},"C2546221194":{"group":2,"name":"Sticker | daps","count":6},"C2546221202":{"group":2,"name":"Sticker | daps (Normal)","count":2},"C2546221210":{"group":2,"name":"Sticker | daps (Foil)","count":2},"C2546221218":{"group":2,"name":"Sticker | daps (Gold)","count":2},"C2557328778":{"group":2,"name":"Sticker | Twist","count":6},"C2557328786":{"group":2,"name":"Sticker | Twist (Normal)","count":2},"C2557328794":{"group":2,"name":"Sticker | Twist (Foil)","count":2},"C2557328802":{"group":2,"name":"Sticker | Twist (Gold)","count":2},"C25656813706":{"group":2,"name":"Sticker | sjuush","count":27},"C25656813714":{"group":2,"name":"Sticker | sjuush (Normal)","count":7},"C25656813730":{"group":2,"name":"Sticker | sjuush (Gold)","count":7},"C25656813738":{"group":2,"name":"Sticker | sjuush (Holo)","count":7},"C25656813746":{"group":2,"name":"Sticker | sjuush (Glitter)","count":5},"C25656813754":{"group":2,"name":"Sticker | sjuush (Embroidered)","count":1},"C2569":{"group":1,"name":"Sticker | Rio 2022","count":600},"C25701227402":{"group":2,"name":"Sticker | nilo","count":4},"C25701227410":{"group":2,"name":"Sticker | nilo (Normal)","count":1},"C25701227418":{"group":2,"name":"Sticker | nilo (Foil)","count":1},"C25701227426":{"group":2,"name":"Sticker | nilo (Gold)","count":1},"C25701227434":{"group":2,"name":"Sticker | nilo (Holo)","count":1},"C2577":{"group":1,"name":"Sticker | Rio 2022 (Normal)","count":150},"C2593":{"group":1,"name":"Sticker | Rio 2022 (Gold)","count":150},"C2595011722":{"group":2,"name":"Sticker | DavCost","count":12},"C2595011730":{"group":2,"name":"Sticker | DavCost (Normal)","count":4},"C2595011738":{"group":2,"name":"Sticker | DavCost (Foil)","count":4},"C2595011746":{"group":2,"name":"Sticker | DavCost (Gold)","count":4},"C259742090":{"group":2,"name":"Sticker | Professor_Chaos","count":3},"C259742098":{"group":2,"name":"Sticker | Professor_Chaos (Normal)","count":1},"C259742106":{"group":2,"name":"Sticker | Professor_Chaos (Foil)","count":1},"C259742114":{"group":2,"name":"Sticker | Professor_Chaos (Gold)","count":1},"C2601":{"group":1,"name":"Sticker | Rio 2022 (Holo)","count":150},"C26049830666":{"group":2,"name":"Sticker | TjP","count":4},"C26049830674":{"group":2,"name":"Sticker | TjP (Normal)","count":1},"C26049830682":{"group":2,"name":"Sticker | TjP (Foil)","count":1},"C26049830690":{"group":2,"name":"Sticker | TjP (Gold)","count":1},"C26049830698":{"group":2,"name":"Sticker | TjP (Holo)","count":1},"C2609":{"group":1,"name":"Sticker | Rio 2022 (Glitter)","count":150},"C26202218506":{"group":2,"name":"Sticker | yuurih","count":41},"C26202218514":{"group":2,"name":"Sticker | yuurih (Normal)","count":11},"C26202218522":{"group":2,"name":"Sticker | yuurih (Foil)","count":4},"C26202218530":{"group":2,"name":"Sticker | yuurih (Gold)","count":11},"C26202218538":{"group":2,"name":"Sticker | yuurih (Holo)","count":9},"C26202218546":{"group":2,"name":"Sticker | yuurih (Glitter)","count":5},"C26202218554":{"group":2,"name":"Sticker | yuurih (Embroidered)","count":1},"C26247957386":{"group":2,"name":"Sticker | sinnopsyy","count":12},"C26247957394":{"group":2,"name":"Sticker | sinnopsyy (Normal)","count":3},"C26247957410":{"group":2,"name":"Sticker | sinnopsyy (Gold)","count":3},"C26247957418":{"group":2,"name":"Sticker | sinnopsyy (Holo)","count":3},"C26247957426":{"group":2,"name":"Sticker | sinnopsyy (Glitter)","count":3},"C26263846282":{"group":2,"name":"Sticker | maden","count":12},"C26263846290":{"group":2,"name":"Sticker | maden (Normal)","count":3},"C26263846306":{"group":2,"name":"Sticker | maden (Gold)","count":3},"C26263846314":{"group":2,"name":"Sticker | maden (Holo)","count":3},"C26263846322":{"group":2,"name":"Sticker | maden (Glitter)","count":3},"C26562475658":{"group":2,"name":"Sticker | S1ren","count":16},"C26562475666":{"group":2,"name":"Sticker | S1ren (Normal)","count":4},"C26562475674":{"group":2,"name":"Sticker | S1ren (Foil)","count":2},"C26562475682":{"group":2,"name":"Sticker | S1ren (Gold)","count":4},"C26562475690":{"group":2,"name":"Sticker | S1ren (Holo)","count":4},"C26562475698":{"group":2,"name":"Sticker | S1ren (Glitter)","count":2},"C26615356426":{"group":2,"name":"Sticker | Ex3rcice","count":12},"C26615356434":{"group":2,"name":"Sticker | Ex3rcice (Normal)","count":3},"C26615356442":{"group":2,"name":"Sticker | Ex3rcice (Foil)","count":1},"C26615356450":{"group":2,"name":"Sticker | Ex3rcice (Gold)","count":3},"C26615356458":{"group":2,"name":"Sticker | Ex3rcice (Holo)","count":3},"C26615356466":{"group":2,"name":"Sticker | Ex3rcice (Glitter)","count":1},"C26615356474":{"group":2,"name":"Sticker | Ex3rcice (Embroidered)","count":1},"C26641362442":{"group":2,"name":"Sticker | ryu","count":4},"C26641362450":{"group":2,"name":"Sticker | ryu (Normal)","count":1},"C26641362458":{"group":2,"name":"Sticker | ryu (Foil)","count":1},"C26641362466":{"group":2,"name":"Sticker | ryu (Gold)","count":1},"C26641362474":{"group":2,"name":"Sticker | ryu (Holo)","count":1},"C26669531530":{"group":2,"name":"Sticker | Freeman","count":6},"C26669531538":{"group":2,"name":"Sticker | Freeman (Normal)","count":2},"C26669531546":{"group":2,"name":"Sticker | Freeman (Foil)","count":2},"C26669531554":{"group":2,"name":"Sticker | Freeman (Gold)","count":2},"C26789704842":{"group":2,"name":"Sticker | SHOCK","count":4},"C26789704850":{"group":2,"name":"Sticker | SHOCK (Normal)","count":1},"C26789704858":{"group":2,"name":"Sticker | SHOCK (Foil)","count":1},"C26789704866":{"group":2,"name":"Sticker | SHOCK (Gold)","count":1},"C26789704874":{"group":2,"name":"Sticker | SHOCK (Holo)","count":1},"C26926766474":{"group":2,"name":"Sticker | Krimbo","count":12},"C26926766482":{"group":2,"name":"Sticker | Krimbo (Normal)","count":3},"C26926766498":{"group":2,"name":"Sticker | Krimbo (Gold)","count":3},"C26926766506":{"group":2,"name":"Sticker | Krimbo (Holo)","count":3},"C26926766514":{"group":2,"name":"Sticker | Krimbo (Glitter)","count":3},"C2697":{"group":1,"name":"Sticker | Paris 2023","count":600},"C2697692810":{"group":2,"name":"Sticker | Skadoodle","count":18},"C2697692818":{"group":2,"name":"Sticker | Skadoodle (Normal)","count":6},"C2697692826":{"group":2,"name":"Sticker | Skadoodle (Foil)","count":6},"C2697692834":{"group":2,"name":"Sticker | Skadoodle (Gold)","count":6},"C2705":{"group":1,"name":"Sticker | Paris 2023 (Normal)","count":150},"C27062219914":{"group":2,"name":"Sticker | smooya","count":6},"C27062219922":{"group":2,"name":"Sticker | smooya (Normal)","count":2},"C27062219930":{"group":2,"name":"Sticker | smooya (Foil)","count":2},"C27062219938":{"group":2,"name":"Sticker | smooya (Gold)","count":2},"C27066107018":{"group":2,"name":"Sticker | Cxzi","count":4},"C27066107026":{"group":2,"name":"Sticker | Cxzi (Normal)","count":1},"C27066107034":{"group":2,"name":"Sticker | Cxzi (Foil)","count":1},"C27066107042":{"group":2,"name":"Sticker | Cxzi (Gold)","count":1},"C27066107050":{"group":2,"name":"Sticker | Cxzi (Holo)","count":1},"C2719012746":{"group":2,"name":"Sticker | LEGIJA","count":6},"C2719012754":{"group":2,"name":"Sticker | LEGIJA (Normal)","count":2},"C2719012762":{"group":2,"name":"Sticker | LEGIJA (Foil)","count":2},"C2719012770":{"group":2,"name":"Sticker | LEGIJA (Gold)","count":2},"C27209125514":{"group":2,"name":"Sticker | rigoN","count":16},"C27209125522":{"group":2,"name":"Sticker | rigoN (Normal)","count":4},"C27209125538":{"group":2,"name":"Sticker | rigoN (Gold)","count":4},"C27209125546":{"group":2,"name":"Sticker | rigoN (Holo)","count":4},"C27209125554":{"group":2,"name":"Sticker | rigoN (Glitter)","count":4},"C2721":{"group":1,"name":"Sticker | Paris 2023 (Gold)","count":150},"C27255832970":{"group":2,"name":"Sticker | buster","count":16},"C27255832978":{"group":2,"name":"Sticker | buster (Normal)","count":5},"C27255832986":{"group":2,"name":"Sticker | buster (Foil)","count":3},"C27255832994":{"group":2,"name":"Sticker | buster (Gold)","count":5},"C27255833002":{"group":2,"name":"Sticker | buster (Holo)","count":2},"C27255833010":{"group":2,"name":"Sticker | buster (Glitter)","count":1},"C2729":{"group":1,"name":"Sticker | Paris 2023 (Holo)","count":150},"C2733517322":{"group":2,"name":"Sticker | gade","count":6},"C2733517330":{"group":2,"name":"Sticker | gade (Normal)","count":2},"C2733517338":{"group":2,"name":"Sticker | gade (Foil)","count":2},"C2733517346":{"group":2,"name":"Sticker | gade (Gold)","count":2},"C2737":{"group":1,"name":"Sticker | Paris 2023 (Glitter)","count":150},"C2762664330":{"group":2,"name":"Sticker | stanislaw","count":26},"C2762664338":{"group":2,"name":"Sticker | stanislaw (Normal)","count":8},"C2762664346":{"group":2,"name":"Sticker | stanislaw (Foil)","count":7},"C2762664354":{"group":2,"name":"Sticker | stanislaw (Gold)","count":8},"C2762664362":{"group":2,"name":"Sticker | stanislaw (Holo)","count":2},"C2762664370":{"group":2,"name":"Sticker | stanislaw (Glitter)","count":1},"C27726409610":{"group":2,"name":"Sticker | jL","count":20},"C27726409618":{"group":2,"name":"Sticker | jL (Normal)","count":5},"C27726409626":{"group":2,"name":"Sticker | jL (Foil)","count":1},"C27726409634":{"group":2,"name":"Sticker | jL (Gold)","count":5},"C27726409642":{"group":2,"name":"Sticker | jL (Holo)","count":5},"C27726409650":{"group":2,"name":"Sticker | jL (Glitter)","count":4},"C2786712330":{"group":2,"name":"Sticker | GeT_RiGhT","count":21},"C2786712338":{"group":2,"name":"Sticker | GeT_RiGhT (Normal)","count":7},"C2786712346":{"group":2,"name":"Sticker | GeT_RiGhT (Foil)","count":7},"C2786712354":{"group":2,"name":"Sticker | GeT_RiGhT (Gold)","count":7},"C27896752778":{"group":2,"name":"Sticker | xfl0ud","count":12},"C27896752786":{"group":2,"name":"Sticker | xfl0ud (Normal)","count":3},"C27896752794":{"group":2,"name":"Sticker | xfl0ud (Foil)","count":2},"C27896752802":{"group":2,"name":"Sticker | xfl0ud (Gold)","count":3},"C27896752810":{"group":2,"name":"Sticker | xfl0ud (Holo)","count":3},"C27896752818":{"group":2,"name":"Sticker | xfl0ud (Glitter)","count":1},"C27964377738":{"group":2,"name":"Sticker | jcobbb","count":4},"C27964377746":{"group":2,"name":"Sticker | jcobbb (Normal)","count":1},"C27964377762":{"group":2,"name":"Sticker | jcobbb (Gold)","count":1},"C27964377770":{"group":2,"name":"Sticker | jcobbb (Holo)","count":1},"C27964377786":{"group":2,"name":"Sticker | jcobbb (Embroidered)","count":1},"C2800108170":{"group":2,"name":"Sticker | Snax","count":40},"C2800108178":{"group":2,"name":"Sticker | Snax (Normal)","count":12},"C2800108186":{"group":2,"name":"Sticker | Snax (Foil)","count":10},"C2800108194":{"group":2,"name":"Sticker | Snax (Gold)","count":12},"C2800108202":{"group":2,"name":"Sticker | Snax (Holo)","count":4},"C2800108210":{"group":2,"name":"Sticker | Snax (Glitter)","count":2},"C28066915466":{"group":2,"name":"Sticker | Graviti","count":12},"C28066915474":{"group":2,"name":"Sticker | Graviti (Normal)","count":3},"C28066915482":{"group":2,"name":"Sticker | Graviti (Foil)","count":1},"C28066915490":{"group":2,"name":"Sticker | Graviti (Gold)","count":3},"C28066915498":{"group":2,"name":"Sticker | Graviti (Holo)","count":3},"C28066915506":{"group":2,"name":"Sticker | Graviti (Glitter)","count":1},"C28066915514":{"group":2,"name":"Sticker | Graviti (Embroidered)","count":1},"C2825":{"group":1,"name":"Sticker | Copenhagen 2024","count":600},"C2833":{"group":1,"name":"Sticker | Copenhagen 2024 (Normal)","count":150},"C28441197962":{"group":2,"name":"Sticker | k1to","count":4},"C28441197970":{"group":2,"name":"Sticker | k1to (Normal)","count":1},"C28441197986":{"group":2,"name":"Sticker | k1to (Gold)","count":1},"C28441197994":{"group":2,"name":"Sticker | k1to (Holo)","count":1},"C28441198002":{"group":2,"name":"Sticker | k1to (Glitter)","count":1},"C2849":{"group":1,"name":"Sticker | Copenhagen 2024 (Gold)","count":150},"C28510456714":{"group":2,"name":"Sticker | Swisher","count":12},"C28510456722":{"group":2,"name":"Sticker | Swisher (Normal)","count":3},"C28510456730":{"group":2,"name":"Sticker | Swisher (Foil)","count":2},"C28510456738":{"group":2,"name":"Sticker | Swisher (Gold)","count":3},"C28510456746":{"group":2,"name":"Sticker | Swisher (Holo)","count":3},"C28510456762":{"group":2,"name":"Sticker | Swisher (Embroidered)","count":1},"C2857":{"group":1,"name":"Sticker | Copenhagen 2024 (Holo)","count":150},"C2865":{"group":1,"name":"Sticker | Copenhagen 2024 (Glitter)","count":150},"C28657644426":{"group":2,"name":"Sticker | JBa","count":12},"C28657644434":{"group":2,"name":"Sticker | JBa (Normal)","count":3},"C28657644442":{"group":2,"name":"Sticker | JBa (Foil)","count":2},"C28657644450":{"group":2,"name":"Sticker | JBa (Gold)","count":3},"C28657644458":{"group":2,"name":"Sticker | JBa (Holo)","count":3},"C28657644466":{"group":2,"name":"Sticker | JBa (Glitter)","count":1},"C2914018058":{"group":2,"name":"Sticker | felps","count":25},"C2914018066":{"group":2,"name":"Sticker | felps (Normal)","count":7},"C2914018074":{"group":2,"name":"Sticker | felps (Foil)","count":4},"C2914018082":{"group":2,"name":"Sticker | felps (Gold)","count":7},"C2914018090":{"group":2,"name":"Sticker | felps (Holo)","count":4},"C2914018098":{"group":2,"name":"Sticker | felps (Glitter)","count":3},"C29465309834":{"group":2,"name":"Sticker | s1n","count":12},"C29465309842":{"group":2,"name":"Sticker | s1n (Normal)","count":3},"C29465309850":{"group":2,"name":"Sticker | s1n (Foil)","count":2},"C29465309858":{"group":2,"name":"Sticker | s1n (Gold)","count":3},"C29465309866":{"group":2,"name":"Sticker | s1n (Holo)","count":3},"C29465309882":{"group":2,"name":"Sticker | s1n (Embroidered)","count":1},"C2953":{"group":1,"name":"Sticker | Shanghai 2024","count":600},"C29564219786":{"group":2,"name":"Sticker | Grim","count":28},"C29564219794":{"group":2,"name":"Sticker | Grim (Normal)","count":7},"C29564219802":{"group":2,"name":"Sticker | Grim (Foil)","count":2},"C29564219810":{"group":2,"name":"Sticker | Grim (Gold)","count":7},"C29564219818":{"group":2,"name":"Sticker | Grim (Holo)","count":7},"C29564219826":{"group":2,"name":"Sticker | Grim (Glitter)","count":4},"C29564219834":{"group":2,"name":"Sticker | Grim (Embroidered)","count":1},"C2961":{"group":1,"name":"Sticker | Shanghai 2024 (Normal)","count":150},"C2977":{"group":1,"name":"Sticker | Shanghai 2024 (Gold)","count":150},"C29780712074":{"group":2,"name":"Sticker | sense","count":4},"C29780712082":{"group":2,"name":"Sticker | sense (Normal)","count":1},"C29780712098":{"group":2,"name":"Sticker | sense (Gold)","count":1},"C29780712106":{"group":2,"name":"Sticker | sense (Holo)","count":1},"C29780712114":{"group":2,"name":"Sticker | sense (Glitter)","count":1},"C29812275978":{"group":2,"name":"Sticker | xertioN","count":28},"C29812275986":{"group":2,"name":"Sticker | xertioN (Normal)","count":7},"C29812275994":{"group":2,"name":"Sticker | xertioN (Foil)","count":2},"C29812276002":{"group":2,"name":"Sticker | xertioN (Gold)","count":7},"C29812276010":{"group":2,"name":"Sticker | xertioN (Holo)","count":7},"C29812276018":{"group":2,"name":"Sticker | xertioN (Glitter)","count":4},"C29812276026":{"group":2,"name":"Sticker | xertioN (Embroidered)","count":1},"C2985":{"group":1,"name":"Sticker | Shanghai 2024 (Holo)","count":150},"C2993":{"group":1,"name":"Sticker | Shanghai 2024 (Glitter)","count":150},"C29958666":{"group":2,"name":"Sticker | TaZ","count":21},"C29958674":{"group":2,"name":"Sticker | TaZ (Normal)","count":7},"C29958682":{"group":2,"name":"Sticker | TaZ (Foil)","count":7},"C29958690":{"group":2,"name":"Sticker | TaZ (Gold)","count":7},"C29959627402":{"group":2,"name":"Sticker | dumau","count":20},"C29959627410":{"group":2,"name":"Sticker | dumau (Normal)","count":5},"C29959627418":{"group":2,"name":"Sticker | dumau (Foil)","count":2},"C29959627426":{"group":2,"name":"Sticker | dumau (Gold)","count":5},"C29959627434":{"group":2,"name":"Sticker | dumau (Holo)","count":5},"C29959627442":{"group":2,"name":"Sticker | dumau (Glitter)","count":2},"C29959627450":{"group":2,"name":"Sticker | dumau (Embroidered)","count":1},"C2998980362":{"group":2,"name":"Sticker | Edward","count":27},"C2998980370":{"group":2,"name":"Sticker | Edward (Normal)","count":9},"C2998980378":{"group":2,"name":"Sticker | Edward (Foil)","count":9},"C2998980386":{"group":2,"name":"Sticker | Edward (Gold)","count":9},"C30128273546":{"group":2,"name":"Sticker | meyern","count":4},"C30128273554":{"group":2,"name":"Sticker | meyern (Normal)","count":1},"C30128273562":{"group":2,"name":"Sticker | meyern (Foil)","count":1},"C30128273570":{"group":2,"name":"Sticker | meyern (Gold)","count":1},"C30128273578":{"group":2,"name":"Sticker | meyern (Holo)","count":1},"C3015290762":{"group":2,"name":"Sticker | SicK","count":9},"C3015290770":{"group":2,"name":"Sticker | SicK (Normal)","count":3},"C3015290778":{"group":2,"name":"Sticker | SicK (Foil)","count":3},"C3015290786":{"group":2,"name":"Sticker | SicK (Gold)","count":3},"C3032438154":{"group":2,"name":"Sticker | Magisk","count":39},"C3032438162":{"group":2,"name":"Sticker | Magisk (Normal)","count":11},"C3032438170":{"group":2,"name":"Sticker | Magisk (Foil)","count":6},"C3032438178":{"group":2,"name":"Sticker | Magisk (Gold)","count":11},"C3032438186":{"group":2,"name":"Sticker | Magisk (Holo)","count":6},"C3032438194":{"group":2,"name":"Sticker | Magisk (Glitter)","count":4},"C3032438202":{"group":2,"name":"Sticker | Magisk (Embroidered)","count":1},"C30601935626":{"group":2,"name":"Sticker | BUDA","count":4},"C30601935634":{"group":2,"name":"Sticker | BUDA (Normal)","count":1},"C30601935650":{"group":2,"name":"Sticker | BUDA (Gold)","count":1},"C30601935658":{"group":2,"name":"Sticker | BUDA (Holo)","count":1},"C30601935666":{"group":2,"name":"Sticker | BUDA (Glitter)","count":1},"C3081":{"group":1,"name":"Sticker | Austin 2025","count":792},"C30811719946":{"group":2,"name":"Sticker | molodoy","count":12},"C30811719954":{"group":2,"name":"Sticker | molodoy (Normal)","count":3},"C30811719962":{"group":2,"name":"Sticker | molodoy (Foil)","count":2},"C30811719970":{"group":2,"name":"Sticker | molodoy (Gold)","count":3},"C30811719978":{"group":2,"name":"Sticker | molodoy (Holo)","count":3},"C30811719994":{"group":2,"name":"Sticker | molodoy (Embroidered)","count":1},"C3083":{"group":3,"name":"Sticker | Team Dignitas","count":17},"C3089":{"group":1,"name":"Sticker | Austin 2025 (Normal)","count":198},"C3089266058":{"group":2,"name":"Sticker | MSL","count":18},"C3089266066":{"group":2,"name":"Sticker | MSL (Normal)","count":6},"C3089266074":{"group":2,"name":"Sticker | MSL (Foil)","count":6},"C3089266082":{"group":2,"name":"Sticker | MSL (Gold)","count":6},"C30893409546":{"group":2,"name":"Sticker | broky","count":32},"C30893409554":{"group":2,"name":"Sticker | broky (Normal)","count":8},"C30893409562":{"group":2,"name":"Sticker | broky (Foil)","count":1},"C30893409570":{"group":2,"name":"Sticker | broky (Gold)","count":8},"C30893409578":{"group":2,"name":"Sticker | broky (Holo)","count":8},"C30893409586":{"group":2,"name":"Sticker | broky (Glitter)","count":6},"C30893409594":{"group":2,"name":"Sticker | broky (Embroidered)","count":1},"C3091":{"group":3,"name":"Sticker | Team Dignitas (Normal)","count":5},"C3097":{"group":1,"name":"Sticker | Austin 2025 (Foil)","count":198},"C3099":{"group":3,"name":"Sticker | Team Dignitas (Foil)","count":5},"C3105":{"group":1,"name":"Sticker | Austin 2025 (Gold)","count":198},"C3107":{"group":3,"name":"Sticker | Team Dignitas (Gold)","count":3},"C3109785738":{"group":2,"name":"Sticker | friberg","count":12},"C3109785746":{"group":2,"name":"Sticker | friberg (Normal)","count":4},"C3109785754":{"group":2,"name":"Sticker | friberg (Foil)","count":4},"C3109785762":{"group":2,"name":"Sticker | friberg (Gold)","count":4},"C3113":{"group":1,"name":"Sticker | Austin 2025 (Holo)","count":198},"C3115":{"group":3,"name":"Sticker | Team Dignitas (Holo)","count":4},"C312983050":{"group":2,"name":"Sticker | Aerial","count":6},"C312983058":{"group":2,"name":"Sticker | Aerial (Normal)","count":2},"C312983066":{"group":2,"name":"Sticker | Aerial (Foil)","count":2},"C312983074":{"group":2,"name":"Sticker | Aerial (Gold)","count":2},"C31719499786":{"group":2,"name":"Sticker | interz","count":11},"C31719499794":{"group":2,"name":"Sticker | interz (Normal)","count":3},"C31719499810":{"group":2,"name":"Sticker | interz (Gold)","count":3},"C31719499818":{"group":2,"name":"Sticker | interz (Holo)","count":3},"C31719499826":{"group":2,"name":"Sticker | interz (Glitter)","count":2},"C3178530058":{"group":2,"name":"Sticker | AZR","count":15},"C3178530066":{"group":2,"name":"Sticker | AZR (Normal)","count":5},"C3178530074":{"group":2,"name":"Sticker | AZR (Foil)","count":5},"C3178530082":{"group":2,"name":"Sticker | AZR (Gold)","count":5},"C3183179914":{"group":2,"name":"Sticker | jasonR","count":3},"C3183179922":{"group":2,"name":"Sticker | jasonR (Normal)","count":1},"C3183179930":{"group":2,"name":"Sticker | jasonR (Foil)","count":1},"C3183179938":{"group":2,"name":"Sticker | jasonR (Gold)","count":1},"C3197575434":{"group":2,"name":"Sticker | mynio","count":4},"C3197575442":{"group":2,"name":"Sticker | mynio (Normal)","count":1},"C3197575458":{"group":2,"name":"Sticker | mynio (Gold)","count":1},"C3197575466":{"group":2,"name":"Sticker | mynio (Holo)","count":1},"C3197575474":{"group":2,"name":"Sticker | mynio (Glitter)","count":1},"C32046209418":{"group":2,"name":"Sticker | zweih","count":12},"C32046209426":{"group":2,"name":"Sticker | zweih (Normal)","count":3},"C32046209434":{"group":2,"name":"Sticker | zweih (Foil)","count":2},"C32046209442":{"group":2,"name":"Sticker | zweih (Gold)","count":3},"C32046209450":{"group":2,"name":"Sticker | zweih (Holo)","count":3},"C32046209466":{"group":2,"name":"Sticker | zweih (Embroidered)","count":1},"C3207788938":{"group":2,"name":"Sticker | abE","count":3},"C3207788946":{"group":2,"name":"Sticker | abE (Normal)","count":1},"C3207788954":{"group":2,"name":"Sticker | abE (Foil)","count":1},"C3207788962":{"group":2,"name":"Sticker | abE (Gold)","count":1},"C32085598090":{"group":2,"name":"Sticker | HexT","count":12},"C32085598098":{"group":2,"name":"Sticker | HexT (Normal)","count":3},"C32085598106":{"group":2,"name":"Sticker | HexT (Foil)","count":1},"C32085598114":{"group":2,"name":"Sticker | HexT (Gold)","count":3},"C32085598122":{"group":2,"name":"Sticker | HexT (Holo)","count":3},"C32085598130":{"group":2,"name":"Sticker | HexT (Glitter)","count":1},"C32085598138":{"group":2,"name":"Sticker | HexT (Embroidered)","count":1},"C3209":{"group":1,"name":"Sticker | Budapest 2025","count":792},"C3211":{"group":3,"name":"Sticker | HellRaisers","count":28},"C3217":{"group":1,"name":"Sticker | Budapest 2025 (Normal)","count":198},"C3219":{"group":3,"name":"Sticker | HellRaisers (Normal)","count":8},"C3227":{"group":3,"name":"Sticker | HellRaisers (Foil)","count":7},"C3233":{"group":1,"name":"Sticker | Budapest 2025 (Gold)","count":198},"C3235":{"group":3,"name":"Sticker | HellRaisers (Gold)","count":6},"C3238394506":{"group":2,"name":"Sticker | saffee","count":20},"C3238394514":{"group":2,"name":"Sticker | saffee (Normal)","count":5},"C3238394522":{"group":2,"name":"Sticker | saffee (Foil)","count":1},"C3238394530":{"group":2,"name":"Sticker | saffee (Gold)","count":5},"C3238394538":{"group":2,"name":"Sticker | saffee (Holo)","count":5},"C3238394546":{"group":2,"name":"Sticker | saffee (Glitter)","count":4},"C3241":{"group":1,"name":"Sticker | Budapest 2025 (Holo)","count":198},"C3243":{"group":3,"name":"Sticker | HellRaisers (Holo)","count":7},"C3257":{"group":1,"name":"Sticker | Budapest 2025 (Embroidered)","count":198},"C32661626506":{"group":2,"name":"Sticker | NEOFRAG","count":8},"C32661626514":{"group":2,"name":"Sticker | NEOFRAG (Normal)","count":2},"C32661626530":{"group":2,"name":"Sticker | NEOFRAG (Gold)","count":2},"C32661626538":{"group":2,"name":"Sticker | NEOFRAG (Holo)","count":2},"C32661626546":{"group":2,"name":"Sticker | NEOFRAG (Glitter)","count":2},"C32848108554":{"group":2,"name":"Sticker | dgt","count":20},"C32848108562":{"group":2,"name":"Sticker | dgt (Normal)","count":5},"C32848108570":{"group":2,"name":"Sticker | dgt (Foil)","count":2},"C32848108578":{"group":2,"name":"Sticker | dgt (Gold)","count":5},"C32848108586":{"group":2,"name":"Sticker | dgt (Holo)","count":5},"C32848108594":{"group":2,"name":"Sticker | dgt (Glitter)","count":2},"C32848108602":{"group":2,"name":"Sticker | dgt (Embroidered)","count":1},"C33023939210":{"group":2,"name":"Sticker | venomzera","count":8},"C33023939218":{"group":2,"name":"Sticker | venomzera (Normal)","count":2},"C33023939226":{"group":2,"name":"Sticker | venomzera (Foil)","count":1},"C33023939234":{"group":2,"name":"Sticker | venomzera (Gold)","count":2},"C33023939242":{"group":2,"name":"Sticker | venomzera (Holo)","count":2},"C33023939258":{"group":2,"name":"Sticker | venomzera (Embroidered)","count":1},"C33102505866":{"group":2,"name":"Sticker | aNdu","count":4},"C33102505874":{"group":2,"name":"Sticker | aNdu (Normal)","count":1},"C33102505890":{"group":2,"name":"Sticker | aNdu (Gold)","count":1},"C33102505898":{"group":2,"name":"Sticker | aNdu (Holo)","count":1},"C33102505906":{"group":2,"name":"Sticker | aNdu (Glitter)","count":1},"C3337":{"group":1,"name":"Sticker | Cologne 2026","count":772},"C3339":{"group":3,"name":"Sticker | Team LDLC.com","count":8},"C3345":{"group":1,"name":"Sticker | Cologne 2026 (Normal)","count":193},"C3347":{"group":3,"name":"Sticker | Team LDLC.com (Normal)","count":3},"C3353":{"group":1,"name":"Sticker | Cologne 2026 (Foil)","count":193},"C3355":{"group":3,"name":"Sticker | Team LDLC.com (Foil)","count":2},"C33558627338":{"group":2,"name":"Sticker | n0rb3r7","count":19},"C33558627346":{"group":2,"name":"Sticker | n0rb3r7 (Normal)","count":5},"C33558627354":{"group":2,"name":"Sticker | n0rb3r7 (Foil)","count":1},"C33558627362":{"group":2,"name":"Sticker | n0rb3r7 (Gold)","count":5},"C33558627370":{"group":2,"name":"Sticker | n0rb3r7 (Holo)","count":4},"C33558627378":{"group":2,"name":"Sticker | n0rb3r7 (Glitter)","count":4},"C3356798986":{"group":2,"name":"Sticker | Xizt","count":18},"C3356798994":{"group":2,"name":"Sticker | Xizt (Normal)","count":6},"C3356799002":{"group":2,"name":"Sticker | Xizt (Foil)","count":6},"C3356799010":{"group":2,"name":"Sticker | Xizt (Gold)","count":6},"C3361":{"group":1,"name":"Sticker | Cologne 2026 (Gold)","count":193},"C3363":{"group":3,"name":"Sticker | Team LDLC.com (Gold)","count":1},"C3369":{"group":1,"name":"Sticker | Cologne 2026 (Holo)","count":193},"C3371":{"group":3,"name":"Sticker | Team LDLC.com (Holo)","count":2},"C3386762":{"group":2,"name":"Sticker | pita","count":3},"C3386770":{"group":2,"name":"Sticker | pita (Normal)","count":1},"C3386778":{"group":2,"name":"Sticker | pita (Foil)","count":1},"C3386786":{"group":2,"name":"Sticker | pita (Gold)","count":1},"C3400132234":{"group":2,"name":"Sticker | innocent","count":6},"C3400132242":{"group":2,"name":"Sticker | innocent (Normal)","count":2},"C3400132250":{"group":2,"name":"Sticker | innocent (Foil)","count":2},"C3400132258":{"group":2,"name":"Sticker | innocent (Gold)","count":2},"C3449202570":{"group":2,"name":"Sticker | INS","count":28},"C3449202578":{"group":2,"name":"Sticker | INS (Normal)","count":7},"C3449202586":{"group":2,"name":"Sticker | INS (Foil)","count":2},"C3449202594":{"group":2,"name":"Sticker | INS (Gold)","count":7},"C3449202602":{"group":2,"name":"Sticker | INS (Holo)","count":7},"C3449202610":{"group":2,"name":"Sticker | INS (Glitter)","count":4},"C3449202618":{"group":2,"name":"Sticker | INS (Embroidered)","count":1},"C3455382922":{"group":2,"name":"Sticker | dephh","count":9},"C3455382930":{"group":2,"name":"Sticker | dephh (Normal)","count":3},"C3455382938":{"group":2,"name":"Sticker | dephh (Foil)","count":3},"C3455382946":{"group":2,"name":"Sticker | dephh (Gold)","count":3},"C3467":{"group":3,"name":"Sticker | Titan","count":16},"C3475":{"group":3,"name":"Sticker | Titan (Normal)","count":5},"C3483":{"group":3,"name":"Sticker | Titan (Foil)","count":5},"C3484687882":{"group":2,"name":"Sticker | mixwell","count":6},"C3484687890":{"group":2,"name":"Sticker | mixwell (Normal)","count":2},"C3484687898":{"group":2,"name":"Sticker | mixwell (Foil)","count":2},"C3484687906":{"group":2,"name":"Sticker | mixwell (Gold)","count":2},"C3491":{"group":3,"name":"Sticker | Titan (Gold)","count":3},"C3499":{"group":3,"name":"Sticker | Titan (Holo)","count":3},"C3513335818":{"group":2,"name":"Sticker | device","count":37},"C3513335826":{"group":2,"name":"Sticker | device (Normal)","count":12},"C3513335834":{"group":2,"name":"Sticker | device (Foil)","count":10},"C3513335842":{"group":2,"name":"Sticker | device (Gold)","count":12},"C3513335850":{"group":2,"name":"Sticker | device (Holo)","count":2},"C3513335866":{"group":2,"name":"Sticker | device (Embroidered)","count":1},"C35144924682":{"group":2,"name":"Sticker | gxx-","count":12},"C35144924690":{"group":2,"name":"Sticker | gxx- (Normal)","count":3},"C35144924706":{"group":2,"name":"Sticker | gxx- (Gold)","count":3},"C35144924714":{"group":2,"name":"Sticker | gxx- (Holo)","count":3},"C35144924722":{"group":2,"name":"Sticker | gxx- (Glitter)","count":3},"C357258":{"group":2,"name":"Sticker | Hiko","count":15},"C357266":{"group":2,"name":"Sticker | Hiko (Normal)","count":5},"C357274":{"group":2,"name":"Sticker | Hiko (Foil)","count":5},"C357282":{"group":2,"name":"Sticker | Hiko (Gold)","count":5},"C3595":{"group":3,"name":"Sticker | 3DMAX","count":21},"C3603":{"group":3,"name":"Sticker | 3DMAX (Normal)","count":6},"C3611":{"group":3,"name":"Sticker | 3DMAX (Foil)","count":3},"C36183635978":{"group":2,"name":"Sticker | max","count":12},"C36183635986":{"group":2,"name":"Sticker | max (Normal)","count":3},"C36183635994":{"group":2,"name":"Sticker | max (Foil)","count":1},"C36183636002":{"group":2,"name":"Sticker | max (Gold)","count":3},"C36183636010":{"group":2,"name":"Sticker | max (Holo)","count":3},"C36183636018":{"group":2,"name":"Sticker | max (Glitter)","count":2},"C3618992138":{"group":2,"name":"Sticker | chrisJ","count":27},"C3618992146":{"group":2,"name":"Sticker | chrisJ (Normal)","count":9},"C3618992154":{"group":2,"name":"Sticker | chrisJ (Foil)","count":9},"C3618992162":{"group":2,"name":"Sticker | chrisJ (Gold)","count":9},"C3619":{"group":3,"name":"Sticker | 3DMAX (Gold)","count":5},"C3627":{"group":3,"name":"Sticker | 3DMAX (Holo)","count":5},"C3630267530":{"group":2,"name":"Sticker | olofmeister","count":30},"C3630267538":{"group":2,"name":"Sticker | olofmeister (Normal)","count":10},"C3630267546":{"group":2,"name":"Sticker | olofmeister (Foil)","count":10},"C3630267554":{"group":2,"name":"Sticker | olofmeister (Gold)","count":10},"C3635":{"group":3,"name":"Sticker | 3DMAX (Glitter)","count":1},"C3643":{"group":3,"name":"Sticker | 3DMAX (Embroidered)","count":1},"C3648322570":{"group":2,"name":"Sticker | ScreaM","count":18},"C3648322578":{"group":2,"name":"Sticker | ScreaM (Normal)","count":6},"C3648322586":{"group":2,"name":"Sticker | ScreaM (Foil)","count":6},"C3648322594":{"group":2,"name":"Sticker | ScreaM (Gold)","count":6},"C36651743754":{"group":2,"name":"Sticker | b1t","count":39},"C36651743762":{"group":2,"name":"Sticker | b1t (Normal)","count":10},"C36651743770":{"group":2,"name":"Sticker | b1t (Foil)","count":2},"C36651743778":{"group":2,"name":"Sticker | b1t (Gold)","count":10},"C36651743786":{"group":2,"name":"Sticker | b1t (Holo)","count":10},"C36651743794":{"group":2,"name":"Sticker | b1t (Glitter)","count":6},"C36651743802":{"group":2,"name":"Sticker | b1t (Embroidered)","count":1},"C36952068362":{"group":2,"name":"Sticker | Buzz","count":4},"C36952068370":{"group":2,"name":"Sticker | Buzz (Normal)","count":1},"C36952068378":{"group":2,"name":"Sticker | Buzz (Foil)","count":1},"C36952068386":{"group":2,"name":"Sticker | Buzz (Gold)","count":1},"C36952068394":{"group":2,"name":"Sticker | Buzz (Holo)","count":1},"C36996736266":{"group":2,"name":"Sticker | hardzao","count":4},"C36996736274":{"group":2,"name":"Sticker | hardzao (Normal)","count":1},"C36996736290":{"group":2,"name":"Sticker | hardzao (Gold)","count":1},"C36996736298":{"group":2,"name":"Sticker | hardzao (Holo)","count":1},"C36996736306":{"group":2,"name":"Sticker | hardzao (Glitter)","count":1},"C3723":{"group":3,"name":"Sticker | mousesports","count":39},"C3731":{"group":3,"name":"Sticker | mousesports (Normal)","count":11},"C3732139146":{"group":2,"name":"Sticker | Snappi","count":19},"C3732139154":{"group":2,"name":"Sticker | Snappi (Normal)","count":5},"C3732139162":{"group":2,"name":"Sticker | Snappi (Foil)","count":1},"C3732139170":{"group":2,"name":"Sticker | Snappi (Gold)","count":5},"C3732139178":{"group":2,"name":"Sticker | Snappi (Holo)","count":4},"C3732139186":{"group":2,"name":"Sticker | Snappi (Glitter)","count":3},"C3732139194":{"group":2,"name":"Sticker | Snappi (Embroidered)","count":1},"C3733059210":{"group":2,"name":"Sticker | karrigan","count":59},"C3733059218":{"group":2,"name":"Sticker | karrigan (Normal)","count":17},"C3733059226":{"group":2,"name":"Sticker | karrigan (Foil)","count":10},"C3733059234":{"group":2,"name":"Sticker | karrigan (Gold)","count":17},"C3733059242":{"group":2,"name":"Sticker | karrigan (Holo)","count":8},"C3733059250":{"group":2,"name":"Sticker | karrigan (Glitter)","count":6},"C3733059258":{"group":2,"name":"Sticker | karrigan (Embroidered)","count":1},"C37333251082":{"group":2,"name":"Sticker | chayJESUS","count":8},"C37333251090":{"group":2,"name":"Sticker | chayJESUS (Normal)","count":2},"C37333251098":{"group":2,"name":"Sticker | chayJESUS (Foil)","count":1},"C37333251106":{"group":2,"name":"Sticker | chayJESUS (Gold)","count":2},"C37333251114":{"group":2,"name":"Sticker | chayJESUS (Holo)","count":2},"C37333251130":{"group":2,"name":"Sticker | chayJESUS (Embroidered)","count":1},"C37340009738":{"group":2,"name":"Sticker | Cypher","count":8},"C37340009746":{"group":2,"name":"Sticker | Cypher (Normal)","count":2},"C37340009762":{"group":2,"name":"Sticker | Cypher (Gold)","count":2},"C37340009770":{"group":2,"name":"Sticker | Cypher (Holo)","count":2},"C37340009778":{"group":2,"name":"Sticker | Cypher (Glitter)","count":1},"C37340009786":{"group":2,"name":"Sticker | Cypher (Embroidered)","count":1},"C3739":{"group":3,"name":"Sticker | mousesports (Foil)","count":10},"C37397602826":{"group":2,"name":"Sticker | F1KU","count":12},"C37397602834":{"group":2,"name":"Sticker | F1KU (Normal)","count":3},"C37397602842":{"group":2,"name":"Sticker | F1KU (Foil)","count":1},"C37397602850":{"group":2,"name":"Sticker | F1KU (Gold)","count":3},"C37397602858":{"group":2,"name":"Sticker | F1KU (Holo)","count":3},"C37397602866":{"group":2,"name":"Sticker | F1KU (Glitter)","count":2},"C37436972554":{"group":2,"name":"Sticker | kisserek","count":4},"C37436972562":{"group":2,"name":"Sticker | kisserek (Normal)","count":1},"C37436972570":{"group":2,"name":"Sticker | kisserek (Foil)","count":1},"C37436972578":{"group":2,"name":"Sticker | kisserek (Gold)","count":1},"C37436972586":{"group":2,"name":"Sticker | kisserek (Holo)","count":1},"C3747":{"group":3,"name":"Sticker | mousesports (Gold)","count":10},"C3755":{"group":3,"name":"Sticker | mousesports (Holo)","count":8},"C3755339786":{"group":2,"name":"Sticker | DeadFox","count":12},"C3755339794":{"group":2,"name":"Sticker | DeadFox (Normal)","count":4},"C3755339802":{"group":2,"name":"Sticker | DeadFox (Foil)","count":4},"C3755339810":{"group":2,"name":"Sticker | DeadFox (Gold)","count":4},"C37555813002":{"group":2,"name":"Sticker | BELCHONOKK","count":8},"C37555813010":{"group":2,"name":"Sticker | BELCHONOKK (Normal)","count":2},"C37555813018":{"group":2,"name":"Sticker | BELCHONOKK (Foil)","count":1},"C37555813026":{"group":2,"name":"Sticker | BELCHONOKK (Gold)","count":2},"C37555813034":{"group":2,"name":"Sticker | BELCHONOKK (Holo)","count":2},"C37555813050":{"group":2,"name":"Sticker | BELCHONOKK (Embroidered)","count":1},"C37685888778":{"group":2,"name":"Sticker | hypex","count":4},"C37685888786":{"group":2,"name":"Sticker | hypex (Normal)","count":1},"C37685888794":{"group":2,"name":"Sticker | hypex (Foil)","count":1},"C37685888802":{"group":2,"name":"Sticker | hypex (Gold)","count":1},"C37685888810":{"group":2,"name":"Sticker | hypex (Holo)","count":1},"C3772269450":{"group":2,"name":"Sticker | niko","count":7},"C3772269458":{"group":2,"name":"Sticker | niko (Normal)","count":2},"C3772269466":{"group":2,"name":"Sticker | niko (Foil)","count":1},"C3772269474":{"group":2,"name":"Sticker | niko (Gold)","count":2},"C3772269482":{"group":2,"name":"Sticker | niko (Holo)","count":1},"C3772269490":{"group":2,"name":"Sticker | niko (Glitter)","count":1},"C3773240202":{"group":2,"name":"Sticker | apEX","count":74},"C3773240210":{"group":2,"name":"Sticker | apEX (Normal)","count":21},"C3773240218":{"group":2,"name":"Sticker | apEX (Foil)","count":12},"C3773240226":{"group":2,"name":"Sticker | apEX (Gold)","count":21},"C3773240234":{"group":2,"name":"Sticker | apEX (Holo)","count":12},"C3773240242":{"group":2,"name":"Sticker | apEX (Glitter)","count":6},"C3773240250":{"group":2,"name":"Sticker | apEX (Embroidered)","count":2},"C38479088394":{"group":2,"name":"Sticker | Goofy","count":8},"C38479088402":{"group":2,"name":"Sticker | Goofy (Normal)","count":2},"C38479088418":{"group":2,"name":"Sticker | Goofy (Gold)","count":2},"C38479088426":{"group":2,"name":"Sticker | Goofy (Holo)","count":2},"C38479088434":{"group":2,"name":"Sticker | Goofy (Glitter)","count":2},"C3851":{"group":3,"name":"Sticker | Reason Gaming","count":3},"C3859":{"group":3,"name":"Sticker | Reason Gaming (Normal)","count":1},"C3867":{"group":3,"name":"Sticker | Reason Gaming (Foil)","count":1},"C38680900362":{"group":2,"name":"Sticker | ewjerkz","count":8},"C38680900370":{"group":2,"name":"Sticker | ewjerkz (Normal)","count":2},"C38680900386":{"group":2,"name":"Sticker | ewjerkz (Gold)","count":2},"C38680900394":{"group":2,"name":"Sticker | ewjerkz (Holo)","count":2},"C38680900402":{"group":2,"name":"Sticker | ewjerkz (Glitter)","count":1},"C38680900410":{"group":2,"name":"Sticker | ewjerkz (Embroidered)","count":1},"C3879139978":{"group":2,"name":"Sticker | hazed","count":12},"C3879139986":{"group":2,"name":"Sticker | hazed (Normal)","count":4},"C3879139994":{"group":2,"name":"Sticker | hazed (Foil)","count":4},"C3879140002":{"group":2,"name":"Sticker | hazed (Gold)","count":4},"C3883":{"group":3,"name":"Sticker | Reason Gaming (Holo)","count":1},"C38834014730":{"group":2,"name":"Sticker | CacaNito","count":4},"C38834014738":{"group":2,"name":"Sticker | CacaNito (Normal)","count":1},"C38834014754":{"group":2,"name":"Sticker | CacaNito (Gold)","count":1},"C38834014762":{"group":2,"name":"Sticker | CacaNito (Holo)","count":1},"C38834014770":{"group":2,"name":"Sticker | CacaNito (Glitter)","count":1},"C3893316362":{"group":2,"name":"Sticker | Xyp9x","count":34},"C3893316370":{"group":2,"name":"Sticker | Xyp9x (Normal)","count":11},"C3893316378":{"group":2,"name":"Sticker | Xyp9x (Foil)","count":10},"C3893316386":{"group":2,"name":"Sticker | Xyp9x (Gold)","count":11},"C3893316394":{"group":2,"name":"Sticker | Xyp9x (Holo)","count":1},"C3893316402":{"group":2,"name":"Sticker | Xyp9x (Glitter)","count":1},"C3924362":{"group":2,"name":"Sticker | yam","count":3},"C3924370":{"group":2,"name":"Sticker | yam (Normal)","count":1},"C3924378":{"group":2,"name":"Sticker | yam (Foil)","count":1},"C3924386":{"group":2,"name":"Sticker | yam (Gold)","count":1},"C393":{"group":1,"name":"Sticker | Katowice 2014","count":52},"C395":{"group":3,"name":"Sticker | compLexity Gaming","count":15},"C39564263818":{"group":2,"name":"Sticker | AW","count":4},"C39564263826":{"group":2,"name":"Sticker | AW (Normal)","count":1},"C39564263842":{"group":2,"name":"Sticker | AW (Gold)","count":1},"C39564263850":{"group":2,"name":"Sticker | AW (Holo)","count":1},"C39564263866":{"group":2,"name":"Sticker | AW (Embroidered)","count":1},"C3964027274":{"group":2,"name":"Sticker | roeJ","count":12},"C3964027282":{"group":2,"name":"Sticker | roeJ (Normal)","count":3},"C3964027298":{"group":2,"name":"Sticker | roeJ (Gold)","count":3},"C3964027306":{"group":2,"name":"Sticker | roeJ (Holo)","count":3},"C3964027314":{"group":2,"name":"Sticker | roeJ (Glitter)","count":3},"C3968843530":{"group":2,"name":"Sticker | ropz","count":56},"C3968843538":{"group":2,"name":"Sticker | ropz (Normal)","count":15},"C3968843546":{"group":2,"name":"Sticker | ropz (Foil)","count":7},"C3968843554":{"group":2,"name":"Sticker | ropz (Gold)","count":15},"C3968843562":{"group":2,"name":"Sticker | ropz (Holo)","count":11},"C3968843570":{"group":2,"name":"Sticker | ropz (Glitter)","count":6},"C3968843578":{"group":2,"name":"Sticker | ropz (Embroidered)","count":2},"C3978541450":{"group":2,"name":"Sticker | flusha","count":27},"C3978541458":{"group":2,"name":"Sticker | flusha (Normal)","count":9},"C3978541466":{"group":2,"name":"Sticker | flusha (Foil)","count":9},"C3978541474":{"group":2,"name":"Sticker | flusha (Gold)","count":9},"C3979":{"group":3,"name":"Sticker | Virtus.Pro","count":64},"C3987":{"group":3,"name":"Sticker | Virtus.Pro (Normal)","count":17},"C3989342474":{"group":2,"name":"Sticker | rallen","count":10},"C3989342482":{"group":2,"name":"Sticker | rallen (Normal)","count":3},"C3989342490":{"group":2,"name":"Sticker | rallen (Foil)","count":2},"C3989342498":{"group":2,"name":"Sticker | rallen (Gold)","count":3},"C3989342506":{"group":2,"name":"Sticker | rallen (Holo)","count":1},"C3989342514":{"group":2,"name":"Sticker | rallen (Glitter)","count":1},"C3991728138":{"group":2,"name":"Sticker | denis","count":21},"C3991728146":{"group":2,"name":"Sticker | denis (Normal)","count":7},"C3991728154":{"group":2,"name":"Sticker | denis (Foil)","count":7},"C3991728162":{"group":2,"name":"Sticker | denis (Gold)","count":7},"C3995":{"group":3,"name":"Sticker | Virtus.Pro (Foil)","count":15},"C39994571658":{"group":2,"name":"Sticker | FaNg","count":8},"C39994571666":{"group":2,"name":"Sticker | FaNg (Normal)","count":2},"C39994571682":{"group":2,"name":"Sticker | FaNg (Gold)","count":2},"C39994571690":{"group":2,"name":"Sticker | FaNg (Holo)","count":2},"C39994571698":{"group":2,"name":"Sticker | FaNg (Glitter)","count":2},"C4003":{"group":3,"name":"Sticker | Virtus.Pro (Gold)","count":15},"C401":{"group":1,"name":"Sticker | Katowice 2014 (Normal)","count":16},"C4011":{"group":3,"name":"Sticker | Virtus.Pro (Holo)","count":15},"C4019":{"group":3,"name":"Sticker | Virtus.Pro (Glitter)","count":2},"C403":{"group":3,"name":"Sticker | compLexity Gaming (Normal)","count":4},"C40425148682":{"group":2,"name":"Sticker | ANNIHILATION","count":8},"C40425148690":{"group":2,"name":"Sticker | ANNIHILATION (Normal)","count":2},"C40425148706":{"group":2,"name":"Sticker | ANNIHILATION (Gold)","count":2},"C40425148714":{"group":2,"name":"Sticker | ANNIHILATION (Holo)","count":2},"C40425148722":{"group":2,"name":"Sticker | ANNIHILATION (Glitter)","count":2},"C409":{"group":1,"name":"Sticker | Katowice 2014 (Foil)","count":20},"C4107":{"group":3,"name":"Sticker | Vox Eminor","count":10},"C411":{"group":3,"name":"Sticker | compLexity Gaming (Foil)","count":4},"C4115":{"group":3,"name":"Sticker | Vox Eminor (Normal)","count":3},"C411637898":{"group":2,"name":"Sticker | Rickeh","count":12},"C411637906":{"group":2,"name":"Sticker | Rickeh (Normal)","count":4},"C411637914":{"group":2,"name":"Sticker | Rickeh (Foil)","count":4},"C411637922":{"group":2,"name":"Sticker | Rickeh (Gold)","count":4},"C4123":{"group":3,"name":"Sticker | Vox Eminor (Foil)","count":3},"C4131":{"group":3,"name":"Sticker | Vox Eminor (Gold)","count":1},"C4139":{"group":3,"name":"Sticker | Vox Eminor (Holo)","count":3},"C41436607370":{"group":2,"name":"Sticker | ultimate","count":16},"C41436607378":{"group":2,"name":"Sticker | ultimate (Normal)","count":4},"C41436607386":{"group":2,"name":"Sticker | ultimate (Foil)","count":2},"C41436607394":{"group":2,"name":"Sticker | ultimate (Gold)","count":4},"C41436607402":{"group":2,"name":"Sticker | ultimate (Holo)","count":4},"C41436607410":{"group":2,"name":"Sticker | ultimate (Glitter)","count":1},"C41436607418":{"group":2,"name":"Sticker | ultimate (Embroidered)","count":1},"C414574986":{"group":2,"name":"Sticker | FASHR","count":8},"C414574994":{"group":2,"name":"Sticker | FASHR (Normal)","count":2},"C414575010":{"group":2,"name":"Sticker | FASHR (Gold)","count":2},"C414575018":{"group":2,"name":"Sticker | FASHR (Holo)","count":2},"C414575026":{"group":2,"name":"Sticker | FASHR (Glitter)","count":2},"C419":{"group":3,"name":"Sticker | compLexity Gaming (Gold)","count":3},"C42019209354":{"group":2,"name":"Sticker | Patsi","count":8},"C42019209362":{"group":2,"name":"Sticker | Patsi (Normal)","count":2},"C42019209378":{"group":2,"name":"Sticker | Patsi (Gold)","count":2},"C42019209386":{"group":2,"name":"Sticker | Patsi (Holo)","count":2},"C42019209394":{"group":2,"name":"Sticker | Patsi (Glitter)","count":2},"C4235":{"group":3,"name":"Sticker | Cloud9","count":46},"C4243":{"group":3,"name":"Sticker | Cloud9 (Normal)","count":12},"C425":{"group":1,"name":"Sticker | Katowice 2014 (Holo)","count":16},"C4250732810":{"group":2,"name":"Sticker | fitch","count":6},"C4250732818":{"group":2,"name":"Sticker | fitch (Normal)","count":2},"C4250732826":{"group":2,"name":"Sticker | fitch (Foil)","count":2},"C4250732834":{"group":2,"name":"Sticker | fitch (Gold)","count":2},"C4251":{"group":3,"name":"Sticker | Cloud9 (Foil)","count":8},"C42538633226":{"group":2,"name":"Sticker | Chr1zN","count":8},"C42538633234":{"group":2,"name":"Sticker | Chr1zN (Normal)","count":2},"C42538633242":{"group":2,"name":"Sticker | Chr1zN (Foil)","count":2},"C42538633250":{"group":2,"name":"Sticker | Chr1zN (Gold)","count":2},"C42538633258":{"group":2,"name":"Sticker | Chr1zN (Holo)","count":2},"C4259":{"group":3,"name":"Sticker | Cloud9 (Gold)","count":11},"C4267":{"group":3,"name":"Sticker | Cloud9 (Holo)","count":11},"C427":{"group":3,"name":"Sticker | compLexity Gaming (Holo)","count":4},"C4275":{"group":3,"name":"Sticker | Cloud9 (Glitter)","count":4},"C42766766346":{"group":2,"name":"Sticker | r1nkle","count":4},"C42766766354":{"group":2,"name":"Sticker | r1nkle (Normal)","count":1},"C42766766370":{"group":2,"name":"Sticker | r1nkle (Gold)","count":1},"C42766766378":{"group":2,"name":"Sticker | r1nkle (Holo)","count":1},"C42766766394":{"group":2,"name":"Sticker | r1nkle (Embroidered)","count":1},"C43027482378":{"group":2,"name":"Sticker | kRaSnaL","count":4},"C43027482386":{"group":2,"name":"Sticker | kRaSnaL (Normal)","count":1},"C43027482402":{"group":2,"name":"Sticker | kRaSnaL (Gold)","count":1},"C43027482410":{"group":2,"name":"Sticker | kRaSnaL (Holo)","count":1},"C43027482418":{"group":2,"name":"Sticker | kRaSnaL (Glitter)","count":1},"C4363":{"group":3,"name":"Sticker | dAT team","count":5},"C4366703114":{"group":2,"name":"Sticker | Tuurtle","count":4},"C4366703122":{"group":2,"name":"Sticker | Tuurtle (Normal)","count":1},"C4366703138":{"group":2,"name":"Sticker | Tuurtle (Gold)","count":1},"C4366703146":{"group":2,"name":"Sticker | Tuurtle (Holo)","count":1},"C4366703154":{"group":2,"name":"Sticker | Tuurtle (Glitter)","count":1},"C4368609674":{"group":2,"name":"Sticker | roman","count":4},"C4368609682":{"group":2,"name":"Sticker | roman (Normal)","count":1},"C4368609698":{"group":2,"name":"Sticker | roman (Gold)","count":1},"C4368609706":{"group":2,"name":"Sticker | roman (Holo)","count":1},"C4368609714":{"group":2,"name":"Sticker | roman (Glitter)","count":1},"C4371":{"group":3,"name":"Sticker | dAT team (Normal)","count":2},"C437380234":{"group":2,"name":"Sticker | HS","count":3},"C437380242":{"group":2,"name":"Sticker | HS (Normal)","count":1},"C437380250":{"group":2,"name":"Sticker | HS (Foil)","count":1},"C437380258":{"group":2,"name":"Sticker | HS (Gold)","count":1},"C4379":{"group":3,"name":"Sticker | dAT team (Foil)","count":1},"C4387":{"group":3,"name":"Sticker | dAT team (Gold)","count":1},"C438944778":{"group":2,"name":"Sticker | SIXER","count":6},"C438944786":{"group":2,"name":"Sticker | SIXER (Normal)","count":2},"C438944794":{"group":2,"name":"Sticker | SIXER (Foil)","count":2},"C438944802":{"group":2,"name":"Sticker | SIXER (Gold)","count":2},"C4390897674":{"group":2,"name":"Sticker | SPUNJ","count":3},"C4390897682":{"group":2,"name":"Sticker | SPUNJ (Normal)","count":1},"C4390897690":{"group":2,"name":"Sticker | SPUNJ (Foil)","count":1},"C4390897698":{"group":2,"name":"Sticker | SPUNJ (Gold)","count":1},"C4393233290":{"group":2,"name":"Sticker | Zero","count":3},"C4393233298":{"group":2,"name":"Sticker | Zero (Normal)","count":1},"C4393233306":{"group":2,"name":"Sticker | Zero (Foil)","count":1},"C4393233314":{"group":2,"name":"Sticker | Zero (Gold)","count":1},"C4395":{"group":3,"name":"Sticker | dAT team (Holo)","count":1},"C4398648714":{"group":2,"name":"Sticker | COLDYY1","count":6},"C4398648722":{"group":2,"name":"Sticker | COLDYY1 (Normal)","count":2},"C4398648730":{"group":2,"name":"Sticker | COLDYY1 (Foil)","count":2},"C4398648738":{"group":2,"name":"Sticker | COLDYY1 (Gold)","count":2},"C44012773258":{"group":2,"name":"Sticker | alex666","count":12},"C44012773266":{"group":2,"name":"Sticker | alex666 (Normal)","count":3},"C44012773274":{"group":2,"name":"Sticker | alex666 (Foil)","count":2},"C44012773282":{"group":2,"name":"Sticker | alex666 (Gold)","count":3},"C44012773290":{"group":2,"name":"Sticker | alex666 (Holo)","count":3},"C44012773306":{"group":2,"name":"Sticker | alex666 (Embroidered)","count":1},"C44053937674":{"group":2,"name":"Sticker | stressarN","count":4},"C44053937682":{"group":2,"name":"Sticker | stressarN (Normal)","count":1},"C44053937690":{"group":2,"name":"Sticker | stressarN (Foil)","count":1},"C44053937698":{"group":2,"name":"Sticker | stressarN (Gold)","count":1},"C44053937706":{"group":2,"name":"Sticker | stressarN (Holo)","count":1},"C4410476042":{"group":2,"name":"Sticker | loWel","count":9},"C4410476050":{"group":2,"name":"Sticker | loWel (Normal)","count":3},"C4410476058":{"group":2,"name":"Sticker | loWel (Foil)","count":3},"C4410476066":{"group":2,"name":"Sticker | loWel (Gold)","count":3},"C44130710538":{"group":2,"name":"Sticker | npl","count":16},"C44130710546":{"group":2,"name":"Sticker | npl (Normal)","count":4},"C44130710554":{"group":2,"name":"Sticker | npl (Foil)","count":2},"C44130710562":{"group":2,"name":"Sticker | npl (Gold)","count":4},"C44130710570":{"group":2,"name":"Sticker | npl (Holo)","count":4},"C44130710578":{"group":2,"name":"Sticker | npl (Glitter)","count":1},"C44130710586":{"group":2,"name":"Sticker | npl (Embroidered)","count":1},"C44320452490":{"group":2,"name":"Sticker | floppy","count":16},"C44320452498":{"group":2,"name":"Sticker | floppy (Normal)","count":4},"C44320452514":{"group":2,"name":"Sticker | floppy (Gold)","count":4},"C44320452522":{"group":2,"name":"Sticker | floppy (Holo)","count":4},"C44320452530":{"group":2,"name":"Sticker | floppy (Glitter)","count":4},"C44403991306":{"group":2,"name":"Sticker | decenty","count":16},"C44403991314":{"group":2,"name":"Sticker | decenty (Normal)","count":4},"C44403991322":{"group":2,"name":"Sticker | decenty (Foil)","count":1},"C44403991330":{"group":2,"name":"Sticker | decenty (Gold)","count":4},"C44403991338":{"group":2,"name":"Sticker | decenty (Holo)","count":4},"C44403991346":{"group":2,"name":"Sticker | decenty (Glitter)","count":2},"C44403991354":{"group":2,"name":"Sticker | decenty (Embroidered)","count":1},"C44475998730":{"group":2,"name":"Sticker | rdnzao","count":4},"C44475998738":{"group":2,"name":"Sticker | rdnzao (Normal)","count":1},"C44475998746":{"group":2,"name":"Sticker | rdnzao (Foil)","count":1},"C44475998754":{"group":2,"name":"Sticker | rdnzao (Gold)","count":1},"C44475998762":{"group":2,"name":"Sticker | rdnzao (Holo)","count":1},"C44745448074":{"group":2,"name":"Sticker | SunPayus","count":20},"C44745448082":{"group":2,"name":"Sticker | SunPayus (Normal)","count":5},"C44745448090":{"group":2,"name":"Sticker | SunPayus (Foil)","count":2},"C44745448098":{"group":2,"name":"Sticker | SunPayus (Gold)","count":5},"C44745448106":{"group":2,"name":"Sticker | SunPayus (Holo)","count":5},"C44745448114":{"group":2,"name":"Sticker | SunPayus (Glitter)","count":2},"C44745448122":{"group":2,"name":"Sticker | SunPayus (Embroidered)","count":1},"C44837856138":{"group":2,"name":"Sticker | PR","count":8},"C44837856146":{"group":2,"name":"Sticker | PR (Normal)","count":2},"C44837856154":{"group":2,"name":"Sticker | PR (Foil)","count":1},"C44837856162":{"group":2,"name":"Sticker | PR (Gold)","count":2},"C44837856170":{"group":2,"name":"Sticker | PR (Holo)","count":2},"C44837856186":{"group":2,"name":"Sticker | PR (Embroidered)","count":1},"C4491":{"group":3,"name":"Sticker | Epsilon eSports","count":3},"C4493309834":{"group":2,"name":"Sticker | RUBINO","count":6},"C4493309842":{"group":2,"name":"Sticker | RUBINO (Normal)","count":2},"C4493309850":{"group":2,"name":"Sticker | RUBINO (Foil)","count":2},"C4493309858":{"group":2,"name":"Sticker | RUBINO (Gold)","count":2},"C4499":{"group":3,"name":"Sticker | Epsilon eSports (Normal)","count":1},"C4507":{"group":3,"name":"Sticker | Epsilon eSports (Foil)","count":1},"C4523":{"group":3,"name":"Sticker | Epsilon eSports (Holo)","count":1},"C4523008778":{"group":2,"name":"Sticker | James","count":3},"C4523008786":{"group":2,"name":"Sticker | James (Normal)","count":1},"C4523008794":{"group":2,"name":"Sticker | James (Foil)","count":1},"C4523008802":{"group":2,"name":"Sticker | James (Gold)","count":1},"C4550626954":{"group":2,"name":"Sticker | FL1T","count":30},"C4550626962":{"group":2,"name":"Sticker | FL1T (Normal)","count":8},"C4550626970":{"group":2,"name":"Sticker | FL1T (Foil)","count":2},"C4550626978":{"group":2,"name":"Sticker | FL1T (Gold)","count":8},"C4550626986":{"group":2,"name":"Sticker | FL1T (Holo)","count":7},"C4550626994":{"group":2,"name":"Sticker | FL1T (Glitter)","count":5},"C4559872266":{"group":2,"name":"Sticker | nitr0","count":48},"C4559872274":{"group":2,"name":"Sticker | nitr0 (Normal)","count":14},"C4559872282":{"group":2,"name":"Sticker | nitr0 (Foil)","count":10},"C4559872290":{"group":2,"name":"Sticker | nitr0 (Gold)","count":14},"C4559872298":{"group":2,"name":"Sticker | nitr0 (Holo)","count":6},"C4559872306":{"group":2,"name":"Sticker | nitr0 (Glitter)","count":3},"C4559872314":{"group":2,"name":"Sticker | nitr0 (Embroidered)","count":1},"C4561004554":{"group":2,"name":"Sticker | svyat","count":3},"C4561004562":{"group":2,"name":"Sticker | svyat (Normal)","count":1},"C4561004570":{"group":2,"name":"Sticker | svyat (Foil)","count":1},"C4561004578":{"group":2,"name":"Sticker | svyat (Gold)","count":1},"C45624377098":{"group":2,"name":"Sticker | Tauson","count":8},"C45624377106":{"group":2,"name":"Sticker | Tauson (Normal)","count":2},"C45624377114":{"group":2,"name":"Sticker | Tauson (Foil)","count":1},"C45624377122":{"group":2,"name":"Sticker | Tauson (Gold)","count":2},"C45624377130":{"group":2,"name":"Sticker | Tauson (Holo)","count":2},"C45624377146":{"group":2,"name":"Sticker | Tauson (Embroidered)","count":1},"C45742279178":{"group":2,"name":"Sticker | SANJI","count":3},"C45742279186":{"group":2,"name":"Sticker | SANJI (Normal)","count":1},"C45742279194":{"group":2,"name":"Sticker | SANJI (Foil)","count":1},"C45742279202":{"group":2,"name":"Sticker | SANJI (Gold)","count":1},"C4577418":{"group":2,"name":"Sticker | Maniac","count":3},"C4577426":{"group":2,"name":"Sticker | Maniac (Normal)","count":1},"C4577434":{"group":2,"name":"Sticker | Maniac (Foil)","count":1},"C4577442":{"group":2,"name":"Sticker | Maniac (Gold)","count":1},"C46010557450":{"group":2,"name":"Sticker | HUASOPEEK","count":4},"C46010557458":{"group":2,"name":"Sticker | HUASOPEEK (Normal)","count":1},"C46010557466":{"group":2,"name":"Sticker | HUASOPEEK (Foil)","count":1},"C46010557474":{"group":2,"name":"Sticker | HUASOPEEK (Gold)","count":1},"C46010557482":{"group":2,"name":"Sticker | HUASOPEEK (Holo)","count":1},"C4619":{"group":3,"name":"Sticker | London Conspiracy","count":5},"C4621370378":{"group":2,"name":"Sticker | VINI","count":33},"C4621370386":{"group":2,"name":"Sticker | VINI (Normal)","count":9},"C4621370394":{"group":2,"name":"Sticker | VINI (Foil)","count":3},"C4621370402":{"group":2,"name":"Sticker | VINI (Gold)","count":9},"C4621370410":{"group":2,"name":"Sticker | VINI (Holo)","count":7},"C4621370418":{"group":2,"name":"Sticker | VINI (Glitter)","count":4},"C4621370426":{"group":2,"name":"Sticker | VINI (Embroidered)","count":1},"C4627":{"group":3,"name":"Sticker | London Conspiracy (Normal)","count":2},"C4635":{"group":3,"name":"Sticker | London Conspiracy (Foil)","count":1},"C4643":{"group":3,"name":"Sticker | London Conspiracy (Gold)","count":1},"C4651":{"group":3,"name":"Sticker | London Conspiracy (Holo)","count":1},"C4660806410":{"group":2,"name":"Sticker | TeSeS","count":35},"C4660806418":{"group":2,"name":"Sticker | TeSeS (Normal)","count":9},"C4660806426":{"group":2,"name":"Sticker | TeSeS (Foil)","count":2},"C4660806434":{"group":2,"name":"Sticker | TeSeS (Gold)","count":9},"C4660806442":{"group":2,"name":"Sticker | TeSeS (Holo)","count":9},"C4660806450":{"group":2,"name":"Sticker | TeSeS (Glitter)","count":5},"C4660806458":{"group":2,"name":"Sticker | TeSeS (Embroidered)","count":1},"C466998794":{"group":2,"name":"Sticker | seized","count":21},"C466998802":{"group":2,"name":"Sticker | seized (Normal)","count":7},"C466998810":{"group":2,"name":"Sticker | seized (Foil)","count":7},"C466998818":{"group":2,"name":"Sticker | seized (Gold)","count":7},"C46950713610":{"group":2,"name":"Sticker | soulfly","count":4},"C46950713618":{"group":2,"name":"Sticker | soulfly (Normal)","count":1},"C46950713626":{"group":2,"name":"Sticker | soulfly (Foil)","count":1},"C46950713634":{"group":2,"name":"Sticker | soulfly (Gold)","count":1},"C46950713642":{"group":2,"name":"Sticker | soulfly (Holo)","count":1},"C4701720074":{"group":2,"name":"Sticker | WorldEdit","count":24},"C4701720082":{"group":2,"name":"Sticker | WorldEdit (Normal)","count":8},"C4701720090":{"group":2,"name":"Sticker | WorldEdit (Foil)","count":8},"C4701720098":{"group":2,"name":"Sticker | WorldEdit (Gold)","count":8},"C47216821770":{"group":2,"name":"Sticker | xerolte","count":4},"C47216821778":{"group":2,"name":"Sticker | xerolte (Normal)","count":1},"C47216821794":{"group":2,"name":"Sticker | xerolte (Gold)","count":1},"C47216821802":{"group":2,"name":"Sticker | xerolte (Holo)","count":1},"C47216821818":{"group":2,"name":"Sticker | xerolte (Embroidered)","count":1},"C4733622282":{"group":2,"name":"Sticker | crush","count":6},"C4733622290":{"group":2,"name":"Sticker | crush (Normal)","count":2},"C4733622298":{"group":2,"name":"Sticker | crush (Foil)","count":2},"C4733622306":{"group":2,"name":"Sticker | crush (Gold)","count":2},"C4746941322":{"group":2,"name":"Sticker | rain","count":62},"C4746941330":{"group":2,"name":"Sticker | rain (Normal)","count":18},"C4746941338":{"group":2,"name":"Sticker | rain (Foil)","count":11},"C4746941346":{"group":2,"name":"Sticker | rain (Gold)","count":18},"C4746941354":{"group":2,"name":"Sticker | rain (Holo)","count":8},"C4746941362":{"group":2,"name":"Sticker | rain (Glitter)","count":6},"C4746941370":{"group":2,"name":"Sticker | rain (Embroidered)","count":1},"C4747":{"group":3,"name":"Sticker | MTS GameGod Wolf","count":3},"C4755":{"group":3,"name":"Sticker | MTS GameGod Wolf (Normal)","count":1},"C4763":{"group":3,"name":"Sticker | MTS GameGod Wolf (Foil)","count":1},"C4763510026":{"group":2,"name":"Sticker | tenzki","count":6},"C4763510034":{"group":2,"name":"Sticker | tenzki (Normal)","count":2},"C4763510042":{"group":2,"name":"Sticker | tenzki (Foil)","count":2},"C4763510050":{"group":2,"name":"Sticker | tenzki (Gold)","count":2},"C47690178954":{"group":2,"name":"Sticker | nettik","count":12},"C47690178962":{"group":2,"name":"Sticker | nettik (Normal)","count":3},"C47690178970":{"group":2,"name":"Sticker | nettik (Foil)","count":2},"C47690178978":{"group":2,"name":"Sticker | nettik (Gold)","count":3},"C47690178986":{"group":2,"name":"Sticker | nettik (Holo)","count":3},"C47690179002":{"group":2,"name":"Sticker | nettik (Embroidered)","count":1},"C4773274634":{"group":2,"name":"Sticker | tiziaN","count":10},"C4773274642":{"group":2,"name":"Sticker | tiziaN (Normal)","count":3},"C4773274650":{"group":2,"name":"Sticker | tiziaN (Foil)","count":2},"C4773274658":{"group":2,"name":"Sticker | tiziaN (Gold)","count":3},"C4773274666":{"group":2,"name":"Sticker | tiziaN (Holo)","count":1},"C4773274674":{"group":2,"name":"Sticker | tiziaN (Glitter)","count":1},"C4779":{"group":3,"name":"Sticker | MTS GameGod Wolf (Holo)","count":1},"C47942284938":{"group":2,"name":"Sticker | reck","count":4},"C47942284946":{"group":2,"name":"Sticker | reck (Normal)","count":1},"C47942284954":{"group":2,"name":"Sticker | reck (Foil)","count":1},"C47942284962":{"group":2,"name":"Sticker | reck (Gold)","count":1},"C47942284970":{"group":2,"name":"Sticker | reck (Holo)","count":1},"C4827576586":{"group":2,"name":"Sticker | MUTiRiS","count":4},"C4827576594":{"group":2,"name":"Sticker | MUTiRiS (Normal)","count":1},"C4827576610":{"group":2,"name":"Sticker | MUTiRiS (Gold)","count":1},"C4827576618":{"group":2,"name":"Sticker | MUTiRiS (Holo)","count":1},"C4827576626":{"group":2,"name":"Sticker | MUTiRiS (Glitter)","count":1},"C48283963914":{"group":2,"name":"Sticker | Lake","count":12},"C48283963922":{"group":2,"name":"Sticker | Lake (Normal)","count":3},"C48283963930":{"group":2,"name":"Sticker | Lake (Foil)","count":2},"C48283963938":{"group":2,"name":"Sticker | Lake (Gold)","count":3},"C48283963946":{"group":2,"name":"Sticker | Lake (Holo)","count":3},"C48283963962":{"group":2,"name":"Sticker | Lake (Embroidered)","count":1},"C4855249674":{"group":2,"name":"Sticker | mopoz","count":4},"C4855249682":{"group":2,"name":"Sticker | mopoz (Normal)","count":1},"C4855249698":{"group":2,"name":"Sticker | mopoz (Gold)","count":1},"C4855249706":{"group":2,"name":"Sticker | mopoz (Holo)","count":1},"C4855249714":{"group":2,"name":"Sticker | mopoz (Glitter)","count":1},"C4875":{"group":3,"name":"Sticker | myXMG","count":2},"C4883":{"group":3,"name":"Sticker | myXMG (Normal)","count":1},"C48953912330":{"group":2,"name":"Sticker | susp","count":12},"C48953912338":{"group":2,"name":"Sticker | susp (Normal)","count":3},"C48953912346":{"group":2,"name":"Sticker | susp (Foil)","count":2},"C48953912354":{"group":2,"name":"Sticker | susp (Gold)","count":3},"C48953912362":{"group":2,"name":"Sticker | susp (Holo)","count":3},"C48953912370":{"group":2,"name":"Sticker | susp (Glitter)","count":1},"C4899":{"group":3,"name":"Sticker | myXMG (Gold)","count":1},"C4907644170":{"group":2,"name":"Sticker | wayLander","count":18},"C4907644178":{"group":2,"name":"Sticker | wayLander (Normal)","count":6},"C4907644186":{"group":2,"name":"Sticker | wayLander (Foil)","count":6},"C4907644194":{"group":2,"name":"Sticker | wayLander (Gold)","count":6},"C49147041034":{"group":2,"name":"Sticker | Gizmy","count":4},"C49147041042":{"group":2,"name":"Sticker | Gizmy (Normal)","count":1},"C49147041050":{"group":2,"name":"Sticker | Gizmy (Foil)","count":1},"C49147041058":{"group":2,"name":"Sticker | Gizmy (Gold)","count":1},"C49147041066":{"group":2,"name":"Sticker | Gizmy (Holo)","count":1},"C4929213578":{"group":2,"name":"Sticker | xms","count":3},"C4929213586":{"group":2,"name":"Sticker | xms (Normal)","count":1},"C4929213594":{"group":2,"name":"Sticker | xms (Foil)","count":1},"C4929213602":{"group":2,"name":"Sticker | xms (Gold)","count":1},"C4948613386":{"group":2,"name":"Sticker | HooXi","count":20},"C4948613394":{"group":2,"name":"Sticker | HooXi (Normal)","count":5},"C4948613402":{"group":2,"name":"Sticker | HooXi (Foil)","count":1},"C4948613410":{"group":2,"name":"Sticker | HooXi (Gold)","count":5},"C4948613418":{"group":2,"name":"Sticker | HooXi (Holo)","count":5},"C4948613426":{"group":2,"name":"Sticker | HooXi (Glitter)","count":3},"C4948613434":{"group":2,"name":"Sticker | HooXi (Embroidered)","count":1},"C4958500106":{"group":2,"name":"Sticker | Stewie2K","count":18},"C4958500114":{"group":2,"name":"Sticker | Stewie2K (Normal)","count":6},"C4958500122":{"group":2,"name":"Sticker | Stewie2K (Foil)","count":6},"C4958500130":{"group":2,"name":"Sticker | Stewie2K (Gold)","count":6},"C4981916042":{"group":2,"name":"Sticker | fer","count":38},"C4981916050":{"group":2,"name":"Sticker | fer (Normal)","count":12},"C4981916058":{"group":2,"name":"Sticker | fer (Foil)","count":10},"C4981916066":{"group":2,"name":"Sticker | fer (Gold)","count":12},"C4981916074":{"group":2,"name":"Sticker | fer (Holo)","count":2},"C4981916082":{"group":2,"name":"Sticker | fer (Glitter)","count":2},"C49914287370":{"group":2,"name":"Sticker | MoDo","count":4},"C49914287378":{"group":2,"name":"Sticker | MoDo (Normal)","count":1},"C49914287386":{"group":2,"name":"Sticker | MoDo (Foil)","count":1},"C49914287394":{"group":2,"name":"Sticker | MoDo (Gold)","count":1},"C49914287402":{"group":2,"name":"Sticker | MoDo (Holo)","count":1},"C49929827466":{"group":2,"name":"Sticker | NQZ","count":24},"C49929827474":{"group":2,"name":"Sticker | NQZ (Normal)","count":6},"C49929827482":{"group":2,"name":"Sticker | NQZ (Foil)","count":2},"C49929827490":{"group":2,"name":"Sticker | NQZ (Gold)","count":6},"C49929827498":{"group":2,"name":"Sticker | NQZ (Holo)","count":6},"C49929827506":{"group":2,"name":"Sticker | NQZ (Glitter)","count":3},"C49929827514":{"group":2,"name":"Sticker | NQZ (Embroidered)","count":1},"C49932361482":{"group":2,"name":"Sticker | r3salt","count":4},"C49932361490":{"group":2,"name":"Sticker | r3salt (Normal)","count":1},"C49932361506":{"group":2,"name":"Sticker | r3salt (Gold)","count":1},"C49932361514":{"group":2,"name":"Sticker | r3salt (Holo)","count":1},"C49932361522":{"group":2,"name":"Sticker | r3salt (Glitter)","count":1},"C49963612298":{"group":2,"name":"Sticker | Kursy","count":4},"C49963612306":{"group":2,"name":"Sticker | Kursy (Normal)","count":1},"C49963612322":{"group":2,"name":"Sticker | Kursy (Gold)","count":1},"C49963612330":{"group":2,"name":"Sticker | Kursy (Holo)","count":1},"C49963612346":{"group":2,"name":"Sticker | Kursy (Embroidered)","count":1},"C5003":{"group":3,"name":"Sticker | PENTA Sports","count":10},"C5011":{"group":3,"name":"Sticker | PENTA Sports (Normal)","count":3},"C5019":{"group":3,"name":"Sticker | PENTA Sports (Foil)","count":2},"C50225968138":{"group":2,"name":"Sticker | ChildKing","count":8},"C50225968146":{"group":2,"name":"Sticker | ChildKing (Normal)","count":2},"C50225968162":{"group":2,"name":"Sticker | ChildKing (Gold)","count":2},"C50225968170":{"group":2,"name":"Sticker | ChildKing (Holo)","count":2},"C50225968178":{"group":2,"name":"Sticker | ChildKing (Glitter)","count":1},"C50225968186":{"group":2,"name":"Sticker | ChildKing (Embroidered)","count":1},"C5026117898":{"group":2,"name":"Sticker | Sico","count":15},"C5026117906":{"group":2,"name":"Sticker | Sico (Normal)","count":4},"C5026117914":{"group":2,"name":"Sticker | Sico (Foil)","count":1},"C5026117922":{"group":2,"name":"Sticker | Sico (Gold)","count":4},"C5026117930":{"group":2,"name":"Sticker | Sico (Holo)","count":3},"C5026117938":{"group":2,"name":"Sticker | Sico (Glitter)","count":3},"C5027":{"group":3,"name":"Sticker | PENTA Sports (Gold)","count":3},"C5035":{"group":3,"name":"Sticker | PENTA Sports (Holo)","count":2},"C50381261706":{"group":2,"name":"Sticker | jeorge","count":8},"C50381261714":{"group":2,"name":"Sticker | jeorge (Normal)","count":2},"C50381261722":{"group":2,"name":"Sticker | jeorge (Foil)","count":1},"C50381261730":{"group":2,"name":"Sticker | jeorge (Gold)","count":2},"C50381261738":{"group":2,"name":"Sticker | jeorge (Holo)","count":2},"C50381261754":{"group":2,"name":"Sticker | jeorge (Embroidered)","count":1},"C50551269642":{"group":2,"name":"Sticker | Moseyuh","count":12},"C50551269650":{"group":2,"name":"Sticker | Moseyuh (Normal)","count":3},"C50551269658":{"group":2,"name":"Sticker | Moseyuh (Foil)","count":2},"C50551269666":{"group":2,"name":"Sticker | Moseyuh (Gold)","count":3},"C50551269674":{"group":2,"name":"Sticker | Moseyuh (Holo)","count":3},"C50551269690":{"group":2,"name":"Sticker | Moseyuh (Embroidered)","count":1},"C50620605962":{"group":2,"name":"Sticker | torzsi","count":28},"C50620605970":{"group":2,"name":"Sticker | torzsi (Normal)","count":7},"C50620605978":{"group":2,"name":"Sticker | torzsi (Foil)","count":2},"C50620605986":{"group":2,"name":"Sticker | torzsi (Gold)","count":7},"C50620605994":{"group":2,"name":"Sticker | torzsi (Holo)","count":7},"C50620606002":{"group":2,"name":"Sticker | torzsi (Glitter)","count":4},"C50620606010":{"group":2,"name":"Sticker | torzsi (Embroidered)","count":1},"C5063640842":{"group":2,"name":"Sticker | nexa","count":14},"C5063640850":{"group":2,"name":"Sticker | nexa (Normal)","count":4},"C5063640858":{"group":2,"name":"Sticker | nexa (Foil)","count":1},"C5063640866":{"group":2,"name":"Sticker | nexa (Gold)","count":4},"C5063640874":{"group":2,"name":"Sticker | nexa (Holo)","count":3},"C5063640882":{"group":2,"name":"Sticker | nexa (Glitter)","count":2},"C51104537866":{"group":2,"name":"Sticker | headtr1ck","count":12},"C51104537874":{"group":2,"name":"Sticker | headtr1ck (Normal)","count":3},"C51104537882":{"group":2,"name":"Sticker | headtr1ck (Foil)","count":1},"C51104537890":{"group":2,"name":"Sticker | headtr1ck (Gold)","count":3},"C51104537898":{"group":2,"name":"Sticker | headtr1ck (Holo)","count":3},"C51104537906":{"group":2,"name":"Sticker | headtr1ck (Glitter)","count":1},"C51104537914":{"group":2,"name":"Sticker | headtr1ck (Embroidered)","count":1},"C51218164874":{"group":2,"name":"Sticker | Jee","count":16},"C51218164882":{"group":2,"name":"Sticker | Jee (Normal)","count":4},"C51218164890":{"group":2,"name":"Sticker | Jee (Foil)","count":2},"C51218164898":{"group":2,"name":"Sticker | Jee (Gold)","count":4},"C51218164906":{"group":2,"name":"Sticker | Jee (Holo)","count":4},"C51218164914":{"group":2,"name":"Sticker | Jee (Glitter)","count":1},"C51218164922":{"group":2,"name":"Sticker | Jee (Embroidered)","count":1},"C5131":{"group":3,"name":"Sticker | Bravado Gaming","count":2},"C5139":{"group":3,"name":"Sticker | Bravado Gaming (Normal)","count":1},"C51478072714":{"group":2,"name":"Sticker | controlez","count":4},"C51478072722":{"group":2,"name":"Sticker | controlez (Normal)","count":1},"C51478072730":{"group":2,"name":"Sticker | controlez (Foil)","count":1},"C51478072738":{"group":2,"name":"Sticker | controlez (Gold)","count":1},"C51478072746":{"group":2,"name":"Sticker | controlez (Holo)","count":1},"C51545421322":{"group":2,"name":"Sticker | xKacpersky","count":4},"C51545421330":{"group":2,"name":"Sticker | xKacpersky (Normal)","count":1},"C51545421346":{"group":2,"name":"Sticker | xKacpersky (Gold)","count":1},"C51545421354":{"group":2,"name":"Sticker | xKacpersky (Holo)","count":1},"C51545421370":{"group":2,"name":"Sticker | xKacpersky (Embroidered)","count":1},"C51546239370":{"group":2,"name":"Sticker | TRAVIS","count":4},"C51546239378":{"group":2,"name":"Sticker | TRAVIS (Normal)","count":1},"C51546239394":{"group":2,"name":"Sticker | TRAVIS (Gold)","count":1},"C51546239402":{"group":2,"name":"Sticker | TRAVIS (Holo)","count":1},"C51546239410":{"group":2,"name":"Sticker | TRAVIS (Glitter)","count":1},"C5155":{"group":3,"name":"Sticker | Bravado Gaming (Gold)","count":1},"C51797927690":{"group":2,"name":"Sticker | JamYoung","count":12},"C51797927698":{"group":2,"name":"Sticker | JamYoung (Normal)","count":3},"C51797927706":{"group":2,"name":"Sticker | JamYoung (Foil)","count":2},"C51797927714":{"group":2,"name":"Sticker | JamYoung (Gold)","count":3},"C51797927722":{"group":2,"name":"Sticker | JamYoung (Holo)","count":3},"C51797927738":{"group":2,"name":"Sticker | JamYoung (Embroidered)","count":1},"C51821127690":{"group":2,"name":"Sticker | TRY","count":16},"C51821127698":{"group":2,"name":"Sticker | TRY (Normal)","count":4},"C51821127706":{"group":2,"name":"Sticker | TRY (Foil)","count":1},"C51821127714":{"group":2,"name":"Sticker | TRY (Gold)","count":4},"C51821127722":{"group":2,"name":"Sticker | TRY (Holo)","count":4},"C51821127730":{"group":2,"name":"Sticker | TRY (Glitter)","count":2},"C51821127738":{"group":2,"name":"Sticker | TRY (Embroidered)","count":1},"C5186197386":{"group":2,"name":"Sticker | kioShiMa","count":18},"C5186197394":{"group":2,"name":"Sticker | kioShiMa (Normal)","count":6},"C5186197402":{"group":2,"name":"Sticker | kioShiMa (Foil)","count":6},"C5186197410":{"group":2,"name":"Sticker | kioShiMa (Gold)","count":6},"C51895292426":{"group":2,"name":"Sticker | shalfey","count":8},"C51895292434":{"group":2,"name":"Sticker | shalfey (Normal)","count":2},"C51895292450":{"group":2,"name":"Sticker | shalfey (Gold)","count":2},"C51895292458":{"group":2,"name":"Sticker | shalfey (Holo)","count":2},"C51895292466":{"group":2,"name":"Sticker | shalfey (Glitter)","count":2},"C5191945738":{"group":2,"name":"Sticker | mir","count":13},"C5191945746":{"group":2,"name":"Sticker | mir (Normal)","count":4},"C5191945754":{"group":2,"name":"Sticker | mir (Foil)","count":3},"C5191945762":{"group":2,"name":"Sticker | mir (Gold)","count":4},"C5191945770":{"group":2,"name":"Sticker | mir (Holo)","count":1},"C5191945778":{"group":2,"name":"Sticker | mir (Glitter)","count":1},"C521":{"group":1,"name":"Sticker | Cologne 2014","count":51},"C5233403786":{"group":2,"name":"Sticker | NAF","count":46},"C5233403794":{"group":2,"name":"Sticker | NAF (Normal)","count":13},"C5233403802":{"group":2,"name":"Sticker | NAF (Foil)","count":8},"C5233403810":{"group":2,"name":"Sticker | NAF (Gold)","count":13},"C5233403818":{"group":2,"name":"Sticker | NAF (Holo)","count":7},"C5233403826":{"group":2,"name":"Sticker | NAF (Glitter)","count":4},"C5233403834":{"group":2,"name":"Sticker | NAF (Embroidered)","count":1},"C5245760650":{"group":2,"name":"Sticker | Kvik","count":9},"C5245760658":{"group":2,"name":"Sticker | Kvik (Normal)","count":3},"C5245760666":{"group":2,"name":"Sticker | Kvik (Foil)","count":3},"C5245760674":{"group":2,"name":"Sticker | Kvik (Gold)","count":3},"C52468602122":{"group":2,"name":"Sticker | gr1ks","count":4},"C52468602130":{"group":2,"name":"Sticker | gr1ks (Normal)","count":1},"C52468602138":{"group":2,"name":"Sticker | gr1ks (Foil)","count":1},"C52468602146":{"group":2,"name":"Sticker | gr1ks (Gold)","count":1},"C52468602154":{"group":2,"name":"Sticker | gr1ks (Holo)","count":1},"C5259":{"group":3,"name":"Sticker | Planetkey Dynamics","count":2},"C5267":{"group":3,"name":"Sticker | Planetkey Dynamics (Normal)","count":1},"C52704958218":{"group":2,"name":"Sticker | Magnojez","count":8},"C52704958226":{"group":2,"name":"Sticker | Magnojez (Normal)","count":2},"C52704958234":{"group":2,"name":"Sticker | Magnojez (Foil)","count":2},"C52704958242":{"group":2,"name":"Sticker | Magnojez (Gold)","count":2},"C52704958250":{"group":2,"name":"Sticker | Magnojez (Holo)","count":2},"C52707466":{"group":2,"name":"Sticker | arya","count":3},"C52707474":{"group":2,"name":"Sticker | arya (Normal)","count":1},"C52707482":{"group":2,"name":"Sticker | arya (Foil)","count":1},"C52707490":{"group":2,"name":"Sticker | arya (Gold)","count":1},"C5283":{"group":3,"name":"Sticker | Planetkey Dynamics (Gold)","count":1},"C529":{"group":1,"name":"Sticker | Cologne 2014 (Normal)","count":19},"C53384975114":{"group":2,"name":"Sticker | snow","count":16},"C53384975122":{"group":2,"name":"Sticker | snow (Normal)","count":4},"C53384975130":{"group":2,"name":"Sticker | snow (Foil)","count":2},"C53384975138":{"group":2,"name":"Sticker | snow (Gold)","count":4},"C53384975146":{"group":2,"name":"Sticker | snow (Holo)","count":4},"C53384975154":{"group":2,"name":"Sticker | snow (Glitter)","count":1},"C53384975162":{"group":2,"name":"Sticker | snow (Embroidered)","count":1},"C5348615306":{"group":2,"name":"Sticker | advent","count":3},"C5348615314":{"group":2,"name":"Sticker | advent (Normal)","count":1},"C5348615322":{"group":2,"name":"Sticker | advent (Foil)","count":1},"C5348615330":{"group":2,"name":"Sticker | advent (Gold)","count":1},"C537":{"group":1,"name":"Sticker | Cologne 2014 (Foil)","count":16},"C5387":{"group":3,"name":"Sticker | ESC Gaming","count":2},"C5389622154":{"group":2,"name":"Sticker | kinqie","count":3},"C5389622162":{"group":2,"name":"Sticker | kinqie (Normal)","count":1},"C5389622170":{"group":2,"name":"Sticker | kinqie (Foil)","count":1},"C5389622178":{"group":2,"name":"Sticker | kinqie (Gold)","count":1},"C5395":{"group":3,"name":"Sticker | ESC Gaming (Normal)","count":1},"C54004215178":{"group":2,"name":"Sticker | kensizor","count":12},"C54004215186":{"group":2,"name":"Sticker | kensizor (Normal)","count":3},"C54004215194":{"group":2,"name":"Sticker | kensizor (Foil)","count":2},"C54004215202":{"group":2,"name":"Sticker | kensizor (Gold)","count":3},"C54004215210":{"group":2,"name":"Sticker | kensizor (Holo)","count":3},"C54004215226":{"group":2,"name":"Sticker | kensizor (Embroidered)","count":1},"C5411":{"group":3,"name":"Sticker | ESC Gaming (Gold)","count":1},"C5432693002":{"group":2,"name":"Sticker | jkaem","count":26},"C5432693010":{"group":2,"name":"Sticker | jkaem (Normal)","count":8},"C5432693018":{"group":2,"name":"Sticker | jkaem (Foil)","count":6},"C5432693026":{"group":2,"name":"Sticker | jkaem (Gold)","count":8},"C5432693034":{"group":2,"name":"Sticker | jkaem (Holo)","count":2},"C5432693042":{"group":2,"name":"Sticker | jkaem (Glitter)","count":2},"C54331786":{"group":2,"name":"Sticker | FalleN","count":58},"C54331794":{"group":2,"name":"Sticker | FalleN (Normal)","count":17},"C54331802":{"group":2,"name":"Sticker | FalleN (Foil)","count":12},"C54331810":{"group":2,"name":"Sticker | FalleN (Gold)","count":17},"C54331818":{"group":2,"name":"Sticker | FalleN (Holo)","count":7},"C54331826":{"group":2,"name":"Sticker | FalleN (Glitter)","count":4},"C54331834":{"group":2,"name":"Sticker | FalleN (Embroidered)","count":1},"C54450169226":{"group":2,"name":"Sticker | kauez","count":12},"C54450169234":{"group":2,"name":"Sticker | kauez (Normal)","count":3},"C54450169250":{"group":2,"name":"Sticker | kauez (Gold)","count":3},"C54450169258":{"group":2,"name":"Sticker | kauez (Holo)","count":3},"C54450169266":{"group":2,"name":"Sticker | kauez (Glitter)","count":2},"C54450169274":{"group":2,"name":"Sticker | kauez (Embroidered)","count":1},"C54527968650":{"group":2,"name":"Sticker | donk","count":24},"C54527968658":{"group":2,"name":"Sticker | donk (Normal)","count":6},"C54527968666":{"group":2,"name":"Sticker | donk (Foil)","count":2},"C54527968674":{"group":2,"name":"Sticker | donk (Gold)","count":6},"C54527968682":{"group":2,"name":"Sticker | donk (Holo)","count":6},"C54527968690":{"group":2,"name":"Sticker | donk (Glitter)","count":3},"C54527968698":{"group":2,"name":"Sticker | donk (Embroidered)","count":1},"C5462660490":{"group":2,"name":"Sticker | acoR","count":12},"C5462660498":{"group":2,"name":"Sticker | acoR (Normal)","count":3},"C5462660514":{"group":2,"name":"Sticker | acoR (Gold)","count":3},"C5462660522":{"group":2,"name":"Sticker | acoR (Holo)","count":3},"C5462660530":{"group":2,"name":"Sticker | acoR (Glitter)","count":3},"C54757229322":{"group":2,"name":"Sticker | drop","count":23},"C54757229330":{"group":2,"name":"Sticker | drop (Normal)","count":6},"C54757229346":{"group":2,"name":"Sticker | drop (Gold)","count":6},"C54757229354":{"group":2,"name":"Sticker | drop (Holo)","count":6},"C54757229362":{"group":2,"name":"Sticker | drop (Glitter)","count":4},"C54757229370":{"group":2,"name":"Sticker | drop (Embroidered)","count":1},"C5488183690":{"group":2,"name":"Sticker | WOOD7","count":8},"C5488183698":{"group":2,"name":"Sticker | WOOD7 (Normal)","count":2},"C5488183714":{"group":2,"name":"Sticker | WOOD7 (Gold)","count":2},"C5488183722":{"group":2,"name":"Sticker | WOOD7 (Holo)","count":2},"C5488183730":{"group":2,"name":"Sticker | WOOD7 (Glitter)","count":2},"C5515":{"group":3,"name":"Sticker | Flipsid3 Tactics","count":32},"C5523":{"group":3,"name":"Sticker | Flipsid3 Tactics (Normal)","count":9},"C553":{"group":1,"name":"Sticker | Cologne 2014 (Holo)","count":16},"C5531":{"group":3,"name":"Sticker | Flipsid3 Tactics (Foil)","count":8},"C5539":{"group":3,"name":"Sticker | Flipsid3 Tactics (Gold)","count":9},"C5547":{"group":3,"name":"Sticker | Flipsid3 Tactics (Holo)","count":6},"C5566785418":{"group":2,"name":"Sticker | jR","count":12},"C5566785426":{"group":2,"name":"Sticker | jR (Normal)","count":4},"C5566785434":{"group":2,"name":"Sticker | jR (Foil)","count":4},"C5566785442":{"group":2,"name":"Sticker | jR (Gold)","count":4},"C55817274250":{"group":2,"name":"Sticker | piriajr","count":8},"C55817274258":{"group":2,"name":"Sticker | piriajr (Normal)","count":2},"C55817274266":{"group":2,"name":"Sticker | piriajr (Foil)","count":2},"C55817274274":{"group":2,"name":"Sticker | piriajr (Gold)","count":2},"C55817274282":{"group":2,"name":"Sticker | piriajr (Holo)","count":2},"C5612772874":{"group":2,"name":"Sticker | cadiaN","count":18},"C5612772882":{"group":2,"name":"Sticker | cadiaN (Normal)","count":5},"C5612772890":{"group":2,"name":"Sticker | cadiaN (Foil)","count":1},"C5612772898":{"group":2,"name":"Sticker | cadiaN (Gold)","count":5},"C5612772906":{"group":2,"name":"Sticker | cadiaN (Holo)","count":4},"C5612772914":{"group":2,"name":"Sticker | cadiaN (Glitter)","count":3},"C56220221322":{"group":2,"name":"Sticker | mlhzin","count":4},"C56220221330":{"group":2,"name":"Sticker | mlhzin (Normal)","count":1},"C56220221338":{"group":2,"name":"Sticker | mlhzin (Foil)","count":1},"C56220221346":{"group":2,"name":"Sticker | mlhzin (Gold)","count":1},"C56220221354":{"group":2,"name":"Sticker | mlhzin (Holo)","count":1},"C56368710922":{"group":2,"name":"Sticker | KENSi","count":4},"C56368710930":{"group":2,"name":"Sticker | KENSi (Normal)","count":1},"C56368710946":{"group":2,"name":"Sticker | KENSi (Gold)","count":1},"C56368710954":{"group":2,"name":"Sticker | KENSi (Holo)","count":1},"C56368710962":{"group":2,"name":"Sticker | KENSi (Glitter)","count":1},"C5662543754":{"group":2,"name":"Sticker | DEVIL","count":6},"C5662543762":{"group":2,"name":"Sticker | DEVIL (Normal)","count":2},"C5662543770":{"group":2,"name":"Sticker | DEVIL (Foil)","count":2},"C5662543778":{"group":2,"name":"Sticker | DEVIL (Gold)","count":2},"C56940170":{"group":2,"name":"Sticker | NBK-","count":27},"C56940178":{"group":2,"name":"Sticker | NBK- (Normal)","count":9},"C56940186":{"group":2,"name":"Sticker | NBK- (Foil)","count":9},"C56940194":{"group":2,"name":"Sticker | NBK- (Gold)","count":9},"C5707421194":{"group":2,"name":"Sticker | dupreeh","count":46},"C5707421202":{"group":2,"name":"Sticker | dupreeh (Normal)","count":14},"C5707421210":{"group":2,"name":"Sticker | dupreeh (Foil)","count":10},"C5707421218":{"group":2,"name":"Sticker | dupreeh (Gold)","count":14},"C5707421226":{"group":2,"name":"Sticker | dupreeh (Holo)","count":4},"C5707421234":{"group":2,"name":"Sticker | dupreeh (Glitter)","count":4},"C5709530378":{"group":2,"name":"Sticker | ALEX","count":6},"C5709530386":{"group":2,"name":"Sticker | ALEX (Normal)","count":2},"C5709530394":{"group":2,"name":"Sticker | ALEX (Foil)","count":2},"C5709530402":{"group":2,"name":"Sticker | ALEX (Gold)","count":2},"C5728323850":{"group":2,"name":"Sticker | GruBy","count":6},"C5728323858":{"group":2,"name":"Sticker | GruBy (Normal)","count":2},"C5728323866":{"group":2,"name":"Sticker | GruBy (Foil)","count":2},"C5728323874":{"group":2,"name":"Sticker | GruBy (Gold)","count":2},"C57335464330":{"group":2,"name":"Sticker | phzy","count":12},"C57335464338":{"group":2,"name":"Sticker | phzy (Normal)","count":3},"C57335464346":{"group":2,"name":"Sticker | phzy (Foil)","count":2},"C57335464354":{"group":2,"name":"Sticker | phzy (Gold)","count":3},"C57335464362":{"group":2,"name":"Sticker | phzy (Holo)","count":3},"C57335464370":{"group":2,"name":"Sticker | phzy (Glitter)","count":1},"C5739787402":{"group":2,"name":"Sticker | Staehr","count":12},"C5739787410":{"group":2,"name":"Sticker | Staehr (Normal)","count":3},"C5739787418":{"group":2,"name":"Sticker | Staehr (Foil)","count":1},"C5739787426":{"group":2,"name":"Sticker | Staehr (Gold)","count":3},"C5739787434":{"group":2,"name":"Sticker | Staehr (Holo)","count":3},"C5739787442":{"group":2,"name":"Sticker | Staehr (Glitter)","count":1},"C5739787450":{"group":2,"name":"Sticker | Staehr (Embroidered)","count":1},"C57576893834":{"group":2,"name":"Sticker | nicx","count":8},"C57576893842":{"group":2,"name":"Sticker | nicx (Normal)","count":2},"C57576893850":{"group":2,"name":"Sticker | nicx (Foil)","count":1},"C57576893858":{"group":2,"name":"Sticker | nicx (Gold)","count":2},"C57576893866":{"group":2,"name":"Sticker | nicx (Holo)","count":2},"C57576893882":{"group":2,"name":"Sticker | nicx (Embroidered)","count":1},"C57662020490":{"group":2,"name":"Sticker | jottAAA","count":8},"C57662020498":{"group":2,"name":"Sticker | jottAAA (Normal)","count":2},"C57662020506":{"group":2,"name":"Sticker | jottAAA (Foil)","count":1},"C57662020514":{"group":2,"name":"Sticker | jottAAA (Gold)","count":2},"C57662020522":{"group":2,"name":"Sticker | jottAAA (Holo)","count":2},"C57662020538":{"group":2,"name":"Sticker | jottAAA (Embroidered)","count":1},"C578038538":{"group":2,"name":"Sticker | shroud","count":12},"C578038546":{"group":2,"name":"Sticker | shroud (Normal)","count":4},"C578038554":{"group":2,"name":"Sticker | shroud (Foil)","count":4},"C578038562":{"group":2,"name":"Sticker | shroud (Gold)","count":4},"C58383669258":{"group":2,"name":"Sticker | C4LLM3SU3","count":12},"C58383669266":{"group":2,"name":"Sticker | C4LLM3SU3 (Normal)","count":3},"C58383669274":{"group":2,"name":"Sticker | C4LLM3SU3 (Foil)","count":2},"C58383669282":{"group":2,"name":"Sticker | C4LLM3SU3 (Gold)","count":3},"C58383669290":{"group":2,"name":"Sticker | C4LLM3SU3 (Holo)","count":3},"C58383669306":{"group":2,"name":"Sticker | C4LLM3SU3 (Embroidered)","count":1},"C5849886858":{"group":2,"name":"Sticker | Kyojin","count":3},"C5849886866":{"group":2,"name":"Sticker | Kyojin (Normal)","count":1},"C5849886882":{"group":2,"name":"Sticker | Kyojin (Gold)","count":1},"C5849886890":{"group":2,"name":"Sticker | Kyojin (Holo)","count":1},"C58506537994":{"group":2,"name":"Sticker | dav1g","count":4},"C58506538002":{"group":2,"name":"Sticker | dav1g (Normal)","count":1},"C58506538018":{"group":2,"name":"Sticker | dav1g (Gold)","count":1},"C58506538026":{"group":2,"name":"Sticker | dav1g (Holo)","count":1},"C58506538034":{"group":2,"name":"Sticker | dav1g (Glitter)","count":1},"C58906378":{"group":2,"name":"Sticker | NEO","count":27},"C58906386":{"group":2,"name":"Sticker | NEO (Normal)","count":9},"C58906394":{"group":2,"name":"Sticker | NEO (Foil)","count":9},"C58906402":{"group":2,"name":"Sticker | NEO (Gold)","count":9},"C5899":{"group":3,"name":"Sticker | Team EnVyUs","count":26},"C5902625034":{"group":2,"name":"Sticker | luken","count":8},"C5902625042":{"group":2,"name":"Sticker | luken (Normal)","count":2},"C5902625050":{"group":2,"name":"Sticker | luken (Foil)","count":1},"C5902625058":{"group":2,"name":"Sticker | luken (Gold)","count":2},"C5902625066":{"group":2,"name":"Sticker | luken (Holo)","count":2},"C5902625074":{"group":2,"name":"Sticker | luken (Glitter)","count":1},"C5907":{"group":3,"name":"Sticker | Team EnVyUs (Normal)","count":7},"C5913725322":{"group":2,"name":"Sticker | AdreN","count":24},"C5913725330":{"group":2,"name":"Sticker | AdreN (Normal)","count":8},"C5913725338":{"group":2,"name":"Sticker | AdreN (Foil)","count":8},"C5913725346":{"group":2,"name":"Sticker | AdreN (Gold)","count":8},"C5915":{"group":3,"name":"Sticker | Team EnVyUs (Foil)","count":7},"C5916633354":{"group":2,"name":"Sticker | aumaN","count":3},"C5916633362":{"group":2,"name":"Sticker | aumaN (Normal)","count":1},"C5916633370":{"group":2,"name":"Sticker | aumaN (Foil)","count":1},"C5916633378":{"group":2,"name":"Sticker | aumaN (Gold)","count":1},"C5923":{"group":3,"name":"Sticker | Team EnVyUs (Gold)","count":7},"C5931":{"group":3,"name":"Sticker | Team EnVyUs (Holo)","count":5},"C5971784586":{"group":2,"name":"Sticker | shox","count":37},"C5971784594":{"group":2,"name":"Sticker | shox (Normal)","count":12},"C5971784602":{"group":2,"name":"Sticker | shox (Foil)","count":10},"C5971784610":{"group":2,"name":"Sticker | shox (Gold)","count":12},"C5971784618":{"group":2,"name":"Sticker | shox (Holo)","count":2},"C5971784626":{"group":2,"name":"Sticker | shox (Glitter)","count":1},"C6005586314":{"group":2,"name":"Sticker | bondik","count":18},"C6005586322":{"group":2,"name":"Sticker | bondik (Normal)","count":6},"C6005586330":{"group":2,"name":"Sticker | bondik (Foil)","count":6},"C6005586338":{"group":2,"name":"Sticker | bondik (Gold)","count":6},"C60091980042":{"group":2,"name":"Sticker | Ariucle","count":4},"C60091980050":{"group":2,"name":"Sticker | Ariucle (Normal)","count":1},"C60091980058":{"group":2,"name":"Sticker | Ariucle (Foil)","count":1},"C60091980066":{"group":2,"name":"Sticker | Ariucle (Gold)","count":1},"C60091980074":{"group":2,"name":"Sticker | Ariucle (Holo)","count":1},"C6027":{"group":3,"name":"Sticker | Vexed Gaming","count":3},"C6035":{"group":3,"name":"Sticker | Vexed Gaming (Normal)","count":1},"C6043":{"group":3,"name":"Sticker | Vexed Gaming (Foil)","count":1},"C6051":{"group":3,"name":"Sticker | Vexed Gaming (Gold)","count":1},"C6052724106":{"group":2,"name":"Sticker | t0rick","count":3},"C6052724114":{"group":2,"name":"Sticker | t0rick (Normal)","count":1},"C6052724122":{"group":2,"name":"Sticker | t0rick (Foil)","count":1},"C6052724130":{"group":2,"name":"Sticker | t0rick (Gold)","count":1},"C611919882":{"group":2,"name":"Sticker | LUCAS1","count":9},"C611919890":{"group":2,"name":"Sticker | LUCAS1 (Normal)","count":3},"C611919898":{"group":2,"name":"Sticker | LUCAS1 (Foil)","count":3},"C611919906":{"group":2,"name":"Sticker | LUCAS1 (Gold)","count":3},"C6155":{"group":3,"name":"Sticker | Team Liquid","count":67},"C61580365066":{"group":2,"name":"Sticker | Bart4k","count":8},"C61580365074":{"group":2,"name":"Sticker | Bart4k (Normal)","count":2},"C61580365090":{"group":2,"name":"Sticker | Bart4k (Gold)","count":2},"C61580365098":{"group":2,"name":"Sticker | Bart4k (Holo)","count":2},"C61580365106":{"group":2,"name":"Sticker | Bart4k (Glitter)","count":1},"C61580365114":{"group":2,"name":"Sticker | Bart4k (Embroidered)","count":1},"C6163":{"group":3,"name":"Sticker | Team Liquid (Normal)","count":17},"C6171":{"group":3,"name":"Sticker | Team Liquid (Foil)","count":12},"C6179":{"group":3,"name":"Sticker | Team Liquid (Gold)","count":17},"C6187":{"group":3,"name":"Sticker | Team Liquid (Holo)","count":16},"C6195":{"group":3,"name":"Sticker | Team Liquid (Glitter)","count":4},"C6203":{"group":3,"name":"Sticker | Team Liquid (Embroidered)","count":1},"C62230983178":{"group":2,"name":"Sticker | jackasmo","count":4},"C62230983186":{"group":2,"name":"Sticker | jackasmo (Normal)","count":1},"C62230983202":{"group":2,"name":"Sticker | jackasmo (Gold)","count":1},"C62230983210":{"group":2,"name":"Sticker | jackasmo (Holo)","count":1},"C62230983218":{"group":2,"name":"Sticker | jackasmo (Glitter)","count":1},"C6257455754":{"group":2,"name":"Sticker | LoveYY","count":3},"C6257455762":{"group":2,"name":"Sticker | LoveYY (Normal)","count":1},"C6257455770":{"group":2,"name":"Sticker | LoveYY (Foil)","count":1},"C6257455778":{"group":2,"name":"Sticker | LoveYY (Gold)","count":1},"C6283":{"group":3,"name":"Sticker | Counter Logic Gaming","count":18},"C6291":{"group":3,"name":"Sticker | Counter Logic Gaming (Normal)","count":5},"C6299":{"group":3,"name":"Sticker | Counter Logic Gaming (Foil)","count":5},"C6307":{"group":3,"name":"Sticker | Counter Logic Gaming (Gold)","count":5},"C6315":{"group":3,"name":"Sticker | Counter Logic Gaming (Holo)","count":3},"C6411":{"group":3,"name":"Sticker | Keyd Stars","count":4},"C6419":{"group":3,"name":"Sticker | Keyd Stars (Normal)","count":1},"C6426214410":{"group":2,"name":"Sticker | balblna","count":6},"C6426214418":{"group":2,"name":"Sticker | balblna (Normal)","count":2},"C6426214426":{"group":2,"name":"Sticker | balblna (Foil)","count":2},"C6426214434":{"group":2,"name":"Sticker | balblna (Gold)","count":2},"C6427":{"group":3,"name":"Sticker | Keyd Stars (Foil)","count":1},"C6429518602":{"group":2,"name":"Sticker | exit","count":16},"C6429518610":{"group":2,"name":"Sticker | exit (Normal)","count":4},"C6429518618":{"group":2,"name":"Sticker | exit (Foil)","count":1},"C6429518626":{"group":2,"name":"Sticker | exit (Gold)","count":4},"C6429518634":{"group":2,"name":"Sticker | exit (Holo)","count":4},"C6429518642":{"group":2,"name":"Sticker | exit (Glitter)","count":2},"C6429518650":{"group":2,"name":"Sticker | exit (Embroidered)","count":1},"C6431397514":{"group":2,"name":"Sticker | gla1ve","count":29},"C6431397522":{"group":2,"name":"Sticker | gla1ve (Normal)","count":9},"C6431397530":{"group":2,"name":"Sticker | gla1ve (Foil)","count":7},"C6431397538":{"group":2,"name":"Sticker | gla1ve (Gold)","count":9},"C6431397546":{"group":2,"name":"Sticker | gla1ve (Holo)","count":2},"C6431397554":{"group":2,"name":"Sticker | gla1ve (Glitter)","count":2},"C6435":{"group":3,"name":"Sticker | Keyd Stars (Gold)","count":1},"C6443":{"group":3,"name":"Sticker | Keyd Stars (Holo)","count":1},"C649":{"group":1,"name":"Sticker | DreamHack 2014","count":54},"C651":{"group":3,"name":"Sticker | iBUYPOWER","count":8},"C6539":{"group":3,"name":"Sticker | TSM Kinguin","count":4},"C6547":{"group":3,"name":"Sticker | TSM Kinguin (Normal)","count":1},"C6555":{"group":3,"name":"Sticker | TSM Kinguin (Foil)","count":1},"C6562692618":{"group":2,"name":"Sticker | keev","count":6},"C6562692626":{"group":2,"name":"Sticker | keev (Normal)","count":2},"C6562692634":{"group":2,"name":"Sticker | keev (Foil)","count":2},"C6562692642":{"group":2,"name":"Sticker | keev (Gold)","count":2},"C6563":{"group":3,"name":"Sticker | TSM Kinguin (Gold)","count":1},"C657":{"group":1,"name":"Sticker | DreamHack 2014 (Normal)","count":21},"C6571":{"group":3,"name":"Sticker | TSM Kinguin (Holo)","count":1},"C6587788170":{"group":2,"name":"Sticker | v$m","count":8},"C6587788178":{"group":2,"name":"Sticker | v$m (Normal)","count":2},"C6587788186":{"group":2,"name":"Sticker | v$m (Foil)","count":1},"C6587788194":{"group":2,"name":"Sticker | v$m (Gold)","count":2},"C6587788202":{"group":2,"name":"Sticker | v$m (Holo)","count":2},"C6587788210":{"group":2,"name":"Sticker | v$m (Glitter)","count":1},"C659":{"group":3,"name":"Sticker | iBUYPOWER (Normal)","count":3},"C6620002186":{"group":2,"name":"Sticker | Dima","count":6},"C6620002194":{"group":2,"name":"Sticker | Dima (Normal)","count":2},"C6620002202":{"group":2,"name":"Sticker | Dima (Foil)","count":2},"C6620002210":{"group":2,"name":"Sticker | Dima (Gold)","count":2},"C66401290":{"group":2,"name":"Sticker | reltuC","count":12},"C66401298":{"group":2,"name":"Sticker | reltuC (Normal)","count":4},"C66401306":{"group":2,"name":"Sticker | reltuC (Foil)","count":4},"C66401314":{"group":2,"name":"Sticker | reltuC (Gold)","count":4},"C665":{"group":1,"name":"Sticker | DreamHack 2014 (Foil)","count":7},"C6667":{"group":3,"name":"Sticker | Cloud9 G2A","count":7},"C667":{"group":3,"name":"Sticker | iBUYPOWER (Foil)","count":2},"C6675":{"group":3,"name":"Sticker | Cloud9 G2A (Normal)","count":2},"C6683":{"group":3,"name":"Sticker | Cloud9 G2A (Foil)","count":2},"C6691":{"group":3,"name":"Sticker | Cloud9 G2A (Gold)","count":2},"C6699":{"group":3,"name":"Sticker | Cloud9 G2A (Holo)","count":1},"C673":{"group":1,"name":"Sticker | DreamHack 2014 (Gold)","count":20},"C6733609610":{"group":2,"name":"Sticker | huNter-","count":34},"C6733609618":{"group":2,"name":"Sticker | huNter- (Normal)","count":9},"C6733609626":{"group":2,"name":"Sticker | huNter- (Foil)","count":3},"C6733609634":{"group":2,"name":"Sticker | huNter- (Gold)","count":9},"C6733609642":{"group":2,"name":"Sticker | huNter- (Holo)","count":8},"C6733609650":{"group":2,"name":"Sticker | huNter- (Glitter)","count":4},"C6733609658":{"group":2,"name":"Sticker | huNter- (Embroidered)","count":1},"C6742882186":{"group":2,"name":"Sticker | mou","count":18},"C6742882194":{"group":2,"name":"Sticker | mou (Normal)","count":6},"C6742882202":{"group":2,"name":"Sticker | mou (Foil)","count":6},"C6742882210":{"group":2,"name":"Sticker | mou (Gold)","count":6},"C6748430218":{"group":2,"name":"Sticker | JUST","count":4},"C6748430226":{"group":2,"name":"Sticker | JUST (Normal)","count":1},"C6748430242":{"group":2,"name":"Sticker | JUST (Gold)","count":1},"C6748430250":{"group":2,"name":"Sticker | JUST (Holo)","count":1},"C6748430258":{"group":2,"name":"Sticker | JUST (Glitter)","count":1},"C675":{"group":3,"name":"Sticker | iBUYPOWER (Gold)","count":1},"C6768200714":{"group":2,"name":"Sticker | TACO","count":28},"C6768200722":{"group":2,"name":"Sticker | TACO (Normal)","count":9},"C6768200730":{"group":2,"name":"Sticker | TACO (Foil)","count":8},"C6768200738":{"group":2,"name":"Sticker | TACO (Gold)","count":9},"C6768200746":{"group":2,"name":"Sticker | TACO (Holo)","count":1},"C6768200754":{"group":2,"name":"Sticker | TACO (Glitter)","count":1},"C6772067210":{"group":2,"name":"Sticker | xseveN","count":6},"C6772067218":{"group":2,"name":"Sticker | xseveN (Normal)","count":2},"C6772067226":{"group":2,"name":"Sticker | xseveN (Foil)","count":2},"C6772067234":{"group":2,"name":"Sticker | xseveN (Gold)","count":2},"C6779458442":{"group":2,"name":"Sticker | Summer","count":17},"C6779458450":{"group":2,"name":"Sticker | Summer (Normal)","count":5},"C6779458458":{"group":2,"name":"Sticker | Summer (Foil)","count":3},"C6779458466":{"group":2,"name":"Sticker | Summer (Gold)","count":5},"C6779458474":{"group":2,"name":"Sticker | Summer (Holo)","count":2},"C6779458482":{"group":2,"name":"Sticker | Summer (Glitter)","count":1},"C6779458490":{"group":2,"name":"Sticker | Summer (Embroidered)","count":1},"C6781132554":{"group":2,"name":"Sticker | Aleksib","count":42},"C6781132562":{"group":2,"name":"Sticker | Aleksib (Normal)","count":11},"C6781132570":{"group":2,"name":"Sticker | Aleksib (Foil)","count":4},"C6781132578":{"group":2,"name":"Sticker | Aleksib (Gold)","count":11},"C6781132586":{"group":2,"name":"Sticker | Aleksib (Holo)","count":9},"C6781132594":{"group":2,"name":"Sticker | Aleksib (Glitter)","count":6},"C6781132602":{"group":2,"name":"Sticker | Aleksib (Embroidered)","count":1},"C6787794826":{"group":2,"name":"Sticker | bodyy","count":30},"C6787794834":{"group":2,"name":"Sticker | bodyy (Normal)","count":9},"C6787794842":{"group":2,"name":"Sticker | bodyy (Foil)","count":7},"C6787794850":{"group":2,"name":"Sticker | bodyy (Gold)","count":9},"C6787794858":{"group":2,"name":"Sticker | bodyy (Holo)","count":3},"C6787794866":{"group":2,"name":"Sticker | bodyy (Glitter)","count":1},"C6787794874":{"group":2,"name":"Sticker | bodyy (Embroidered)","count":1},"C6795":{"group":3,"name":"Sticker | Renegades","count":31},"C6803":{"group":3,"name":"Sticker | Renegades (Normal)","count":8},"C681":{"group":1,"name":"Sticker | DreamHack 2014 (Holo)","count":6},"C6811":{"group":3,"name":"Sticker | Renegades (Foil)","count":7},"C6817041546":{"group":2,"name":"Sticker | B1ad3","count":21},"C6817041554":{"group":2,"name":"Sticker | B1ad3 (Normal)","count":7},"C6817041562":{"group":2,"name":"Sticker | B1ad3 (Foil)","count":7},"C6817041570":{"group":2,"name":"Sticker | B1ad3 (Gold)","count":7},"C6819":{"group":3,"name":"Sticker | Renegades (Gold)","count":8},"C6826358794":{"group":2,"name":"Sticker | Shara","count":6},"C6826358802":{"group":2,"name":"Sticker | Shara (Normal)","count":2},"C6826358810":{"group":2,"name":"Sticker | Shara (Foil)","count":2},"C6826358818":{"group":2,"name":"Sticker | Shara (Gold)","count":2},"C6827":{"group":3,"name":"Sticker | Renegades (Holo)","count":7},"C683":{"group":3,"name":"Sticker | iBUYPOWER (Holo)","count":2},"C6835":{"group":3,"name":"Sticker | Renegades (Glitter)","count":1},"C6910178954":{"group":2,"name":"Sticker | RpK","count":24},"C6910178962":{"group":2,"name":"Sticker | RpK (Normal)","count":8},"C6910178970":{"group":2,"name":"Sticker | RpK (Foil)","count":8},"C6910178978":{"group":2,"name":"Sticker | RpK (Gold)","count":8},"C6911155978":{"group":2,"name":"Sticker | FL4MUS","count":12},"C6911155986":{"group":2,"name":"Sticker | FL4MUS (Normal)","count":3},"C6911155994":{"group":2,"name":"Sticker | FL4MUS (Foil)","count":2},"C6911156002":{"group":2,"name":"Sticker | FL4MUS (Gold)","count":3},"C6911156010":{"group":2,"name":"Sticker | FL4MUS (Holo)","count":3},"C6911156018":{"group":2,"name":"Sticker | FL4MUS (Glitter)","count":1},"C6923":{"group":3,"name":"Sticker | Team Immunity","count":3},"C6931":{"group":3,"name":"Sticker | Team Immunity (Normal)","count":1},"C6939":{"group":3,"name":"Sticker | Team Immunity (Foil)","count":1},"C6947":{"group":3,"name":"Sticker | Team Immunity (Gold)","count":1},"C6977596682":{"group":2,"name":"Sticker | steel","count":9},"C6977596690":{"group":2,"name":"Sticker | steel (Normal)","count":3},"C6977596698":{"group":2,"name":"Sticker | steel (Foil)","count":3},"C6977596706":{"group":2,"name":"Sticker | steel (Gold)","count":3},"C7045523978":{"group":2,"name":"Sticker | biguzera","count":24},"C7045523986":{"group":2,"name":"Sticker | biguzera (Normal)","count":6},"C7045523994":{"group":2,"name":"Sticker | biguzera (Foil)","count":2},"C7045524002":{"group":2,"name":"Sticker | biguzera (Gold)","count":6},"C7045524010":{"group":2,"name":"Sticker | biguzera (Holo)","count":6},"C7045524018":{"group":2,"name":"Sticker | biguzera (Glitter)","count":3},"C7045524026":{"group":2,"name":"Sticker | biguzera (Embroidered)","count":1},"C7051":{"group":3,"name":"Sticker | Team Kinguin","count":3},"C7059":{"group":3,"name":"Sticker | Team Kinguin (Normal)","count":1},"C7067":{"group":3,"name":"Sticker | Team Kinguin (Foil)","count":1},"C7075":{"group":3,"name":"Sticker | Team Kinguin (Gold)","count":1},"C709591434":{"group":2,"name":"Sticker | Gratisfaction","count":6},"C709591442":{"group":2,"name":"Sticker | Gratisfaction (Normal)","count":2},"C709591450":{"group":2,"name":"Sticker | Gratisfaction (Foil)","count":2},"C709591458":{"group":2,"name":"Sticker | Gratisfaction (Gold)","count":2},"C7158839178":{"group":2,"name":"Sticker | STYKO","count":17},"C7158839186":{"group":2,"name":"Sticker | STYKO (Normal)","count":5},"C7158839194":{"group":2,"name":"Sticker | STYKO (Foil)","count":3},"C7158839202":{"group":2,"name":"Sticker | STYKO (Gold)","count":5},"C7158839210":{"group":2,"name":"Sticker | STYKO (Holo)","count":2},"C7158839218":{"group":2,"name":"Sticker | STYKO (Glitter)","count":2},"C7166653066":{"group":2,"name":"Sticker | Twistzz","count":36},"C7166653074":{"group":2,"name":"Sticker | Twistzz (Normal)","count":10},"C7166653082":{"group":2,"name":"Sticker | Twistzz (Foil)","count":5},"C7166653090":{"group":2,"name":"Sticker | Twistzz (Gold)","count":10},"C7166653098":{"group":2,"name":"Sticker | Twistzz (Holo)","count":6},"C7166653106":{"group":2,"name":"Sticker | Twistzz (Glitter)","count":5},"C7179":{"group":3,"name":"Sticker | Team eBettle","count":3},"C7187":{"group":3,"name":"Sticker | Team eBettle (Normal)","count":1},"C7195":{"group":3,"name":"Sticker | Team eBettle (Foil)","count":1},"C7203":{"group":3,"name":"Sticker | Team eBettle (Gold)","count":1},"C725409418":{"group":2,"name":"Sticker | markeloff","count":21},"C725409426":{"group":2,"name":"Sticker | markeloff (Normal)","count":7},"C725409434":{"group":2,"name":"Sticker | markeloff (Foil)","count":7},"C725409442":{"group":2,"name":"Sticker | markeloff (Gold)","count":7},"C7307":{"group":3,"name":"Sticker | Luminosity Gaming","count":10},"C7315":{"group":3,"name":"Sticker | Luminosity Gaming (Normal)","count":3},"C7323":{"group":3,"name":"Sticker | Luminosity Gaming (Foil)","count":3},"C7331":{"group":3,"name":"Sticker | Luminosity Gaming (Gold)","count":3},"C7336008586":{"group":2,"name":"Sticker | pyth","count":6},"C7336008594":{"group":2,"name":"Sticker | pyth (Normal)","count":2},"C7336008602":{"group":2,"name":"Sticker | pyth (Foil)","count":2},"C7336008610":{"group":2,"name":"Sticker | pyth (Gold)","count":2},"C7339":{"group":3,"name":"Sticker | Luminosity Gaming (Holo)","count":1},"C7347882634":{"group":2,"name":"Sticker | suNny","count":9},"C7347882642":{"group":2,"name":"Sticker | suNny (Normal)","count":3},"C7347882650":{"group":2,"name":"Sticker | suNny (Foil)","count":3},"C7347882658":{"group":2,"name":"Sticker | suNny (Gold)","count":3},"C7359585930":{"group":2,"name":"Sticker | yay","count":3},"C7359585938":{"group":2,"name":"Sticker | yay (Normal)","count":1},"C7359585946":{"group":2,"name":"Sticker | yay (Foil)","count":1},"C7359585954":{"group":2,"name":"Sticker | yay (Gold)","count":1},"C7391050250":{"group":2,"name":"Sticker | Pimp","count":6},"C7391050258":{"group":2,"name":"Sticker | Pimp (Normal)","count":2},"C7391050266":{"group":2,"name":"Sticker | Pimp (Foil)","count":2},"C7391050274":{"group":2,"name":"Sticker | Pimp (Gold)","count":2},"C7393476490":{"group":2,"name":"Sticker | HEN1","count":14},"C7393476498":{"group":2,"name":"Sticker | HEN1 (Normal)","count":4},"C7393476506":{"group":2,"name":"Sticker | HEN1 (Foil)","count":3},"C7393476514":{"group":2,"name":"Sticker | HEN1 (Gold)","count":4},"C7393476522":{"group":2,"name":"Sticker | HEN1 (Holo)","count":2},"C7393476530":{"group":2,"name":"Sticker | HEN1 (Glitter)","count":1},"C7435":{"group":3,"name":"Sticker | Team SoloMid","count":6},"C743671434":{"group":2,"name":"Sticker | hooch","count":6},"C743671442":{"group":2,"name":"Sticker | hooch (Normal)","count":2},"C743671450":{"group":2,"name":"Sticker | hooch (Foil)","count":2},"C743671458":{"group":2,"name":"Sticker | hooch (Gold)","count":2},"C7438550026":{"group":2,"name":"Sticker | boltz","count":17},"C7438550034":{"group":2,"name":"Sticker | boltz (Normal)","count":5},"C7438550042":{"group":2,"name":"Sticker | boltz (Foil)","count":3},"C7438550050":{"group":2,"name":"Sticker | boltz (Gold)","count":5},"C7438550058":{"group":2,"name":"Sticker | boltz (Holo)","count":2},"C7438550066":{"group":2,"name":"Sticker | boltz (Glitter)","count":2},"C7443":{"group":3,"name":"Sticker | Team SoloMid (Normal)","count":2},"C7451":{"group":3,"name":"Sticker | Team SoloMid (Foil)","count":2},"C7459":{"group":3,"name":"Sticker | Team SoloMid (Gold)","count":2},"C7543086474":{"group":2,"name":"Sticker | ANGE1","count":12},"C7543086482":{"group":2,"name":"Sticker | ANGE1 (Normal)","count":4},"C7543086490":{"group":2,"name":"Sticker | ANGE1 (Foil)","count":4},"C7543086498":{"group":2,"name":"Sticker | ANGE1 (Gold)","count":4},"C7560031242":{"group":2,"name":"Sticker | Zeus","count":30},"C7560031250":{"group":2,"name":"Sticker | Zeus (Normal)","count":10},"C7560031258":{"group":2,"name":"Sticker | Zeus (Foil)","count":10},"C7560031266":{"group":2,"name":"Sticker | Zeus (Gold)","count":10},"C7563":{"group":3,"name":"Sticker | G2 Esports","count":71},"C7571":{"group":3,"name":"Sticker | G2 Esports (Normal)","count":18},"C7579":{"group":3,"name":"Sticker | G2 Esports (Foil)","count":13},"C7587":{"group":3,"name":"Sticker | G2 Esports (Gold)","count":18},"C7595":{"group":3,"name":"Sticker | G2 Esports (Holo)","count":17},"C7603":{"group":3,"name":"Sticker | G2 Esports (Glitter)","count":4},"C7611":{"group":3,"name":"Sticker | G2 Esports (Embroidered)","count":1},"C7630697482":{"group":2,"name":"Sticker | Kjaerbye","count":18},"C7630697490":{"group":2,"name":"Sticker | Kjaerbye (Normal)","count":6},"C7630697498":{"group":2,"name":"Sticker | Kjaerbye (Foil)","count":6},"C7630697506":{"group":2,"name":"Sticker | Kjaerbye (Gold)","count":6},"C7644771594":{"group":2,"name":"Sticker | Patti","count":4},"C7644771602":{"group":2,"name":"Sticker | Patti (Normal)","count":1},"C7644771618":{"group":2,"name":"Sticker | Patti (Gold)","count":1},"C7644771626":{"group":2,"name":"Sticker | Patti (Holo)","count":1},"C7644771634":{"group":2,"name":"Sticker | Patti (Glitter)","count":1},"C7691":{"group":3,"name":"Sticker | Astralis","count":52},"C7699":{"group":3,"name":"Sticker | Astralis (Normal)","count":13},"C7707":{"group":3,"name":"Sticker | Astralis (Foil)","count":11},"C7715":{"group":3,"name":"Sticker | Astralis (Gold)","count":13},"C7723":{"group":3,"name":"Sticker | Astralis (Holo)","count":13},"C7725961610":{"group":2,"name":"Sticker | MICHU","count":3},"C7725961618":{"group":2,"name":"Sticker | MICHU (Normal)","count":1},"C7725961626":{"group":2,"name":"Sticker | MICHU (Foil)","count":1},"C7725961634":{"group":2,"name":"Sticker | MICHU (Gold)","count":1},"C7731":{"group":3,"name":"Sticker | Astralis (Glitter)","count":1},"C7739":{"group":3,"name":"Sticker | Astralis (Embroidered)","count":1},"C777":{"group":1,"name":"Sticker | Katowice 2015","count":67},"C779":{"group":3,"name":"Sticker | Fnatic","count":68},"C7819":{"group":3,"name":"Sticker | FaZe Clan","count":68},"C7827":{"group":3,"name":"Sticker | FaZe Clan (Normal)","count":17},"C7835":{"group":3,"name":"Sticker | FaZe Clan (Foil)","count":11},"C7843":{"group":3,"name":"Sticker | FaZe Clan (Gold)","count":17},"C785":{"group":1,"name":"Sticker | Katowice 2015 (Normal)","count":17},"C7851":{"group":3,"name":"Sticker | FaZe Clan (Holo)","count":17},"C7859":{"group":3,"name":"Sticker | FaZe Clan (Glitter)","count":5},"C7865519626":{"group":2,"name":"Sticker | JT","count":24},"C7865519634":{"group":2,"name":"Sticker | JT (Normal)","count":6},"C7865519642":{"group":2,"name":"Sticker | JT (Foil)","count":1},"C7865519650":{"group":2,"name":"Sticker | JT (Gold)","count":6},"C7865519658":{"group":2,"name":"Sticker | JT (Holo)","count":6},"C7865519666":{"group":2,"name":"Sticker | JT (Glitter)","count":4},"C7865519674":{"group":2,"name":"Sticker | JT (Embroidered)","count":1},"C7867":{"group":3,"name":"Sticker | FaZe Clan (Embroidered)","count":1},"C787":{"group":3,"name":"Sticker | Fnatic (Normal)","count":18},"C7883216650":{"group":2,"name":"Sticker | hutji","count":12},"C7883216658":{"group":2,"name":"Sticker | hutji (Normal)","count":4},"C7883216666":{"group":2,"name":"Sticker | hutji (Foil)","count":4},"C7883216674":{"group":2,"name":"Sticker | hutji (Gold)","count":4},"C793":{"group":1,"name":"Sticker | Katowice 2015 (Foil)","count":17},"C7947":{"group":3,"name":"Sticker | Splyce","count":4},"C7948788490":{"group":2,"name":"Sticker | stavn","count":15},"C7948788498":{"group":2,"name":"Sticker | stavn (Normal)","count":4},"C7948788514":{"group":2,"name":"Sticker | stavn (Gold)","count":4},"C7948788522":{"group":2,"name":"Sticker | stavn (Holo)","count":4},"C7948788530":{"group":2,"name":"Sticker | stavn (Glitter)","count":3},"C795":{"group":3,"name":"Sticker | Fnatic (Foil)","count":14},"C7955":{"group":3,"name":"Sticker | Splyce (Normal)","count":1},"C7963":{"group":3,"name":"Sticker | Splyce (Foil)","count":1},"C7971":{"group":3,"name":"Sticker | Splyce (Gold)","count":1},"C7979":{"group":3,"name":"Sticker | Splyce (Holo)","count":1},"C801":{"group":1,"name":"Sticker | Katowice 2015 (Gold)","count":17},"C803":{"group":3,"name":"Sticker | Fnatic (Gold)","count":16},"C8075":{"group":3,"name":"Sticker | Gambit Esports","count":28},"C8083":{"group":3,"name":"Sticker | Gambit Esports (Normal)","count":7},"C809":{"group":1,"name":"Sticker | Katowice 2015 (Holo)","count":16},"C8091":{"group":3,"name":"Sticker | Gambit Esports (Foil)","count":7},"C8099":{"group":3,"name":"Sticker | Gambit Esports (Gold)","count":7},"C8105803786":{"group":2,"name":"Sticker | RUSH","count":15},"C8105803794":{"group":2,"name":"Sticker | RUSH (Normal)","count":5},"C8105803802":{"group":2,"name":"Sticker | RUSH (Foil)","count":5},"C8105803810":{"group":2,"name":"Sticker | RUSH (Gold)","count":5},"C8107":{"group":3,"name":"Sticker | Gambit Esports (Holo)","count":7},"C811":{"group":3,"name":"Sticker | Fnatic (Holo)","count":16},"C8189747338":{"group":2,"name":"Sticker | Farlig","count":4},"C8189747346":{"group":2,"name":"Sticker | Farlig (Normal)","count":1},"C8189747362":{"group":2,"name":"Sticker | Farlig (Gold)","count":1},"C8189747370":{"group":2,"name":"Sticker | Farlig (Holo)","count":1},"C8189747378":{"group":2,"name":"Sticker | Farlig (Glitter)","count":1},"C819":{"group":3,"name":"Sticker | Fnatic (Glitter)","count":3},"C827":{"group":3,"name":"Sticker | Fnatic (Embroidered)","count":1},"C8273928714":{"group":2,"name":"Sticker | kennyS","count":30},"C8273928722":{"group":2,"name":"Sticker | kennyS (Normal)","count":10},"C8273928730":{"group":2,"name":"Sticker | kennyS (Foil)","count":10},"C8273928738":{"group":2,"name":"Sticker | kennyS (Gold)","count":10},"C8276743434":{"group":2,"name":"Sticker | hatz","count":4},"C8276743442":{"group":2,"name":"Sticker | hatz (Normal)","count":1},"C8276743458":{"group":2,"name":"Sticker | hatz (Gold)","count":1},"C8276743466":{"group":2,"name":"Sticker | hatz (Holo)","count":1},"C8276743474":{"group":2,"name":"Sticker | hatz (Glitter)","count":1},"C8343347466":{"group":2,"name":"Sticker | Thomas","count":4},"C8343347474":{"group":2,"name":"Sticker | Thomas (Normal)","count":1},"C8343347490":{"group":2,"name":"Sticker | Thomas (Gold)","count":1},"C8343347498":{"group":2,"name":"Sticker | Thomas (Holo)","count":1},"C8343347506":{"group":2,"name":"Sticker | Thomas (Glitter)","count":1},"C8393334026":{"group":2,"name":"Sticker | keshandr","count":6},"C8393334034":{"group":2,"name":"Sticker | keshandr (Normal)","count":2},"C8393334042":{"group":2,"name":"Sticker | keshandr (Foil)","count":2},"C8393334050":{"group":2,"name":"Sticker | keshandr (Gold)","count":2},"C8425270794":{"group":2,"name":"Sticker | Jerry","count":11},"C8425270802":{"group":2,"name":"Sticker | Jerry (Normal)","count":3},"C8425270810":{"group":2,"name":"Sticker | Jerry (Foil)","count":1},"C8425270818":{"group":2,"name":"Sticker | Jerry (Gold)","count":3},"C8425270826":{"group":2,"name":"Sticker | Jerry (Holo)","count":2},"C8425270834":{"group":2,"name":"Sticker | Jerry (Glitter)","count":2},"C8459":{"group":3,"name":"Sticker | OpTic Gaming","count":12},"C8467":{"group":3,"name":"Sticker | OpTic Gaming (Normal)","count":3},"C8475":{"group":3,"name":"Sticker | OpTic Gaming (Foil)","count":3},"C8483":{"group":3,"name":"Sticker | OpTic Gaming (Gold)","count":3},"C8491":{"group":3,"name":"Sticker | OpTic Gaming (Holo)","count":3},"C8586627210":{"group":2,"name":"Sticker | Forester","count":7},"C8586627218":{"group":2,"name":"Sticker | Forester (Normal)","count":2},"C8586627226":{"group":2,"name":"Sticker | Forester (Foil)","count":1},"C8586627234":{"group":2,"name":"Sticker | Forester (Gold)","count":2},"C8586627242":{"group":2,"name":"Sticker | Forester (Holo)","count":1},"C8586627250":{"group":2,"name":"Sticker | Forester (Glitter)","count":1},"C8587":{"group":3,"name":"Sticker | GODSENT","count":12},"C8595":{"group":3,"name":"Sticker | GODSENT (Normal)","count":3},"C8603":{"group":3,"name":"Sticker | GODSENT (Foil)","count":3},"C8611":{"group":3,"name":"Sticker | GODSENT (Gold)","count":3},"C861806474":{"group":2,"name":"Sticker | kNgV-","count":9},"C861806482":{"group":2,"name":"Sticker | kNgV- (Normal)","count":3},"C861806490":{"group":2,"name":"Sticker | kNgV- (Foil)","count":3},"C861806498":{"group":2,"name":"Sticker | kNgV- (Gold)","count":3},"C8619":{"group":3,"name":"Sticker | GODSENT (Holo)","count":3},"C8649484426":{"group":2,"name":"Sticker | sergej","count":6},"C8649484434":{"group":2,"name":"Sticker | sergej (Normal)","count":2},"C8649484442":{"group":2,"name":"Sticker | sergej (Foil)","count":2},"C8649484450":{"group":2,"name":"Sticker | sergej (Gold)","count":2},"C8707459850":{"group":2,"name":"Sticker | Hobbit","count":30},"C8707459858":{"group":2,"name":"Sticker | Hobbit (Normal)","count":9},"C8707459866":{"group":2,"name":"Sticker | Hobbit (Foil)","count":5},"C8707459874":{"group":2,"name":"Sticker | Hobbit (Gold)","count":9},"C8707459882":{"group":2,"name":"Sticker | Hobbit (Holo)","count":4},"C8707459890":{"group":2,"name":"Sticker | Hobbit (Glitter)","count":3},"C8715":{"group":3,"name":"Sticker | North","count":24},"C8723":{"group":3,"name":"Sticker | North (Normal)","count":6},"C8728713610":{"group":2,"name":"Sticker | blameF","count":16},"C8728713618":{"group":2,"name":"Sticker | blameF (Normal)","count":4},"C8728713626":{"group":2,"name":"Sticker | blameF (Foil)","count":1},"C8728713634":{"group":2,"name":"Sticker | blameF (Gold)","count":4},"C8728713642":{"group":2,"name":"Sticker | blameF (Holo)","count":4},"C8728713650":{"group":2,"name":"Sticker | blameF (Glitter)","count":2},"C8728713658":{"group":2,"name":"Sticker | blameF (Embroidered)","count":1},"C8731":{"group":3,"name":"Sticker | North (Foil)","count":6},"C8739":{"group":3,"name":"Sticker | North (Gold)","count":6},"C8747":{"group":3,"name":"Sticker | North (Holo)","count":6},"C8754075658":{"group":2,"name":"Sticker | asap","count":4},"C8754075666":{"group":2,"name":"Sticker | asap (Normal)","count":1},"C8754075674":{"group":2,"name":"Sticker | asap (Foil)","count":1},"C8754075682":{"group":2,"name":"Sticker | asap (Gold)","count":1},"C8754075690":{"group":2,"name":"Sticker | asap (Holo)","count":1},"C8771150730":{"group":2,"name":"Sticker | paz","count":6},"C8771150738":{"group":2,"name":"Sticker | paz (Normal)","count":2},"C8771150746":{"group":2,"name":"Sticker | paz (Foil)","count":2},"C8771150754":{"group":2,"name":"Sticker | paz (Gold)","count":2},"C8843":{"group":3,"name":"Sticker | BIG","count":40},"C8851":{"group":3,"name":"Sticker | BIG (Normal)","count":10},"C8859":{"group":3,"name":"Sticker | BIG (Foil)","count":7},"C8867":{"group":3,"name":"Sticker | BIG (Gold)","count":10},"C8875":{"group":3,"name":"Sticker | BIG (Holo)","count":10},"C8883":{"group":3,"name":"Sticker | BIG (Glitter)","count":3},"C8971":{"group":3,"name":"Sticker | Vega Squadron","count":16},"C8979":{"group":3,"name":"Sticker | Vega Squadron (Normal)","count":4},"C8987":{"group":3,"name":"Sticker | Vega Squadron (Foil)","count":4},"C8995":{"group":3,"name":"Sticker | Vega Squadron (Gold)","count":4},"C8995874442":{"group":2,"name":"Sticker | Queenix","count":4},"C8995874450":{"group":2,"name":"Sticker | Queenix (Normal)","count":1},"C8995874466":{"group":2,"name":"Sticker | Queenix (Gold)","count":1},"C8995874474":{"group":2,"name":"Sticker | Queenix (Holo)","count":1},"C8995874482":{"group":2,"name":"Sticker | Queenix (Glitter)","count":1},"C9003":{"group":3,"name":"Sticker | Vega Squadron (Holo)","count":4},"C905":{"group":1,"name":"Sticker | Cologne 2015","count":291},"C907":{"group":3,"name":"Sticker | Clan-Mystik","count":3},"C9099":{"group":3,"name":"Sticker | Immortals","count":4},"C9107":{"group":3,"name":"Sticker | Immortals (Normal)","count":1},"C9115":{"group":3,"name":"Sticker | Immortals (Foil)","count":1},"C9123":{"group":3,"name":"Sticker | Immortals (Gold)","count":1},"C9124924426":{"group":2,"name":"Sticker | JW","count":27},"C9124924434":{"group":2,"name":"Sticker | JW (Normal)","count":9},"C9124924442":{"group":2,"name":"Sticker | JW (Foil)","count":9},"C9124924450":{"group":2,"name":"Sticker | JW (Gold)","count":9},"C913":{"group":1,"name":"Sticker | Cologne 2015 (Normal)","count":97},"C9131":{"group":3,"name":"Sticker | Immortals (Holo)","count":1},"C9137389578":{"group":2,"name":"Sticker | KRIMZ","count":43},"C9137389586":{"group":2,"name":"Sticker | KRIMZ (Normal)","count":13},"C9137389594":{"group":2,"name":"Sticker | KRIMZ (Foil)","count":9},"C9137389602":{"group":2,"name":"Sticker | KRIMZ (Gold)","count":13},"C9137389610":{"group":2,"name":"Sticker | KRIMZ (Holo)","count":4},"C9137389618":{"group":2,"name":"Sticker | KRIMZ (Glitter)","count":3},"C9137389626":{"group":2,"name":"Sticker | KRIMZ (Embroidered)","count":1},"C915":{"group":3,"name":"Sticker | Clan-Mystik (Normal)","count":1},"C9167921546":{"group":2,"name":"Sticker | Lucky","count":18},"C9167921554":{"group":2,"name":"Sticker | Lucky (Normal)","count":5},"C9167921562":{"group":2,"name":"Sticker | Lucky (Foil)","count":3},"C9167921570":{"group":2,"name":"Sticker | Lucky (Gold)","count":5},"C9167921578":{"group":2,"name":"Sticker | Lucky (Holo)","count":3},"C9167921586":{"group":2,"name":"Sticker | Lucky (Glitter)","count":1},"C9167921594":{"group":2,"name":"Sticker | Lucky (Embroidered)","count":1},"C9170291722":{"group":2,"name":"Sticker | Krad","count":11},"C9170291730":{"group":2,"name":"Sticker | Krad (Normal)","count":3},"C9170291738":{"group":2,"name":"Sticker | Krad (Foil)","count":1},"C9170291746":{"group":2,"name":"Sticker | Krad (Gold)","count":3},"C9170291754":{"group":2,"name":"Sticker | Krad (Holo)","count":2},"C9170291762":{"group":2,"name":"Sticker | Krad (Glitter)","count":2},"C917396618":{"group":2,"name":"Sticker | MAJ3R","count":22},"C917396626":{"group":2,"name":"Sticker | MAJ3R (Normal)","count":6},"C917396634":{"group":2,"name":"Sticker | MAJ3R (Foil)","count":4},"C917396642":{"group":2,"name":"Sticker | MAJ3R (Gold)","count":6},"C917396650":{"group":2,"name":"Sticker | MAJ3R (Holo)","count":4},"C917396658":{"group":2,"name":"Sticker | MAJ3R (Glitter)","count":1},"C917396666":{"group":2,"name":"Sticker | MAJ3R (Embroidered)","count":1},"C921":{"group":1,"name":"Sticker | Cologne 2015 (Foil)","count":97},"C9227":{"group":3,"name":"Sticker | Sprout Esports","count":8},"C923":{"group":3,"name":"Sticker | Clan-Mystik (Foil)","count":1},"C9235":{"group":3,"name":"Sticker | Sprout Esports (Normal)","count":2},"C9243":{"group":3,"name":"Sticker | Sprout Esports (Foil)","count":1},"C924627466":{"group":2,"name":"Sticker | jdm64","count":18},"C924627474":{"group":2,"name":"Sticker | jdm64 (Normal)","count":6},"C924627482":{"group":2,"name":"Sticker | jdm64 (Foil)","count":6},"C924627490":{"group":2,"name":"Sticker | jdm64 (Gold)","count":6},"C9251":{"group":3,"name":"Sticker | Sprout Esports (Gold)","count":2},"C9259":{"group":3,"name":"Sticker | Sprout Esports (Holo)","count":2},"C9267":{"group":3,"name":"Sticker | Sprout Esports (Glitter)","count":1},"C929":{"group":1,"name":"Sticker | Cologne 2015 (Gold)","count":97},"C9355":{"group":3,"name":"Sticker | Space Soldiers","count":8},"C9363":{"group":3,"name":"Sticker | Space Soldiers (Normal)","count":2},"C9366146826":{"group":2,"name":"Sticker | beastik","count":4},"C9366146834":{"group":2,"name":"Sticker | beastik (Normal)","count":1},"C9366146842":{"group":2,"name":"Sticker | beastik (Foil)","count":1},"C9366146850":{"group":2,"name":"Sticker | beastik (Gold)","count":1},"C9366146858":{"group":2,"name":"Sticker | beastik (Holo)","count":1},"C9371":{"group":3,"name":"Sticker | Space Soldiers (Foil)","count":2},"C9379":{"group":3,"name":"Sticker | Space Soldiers (Gold)","count":2},"C9387":{"group":3,"name":"Sticker | Space Soldiers (Holo)","count":2},"C939":{"group":3,"name":"Sticker | Clan-Mystik (Holo)","count":1},"C9460055946":{"group":2,"name":"Sticker | REZ","count":32},"C9460055954":{"group":2,"name":"Sticker | REZ (Normal)","count":9},"C9460055962":{"group":2,"name":"Sticker | REZ (Foil)","count":4},"C9460055970":{"group":2,"name":"Sticker | REZ (Gold)","count":9},"C9460055978":{"group":2,"name":"Sticker | REZ (Holo)","count":6},"C9460055986":{"group":2,"name":"Sticker | REZ (Glitter)","count":3},"C9460055994":{"group":2,"name":"Sticker | REZ (Embroidered)","count":1},"C9463878026":{"group":2,"name":"Sticker | s1mple","count":39},"C9463878034":{"group":2,"name":"Sticker | s1mple (Normal)","count":12},"C9463878042":{"group":2,"name":"Sticker | s1mple (Foil)","count":8},"C9463878050":{"group":2,"name":"Sticker | s1mple (Gold)","count":12},"C9463878058":{"group":2,"name":"Sticker | s1mple (Holo)","count":4},"C9463878066":{"group":2,"name":"Sticker | s1mple (Glitter)","count":3},"C9483":{"group":3,"name":"Sticker | TYLOO","count":36},"C9491":{"group":3,"name":"Sticker | TYLOO (Normal)","count":9},"C9499":{"group":3,"name":"Sticker | TYLOO (Foil)","count":8},"C9507":{"group":3,"name":"Sticker | TYLOO (Gold)","count":9},"C9515":{"group":3,"name":"Sticker | TYLOO (Holo)","count":9},"C951878282":{"group":2,"name":"Sticker | SnypeR","count":3},"C951878290":{"group":2,"name":"Sticker | SnypeR (Normal)","count":1},"C951878298":{"group":2,"name":"Sticker | SnypeR (Foil)","count":1},"C951878306":{"group":2,"name":"Sticker | SnypeR (Gold)","count":1},"C9531":{"group":3,"name":"Sticker | TYLOO (Embroidered)","count":1},"C9608850314":{"group":2,"name":"Sticker | ottoNd","count":3},"C9608850322":{"group":2,"name":"Sticker | ottoNd (Normal)","count":1},"C9608850330":{"group":2,"name":"Sticker | ottoNd (Foil)","count":1},"C9608850338":{"group":2,"name":"Sticker | ottoNd (Gold)","count":1},"C9611":{"group":3,"name":"Sticker | Avangar","count":12},"C9619":{"group":3,"name":"Sticker | Avangar (Normal)","count":3},"C9627":{"group":3,"name":"Sticker | Avangar (Foil)","count":3},"C9635":{"group":3,"name":"Sticker | Avangar (Gold)","count":3},"C9640367754":{"group":2,"name":"Sticker | afro","count":8},"C9640367762":{"group":2,"name":"Sticker | afro (Normal)","count":2},"C9640367770":{"group":2,"name":"Sticker | afro (Foil)","count":1},"C9640367778":{"group":2,"name":"Sticker | afro (Gold)","count":2},"C9640367786":{"group":2,"name":"Sticker | afro (Holo)","count":2},"C9640367794":{"group":2,"name":"Sticker | afro (Glitter)","count":1},"C9643":{"group":3,"name":"Sticker | Avangar (Holo)","count":3},"C96676618":{"group":2,"name":"Sticker | n0thing","count":15},"C96676626":{"group":2,"name":"Sticker | n0thing (Normal)","count":5},"C96676634":{"group":2,"name":"Sticker | n0thing (Foil)","count":5},"C96676642":{"group":2,"name":"Sticker | n0thing (Gold)","count":5},"C9710061578":{"group":2,"name":"Sticker | Jame","count":40},"C9710061586":{"group":2,"name":"Sticker | Jame (Normal)","count":11},"C9710061594":{"group":2,"name":"Sticker | Jame (Foil)","count":4},"C9710061602":{"group":2,"name":"Sticker | Jame (Gold)","count":11},"C9710061610":{"group":2,"name":"Sticker | Jame (Holo)","count":8},"C9710061618":{"group":2,"name":"Sticker | Jame (Glitter)","count":5},"C9710061626":{"group":2,"name":"Sticker | Jame (Embroidered)","count":1},"C9739":{"group":3,"name":"Sticker | Quantum Bellator Fire","count":4},"C9747":{"group":3,"name":"Sticker | Quantum Bellator Fire (Normal)","count":1},"C9755":{"group":3,"name":"Sticker | Quantum Bellator Fire (Foil)","count":1},"C9763":{"group":3,"name":"Sticker | Quantum Bellator Fire (Gold)","count":1},"C9771":{"group":3,"name":"Sticker | Quantum Bellator Fire (Holo)","count":1},"C9807159306":{"group":2,"name":"Sticker | NEKiZ","count":12},"C9807159314":{"group":2,"name":"Sticker | NEKiZ (Normal)","count":3},"C9807159322":{"group":2,"name":"Sticker | NEKiZ (Foil)","count":1},"C9807159330":{"group":2,"name":"Sticker | NEKiZ (Gold)","count":3},"C9807159338":{"group":2,"name":"Sticker | NEKiZ (Holo)","count":3},"C9807159346":{"group":2,"name":"Sticker | NEKiZ (Glitter)","count":2},"C9867":{"group":3,"name":"Sticker | Misfits Gaming","count":4},"C9875":{"group":3,"name":"Sticker | Misfits Gaming (Normal)","count":1},"C9883":{"group":3,"name":"Sticker | Misfits Gaming (Foil)","count":1},"C9891":{"group":3,"name":"Sticker | Misfits Gaming (Gold)","count":1},"C9899":{"group":3,"name":"Sticker | Misfits Gaming (Holo)","count":1},"C9925981194":{"group":2,"name":"Sticker | ISSAA","count":9},"C9925981202":{"group":2,"name":"Sticker | ISSAA (Normal)","count":3},"C9925981210":{"group":2,"name":"Sticker | ISSAA (Foil)","count":3},"C9925981218":{"group":2,"name":"Sticker | ISSAA (Gold)","count":3},"C9995":{"group":3,"name":"Sticker | 100 Thieves","count":8}},"music_kits":{"10":{"market_hash_name":"Music Kit | Sasha, LNOE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqE7VdKpNa6sljjEB6jn5Pi-XMMt_aoO6BrJqDKDTOWkLcmsrY5GX23wUsj4mnXn8HpLyzD8oHEQA","normal_price":210,"stattrak_price":417},"100":{"market_hash_name":"Music Kit | borne, Give It To Me","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN3SF61NKpNa66VrjQhigmpCx-Xdf7qWvO_0_IfHBCmHCkrcm6LgwS3vkzUlzsD_Vm8HpLywQpLob3g","normal_price":422,"stattrak_price":723},"101":{"market_hash_name":"Music Kit | Pirapus, EVERYNITE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJXKF5EZg57ikuxewRUmkmMaw_yZY6qf3OPY6JKeRD2XIk78m5udtS3G1xhx-tT-Hy96obzvJOYRCqud0","normal_price":388,"stattrak_price":704},"102":{"market_hash_name":"Music Kit | Repiet \u0026 Julia Kleijn, On And On","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ36H7FNhy9elpFu3QkXyyZe3pHcI6_D8bPI0cvLCXzTCw7ovs7RtGXjhzEl-6z6Emda3MSXAtLvhCgA","normal_price":461,"stattrak_price":695},"103":{"market_hash_name":"Music Kit | ShockOne, Voices","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnOY5l16-oLLugipEE7zmM63-SFfuKv-MPc6eKfLWDHJk74l6eJoHC23zEh-t2yHyN_7dWXXMFFiTTCrFg","normal_price":387,"stattrak_price":559},"11":{"market_hash_name":"Music Kit | Skog, Metal","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnCY4mklpcmgsg--QhmlzMGw_3QOvqH7baJrd6WXXzXBkb8ktOM5Fn2xlxtz6mrW1J_3JjSDCT4B","normal_price":379,"stattrak_price":532},"12":{"market_hash_name":"Music Kit | Midnight Riders, All I Want for Christmas","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHKT619y_JPm413iUw7Ozseur3Ba66v6avw9IaDGVmaUku104bI-HC-wk00h5WSAzNahcn-ebwEmD4wwG7Dv5VTfwA","normal_price":247,"stattrak_price":517},"13":{"market_hash_name":"Music Kit | Matt Lange, IsoRhythm","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD8Vp0-oDx1Qm2DxykzcSx-3Bf7auobPw5I6nACzTIlesk6OU_H33rwkVz6mzWm4mhciqJLlh3-4p3w34","normal_price":147,"stattrak_price":534},"14":{"market_hash_name":"Music Kit | Mateo Messina, For No Mankind","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD4Fl48ZTn41fmfk2g0M-0-HUDuPD9bPY_d6jHX2KRlu8ls-U9Fy21l0R24mzWy46oIymWO1A-SswnqhmYKNo","normal_price":185,"stattrak_price":354},"15":{"market_hash_name":"Music Kit | Various Artists, Hotline Miami","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPXSD6V978Yr961Tufk2g0JLmpXsLt6T8OfxsJPOSCDfAw7Ygs-dvSS_kzUx-4jvXnNr7IimSbgY-SswntCV3CPU","normal_price":299,"stattrak_price":530},"16":{"market_hash_name":"Music Kit | Daniel Sadowski, Total Domination","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsSuqCMJuqKrbvRseaKQDGLAluwntuU8S3vllBsj4juBm9qrJXqXO1MoXowwG7D37VA97g","normal_price":339,"stattrak_price":594},"17":{"market_hash_name":"Music Kit | Damjan Mravunac, The Talos Principle","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqa71d7-ZX1_EzpQB7OzseuqHED7aT2bvY7JPGXCmOVku0u4-c_TiznwRki6mTRzY77di6fPQR0CowwG7A3iRcaNw","normal_price":294,"stattrak_price":595},"18":{"market_hash_name":"Music Kit | Proxy, Battlepack","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJWmY_U9KpNa6uwuwGEv0zs_m-3YM7KOqbPY4d6XEDWGWkbkg4eNvGCvrzU0jtT_WmMHpLyx6Oq1mFg","normal_price":154,"stattrak_price":348},"19":{"market_hash_name":"Music Kit | Ki:Theory, MOLOTOV","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnKD7VN65p7LugipEU30x8Hi-ScPv6D7Mfw6c_SVCzLCx-hz6LEwTHmyxUhz4mWBy97_J2XXMFElSD7z3A","normal_price":210,"stattrak_price":321},"20":{"market_hash_name":"Music Kit | Troels Folmann, Uber Blasto Phone","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWmY4Fpm8oj451jpTyKhz9i2ryEKtvf_bvBoJKOQXTeVwrwl6OU5F3G3kR534GvTzd78dHyTZwEiFNIuEg48vcSn","normal_price":203,"stattrak_price":457},"21":{"market_hash_name":"Music Kit | Kelly Bailey, Hazardous Environments","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPn6b6U939Y7470DYEUy_y5C2r3IIvvCsav1pdqjGV2OSk-gntrloGn7mlEsjsDnUytigInKVZhhgVMWDIHfBEw","normal_price":286,"stattrak_price":533},"22":{"market_hash_name":"Music Kit | Skog, II-Headshot","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnCY4mklpsnx71u-RRnzzcKw-3pav_D7O_RvcKnECDGRlugl5-JtFnvhxk5ztWjW1J_3JggDF25u","normal_price":174,"stattrak_price":398},"23":{"market_hash_name":"Music Kit | Daniel Sadowski, The 8-Bit Kit","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsWur3FduaX-bvw7JKPDXD7Alusn6bc8GHHjlxt3tT7Uztr4I3iUagQjD4wwG7CloiQLEg","normal_price":254,"stattrak_price":413},"24":{"market_hash_name":"Music Kit | AWOLNATION, I Am","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNGyY6Vh04I775Ga3EFOjmJDjrHQOv_OsbKFseaDKVzLHk70hsbc4GSvrlEVytWWGm9mhdy6TcEZ-XZaQ4-De","normal_price":305,"stattrak_price":545},"25":{"market_hash_name":"Music Kit | Mord Fustang, Diamonds","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHSF4VBg55P15F7YEUy_z8_irHdetqqtOfw-JaSQCDbBx74gteQwS3zqlEV-4zncy9qociqfPBhgVMVYMXeUSA","normal_price":191,"stattrak_price":369},"26":{"market_hash_name":"Music Kit | Michael Bross, Invasion!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHKU7Vdw-IXm5Ur0fk2g0Jfk-yQI7ParafU9IvOSVzORmLwm4rRqTHi1kU1y4T_Qm92qc3zGZlI-SswnxR50Dnw","normal_price":221,"stattrak_price":432},"27":{"market_hash_name":"Music Kit | Ian Hultquist, Lion's Mouth","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPHqZ7UN54Jbh40rzfk2g0MWxqHVduKT_bfw5d_KSWjXIw-xw6LNvTS-ywht35D7Sw934dC-RbAA-SswnHSbFbTg","normal_price":200,"stattrak_price":388},"28":{"market_hash_name":"Music Kit | New Beat Fund, Sponge Fingerz","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO36A51N04IHh5F3YEUy_mMGxrCBY66L9P6c9I_OQXzXBw71ztrVtHy3nwB9w5WnTmI6qIijEOxhgVMW0Zuhv-w","normal_price":253,"stattrak_price":471},"29":{"market_hash_name":"Music Kit | Beartooth, Disgusting","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN36W90J6-5P81Qm2D0ryxsS3ryMKu_P6P_08dvOWDDOSlLd0s7AxTXi1xxl3427TmNqsc3iJLlh34_7J-SA","normal_price":161,"stattrak_price":431},"3":{"market_hash_name":"Music Kit | Daniel Sadowski, Crimson Assault","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzseu_HBZ6aurOvI5cPWSXGOSw-gjtLE4GHCxwktx6jjVw4msJHzGaQIgAowwG7B47VZqDQ","normal_price":174,"stattrak_price":457},"30":{"market_hash_name":"Music Kit | Lennie Moore, Java Havana Funkaloo","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOX6Z619w-Yj7-FzYEUy_xsPl-yFevKGsbvFpc6DHWzWRmesu5OQ9Tnzmlkp_sGSHztuudn7DbRhgVMXA6cDp0w","normal_price":345,"stattrak_price":558},"31":{"market_hash_name":"Music Kit | Darude, Moments CSGO","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqF8FJwy9elpA7kGE_wy8awr3ULvKL_aaY7eKjACDGRkLoitrQwTCrhzUhw4mjXy4u3MSXAdefS6m8","normal_price":185,"stattrak_price":365},"32":{"market_hash_name":"Music Kit | Beartooth, Aggressive","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN36W90J6-5P81Qm1D0v0ncXjpHcDuqT5OfY1JKnHWjLFx7l147U8Fivhxxwj4W3Ty46ocyiJLlh39UDB3WA","normal_price":null,"stattrak_price":85},"33":{"market_hash_name":"Music Kit | Blitz Kids, The Good Youth","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN3ee8Ux-_YPn1Qm2D0j3zsK4rXYNt_T5avA7IajAVmWSlrgntOdtSSjjwkV_52vcn9z8cHyJLlh3QAIUPxY","normal_price":null,"stattrak_price":1285},"34":{"market_hash_name":"Music Kit | Hundredth, FREE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPW6Z4URw8JP81Qm2DxunzsWypXcL7qD4bf1vcfaXDT6Vmbol5eA8GH3hzU8l4WrSw92udXyJLlh3C_9f1qc","normal_price":null,"stattrak_price":69},"35":{"market_hash_name":"Music Kit | Neck Deep, Life's Not Out To Get You","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO36U7lJw8ZfLugipR0_zzMCzqHsMvKSoOvI-I6XCV2GSlOxwtuNoSXzqxR5ysD-BmYuodmXXMFGQ36ERJg","normal_price":null,"stattrak_price":1377},"36":{"market_hash_name":"Music Kit | Roam, Backbone","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ3SW6Gklpcnw7wC2GEujx5Cx-SQMuqSqOv01JKjCDWOSk7pz5rQxSiiwk0p36m2G1J_3JhtobOCh","normal_price":null,"stattrak_price":189},"37":{"market_hash_name":"Music Kit | Twin Atlantic, GLA","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWye61dh-Ib6_lDkfk2g0Jez-HQLuqT3bPQ4cqfBXzXHlLci4-M-SSjjlEhx4DjQw4v9cy2WbgM-SswnmggWEWw","normal_price":null,"stattrak_price":93},"38":{"market_hash_name":"Music Kit | Skog, III-Arena","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnCY4mklp8mm6w_lF0j3m8S0qXFY66D5PPU5I6iWDzPIl78is7VrFnrrwx505GqE1J_3JpXwBPe8","normal_price":null,"stattrak_price":61},"39":{"market_hash_name":"Music Kit | The Verkkars, EZ4ENCE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXOS81Nn_4z1-ErYEUy_ncG2pHQC66qtOfBsefHEWmTHkOgmtLRsSSq2w0ly4DvSmNipIy2TbRhgVMXK454YZg","normal_price":309,"stattrak_price":594},"4":{"market_hash_name":"Music Kit | Noisia, Sharpened","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO3Se9l90y9elpF_iFE-knZW1-HACuqD7P_Q1JqSXDTfHwr536bk_TnjixU1w5jvSw9m3MSXAtbhIJfc","normal_price":227,"stattrak_price":392},"41":{"market_hash_name":"Music Kit | Scarlxrd: King, Scar","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJniW91pt5oPLugipR0z1m5fl-XUI7KP9OvY7cPPLXTLEkLcusuI7SXvgkER06j_Uydb7cmXXMFHBwRoo_g","normal_price":216,"stattrak_price":377},"43":{"market_hash_name":"Music Kit | Austin Wintory, Bachram","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhzNjjpSRZuKr3bqVveKjGVjGUl7d04uNqF3vhxk51smqEwtn4JymfbVN0FNIuEmZnQsKn","normal_price":181,"stattrak_price":287},"44":{"market_hash_name":"Music Kit | Dren, Gunman Taco Truck","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmS62klpsmiuQ-zFh7ympPlrXQCvaf7bvU0dajKCjCTxLxy5eM-SyzmzEwmsmuH1J_3JsSHwbhj","normal_price":1364,"stattrak_price":2303},"45":{"market_hash_name":"Music Kit | Daniel Sadowski, Eye of the Dragon","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsKuqyBevaD_PvY_cqnBC2aSx-sitOA9Hy3iw0shsmrQm9n9cS_EO1UlD4wwG7C42cYiFA","normal_price":118,"stattrak_price":213},"46":{"market_hash_name":"Music Kit | Tree Adams and Ben Bromfield, M.U.D.D. FORCE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWmS4Fdx9Yrn1VviTx_jkZvm9CdX683-Oeo9ePOSVj-Tmegg5bFrGnvnk0p36jzWn938cX7CbQcmCpd3TOANs0O7jJS5YPSqCPlw","normal_price":52,"stattrak_price":90},"47":{"market_hash_name":"Music Kit | Tim Huling, Neo Noir","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXKa7UN5_Ynz1Qm2D0igxpfhqyAPufGra_RpeKDKCzaVmLYi4LU4TH_lkxl34zvXyI2pcX6JLlh3SgiXjNY","normal_price":63,"stattrak_price":106},"48":{"market_hash_name":"Music Kit | Sam Marshall, Bodacious","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqa6Fdn54_15lXYEUy_zsPh-SEJtqCvbvBsIvOVCzGTxbh04uU-GSjlxU93sj_dyt6rcyrDPxhgVMX0GDfl6g","normal_price":88,"stattrak_price":157},"49":{"market_hash_name":"Music Kit | Matt Levine, Drifter","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD8Vpw4o7672a3EFOoycLiqXcL6qT-PvE5d_HCXT-VkLt35bU5GnDkxEtzsT6Bzd_4eS6fcEZ-XQTUt-o7","normal_price":149,"stattrak_price":259},"5":{"market_hash_name":"Music Kit | Robert Allaire, Insurgency","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ3SV4ERh9Yv461D1RCKhz9i2rCNa6fb8P_U8JqWVWmaUk7gm47g5SXznwxsismrXntqueHmeZwYgFNIuEkQzDnuI","normal_price":289,"stattrak_price":579},"50":{"market_hash_name":"Music Kit | Amon Tobin, All for Dust","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNHaY60J69o761Qm2D0_ymMLmpSACt_P_OfVrI6jHWTLHl-x05uAxSSyxxk5x5zzXmYn4cCmJLlh3qmNAx_w","normal_price":301,"stattrak_price":421},"52":{"market_hash_name":"Music Kit | Neck Deep, The Lowlife Pack","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO36U7lJw8ZfLugupRU2hm8W4_3AP66etafY1dfaXXTPEkL93tuI6GyvrwkkmsWXVmYuoI2XXMFG1wALONw","normal_price":294,"stattrak_price":578},"53":{"market_hash_name":"Music Kit | Scarlxrd, CHAIN$AW.LXADXUT.","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJniW91pt5oPLugupGBmnzcbkqCEPtqr6Oac-damWWGOVx750s7NsGyzhwR9x4T_XnN2qcmXXMFFfP0kuIw","normal_price":201,"stattrak_price":354},"54":{"market_hash_name":"Music Kit | Austin Wintory, Mocha Petal","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhzdixpSQNvaP9avU8JfOQCmXBk7wl57Q9GCjkzR51sD_Syon7dH_DZgQpFNIuEpzXvuPa","normal_price":144,"stattrak_price":257},"55":{"market_hash_name":"Music Kit | Chipzel, ~Yellow Magic~","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNnOe9Uxw-LikuxeyR0n1x5C1_HYPv_P3avI7eKDEDDSRkO135LFrSSzlxB8jtz7Rwtz6bzvJOed42IOv","normal_price":103,"stattrak_price":176},"56":{"market_hash_name":"Music Kit | Freaky DNA, Vici","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuM2mS5F1s8In11Qm2D0Snn5DhqXII6aevMaE9cqPHXj-VmbYi6bc6GXDgw0wl5zvQz9j_dX-JLlh3U7PBHho","normal_price":586,"stattrak_price":1079},"57":{"market_hash_name":"Music Kit | Jesse Harlin, Astro Bellum","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP36E9lN99ZX441fYEUy_xsC5pSMIvfGqbaZvJfXCWDXClO0k47BrTi3ml0l14W_QzI6tJS3CbBhgVMVNIuoA8w","normal_price":155,"stattrak_price":256},"58":{"market_hash_name":"Music Kit | Laura Shigihara: Work Hard, Play Hard","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOXqC91dm_I7z41HmUxzOzseuqyFY66CqOf09dKXAXjDHkr8n5eNoF3Gwxx4lsW7dw4uqJSqTaFJ2CYwwG7C58tQJhA","normal_price":214,"stattrak_price":422},"59":{"market_hash_name":"Music Kit | Sarah Schachner, KOLIBRI","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqF5F5m94_16VHpRA_OzseuqCMO7feoO_Q9IaTHCD-WlLp0sbJtF3jkx0lysD_WyImvdy-WPQ4lXIwwG7Cq-4RO3A","normal_price":590,"stattrak_price":840},"6":{"market_hash_name":"Music Kit | Sean Murray, A*D*8","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJn6W61tg5pX182a3EFOkm87k-HUI7PCvMac1d6XDVjLDlrxw5bNvGHmwlx50523Rn9n9IiiWcEZ-XdLc0038","normal_price":138,"stattrak_price":406},"60":{"market_hash_name":"Music Kit | bbno$, u mad!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN3mZ6kVKpNa6vgjlRByknJOw-CEK7KP_bPZrefPGVmSTk7py4bY8Tivlx0Vw4z_SzsHpLyyu3lGzoA","normal_price":279,"stattrak_price":477},"61":{"market_hash_name":"Music Kit | The Verkkars \u0026 n0thing, Flashbang Dance","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXOS81Nn_4z1-ErYEU-_zcS5rXEP7KT2PvU_JaiVXjeWkegn6OQ7Hy3klEVztWqByI2veX2VaRhgVMWDR-PWmQ","normal_price":295,"stattrak_price":519},"62":{"market_hash_name":"Music Kit | 3kliksphilip, Heading for the Source","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuZnCb7F1m5I_95lD3fk2g0MW3q3IKvqr4P6BsJPHHXjeSkLl147Q-GH3rkU5z5z7UztaoIHmfZgc-SswnBcYXqSs","normal_price":85,"stattrak_price":176},"63":{"market_hash_name":"Music Kit | Humanity's Last Breath, Void","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPXeV2gYkutf2ugHjR0T1yc7ir3EL6aD4av1od_WRWmHIxe134bBvHXDrl053tjvLioH-59nm0rc","normal_price":46,"stattrak_price":106},"64":{"market_hash_name":"Music Kit | Juelz, Shooters","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP26S6UxKpNa6ul2yGE3zzZLkqyEOt_asafQ4dPWWXjeWlLx36LA_GnDlwx8isW7UysHpLyxdw4RVEg","normal_price":67,"stattrak_price":125},"65":{"market_hash_name":"Music Kit | Knock2, dashstar*","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnWY5l0ny9elpFuwQhugx8G0qXVavqT_avw_I6HCDT-Vk-oi5rFtGnjjkBxy6zyGmNu3MSXAuEzdSoI","normal_price":1058,"stattrak_price":1985},"66":{"market_hash_name":"Music Kit | Meechy Darko, Gothic Luxury","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOH6S5l5s8Ibm4VbYEUy_y5Li-HsC6fT2afZoJqnKXDWUmbp3s7c4TSyxzB4j5WXQzduvI3OfaBhgVMWCMDEthw","normal_price":144,"stattrak_price":327},"67":{"market_hash_name":"Music Kit | Sullivan King, Lock Me Up","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJm6b6V9j9Yn_41fgfk2g0MG3rXUMvfH3OKc8IfOVXTPJxbwgs-BqTSuykUwm6mvTm9erdHmTbVU-SswnLnCCc2g","normal_price":72,"stattrak_price":146},"68":{"market_hash_name":"Music Kit | Perfect World, 花脸 Hua Lian (Painted Face)","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJX6F41N24JD7-FXjfk2g0MLlqScOt6L7PPxrdfTLX2HDkbgi4OM7TX2wkRsm6j-Ewor8InueOwY-Sswnc1NbBcg","normal_price":286,"stattrak_price":506},"69":{"market_hash_name":"Music Kit | Denzel Curry, ULTIMATE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMX6Z_1N595Lm-EDYEUy_ncCzrXpZ6qf_avA9I6bADTeRxep05bA7SS-1wBl1sGTSy9z4Ii7EPxhgVMXpTAlXoQ","normal_price":286,"stattrak_price":533},"7":{"market_hash_name":"Music Kit | Feed Me, High Noon","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuM36S4Vtwy9elpAHhQhunysPlriAI7aD5PfBvJKmQWjDIxb8j57drHXmwl04k4mWDm9m3MSXA9LcoLxM","normal_price":263,"stattrak_price":574},"71":{"market_hash_name":"Music Kit | DRYDEN, Feel The Power","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmO4VN7y9elpF--RE71mJTjqSAJ6_GqavE1cfPAWT7EkLkvtLk-FivmzUki4zjWyIy3MSXA6R3KQQo","normal_price":138,"stattrak_price":248},"72":{"market_hash_name":"Music Kit | ISOxo, inhuman","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPGiY_VlKpNa6uVu-EUWpm5e4pSYC7qf4OfQ5caOVWjXHlugv6LI8HX23wRwj6j7RysHpLyzcbsFh4Q","normal_price":450,"stattrak_price":691},"73":{"market_hash_name":"Music Kit | KILL SCRIPT, All Night","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnKb6UV25o7k_ma3EFOlm8Xkr3tfuab5O_Brc_XLWjTCmewg57hqHHzikEUk627VzoupcH2fcEZ-XSdyZXLN","normal_price":213,"stattrak_price":414},"74":{"market_hash_name":"Music Kit | Knock2, Make U SWEAT!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnWY5l0ny9empA7kRxzwzMOz-CEDuqH2OPdudKOXVzaWxOgn5rhtHS_il053sD7Umdm3MSXAba0Weck","normal_price":105,"stattrak_price":202},"75":{"market_hash_name":"Music Kit | Rad Cat, Reason","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ3qT5ldhy9elpA7mR0ulnZKyrnsK7vesPvdoJPaVWDPCkOgns-RvGy_lkRxxsTyHnta3MSXA5OJUCT8","normal_price":146,"stattrak_price":267},"76":{"market_hash_name":"Music Kit | TWERL and Ekko \u0026 Sidetrack, Under Bright Lights","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWyS91pKpNa67A7mF0qoyZK0_HUC66v-O_M6I_HHCmTCmO8ns7Y_SnmyxUlwsj_RmcHpLywcg16k7A","normal_price":794,"stattrak_price":1377},"78":{"market_hash_name":"Music Kit | Austin Wintory, The Devil Went Clubbing in Georgia","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhytiwpXNYv_aoO6JoI6DGWDKSkb9ytONsTSvhzU505z-BzoyvdX3Da1MnFNIuEmHVT0Jg","normal_price":1359,"stattrak_price":2177},"79":{"market_hash_name":"Music Kit | Ben Bromfield, Rabbit Hole","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN36Z50R6-YH971Xjfk2g0MGw_nMJvKWtO6I9eaDCDWbJxO0utLI6TXjrzU934W6An46vdXqUPFc-Sswnvkalcgc","normal_price":72,"stattrak_price":127},"8":{"market_hash_name":"Music Kit | Dren, Death's Head Demolition","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmS62klpcny6Qu2Fkj3n8S4pCBftqv7O6BuI6eXWGTGlrx357RtFiznxxtx42TW1J_3JonMHxrk","normal_price":157,"stattrak_price":465},"80":{"market_hash_name":"Music Kit | Daniel Sadowski, Dead Shot","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsOuqnACvKD5P6Fpd6SWCGPFlu0u4eA_SyqwzEwmsTvQyNapdi_CPFMlDYwwG7Abj54DYw","normal_price":60,"stattrak_price":132},"81":{"market_hash_name":"Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmS62klp8n3vQjkFkXymJe4-Xtavqf6bvM_dqOSC2PBlr8us7JtTH_rx0Ul5m3V1J_3JsxLaZwf","normal_price":223,"stattrak_price":408},"82":{"market_hash_name":"Music Kit | Matt Levine, Agency","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD8Vpw4o7672a3E1OnyJezrnNdu6r7bvNrI_HKVmGUw7h34eM8Hn_lxEVw6zuEyYqqd3vEcEZ-XfK-tm-7","normal_price":224,"stattrak_price":423},"83":{"market_hash_name":"Music Kit | Sam Marshall, Clutch","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqa6Fdn54_15lXYEU-_zJe0qnYJ66utOvI0c6LLWz7AmL8u4Lc9S3zjwUxwtW_dmdascCqSPxhgVMUkssBXcw","normal_price":79,"stattrak_price":144},"84":{"market_hash_name":"Music Kit | Tim Huling, Devil's Paintbrush","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXKa7UN5_Ynz1Qm1D0Six8Lh-SMDu6r5O6c8eaPBWzHJmb4i4-doFnvmxRl2tzvQy4yhJH2JLlh3Dy1Dksc","normal_price":120,"stattrak_price":234},"85":{"market_hash_name":"Music Kit | Tree Adams, Seventh Moon","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWmS4Fdx9Yrn1Qm2Dxz3zcKy-XFYv6P4PPQ_eaHCVjOSmep35rRrF32wwBh042vSmYmoInmJLlh3TYKTTis","normal_price":132,"stattrak_price":251},"86":{"market_hash_name":"Music Kit | Perfect World, Ay Hey","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJX6F41N24JD7-FXjfk2j0M7ir3QOvKb8P6A1cPSSXzKSkbl14eU-GCu3x0V24jvWzo6veXuUbAQ-SswnjV5YWxY","normal_price":241,"stattrak_price":510},"87":{"market_hash_name":"Music Kit | Adam Beyer, Red Room","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNH-W6FRw7YLm1Qm2D0Wkms-yrnYJ7KX7PqA5JaHEWzWRkL8ltrExGS3kk05y42WHy9-tdXyJLlh3EzqKw-M","normal_price":350,"stattrak_price":623},"88":{"market_hash_name":"Music Kit | Ghost, Skeletá","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMnOY9kJKpNa66w6xGE73xs-1q3ADu_D3OPw8d6THWWTAmLkg6LU_TH_gxBlxtzyAy8HpLywxtluAvA","normal_price":118,"stattrak_price":384},"89":{"market_hash_name":"Music Kit | HEALTH, RAT WARS","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPX6W6UJ9y9elpAm1EB-ompe0-3BZvfCta_c9I6KXCDaRlu8l47Y9FirnzU10tjvVn9i3MSXA0pDx6aQ","normal_price":279,"stattrak_price":484},"9":{"market_hash_name":"Music Kit | Austin Wintory, Desert Fire","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhz9i1-HFZ6qWqP6ZpcvXCXDSUlrgv5rhsGC3iwkt25GjRz9epdSqRPQByFNIuEoOD6xBW","normal_price":287,"stattrak_price":484},"90":{"market_hash_name":"Music Kit | James and the Cold Gun, Chewing Glass","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP3qa4EV0-oPg4lzkThH1mYPuwnIKoaSvbKc-dKTHVzDEk7kv6eIxHy3ql09-t2vdmYz9c3ORbw8kW8YjRLIU8k7vAa5pUQE","normal_price":51,"stattrak_price":113},"91":{"market_hash_name":"Music Kit | Jonathan Young, Starship Velociraptor","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP3SZ5EJ99Ynt5UzpRiKhz9i3qXFY7KSvOKFvdPTADz_Hkup04LlsSyvglkUjsDuGyNihdy7DbA4lFNIuEilrDQgh","normal_price":96,"stattrak_price":254},"92":{"market_hash_name":"Music Kit | Juelz, Floorspace","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP26S6UxKpNW6vFu2Qhn0yMC2rXoPu_T4MaE4IafAC2XGkOog6LE9GSvnxh91sj-DmcHpLywwZNUHhg","normal_price":123,"stattrak_price":227},"93":{"market_hash_name":"Music Kit | Killer Mike, MICHAEL","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnKb6VNn-Y7_72a3EFOinMW0ricLvPP8Mf00dPaXXzXJx7wj6OMxTCqwx0l_52qAy9-qInnDcEZ-XUn9CHoQ","normal_price":1197,"stattrak_price":1935},"94":{"market_hash_name":"Music Kit | PVRIS, Evergreen","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJW2F7EVKpNa671qwEEWnnJO1pXAKtvb-a6ZpdqaRXjeTl-90s-drGXDrxR8h5TyGzMHpLyxK6nz_mQ","normal_price":288,"stattrak_price":485},"95":{"market_hash_name":"Music Kit | Selective Response, No Love Only Pleasure","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJn6b4FVh_ZHx-Fz0URL_jZPfrXMV7aaqbfY6IqiSXzDCwush4eU4S3jnk0tytjmGm96oI3LBbQZ1WZslTPlK7EfLu_uzOQ","normal_price":144,"stattrak_price":398},"96":{"market_hash_name":"Music Kit | Tigercub, The Perfume of Decay","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXKQ4ER24YXLugipRUmomJfkrXcKufatPfVsc_XHWD_Bmewg47I9Tn-1kRh_sWqBz4v4d2XXMFFcAYD9tQ","normal_price":48,"stattrak_price":104},"98":{"market_hash_name":"Music Kit | ALRT, DOPAMINE HIT","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNHeF8Wklpcmtu120GR6hy8O5-3MJ7Pb6PaY_I_bBXjHJmbd1s7Y8FyrkwEty5jjS1J_3JrXfbNYF","normal_price":453,"stattrak_price":716},"99":{"market_hash_name":"Music Kit | Altare, Change My Mind","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNHeD5ERwy9elpFq3Fx6hmJLlrHAJv_eqOKI1JKSVWDXGkLovtLJoF3Hik00htTzWyt-3MSXAv8iGC0E","normal_price":411,"stattrak_price":660}},"highlight_reels":{"1":{"name":"Austin 2025 Highlight | chopper Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | chopper Double Kill"},"10":{"name":"Austin 2025 Highlight | The Run And Gun","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Run And Gun"},"100":{"name":"Austin 2025 Highlight | Fire Fight","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fire Fight"},"101":{"name":"Austin 2025 Highlight | Anchor Man","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Anchor Man"},"102":{"name":"Austin 2025 Highlight | yuurih Entry Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | yuurih Entry Fragger"},"103":{"name":"Austin 2025 Highlight | biguzera Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | biguzera Double Kill"},"104":{"name":"Austin 2025 Highlight | dav1deuS Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deuS Double Anubis Kill"},"105":{"name":"Austin 2025 Highlight | Eco Frags","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Frags"},"106":{"name":"Austin 2025 Highlight | Closing Out","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Closing Out"},"107":{"name":"Austin 2025 Highlight | Clutching Up","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutching Up"},"108":{"name":"Austin 2025 Highlight | Smoke Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Defender"},"109":{"name":"Austin 2025 Highlight | Smoked'em","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoked'em"},"11":{"name":"Austin 2025 Highlight | Jimpphat Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Double Kill"},"110":{"name":"Austin 2025 Highlight | Stack Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Stack Kill"},"111":{"name":"Austin 2025 Highlight | Golden Opportunity","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Golden Opportunity"},"112":{"name":"Austin 2025 Highlight | Sneaky Pistol","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sneaky Pistol"},"113":{"name":"Austin 2025 Highlight | FalleN Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN Double Anubis Kill"},"114":{"name":"Austin 2025 Highlight | Quick Two","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Two"},"115":{"name":"Austin 2025 Highlight | KSCERATO Kobe","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Kobe"},"116":{"name":"Austin 2025 Highlight | KSCERATO Too Slow","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Too Slow"},"117":{"name":"Austin 2025 Highlight | KSCERATO Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Double Kill"},"118":{"name":"Austin 2025 Highlight | Missed'em","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed'em"},"119":{"name":"Austin 2025 Highlight | nqz Clutch Attempt","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Clutch Attempt"},"12":{"name":"Austin 2025 Highlight | Always Buy A Defuser","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Always Buy A Defuser"},"120":{"name":"Austin 2025 Highlight | nqz Quad Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Quad Kill"},"121":{"name":"Austin 2025 Highlight | nqz Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Double Anubis Kill"},"122":{"name":"Austin 2025 Highlight | snow Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | snow Double Kill"},"123":{"name":"Austin 2025 Highlight | Chaos Mode","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Chaos Mode"},"124":{"name":"Austin 2025 Highlight | snow Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | snow Triple Kill"},"125":{"name":"Austin 2025 Highlight | YEKINDAR Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | YEKINDAR Triple Kill"},"126":{"name":"Austin 2025 Highlight | Opening Up","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Opening Up"},"127":{"name":"Austin 2025 Highlight | yuurih Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | yuurih Double Kill"},"128":{"name":"Austin 2025 Highlight | biguzera: The Entry Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | biguzera: The Entry Demon"},"129":{"name":"Austin 2025 Highlight | Surprise Flank","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Flank"},"13":{"name":"Austin 2025 Highlight | Jimpphat: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat: The Clutch God"},"130":{"name":"Austin 2025 Highlight | Double Kill To Victory","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Kill To Victory"},"131":{"name":"Austin 2025 Highlight | Two FalleN Pistol Headshots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two FalleN Pistol Headshots"},"132":{"name":"Austin 2025 Highlight | FalleN King Of Banana","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN King Of Banana"},"133":{"name":"Austin 2025 Highlight | Afterplant Secured","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Afterplant Secured"},"134":{"name":"Austin 2025 Highlight | KSCERATO Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Triple Kill"},"135":{"name":"Austin 2025 Highlight | Too Strong Jiggles","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Too Strong Jiggles"},"136":{"name":"Austin 2025 Highlight | The Anchor In Pit","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Anchor In Pit"},"137":{"name":"Austin 2025 Highlight | molodoy Almost The Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | molodoy Almost The Hero"},"138":{"name":"Austin 2025 Highlight | A Triple Into Overtime","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | A Triple Into Overtime"},"139":{"name":"Austin 2025 Highlight | Look Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Look Behind You"},"14":{"name":"Austin 2025 Highlight | 1v2 Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1v2 Clutch"},"140":{"name":"Austin 2025 Highlight | Miss Into A Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Miss Into A Double Kill"},"141":{"name":"Austin 2025 Highlight | nqz Too Slow","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Too Slow"},"142":{"name":"Austin 2025 Highlight | Peek Me And You're Dead","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Peek Me And You're Dead"},"143":{"name":"Austin 2025 Highlight | Applaud The Spray Transfer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Applaud The Spray Transfer"},"144":{"name":"Austin 2025 Highlight | Jiggle Too Wide And You're Dead","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jiggle Too Wide And You're Dead"},"145":{"name":"Austin 2025 Highlight | Two YEKINDAR Pistol Headshots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two YEKINDAR Pistol Headshots"},"146":{"name":"Austin 2025 Highlight | The Eco Hunter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Eco Hunter"},"147":{"name":"Austin 2025 Highlight | Utility Rush","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Utility Rush"},"148":{"name":"Austin 2025 Highlight | Sneaky Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sneaky Double Kill"},"149":{"name":"Austin 2025 Highlight | YEKINDAR King Of Banana","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | YEKINDAR King Of Banana"},"15":{"name":"Austin 2025 Highlight | Clutch King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch King"},"150":{"name":"Austin 2025 Highlight | Flying Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Flying Double Entry"},"151":{"name":"Austin 2025 Highlight | Instant Reaction Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Instant Reaction Headshot"},"152":{"name":"Austin 2025 Highlight | Two Is Not Enough","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two Is Not Enough"},"153":{"name":"Austin 2025 Highlight | The Grenadier","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Grenadier"},"154":{"name":"Austin 2025 Highlight | Aleksib Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Aleksib Double Kill"},"155":{"name":"Austin 2025 Highlight | b1t Double AK Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t Double AK Kill"},"156":{"name":"Austin 2025 Highlight | b1t Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t Double Entry"},"157":{"name":"Austin 2025 Highlight | b1t: The Mirage Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t: The Mirage Cowboy"},"158":{"name":"Austin 2025 Highlight | b1t Double MP9 Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t Double MP9 Kill"},"159":{"name":"Austin 2025 Highlight | The Spray Transfer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Spray Transfer"},"16":{"name":"Austin 2025 Highlight | Quick Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Reactions"},"160":{"name":"Austin 2025 Highlight | flameZ: The Entry Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ: The Entry Demon"},"161":{"name":"Austin 2025 Highlight | flameZ Triple Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Triple Entry"},"162":{"name":"Austin 2025 Highlight | iM Quad Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | iM Quad Kill"},"163":{"name":"Austin 2025 Highlight | An Entry And A Donk","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | An Entry And A Donk"},"164":{"name":"Austin 2025 Highlight | Triple Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Headshot"},"165":{"name":"Austin 2025 Highlight | mezii Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Double Mirage Kill"},"166":{"name":"Austin 2025 Highlight | Quad Kill And A Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quad Kill And A Clutch"},"167":{"name":"Austin 2025 Highlight | The Spraying Flick","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Spraying Flick"},"168":{"name":"Austin 2025 Highlight | B Site Survivor","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | B Site Survivor"},"169":{"name":"Austin 2025 Highlight | Double Spraydown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Spraydown"},"17":{"name":"Austin 2025 Highlight | Missed Him","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed Him"},"170":{"name":"Austin 2025 Highlight | w0nderful Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Double Deagle"},"171":{"name":"Austin 2025 Highlight | w0nderful Teamkiller","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Teamkiller"},"172":{"name":"Austin 2025 Highlight | w0nderful: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful: The Clutch God"},"173":{"name":"Austin 2025 Highlight | Triple AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple AWP Kill"},"174":{"name":"Austin 2025 Highlight | The Gamble","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Gamble"},"175":{"name":"Austin 2025 Highlight | Rare Misses But Manages A Flick","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rare Misses But Manages A Flick"},"176":{"name":"Austin 2025 Highlight | ZywOo Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Mirage Kill"},"177":{"name":"Austin 2025 Highlight | Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Denied"},"178":{"name":"Austin 2025 Highlight | He Can Rifle Too","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | He Can Rifle Too"},"179":{"name":"Austin 2025 Highlight | The Smoke Sneaker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Smoke Sneaker"},"18":{"name":"Austin 2025 Highlight | Two Nades To The Head","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two Nades To The Head"},"180":{"name":"Austin 2025 Highlight | The Whiff","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Whiff"},"181":{"name":"Austin 2025 Highlight | Clutching MP9","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutching MP9"},"182":{"name":"Austin 2025 Highlight | 1 Bullet","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1 Bullet"},"183":{"name":"Austin 2025 Highlight | Bodyblocking Smokes","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Bodyblocking Smokes"},"184":{"name":"Austin 2025 Highlight | b1t: The Nuke Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t: The Nuke Cowboy"},"185":{"name":"Austin 2025 Highlight | flameZ Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Double Nuke Kill"},"186":{"name":"Austin 2025 Highlight | Simultaneous Death","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Simultaneous Death"},"187":{"name":"Austin 2025 Highlight | mezii Triple Pistol Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Triple Pistol Kill"},"188":{"name":"Austin 2025 Highlight | mezii Triple Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Triple Entry"},"189":{"name":"Austin 2025 Highlight | mezii Teamkiller","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Teamkiller"},"19":{"name":"Austin 2025 Highlight | Almost","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost"},"190":{"name":"Austin 2025 Highlight | On The Ladder??","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | On The Ladder??"},"191":{"name":"Austin 2025 Highlight | Not Enough","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Not Enough"},"192":{"name":"Austin 2025 Highlight | Quad Kill Shutdown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quad Kill Shutdown"},"193":{"name":"Austin 2025 Highlight | ropz Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Double Nuke Kill"},"194":{"name":"Austin 2025 Highlight | w0nderful: The Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful: The Eco Fragger"},"195":{"name":"Austin 2025 Highlight | w0nderful Double AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Double AWP Kill"},"196":{"name":"Austin 2025 Highlight | w0nderful Combat AWP","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Combat AWP"},"197":{"name":"Austin 2025 Highlight | ZywOo Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Nuke Kill"},"198":{"name":"Austin 2025 Highlight | You Won't Get My AK","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | You Won't Get My AK"},"199":{"name":"Austin 2025 Highlight | The Backstabber","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Backstabber"},"2":{"name":"Austin 2025 Highlight | 100 Utility Damage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 100 Utility Damage"},"20":{"name":"Austin 2025 Highlight | Quick Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Double Kill"},"200":{"name":"Austin 2025 Highlight | There's No Escape","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | There's No Escape"},"201":{"name":"Austin 2025 Highlight | Look 1 Hand","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Look 1 Hand"},"202":{"name":"Austin 2025 Highlight | The AWP Headshooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Headshooter"},"203":{"name":"Austin 2025 Highlight | ZywOo: The Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo: The Cowboy"},"204":{"name":"Austin 2025 Highlight | Ramp Shutdown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Ramp Shutdown"},"205":{"name":"Austin 2025 Highlight | Deagle Supremacy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Deagle Supremacy"},"206":{"name":"Austin 2025 Highlight | 2 Pistol Headshots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2 Pistol Headshots"},"207":{"name":"Austin 2025 Highlight | 910 Triple Kill vs FaZe","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Triple Kill vs FaZe"},"208":{"name":"Austin 2025 Highlight | Almost 500 Damage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost 500 Damage"},"209":{"name":"Austin 2025 Highlight | bLitz Double Smoke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Smoke Kill"},"21":{"name":"Austin 2025 Highlight | Spinx Quadra Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Quadra Kill"},"210":{"name":"Austin 2025 Highlight | bLitz Kobe","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Kobe"},"211":{"name":"Austin 2025 Highlight | Quick Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Double"},"212":{"name":"Austin 2025 Highlight | Knife?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Knife?"},"213":{"name":"Austin 2025 Highlight | Catches Smoke","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Catches Smoke"},"214":{"name":"Austin 2025 Highlight | The Fast Rotation","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Fast Rotation"},"215":{"name":"Austin 2025 Highlight | Defending Connector","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Defending Connector"},"216":{"name":"Austin 2025 Highlight | Mid Is Karrigan","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Mid Is Karrigan"},"217":{"name":"Austin 2025 Highlight | karrigan Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | karrigan Double Headshot"},"218":{"name":"Austin 2025 Highlight | Smokey Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smokey Entry"},"219":{"name":"Austin 2025 Highlight | mzinho Double B-Site Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double B-Site Entry"},"22":{"name":"Austin 2025 Highlight | torzsi Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Triple Kill"},"220":{"name":"Austin 2025 Highlight | mzinho Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double Mirage Kill"},"221":{"name":"Austin 2025 Highlight | Clean Defense Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clean Defense Double"},"222":{"name":"Austin 2025 Highlight | rain Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | rain Double Headshot"},"223":{"name":"Austin 2025 Highlight | 2K Dualies","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2K Dualies"},"224":{"name":"Austin 2025 Highlight | Awareness","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Awareness"},"225":{"name":"Austin 2025 Highlight | 2 Crucial Misses","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2 Crucial Misses"},"226":{"name":"Austin 2025 Highlight | The AWP Triple","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Triple"},"227":{"name":"Austin 2025 Highlight | Footshooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Footshooter"},"228":{"name":"Austin 2025 Highlight | The AWP Head To Head","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Head To Head"},"229":{"name":"Austin 2025 Highlight | Don't Bring A Knife To A Gunfight","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Don't Bring A Knife To A Gunfight"},"23":{"name":"Austin 2025 Highlight | Burning Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Burning Triple Kill"},"230":{"name":"Austin 2025 Highlight | Senzu Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Double Entry"},"231":{"name":"Austin 2025 Highlight | Double From The Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double From The Defender"},"232":{"name":"Austin 2025 Highlight | Techno4K Double B-Site Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Double B-Site Kill"},"233":{"name":"Austin 2025 Highlight | AWP Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Defender"},"234":{"name":"Austin 2025 Highlight | AWP Shutdown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Shutdown"},"235":{"name":"Austin 2025 Highlight | bLitz Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Headshot"},"236":{"name":"Austin 2025 Highlight | EliGE: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | EliGE: The Clutch God"},"237":{"name":"Austin 2025 Highlight | Parkour Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Parkour Deagle"},"238":{"name":"Austin 2025 Highlight | Exposed","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Exposed"},"239":{"name":"Austin 2025 Highlight | Dancing Legend","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Dancing Legend"},"24":{"name":"Austin 2025 Highlight | zont1x Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | zont1x Triple Kill"},"240":{"name":"Austin 2025 Highlight | frozen Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | frozen Triple Kill"},"241":{"name":"Austin 2025 Highlight | frozen Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | frozen Double Headshot"},"242":{"name":"Austin 2025 Highlight | karrigan Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | karrigan Double Kill"},"243":{"name":"Austin 2025 Highlight | USA USA USA","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | USA USA USA"},"244":{"name":"Austin 2025 Highlight | The Running MAC-10","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Running MAC-10"},"245":{"name":"Austin 2025 Highlight | karrigan Entry Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | karrigan Entry Fragger"},"246":{"name":"Austin 2025 Highlight | mzinho Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double Anubis Kill"},"247":{"name":"Austin 2025 Highlight | Eco Finisher","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Finisher"},"248":{"name":"Austin 2025 Highlight | The Chase","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Chase"},"249":{"name":"Austin 2025 Highlight | rain Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | rain Double Kill"},"25":{"name":"Austin 2025 Highlight | A Triple And Icy Veins","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | A Triple And Icy Veins"},"250":{"name":"Austin 2025 Highlight | rain Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | rain Triple Kill"},"251":{"name":"Austin 2025 Highlight | Scared Of The Shotgun?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Scared Of The Shotgun?"},"252":{"name":"Austin 2025 Highlight | s1mple Double AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | s1mple Double AWP Kill"},"253":{"name":"Austin 2025 Highlight | s1mple Combat AWP","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | s1mple Combat AWP"},"254":{"name":"Austin 2025 Highlight | Clutch Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch Double Kill"},"255":{"name":"Austin 2025 Highlight | Senzu Triple Pistol Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Triple Pistol Kill"},"256":{"name":"Austin 2025 Highlight | Swift Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Swift Double Kill"},"257":{"name":"Austin 2025 Highlight | Techno4K Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Triple Kill"},"258":{"name":"Austin 2025 Highlight | Time Loss","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Time Loss"},"259":{"name":"Austin 2025 Highlight | Techno4K Fortress","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Fortress"},"26":{"name":"Austin 2025 Highlight | Brollan Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Double Kill"},"260":{"name":"Austin 2025 Highlight | 910 Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Double Deagle"},"261":{"name":"Austin 2025 Highlight | One Kill Is Enough","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Kill Is Enough"},"262":{"name":"Austin 2025 Highlight | 910 Double AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Double AWP Kill"},"263":{"name":"Austin 2025 Highlight | The Switcheroo","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Switcheroo"},"264":{"name":"Austin 2025 Highlight | bLitz Triple Kill vs paiN","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Triple Kill vs paiN"},"265":{"name":"Austin 2025 Highlight | Quick Double HS","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Double HS"},"266":{"name":"Austin 2025 Highlight | dav1deus Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deus Double Mirage Kill"},"267":{"name":"Austin 2025 Highlight | dav1deuS Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deuS Almost Clutch"},"268":{"name":"Austin 2025 Highlight | Missed A Spot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed A Spot"},"269":{"name":"Austin 2025 Highlight | dav1deuS Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deuS Clutch Denied"},"27":{"name":"Austin 2025 Highlight | Brollan Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Triple Kill"},"270":{"name":"Austin 2025 Highlight | dgt Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dgt Triple Kill"},"271":{"name":"Austin 2025 Highlight | Matrix","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Matrix"},"272":{"name":"Austin 2025 Highlight | Swift Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Swift Double"},"273":{"name":"Austin 2025 Highlight | mzinho Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Triple Kill"},"274":{"name":"Austin 2025 Highlight | mzinho Double A-Site Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double A-Site Entry"},"275":{"name":"Austin 2025 Highlight | Flying Mongolian","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Flying Mongolian"},"276":{"name":"Austin 2025 Highlight | No Money For You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | No Money For You"},"277":{"name":"Austin 2025 Highlight | Double Into Victory","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Into Victory"},"278":{"name":"Austin 2025 Highlight | nqz Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Triple Kill"},"279":{"name":"Austin 2025 Highlight | nqz AWP Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz AWP Rampage"},"28":{"name":"Austin 2025 Highlight | Brollan Smoke Criminal","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Smoke Criminal"},"280":{"name":"Austin 2025 Highlight | AWP Slayer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Slayer"},"281":{"name":"Austin 2025 Highlight | Instant Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Instant Headshot"},"282":{"name":"Austin 2025 Highlight | Senzu Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Double Headshot"},"283":{"name":"Austin 2025 Highlight | Triple Berettas","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Berettas"},"284":{"name":"Austin 2025 Highlight | Huggers","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Huggers"},"285":{"name":"Austin 2025 Highlight | Techno4K Double A-Site Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Double A-Site Kill"},"286":{"name":"Austin 2025 Highlight | 2 In The Back","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2 In The Back"},"287":{"name":"Austin 2025 Highlight | Techno4k: The Cowboy vs paiN","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4k: The Cowboy vs paiN"},"288":{"name":"Austin 2025 Highlight | Cleaning Up","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Cleaning Up"},"289":{"name":"Austin 2025 Highlight | Pistols Neutralized","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistols Neutralized"},"29":{"name":"Austin 2025 Highlight | The Iron Man","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Iron Man"},"290":{"name":"Austin 2025 Highlight | Off Target","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Off Target"},"291":{"name":"Austin 2025 Highlight | Versatile Shooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Versatile Shooter"},"292":{"name":"Austin 2025 Highlight | Brollan Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Closer"},"293":{"name":"Austin 2025 Highlight | Brollan Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Double Deagle"},"294":{"name":"Austin 2025 Highlight | Ace Unleashed","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Ace Unleashed"},"295":{"name":"Austin 2025 Highlight | flameZ Triple Kill vs MOUZ","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Triple Kill vs MOUZ"},"296":{"name":"Austin 2025 Highlight | Shut Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Shut Down"},"297":{"name":"Austin 2025 Highlight | Smoke Ambush","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Ambush"},"298":{"name":"Austin 2025 Highlight | Smoke Shots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Shots"},"299":{"name":"Austin 2025 Highlight | Surprise Grenade","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Grenade"},"3":{"name":"Austin 2025 Highlight | 1v2 Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1v2 Denied"},"30":{"name":"Austin 2025 Highlight | Too Fast Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Too Fast Reactions"},"300":{"name":"Austin 2025 Highlight | Jimpphat Clean Sweep","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Clean Sweep"},"301":{"name":"Austin 2025 Highlight | Ticket Takedown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Ticket Takedown"},"302":{"name":"Austin 2025 Highlight | Blocking B","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Blocking B"},"303":{"name":"Austin 2025 Highlight | Glock Carnage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Glock Carnage"},"304":{"name":"Austin 2025 Highlight | Massacre","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Massacre"},"305":{"name":"Austin 2025 Highlight | Cover Fire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Cover Fire"},"306":{"name":"Austin 2025 Highlight | Precision","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Precision"},"307":{"name":"Austin 2025 Highlight | Spinx Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Double Mirage Kill"},"308":{"name":"Austin 2025 Highlight | Pistol Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol Hero"},"309":{"name":"Austin 2025 Highlight | Tunnel Vision","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tunnel Vision"},"31":{"name":"Austin 2025 Highlight | The Flying Spray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Flying Spray"},"310":{"name":"Austin 2025 Highlight | xertioN Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN Double Kill"},"311":{"name":"Austin 2025 Highlight | Deadly Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Deadly Deagle"},"312":{"name":"Austin 2025 Highlight | Galil Power","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Galil Power"},"313":{"name":"Austin 2025 Highlight | Locked Out","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Locked Out"},"314":{"name":"Austin 2025 Highlight | Focused But Fallen","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Focused But Fallen"},"315":{"name":"Austin 2025 Highlight | Fast Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fast Double"},"316":{"name":"Austin 2025 Highlight | Vital","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Vital"},"317":{"name":"Austin 2025 Highlight | Cheeky Boost","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Cheeky Boost"},"318":{"name":"Austin 2025 Highlight | Peekaboo","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Peekaboo"},"319":{"name":"Austin 2025 Highlight | The Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Defender"},"32":{"name":"Austin 2025 Highlight | Almost The Ace","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost The Ace"},"320":{"name":"Austin 2025 Highlight | Surprise Play","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Play"},"321":{"name":"Austin 2025 Highlight | No Chance","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | No Chance"},"322":{"name":"Austin 2025 Highlight | Running Galil","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Running Galil"},"323":{"name":"Austin 2025 Highlight | flameZ Double Train Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Double Train Kill"},"324":{"name":"Austin 2025 Highlight | One Tap","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Tap"},"325":{"name":"Austin 2025 Highlight | Just Peek Me","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Just Peek Me"},"326":{"name":"Austin 2025 Highlight | Forgot About Me?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Forgot About Me?"},"327":{"name":"Austin 2025 Highlight | Trigger Happy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Trigger Happy"},"328":{"name":"Austin 2025 Highlight | USP Masterclass","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | USP Masterclass"},"329":{"name":"Austin 2025 Highlight | ropz Double Train Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Double Train Kill"},"33":{"name":"Austin 2025 Highlight | donk Ace","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | donk Ace"},"330":{"name":"Austin 2025 Highlight | Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Defender"},"331":{"name":"Austin 2025 Highlight | Backup Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Backup Is Here"},"332":{"name":"Austin 2025 Highlight | Shutdown By HE","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Shutdown By HE"},"333":{"name":"Austin 2025 Highlight | Opener","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Opener"},"334":{"name":"Austin 2025 Highlight | Failed Lurk","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Failed Lurk"},"335":{"name":"Austin 2025 Highlight | Spinx Train Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Train Triple Kill"},"336":{"name":"Austin 2025 Highlight | Train Double Dink","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Train Double Dink"},"337":{"name":"Austin 2025 Highlight | torzsi Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Clutch Denied"},"338":{"name":"Austin 2025 Highlight | xertioN: The Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Cowboy"},"339":{"name":"Austin 2025 Highlight | xertioN: The Train Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Train Eco Fragger"},"34":{"name":"Austin 2025 Highlight | Fast MP9 Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fast MP9 Double Kill"},"340":{"name":"Austin 2025 Highlight | ZywOo Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Kill"},"341":{"name":"Austin 2025 Highlight | The AWP Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Double"},"342":{"name":"Austin 2025 Highlight | ZywOo AWP Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo AWP Rampage"},"343":{"name":"Austin 2025 Highlight | The Dominator","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Dominator"},"344":{"name":"Austin 2025 Highlight | ZywOo Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Headshot"},"345":{"name":"Austin 2025 Highlight | Strikes Back","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Strikes Back"},"346":{"name":"Austin 2025 Highlight | 910 Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Clutch Denied"},"347":{"name":"Austin 2025 Highlight | 910 Triple Kill vs Vitality","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Triple Kill vs Vitality"},"348":{"name":"Austin 2025 Highlight | 910 Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Double Kill"},"349":{"name":"Austin 2025 Highlight | 910 Ace","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Ace"},"35":{"name":"Austin 2025 Highlight | 1 Holds 1 Dodges","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1 Holds 1 Dodges"},"350":{"name":"Austin 2025 Highlight | apEX Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX Triple Kill"},"351":{"name":"Austin 2025 Highlight | The Nade Delivery","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Nade Delivery"},"352":{"name":"Austin 2025 Highlight | Unlucky","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Unlucky"},"353":{"name":"Austin 2025 Highlight | apEX: The Joker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX: The Joker"},"354":{"name":"Austin 2025 Highlight | bLitz Triple Kill vs Vitality","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Triple Kill vs Vitality"},"355":{"name":"Austin 2025 Highlight | bLitz Almost The Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Almost The Hero"},"356":{"name":"Austin 2025 Highlight | bLitz Double Connector Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Connector Kill"},"357":{"name":"Austin 2025 Highlight | flameZ Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Clutch Denied"},"358":{"name":"Austin 2025 Highlight | flameZ Triple Kill vs MongolZ","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Triple Kill vs MongolZ"},"359":{"name":"Austin 2025 Highlight | The Teamflash","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Teamflash"},"36":{"name":"Austin 2025 Highlight | I'm Right Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | I'm Right Behind You"},"360":{"name":"Austin 2025 Highlight | mezii Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Almost Clutch"},"361":{"name":"Austin 2025 Highlight | mezii Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Clutch Denied"},"362":{"name":"Austin 2025 Highlight | The Suspect","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Suspect"},"363":{"name":"Austin 2025 Highlight | ropz: The Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz: The Cowboy"},"364":{"name":"Austin 2025 Highlight | Senzu: The Eco Fragger - Top Mid","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu: The Eco Fragger - Top Mid"},"365":{"name":"Austin 2025 Highlight | Senzu: The Eco Fragger - Cat","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu: The Eco Fragger - Cat"},"366":{"name":"Austin 2025 Highlight | Techno4K: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K: The Clutch God"},"367":{"name":"Austin 2025 Highlight | The Clutch Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Clutch Demon"},"368":{"name":"Austin 2025 Highlight | Techno4K: The Cowboy vs Vitality","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K: The Cowboy vs Vitality"},"369":{"name":"Austin 2025 Highlight | Techno4K Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Closer"},"37":{"name":"Austin 2025 Highlight | Jimpphat Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Double Entry"},"370":{"name":"Austin 2025 Highlight | ZywOo Smoke Criminal","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Smoke Criminal"},"371":{"name":"Austin 2025 Highlight | Smoke Speaker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Speaker"},"372":{"name":"Austin 2025 Highlight | Smoke Breaker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Breaker"},"373":{"name":"Austin 2025 Highlight | apEX Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX Double Kill"},"374":{"name":"Austin 2025 Highlight | Kobes","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kobes"},"375":{"name":"Austin 2025 Highlight | apEX: Help Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX: Help Is Here"},"376":{"name":"Austin 2025 Highlight | Flying Frenchman","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Flying Frenchman"},"377":{"name":"Austin 2025 Highlight | bLitz Double Dust II Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Dust II Kill"},"378":{"name":"Austin 2025 Highlight | Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Fragger"},"379":{"name":"Austin 2025 Highlight | flameZ Double Dust II Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Double Dust II Kill"},"38":{"name":"Austin 2025 Highlight | Baited Into A Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Baited Into A Double Kill"},"380":{"name":"Austin 2025 Highlight | Dust II Retake King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Dust II Retake King"},"381":{"name":"Austin 2025 Highlight | A Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | A Defender"},"382":{"name":"Austin 2025 Highlight | No Time","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | No Time"},"383":{"name":"Austin 2025 Highlight | mezii Double Dust II Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Double Dust II Kill"},"384":{"name":"Austin 2025 Highlight | Surprise Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Entry"},"385":{"name":"Austin 2025 Highlight | Clutch Veteran","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch Veteran"},"386":{"name":"Austin 2025 Highlight | Closing Kills","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Closing Kills"},"387":{"name":"Austin 2025 Highlight | Fear Him","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fear Him"},"388":{"name":"Austin 2025 Highlight | 180 One Tap","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 180 One Tap"},"389":{"name":"Austin 2025 Highlight | The Dual Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Dual Double"},"39":{"name":"Austin 2025 Highlight | 2K Spraydown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2K Spraydown"},"390":{"name":"Austin 2025 Highlight | ropz Spray And Pray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Spray And Pray"},"391":{"name":"Austin 2025 Highlight | ropz Quad Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Quad Kill"},"392":{"name":"Austin 2025 Highlight | ropz Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Clutch Denied"},"393":{"name":"Austin 2025 Highlight | Senzu: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu: The Clutch God"},"394":{"name":"Austin 2025 Highlight | Senzu Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Clutch Denied"},"395":{"name":"Austin 2025 Highlight | Techno4K Almost The Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Almost The Hero"},"396":{"name":"Austin 2025 Highlight | Triple Kill Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Kill Clutch"},"397":{"name":"Austin 2025 Highlight | ZywOo: The Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo: The Eco Fragger"},"398":{"name":"Austin 2025 Highlight | ZywOo Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Triple Kill"},"399":{"name":"Austin 2025 Highlight | Open And Close","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Open And Close"},"4":{"name":"Austin 2025 Highlight | chopper Triple Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | chopper Triple Entry"},"40":{"name":"Austin 2025 Highlight | Not Over Yet","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Not Over Yet"},"400":{"name":"Austin 2025 Highlight | Jump Spot Dodge","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jump Spot Dodge"},"401":{"name":"Austin 2025 Highlight | Kill Trio Delivered","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kill Trio Delivered"},"402":{"name":"Austin 2025 Highlight | Triple Kill Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Kill Closer"},"403":{"name":"Austin 2025 Highlight | I Believe I Can Fly","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | I Believe I Can Fly"},"404":{"name":"Austin 2025 Highlight | Eco Tastes Good","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Tastes Good"},"405":{"name":"Austin 2025 Highlight | Struggling Against Glocks","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Struggling Against Glocks"},"406":{"name":"Austin 2025 Highlight | Right Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Right Behind You"},"407":{"name":"Austin 2025 Highlight | USP King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | USP King"},"408":{"name":"Austin 2025 Highlight | One With The MP9","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One With The MP9"},"409":{"name":"Austin 2025 Highlight | Triple Trouble","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Trouble"},"41":{"name":"Austin 2025 Highlight | magixx Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | magixx Double Kill"},"410":{"name":"Austin 2025 Highlight | Pre Aim","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pre Aim"},"411":{"name":"Austin 2025 Highlight | Eyes Open","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eyes Open"},"412":{"name":"Austin 2025 Highlight | Double Glock Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Glock Down"},"413":{"name":"Austin 2025 Highlight | Missed Shot And Missed Chance","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed Shot And Missed Chance"},"414":{"name":"Austin 2025 Highlight | I Can't See","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | I Can't See"},"415":{"name":"Austin 2025 Highlight | You Can't Hide","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | You Can't Hide"},"416":{"name":"Austin 2025 Highlight | Clutch or Nothing","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch or Nothing"},"417":{"name":"Austin 2025 Highlight | Senzu Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Double Deagle"},"418":{"name":"Austin 2025 Highlight | Clutch and Defuse","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch and Defuse"},"419":{"name":"Austin 2025 Highlight | Glocks Taken Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Glocks Taken Down"},"42":{"name":"Austin 2025 Highlight | Scout Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Scout Demon"},"420":{"name":"Austin 2025 Highlight | Double Duals Dominate","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Duals Dominate"},"421":{"name":"Austin 2025 Highlight | Nice Try","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Nice Try"},"422":{"name":"Austin 2025 Highlight | Glock Double Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Glock Double Down"},"423":{"name":"Austin 2025 Highlight | Techno4k Triple Terror","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4k Triple Terror"},"424":{"name":"Austin 2025 Highlight | Duals No Damage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Duals No Damage"},"425":{"name":"Austin 2025 Highlight | Rifle Powerplay","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rifle Powerplay"},"426":{"name":"Austin 2025 Highlight | Sneaky Killer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sneaky Killer"},"427":{"name":"Austin 2025 Highlight | Airborne","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Airborne"},"428":{"name":"Austin 2025 Highlight | Exploit","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Exploit"},"429":{"name":"Austin 2025 Highlight | Rifle Control","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rifle Control"},"43":{"name":"Austin 2025 Highlight | Not Quite The Angle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Not Quite The Angle"},"430":{"name":"Austin 2025 Highlight | Blast","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Blast"},"431":{"name":"Austin 2025 Highlight | Last Effort","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Last Effort"},"432":{"name":"Austin 2025 Highlight | Pit Hold","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pit Hold"},"433":{"name":"Austin 2025 Highlight | Pit Power","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pit Power"},"434":{"name":"Austin 2025 Highlight | Punisher from Pit","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Punisher from Pit"},"435":{"name":"Austin 2025 Highlight | Retake Master","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Retake Master"},"436":{"name":"Austin 2025 Highlight | Jimmy Jabs","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimmy Jabs"},"437":{"name":"Austin 2025 Highlight | Rapid Fire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rapid Fire"},"438":{"name":"Austin 2025 Highlight | Stronghold","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Stronghold"},"439":{"name":"Austin 2025 Highlight | Spinx Inferno Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Inferno Triple Kill"},"44":{"name":"Austin 2025 Highlight | Sharpshooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sharpshooter"},"440":{"name":"Austin 2025 Highlight | Site Recovery","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Site Recovery"},"441":{"name":"Austin 2025 Highlight | Sharp Shooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sharp Shooter"},"442":{"name":"Austin 2025 Highlight | Hidden Threat","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Hidden Threat"},"443":{"name":"Austin 2025 Highlight | Deadly Defense","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Deadly Defense"},"444":{"name":"Austin 2025 Highlight | FAMAS Specialist","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FAMAS Specialist"},"445":{"name":"Austin 2025 Highlight | torzsi Double Inferno Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Double Inferno Kill"},"446":{"name":"Austin 2025 Highlight | Close Call","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Close Call"},"447":{"name":"Austin 2025 Highlight | Lethal On Long","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Lethal On Long"},"448":{"name":"Austin 2025 Highlight | Hit or Miss","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Hit or Miss"},"449":{"name":"Austin 2025 Highlight | Tagging","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tagging"},"45":{"name":"Austin 2025 Highlight | AWP Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Denied"},"450":{"name":"Austin 2025 Highlight | Bombsite Battle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Bombsite Battle"},"451":{"name":"Austin 2025 Highlight | Pistol Punisher","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol Punisher"},"452":{"name":"Austin 2025 Highlight | Round Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Round Closer"},"453":{"name":"Austin 2025 Highlight | Almost There","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost There"},"454":{"name":"Austin 2025 Highlight | Striking MP9","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Striking MP9"},"455":{"name":"Austin 2025 Highlight | Rifle Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rifle Rampage"},"456":{"name":"Austin 2025 Highlight | One Mag","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Mag"},"457":{"name":"Austin 2025 Highlight | Misfire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Misfire"},"458":{"name":"Austin 2025 Highlight | Striking AWP","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Striking AWP"},"459":{"name":"Austin 2025 Highlight | Struggle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Struggle"},"46":{"name":"Austin 2025 Highlight | Spinx Dust II Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Dust II Triple Kill"},"460":{"name":"Austin 2025 Highlight | 910 Spray and Pray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Spray and Pray"},"461":{"name":"Austin 2025 Highlight | Kill Chain","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kill Chain"},"462":{"name":"Austin 2025 Highlight | Double Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Down"},"463":{"name":"Austin 2025 Highlight | Kill Streak","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kill Streak"},"464":{"name":"Austin 2025 Highlight | Lead By Example","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Lead By Example"},"465":{"name":"Austin 2025 Highlight | Hold Line","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Hold Line"},"466":{"name":"Austin 2025 Highlight | Bombsite Cleared","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Bombsite Cleared"},"467":{"name":"Austin 2025 Highlight | Own Fire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Own Fire"},"468":{"name":"Austin 2025 Highlight | Heroic Effort","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Heroic Effort"},"469":{"name":"Austin 2025 Highlight | Boom","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Boom"},"47":{"name":"Austin 2025 Highlight | Masterclass Lurk","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Masterclass Lurk"},"470":{"name":"Austin 2025 Highlight | Backstabber","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Backstabber"},"471":{"name":"Austin 2025 Highlight | flameZ Retake Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Retake Denied"},"472":{"name":"Austin 2025 Highlight | Testing123","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Testing123"},"473":{"name":"Austin 2025 Highlight | Inferno Retake King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Inferno Retake King"},"474":{"name":"Austin 2025 Highlight | flameZ Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Almost Clutch"},"475":{"name":"Austin 2025 Highlight | Round Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Round Here"},"476":{"name":"Austin 2025 Highlight | Domination","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Domination"},"477":{"name":"Austin 2025 Highlight | Standing Strong","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Standing Strong"},"478":{"name":"Austin 2025 Highlight | Boost Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Boost Kill"},"479":{"name":"Austin 2025 Highlight | Warning Shot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Warning Shot"},"48":{"name":"Austin 2025 Highlight | Where Are You Buddy?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Where Are You Buddy?"},"480":{"name":"Austin 2025 Highlight | mezii Clean Sweep","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Clean Sweep"},"481":{"name":"Austin 2025 Highlight | Game Changer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Game Changer"},"482":{"name":"Austin 2025 Highlight | Momentum","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Momentum"},"483":{"name":"Austin 2025 Highlight | Quick Kills","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Kills"},"484":{"name":"Austin 2025 Highlight | Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rampage"},"485":{"name":"Austin 2025 Highlight | Fierce Fight","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fierce Fight"},"486":{"name":"Austin 2025 Highlight | Failed Revenge","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Failed Revenge"},"487":{"name":"Austin 2025 Highlight | One Shot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Shot"},"488":{"name":"Austin 2025 Highlight | Smoke Spray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Spray"},"489":{"name":"Austin 2025 Highlight | Striking Shots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Striking Shots"},"49":{"name":"Austin 2025 Highlight | Spinx: Help Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx: Help Is Here"},"490":{"name":"Austin 2025 Highlight | Techno Triumph","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno Triumph"},"491":{"name":"Austin 2025 Highlight | Timed Push","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Timed Push"},"492":{"name":"Austin 2025 Highlight | Clutch Win","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch Win"},"493":{"name":"Budapest 2025 Highlight | Natus Vincere on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Natus Vincere on the QF stage"},"494":{"name":"Budapest 2025 Highlight | FURIA on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FURIA on the QF stage"},"495":{"name":"Budapest 2025 Highlight | w0nderful shuts Mid","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful shuts Mid"},"496":{"name":"Budapest 2025 Highlight | Aleksib Underpass sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib Underpass sweep"},"497":{"name":"Budapest 2025 Highlight | b1t Apartments play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t Apartments play"},"498":{"name":"Budapest 2025 Highlight | b1t mid-air catch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t mid-air catch"},"499":{"name":"Budapest 2025 Highlight | b1t smoke breakthrough","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t smoke breakthrough"},"5":{"name":"Austin 2025 Highlight | Double Pistol Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Pistol Kill"},"50":{"name":"Austin 2025 Highlight | xertioN: The Joker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Joker"},"500":{"name":"Budapest 2025 Highlight | iM Connector burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM Connector burst"},"501":{"name":"Budapest 2025 Highlight | iM AK massacre","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM AK massacre"},"502":{"name":"Budapest 2025 Highlight | iM sick-flick","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM sick-flick"},"503":{"name":"Budapest 2025 Highlight | makazze B-aps stop","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze B-aps stop"},"504":{"name":"Budapest 2025 Highlight | yuurih A-site clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih A-site clutch"},"505":{"name":"Budapest 2025 Highlight | w0nderful vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FURIA on Mirage"},"506":{"name":"Budapest 2025 Highlight | Aleksib vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FURIA on Mirage"},"507":{"name":"Budapest 2025 Highlight | b1t vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FURIA on Mirage"},"508":{"name":"Budapest 2025 Highlight | iM vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FURIA on Mirage"},"509":{"name":"Budapest 2025 Highlight | makazze vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FURIA on Mirage"},"51":{"name":"Austin 2025 Highlight | xertioN Dust II Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN Dust II Triple Kill"},"510":{"name":"Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Mirage"},"511":{"name":"Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Mirage"},"512":{"name":"Budapest 2025 Highlight | FalleN vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN vs Natus Vincere on Mirage"},"513":{"name":"Budapest 2025 Highlight | molodoy vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy vs Natus Vincere on Mirage"},"514":{"name":"Budapest 2025 Highlight | yuurih vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih vs Natus Vincere on Mirage"},"515":{"name":"Budapest 2025 Highlight | FaZe on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe on the QF stage"},"516":{"name":"Budapest 2025 Highlight | MOUZ on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | MOUZ on the QF stage"},"517":{"name":"Budapest 2025 Highlight | karrigan through fire","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan through fire"},"518":{"name":"Budapest 2025 Highlight | karrigan cuts rotation","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan cuts rotation"},"519":{"name":"Budapest 2025 Highlight | Twistzz smoke breaker","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz smoke breaker"},"52":{"name":"Austin 2025 Highlight | Missed Him But It's Okay","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed Him But It's Okay"},"520":{"name":"Budapest 2025 Highlight | jcobbb entry force","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb entry force"},"521":{"name":"Budapest 2025 Highlight | frozen post-plant wall","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen post-plant wall"},"522":{"name":"Budapest 2025 Highlight | broky seals Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky seals Nuke"},"523":{"name":"Budapest 2025 Highlight | Spinx instant refrag","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx instant refrag"},"524":{"name":"Budapest 2025 Highlight | Spinx plant pressure","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx plant pressure"},"525":{"name":"Budapest 2025 Highlight | torzsi opening picks","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi opening picks"},"526":{"name":"Budapest 2025 Highlight | Brollan Ramp action","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Brollan Ramp action"},"527":{"name":"Budapest 2025 Highlight | karrigan vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs MOUZ on Nuke"},"528":{"name":"Budapest 2025 Highlight | broky vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs MOUZ on Nuke"},"529":{"name":"Budapest 2025 Highlight | Twistzz vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs MOUZ on Nuke"},"53":{"name":"Austin 2025 Highlight | Surprise Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Behind You"},"530":{"name":"Budapest 2025 Highlight | jcobbb vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs MOUZ on Nuke"},"531":{"name":"Budapest 2025 Highlight | frozen vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs MOUZ on Nuke"},"532":{"name":"Budapest 2025 Highlight | Jimpphat vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Jimpphat vs FaZe on Nuke"},"533":{"name":"Budapest 2025 Highlight | Brollan vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Brollan vs FaZe on Nuke"},"534":{"name":"Budapest 2025 Highlight | Spinx vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx vs FaZe on Nuke"},"535":{"name":"Budapest 2025 Highlight | torzsi vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi vs FaZe on Nuke"},"536":{"name":"Budapest 2025 Highlight | xertioN vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | xertioN vs FaZe on Nuke"},"537":{"name":"Budapest 2025 Highlight | Spirit on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spirit on the QF stage"},"538":{"name":"Budapest 2025 Highlight | Falcons on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Falcons on the QF stage"},"539":{"name":"Budapest 2025 Highlight | chopper strikes first","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper strikes first"},"54":{"name":"Austin 2025 Highlight | Triple Pistol","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Pistol"},"540":{"name":"Budapest 2025 Highlight | m0NESY defuse denial","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY defuse denial"},"541":{"name":"Budapest 2025 Highlight | sh1ro takes over","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro takes over"},"542":{"name":"Budapest 2025 Highlight | sh1ro B-site carnage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro B-site carnage"},"543":{"name":"Budapest 2025 Highlight | zweih almost aces","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih almost aces"},"544":{"name":"Budapest 2025 Highlight | zweih ace","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih ace"},"545":{"name":"Budapest 2025 Highlight | donk opens everything","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk opens everything"},"546":{"name":"Budapest 2025 Highlight | tN1R smoke assassin","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R smoke assassin"},"547":{"name":"Budapest 2025 Highlight | tN1R Ramp massacre","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R Ramp massacre"},"548":{"name":"Budapest 2025 Highlight | kyousuke Ramp wipe","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke Ramp wipe"},"549":{"name":"Budapest 2025 Highlight | chopper vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Falcons on Nuke"},"55":{"name":"Austin 2025 Highlight | donk Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | donk Triple Kill"},"550":{"name":"Budapest 2025 Highlight | donk vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Falcons on Nuke"},"551":{"name":"Budapest 2025 Highlight | zweih vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Falcons on Nuke"},"552":{"name":"Budapest 2025 Highlight | sh1ro vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Falcons on Nuke"},"553":{"name":"Budapest 2025 Highlight | tN1R vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Falcons on Nuke"},"554":{"name":"Budapest 2025 Highlight | NiKo vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | NiKo vs Spirit on Nuke"},"555":{"name":"Budapest 2025 Highlight | kyxsan vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyxsan vs Spirit on Nuke"},"556":{"name":"Budapest 2025 Highlight | m0NESY vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY vs Spirit on Nuke"},"557":{"name":"Budapest 2025 Highlight | TeSeS vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | TeSeS vs Spirit on Nuke"},"558":{"name":"Budapest 2025 Highlight | kyousuke vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke vs Spirit on Nuke"},"559":{"name":"Budapest 2025 Highlight | Vitality on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality on the QF stage"},"56":{"name":"Austin 2025 Highlight | Stand Still","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Stand Still"},"560":{"name":"Budapest 2025 Highlight | The MongolZ on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | The MongolZ on the QF stage"},"561":{"name":"Budapest 2025 Highlight | mezii opening chaos","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii opening chaos"},"562":{"name":"Budapest 2025 Highlight | mezii Forest play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii Forest play"},"563":{"name":"Budapest 2025 Highlight | flameZ mid brawl","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ mid brawl"},"564":{"name":"Budapest 2025 Highlight | flameZ everywhere","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ everywhere"},"565":{"name":"Budapest 2025 Highlight | ZywOo P250 madness","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo P250 madness"},"566":{"name":"Budapest 2025 Highlight | ZywOo final blow","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo final blow"},"567":{"name":"Budapest 2025 Highlight | Techno4K triple punch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Techno4K triple punch"},"568":{"name":"Budapest 2025 Highlight | 910 solid rotation","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 solid rotation"},"569":{"name":"Budapest 2025 Highlight | ZywOo vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs The MongolZ on Mirage"},"57":{"name":"Austin 2025 Highlight | 3-2-1-GO!","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 3-2-1-GO!"},"570":{"name":"Budapest 2025 Highlight | apEX vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs The MongolZ on Mirage"},"571":{"name":"Budapest 2025 Highlight | mezii vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs The MongolZ on Mirage"},"572":{"name":"Budapest 2025 Highlight | flameZ vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs The MongolZ on Mirage"},"573":{"name":"Budapest 2025 Highlight | ropz vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs The MongolZ on Mirage"},"574":{"name":"Budapest 2025 Highlight | bLitz vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | bLitz vs Vitality on Mirage"},"575":{"name":"Budapest 2025 Highlight | Techno4K vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Techno4K vs Vitality on Mirage"},"576":{"name":"Budapest 2025 Highlight | Mzinho vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho vs Vitality on Mirage"},"577":{"name":"Budapest 2025 Highlight | 910 vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 vs Vitality on Mirage"},"578":{"name":"Budapest 2025 Highlight | controlez vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | controlez vs Vitality on Mirage"},"579":{"name":"Budapest 2025 Highlight | w0nderful plant lockdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful plant lockdown"},"58":{"name":"Austin 2025 Highlight | Jimpphat Spray And Pray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Spray And Pray"},"580":{"name":"Budapest 2025 Highlight | Aleksib smoke breaker","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib smoke breaker"},"581":{"name":"Budapest 2025 Highlight | b1t pistol shutdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t pistol shutdown"},"582":{"name":"Budapest 2025 Highlight | iM nearly 1v5","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM nearly 1v5"},"583":{"name":"Budapest 2025 Highlight | iM Short cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM Short cleanup"},"584":{"name":"Budapest 2025 Highlight | YEKINDAR Glock charge","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR Glock charge"},"585":{"name":"Budapest 2025 Highlight | KSCERATO boost play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO boost play"},"586":{"name":"Budapest 2025 Highlight | FalleN smoke play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN smoke play"},"587":{"name":"Budapest 2025 Highlight | FalleN Banana clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN Banana clutch"},"588":{"name":"Budapest 2025 Highlight | FalleN captain defuse","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN captain defuse"},"589":{"name":"Budapest 2025 Highlight | molodoy overtime quadro","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy overtime quadro"},"59":{"name":"Austin 2025 Highlight | Anchoring Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Anchoring Double Kill"},"590":{"name":"Budapest 2025 Highlight | w0nderful vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FURIA on Inferno"},"591":{"name":"Budapest 2025 Highlight | Aleksib vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FURIA on Inferno"},"592":{"name":"Budapest 2025 Highlight | b1t vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FURIA on Inferno"},"593":{"name":"Budapest 2025 Highlight | iM vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FURIA on Inferno"},"594":{"name":"Budapest 2025 Highlight | makazze vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FURIA on Inferno"},"595":{"name":"Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Inferno"},"596":{"name":"Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Inferno"},"597":{"name":"Budapest 2025 Highlight | FalleN vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN vs Natus Vincere on Inferno"},"598":{"name":"Budapest 2025 Highlight | molodoy vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy vs Natus Vincere on Inferno"},"599":{"name":"Budapest 2025 Highlight | yuurih vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih vs Natus Vincere on Inferno"},"6":{"name":"Austin 2025 Highlight | Pros Never Fake","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pros Never Fake"},"60":{"name":"Austin 2025 Highlight | Double AWP Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double AWP Entry"},"600":{"name":"Budapest 2025 Highlight | FaZe win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe win in the QF"},"601":{"name":"Budapest 2025 Highlight | broky mid-air magic","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky mid-air magic"},"602":{"name":"Budapest 2025 Highlight | broky Boiler cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Boiler cleanup"},"603":{"name":"Budapest 2025 Highlight | broky post-plant fury","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky post-plant fury"},"604":{"name":"Budapest 2025 Highlight | frozen Banana snap","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana snap"},"605":{"name":"Budapest 2025 Highlight | karrigan nade finish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan nade finish"},"606":{"name":"Budapest 2025 Highlight | torzsi Tec-9 rampage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi Tec-9 rampage"},"607":{"name":"Budapest 2025 Highlight | Twistzz dual chaos","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz dual chaos"},"608":{"name":"Budapest 2025 Highlight | xertioN clutch win","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | xertioN clutch win"},"609":{"name":"Budapest 2025 Highlight | broky vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs MOUZ on Inferno"},"61":{"name":"Austin 2025 Highlight | Won't go quietly","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Won't go quietly"},"610":{"name":"Budapest 2025 Highlight | Brollan vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Brollan vs FaZe on Inferno"},"611":{"name":"Budapest 2025 Highlight | frozen vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs MOUZ on Inferno"},"612":{"name":"Budapest 2025 Highlight | jcobbb vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs MOUZ on Inferno"},"613":{"name":"Budapest 2025 Highlight | Jimpphat vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Jimpphat vs FaZe on Inferno"},"614":{"name":"Budapest 2025 Highlight | karrigan vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs MOUZ on Inferno"},"615":{"name":"Budapest 2025 Highlight | Spinx vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx vs FaZe on Inferno"},"616":{"name":"Budapest 2025 Highlight | torzsi vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi vs FaZe on Inferno"},"617":{"name":"Budapest 2025 Highlight | Twistzz vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs MOUZ on Inferno"},"618":{"name":"Budapest 2025 Highlight | xertioN vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | xertioN vs FaZe on Inferno"},"619":{"name":"Budapest 2025 Highlight | Spirit win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spirit win in the QF"},"62":{"name":"Austin 2025 Highlight | The Flying Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Flying Entry"},"620":{"name":"Budapest 2025 Highlight | chopper A-site havoc","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper A-site havoc"},"621":{"name":"Budapest 2025 Highlight | donk quad eruption","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk quad eruption"},"622":{"name":"Budapest 2025 Highlight | kyousuke smoke punish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke smoke punish"},"623":{"name":"Budapest 2025 Highlight | m0NESY momentum swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY momentum swing"},"624":{"name":"Budapest 2025 Highlight | sh1ro mid-air shutdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro mid-air shutdown"},"625":{"name":"Budapest 2025 Highlight | sh1ro multi-action swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro multi-action swing"},"626":{"name":"Budapest 2025 Highlight | TeSeS site purge","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | TeSeS site purge"},"627":{"name":"Budapest 2025 Highlight | tN1R Gandalf spray","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R Gandalf spray"},"628":{"name":"Budapest 2025 Highlight | zweih flawless ace","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih flawless ace"},"629":{"name":"Budapest 2025 Highlight | zweih B-site fortress","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih B-site fortress"},"63":{"name":"Austin 2025 Highlight | Thanks For The M4A1-S","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Thanks For The M4A1-S"},"630":{"name":"Budapest 2025 Highlight | chopper vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Falcons on Dust II"},"631":{"name":"Budapest 2025 Highlight | donk vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Falcons on Dust II"},"632":{"name":"Budapest 2025 Highlight | kyousuke vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke vs Spirit on Dust II"},"633":{"name":"Budapest 2025 Highlight | kyxsan vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyxsan vs Spirit on Dust II"},"634":{"name":"Budapest 2025 Highlight | m0NESY vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY vs Spirit on Dust II"},"635":{"name":"Budapest 2025 Highlight | NiKo vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | NiKo vs Spirit on Dust II"},"636":{"name":"Budapest 2025 Highlight | sh1ro vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Falcons on Dust II"},"637":{"name":"Budapest 2025 Highlight | TeSeS vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | TeSeS vs Spirit on Dust II"},"638":{"name":"Budapest 2025 Highlight | tN1R vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Falcons on Dust II"},"639":{"name":"Budapest 2025 Highlight | zweih vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Falcons on Dust II"},"64":{"name":"Austin 2025 Highlight | Nuke Double Dink","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Nuke Double Dink"},"640":{"name":"Budapest 2025 Highlight | Vitality win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality win in the QF"},"641":{"name":"Budapest 2025 Highlight | 910 MP9 mayhem","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 MP9 mayhem"},"642":{"name":"Budapest 2025 Highlight | mezii B-site burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii B-site burst"},"643":{"name":"Budapest 2025 Highlight | mezii mid takeover","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii mid takeover"},"644":{"name":"Budapest 2025 Highlight | Mzinho Long control","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho Long control"},"645":{"name":"Budapest 2025 Highlight | Mzinho clears Short","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho clears Short"},"646":{"name":"Budapest 2025 Highlight | Mzinho mid surprise","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho mid surprise"},"647":{"name":"Budapest 2025 Highlight | ropz 1v3 clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz 1v3 clutch"},"648":{"name":"Budapest 2025 Highlight | ropz pistol precision","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz pistol precision"},"649":{"name":"Budapest 2025 Highlight | ZywOo triple finish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo triple finish"},"65":{"name":"Austin 2025 Highlight | Too Close","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Too Close"},"650":{"name":"Budapest 2025 Highlight | 910 vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 vs Vitality on Dust II"},"651":{"name":"Budapest 2025 Highlight | apEX vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs The MongolZ on Dust II"},"652":{"name":"Budapest 2025 Highlight | bLitz vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | bLitz vs Vitality on Dust II"},"653":{"name":"Budapest 2025 Highlight | controlez vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | controlez vs Vitality on Dust II"},"654":{"name":"Budapest 2025 Highlight | flameZ vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs The MongolZ on Dust II"},"655":{"name":"Budapest 2025 Highlight | mezii vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs The MongolZ on Dust II"},"656":{"name":"Budapest 2025 Highlight | Mzinho vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho vs Vitality on Dust II"},"657":{"name":"Budapest 2025 Highlight | ropz vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs The MongolZ on Dust II"},"658":{"name":"Budapest 2025 Highlight | Techno4K vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Techno4K vs Vitality on Dust II"},"659":{"name":"Budapest 2025 Highlight | ZywOo vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs The MongolZ on Dust II"},"66":{"name":"Austin 2025 Highlight | Spinx Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Double Nuke Kill"},"660":{"name":"Budapest 2025 Highlight | Natus Vincere win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Natus Vincere win in the QF"},"661":{"name":"Budapest 2025 Highlight | w0nderful smoke criminal","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful smoke criminal"},"662":{"name":"Budapest 2025 Highlight | Aleksib post-plant triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib post-plant triple"},"663":{"name":"Budapest 2025 Highlight | b1t B-site ambush","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t B-site ambush"},"664":{"name":"Budapest 2025 Highlight | makazze flash cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze flash cleanup"},"665":{"name":"Budapest 2025 Highlight | makazze Ivy disruption","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze Ivy disruption"},"666":{"name":"Budapest 2025 Highlight | makazze pistol precision","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze pistol precision"},"667":{"name":"Budapest 2025 Highlight | makazze fury unleashed","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze fury unleashed"},"668":{"name":"Budapest 2025 Highlight | KSCERATO A play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO A play"},"669":{"name":"Budapest 2025 Highlight | FalleN late-half triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN late-half triple"},"67":{"name":"Austin 2025 Highlight | The Help Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Help Is Here"},"670":{"name":"Budapest 2025 Highlight | w0nderful vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FURIA on Train"},"671":{"name":"Budapest 2025 Highlight | Aleksib vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FURIA on Train"},"672":{"name":"Budapest 2025 Highlight | b1t vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FURIA on Train"},"673":{"name":"Budapest 2025 Highlight | iM vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FURIA on Train"},"674":{"name":"Budapest 2025 Highlight | makazze vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FURIA on Train"},"675":{"name":"Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Train"},"676":{"name":"Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Train"},"677":{"name":"Budapest 2025 Highlight | FalleN vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN vs Natus Vincere on Train"},"678":{"name":"Budapest 2025 Highlight | molodoy vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy vs Natus Vincere on Train"},"679":{"name":"Budapest 2025 Highlight | yuurih vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih vs Natus Vincere on Train"},"68":{"name":"Austin 2025 Highlight | Let's Goo","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Let's Goo"},"680":{"name":"Budapest 2025 Highlight | Natus Vincere on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Natus Vincere on the SF stage"},"681":{"name":"Budapest 2025 Highlight | FaZe on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe on the SF stage"},"682":{"name":"Budapest 2025 Highlight | Aleksib smoke read spray","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib smoke read spray"},"683":{"name":"Budapest 2025 Highlight | b1t B-site stand","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t B-site stand"},"684":{"name":"Budapest 2025 Highlight | iM USP-S quad threat","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM USP-S quad threat"},"685":{"name":"Budapest 2025 Highlight | jcobbb Redroom sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb Redroom sweep"},"686":{"name":"Budapest 2025 Highlight | karrigan smoke double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan smoke double"},"687":{"name":"Budapest 2025 Highlight | makazze A-plant entry","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze A-plant entry"},"688":{"name":"Budapest 2025 Highlight | makazze Mid wide swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze Mid wide swing"},"689":{"name":"Budapest 2025 Highlight | makazze Redroom transfer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze Redroom transfer"},"69":{"name":"Austin 2025 Highlight | torzsi Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Double Nuke Kill"},"690":{"name":"Budapest 2025 Highlight | w0nderful Mid to A punish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful Mid to A punish"},"691":{"name":"Budapest 2025 Highlight | w0nderful A-site triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful A-site triple"},"692":{"name":"Budapest 2025 Highlight | w0nderful vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FaZe on Ancient"},"693":{"name":"Budapest 2025 Highlight | Aleksib vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FaZe on Ancient"},"694":{"name":"Budapest 2025 Highlight | b1t vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FaZe on Ancient"},"695":{"name":"Budapest 2025 Highlight | iM vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FaZe on Ancient"},"696":{"name":"Budapest 2025 Highlight | makazze vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FaZe on Ancient"},"697":{"name":"Budapest 2025 Highlight | karrigan vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Natus Vincere on Ancient"},"698":{"name":"Budapest 2025 Highlight | broky vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Natus Vincere on Ancient"},"699":{"name":"Budapest 2025 Highlight | Twistzz vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Natus Vincere on Ancient"},"7":{"name":"Austin 2025 Highlight | Inhuman Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Inhuman Reactions"},"70":{"name":"Austin 2025 Highlight | AWP Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Double Kill"},"700":{"name":"Budapest 2025 Highlight | jcobbb vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Natus Vincere on Ancient"},"701":{"name":"Budapest 2025 Highlight | frozen vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Natus Vincere on Ancient"},"702":{"name":"Budapest 2025 Highlight | Spirit on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spirit on the SF stage"},"703":{"name":"Budapest 2025 Highlight | Vitality on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality on the SF stage"},"704":{"name":"Budapest 2025 Highlight | apEX overtime closer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX overtime closer"},"705":{"name":"Budapest 2025 Highlight | chopper calm 1v3","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper calm 1v3"},"706":{"name":"Budapest 2025 Highlight | donk smoke burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk smoke burst"},"707":{"name":"Budapest 2025 Highlight | donk Mid takeover","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk Mid takeover"},"708":{"name":"Budapest 2025 Highlight | mezii B-aps shutdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii B-aps shutdown"},"709":{"name":"Budapest 2025 Highlight | mezii perfect read","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii perfect read"},"71":{"name":"Austin 2025 Highlight | The Relocate","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Relocate"},"710":{"name":"Budapest 2025 Highlight | ropz round flip","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz round flip"},"711":{"name":"Budapest 2025 Highlight | tN1R Firebox gamble","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R Firebox gamble"},"712":{"name":"Budapest 2025 Highlight | tN1R finishing double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R finishing double"},"713":{"name":"Budapest 2025 Highlight | ZywOo Short play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo Short play"},"714":{"name":"Budapest 2025 Highlight | apEX vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs Spirit on Mirage"},"715":{"name":"Budapest 2025 Highlight | chopper vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Vitality on Mirage"},"716":{"name":"Budapest 2025 Highlight | donk vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Vitality on Mirage"},"717":{"name":"Budapest 2025 Highlight | flameZ vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs Spirit on Mirage"},"718":{"name":"Budapest 2025 Highlight | mezii vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs Spirit on Mirage"},"719":{"name":"Budapest 2025 Highlight | ropz vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs Spirit on Mirage"},"72":{"name":"Austin 2025 Highlight | Surprise Boost","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Boost"},"720":{"name":"Budapest 2025 Highlight | sh1ro vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Vitality on Mirage"},"721":{"name":"Budapest 2025 Highlight | tN1R vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Vitality on Mirage"},"722":{"name":"Budapest 2025 Highlight | zweih vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Vitality on Mirage"},"723":{"name":"Budapest 2025 Highlight | ZywOo vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs Spirit on Mirage"},"724":{"name":"Budapest 2025 Highlight | w0nderful long-range triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful long-range triple"},"725":{"name":"Budapest 2025 Highlight | b1t Outside to B stop","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t Outside to B stop"},"726":{"name":"Budapest 2025 Highlight | iM pistol quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM pistol quad"},"727":{"name":"Budapest 2025 Highlight | iM rotation payoff","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM rotation payoff"},"728":{"name":"Budapest 2025 Highlight | karrigan Main entry triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan Main entry triple"},"729":{"name":"Budapest 2025 Highlight | broky A-site equalizer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky A-site equalizer"},"73":{"name":"Austin 2025 Highlight | xertioN: The Nuke Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Nuke Eco Fragger"},"730":{"name":"Budapest 2025 Highlight | Twistzz Ramp bomb hold","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Ramp bomb hold"},"731":{"name":"Budapest 2025 Highlight | frozen Ramp triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Ramp triple"},"732":{"name":"Budapest 2025 Highlight | frozen backstab cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen backstab cleanup"},"733":{"name":"Budapest 2025 Highlight | w0nderful vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FaZe on Nuke"},"734":{"name":"Budapest 2025 Highlight | Aleksib vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FaZe on Nuke"},"735":{"name":"Budapest 2025 Highlight | b1t vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FaZe on Nuke"},"736":{"name":"Budapest 2025 Highlight | iM vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FaZe on Nuke"},"737":{"name":"Budapest 2025 Highlight | makazze vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FaZe on Nuke"},"738":{"name":"Budapest 2025 Highlight | karrigan vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Natus Vincere on Nuke"},"739":{"name":"Budapest 2025 Highlight | broky vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Natus Vincere on Nuke"},"74":{"name":"Austin 2025 Highlight | xertioN Nuke Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN Nuke Triple Kill"},"740":{"name":"Budapest 2025 Highlight | Twistzz vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Natus Vincere on Nuke"},"741":{"name":"Budapest 2025 Highlight | jcobbb vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Natus Vincere on Nuke"},"742":{"name":"Budapest 2025 Highlight | frozen vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Natus Vincere on Nuke"},"743":{"name":"Budapest 2025 Highlight | Vitality wins in the SF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality wins in the SF"},"744":{"name":"Budapest 2025 Highlight | donk door-to-AWP rampage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk door-to-AWP rampage"},"745":{"name":"Budapest 2025 Highlight | zweih tunnels opener","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih tunnels opener"},"746":{"name":"Budapest 2025 Highlight | tN1R doors to B plant","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R doors to B plant"},"747":{"name":"Budapest 2025 Highlight | ZywOo pistol round burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo pistol round burst"},"748":{"name":"Budapest 2025 Highlight | ZywOo smoke stumble","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo smoke stumble"},"749":{"name":"Budapest 2025 Highlight | apEX early double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX early double"},"75":{"name":"Austin 2025 Highlight | Damage Dealer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Damage Dealer"},"750":{"name":"Budapest 2025 Highlight | apEX A-site lockdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX A-site lockdown"},"751":{"name":"Budapest 2025 Highlight | apEX Long dance","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX Long dance"},"752":{"name":"Budapest 2025 Highlight | flameZ map closer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ map closer"},"753":{"name":"Budapest 2025 Highlight | ropz smoke pick","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz smoke pick"},"754":{"name":"Budapest 2025 Highlight | chopper vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Vitality on Dust II"},"755":{"name":"Budapest 2025 Highlight | donk vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Vitality on Dust II"},"756":{"name":"Budapest 2025 Highlight | zweih vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Vitality on Dust II"},"757":{"name":"Budapest 2025 Highlight | sh1ro vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Vitality on Dust II"},"758":{"name":"Budapest 2025 Highlight | tN1R vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Vitality on Dust II"},"759":{"name":"Budapest 2025 Highlight | ZywOo vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs Spirit on Dust II"},"76":{"name":"Austin 2025 Highlight | Textbook Hold","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Textbook Hold"},"760":{"name":"Budapest 2025 Highlight | apEX vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs Spirit on Dust II"},"761":{"name":"Budapest 2025 Highlight | mezii vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs Spirit on Dust II"},"762":{"name":"Budapest 2025 Highlight | flameZ vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs Spirit on Dust II"},"763":{"name":"Budapest 2025 Highlight | ropz vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs Spirit on Dust II"},"764":{"name":"Budapest 2025 Highlight | FaZe win in the SF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe win in the SF"},"765":{"name":"Budapest 2025 Highlight | w0nderful post-plant hold","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful post-plant hold"},"766":{"name":"Budapest 2025 Highlight | Aleksib CT lockdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib CT lockdown"},"767":{"name":"Budapest 2025 Highlight | b1t Triple timing quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t Triple timing quad"},"768":{"name":"Budapest 2025 Highlight | b1t last-second defuse","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t last-second defuse"},"769":{"name":"Budapest 2025 Highlight | karrigan pistol headshots","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan pistol headshots"},"77":{"name":"Austin 2025 Highlight | The Ninja Lurker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Ninja Lurker"},"770":{"name":"Budapest 2025 Highlight | broky Triple surprise","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Triple surprise"},"771":{"name":"Budapest 2025 Highlight | Twistzz Banana to CT swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Banana to CT swing"},"772":{"name":"Budapest 2025 Highlight | Twistzz Deagle quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Deagle quad"},"773":{"name":"Budapest 2025 Highlight | jcobbb A-site spraydown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb A-site spraydown"},"774":{"name":"Budapest 2025 Highlight | frozen Banana opener","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana opener"},"775":{"name":"Budapest 2025 Highlight | w0nderful vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FaZe on Inferno"},"776":{"name":"Budapest 2025 Highlight | Aleksib vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FaZe on Inferno"},"777":{"name":"Budapest 2025 Highlight | b1t vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FaZe on Inferno"},"778":{"name":"Budapest 2025 Highlight | iM vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FaZe on Inferno"},"779":{"name":"Budapest 2025 Highlight | makazze vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FaZe on Inferno"},"78":{"name":"Austin 2025 Highlight | Tec-9 Tapped","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tec-9 Tapped"},"780":{"name":"Budapest 2025 Highlight | karrigan vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Natus Vincere on Inferno"},"781":{"name":"Budapest 2025 Highlight | broky vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Natus Vincere on Inferno"},"782":{"name":"Budapest 2025 Highlight | Twistzz vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Natus Vincere on Inferno"},"783":{"name":"Budapest 2025 Highlight | jcobbb vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Natus Vincere on Inferno"},"784":{"name":"Budapest 2025 Highlight | frozen vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Natus Vincere on Inferno"},"785":{"name":"Budapest 2025 Highlight | Vitality on the GF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality on the GF stage"},"786":{"name":"Budapest 2025 Highlight | FaZe on the GF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe on the GF stage"},"787":{"name":"Budapest 2025 Highlight | apEX smoke gap","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX smoke gap"},"788":{"name":"Budapest 2025 Highlight | flameZ Squeaky triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ Squeaky triple"},"789":{"name":"Budapest 2025 Highlight | jcobbb USP-S triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb USP-S triple"},"79":{"name":"Austin 2025 Highlight | Captain Brazil","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Captain Brazil"},"790":{"name":"Budapest 2025 Highlight | karrigan rotation triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan rotation triple"},"791":{"name":"Budapest 2025 Highlight | karrigan Lobby MP9","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan Lobby MP9"},"792":{"name":"Budapest 2025 Highlight | mezii post-plant","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii post-plant"},"793":{"name":"Budapest 2025 Highlight | ropz Heaven double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Heaven double"},"794":{"name":"Budapest 2025 Highlight | Twistzz Secret quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Secret quad"},"795":{"name":"Budapest 2025 Highlight | Twistzz pistol triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz pistol triple"},"796":{"name":"Budapest 2025 Highlight | Twistzz Garage triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Garage triple"},"797":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Nuke"},"798":{"name":"Budapest 2025 Highlight | broky vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Nuke"},"799":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Nuke"},"8":{"name":"Austin 2025 Highlight | Triple Kill And A Defuse","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Kill And A Defuse"},"80":{"name":"Austin 2025 Highlight | Sixth Sense","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sixth Sense"},"800":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Nuke"},"801":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Nuke"},"802":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Nuke"},"803":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Nuke"},"804":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Nuke"},"805":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Nuke"},"806":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Nuke"},"807":{"name":"Budapest 2025 Highlight | ZywOo Long pistol wall","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo Long pistol wall"},"808":{"name":"Budapest 2025 Highlight | mezii CT clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii CT clutch"},"809":{"name":"Budapest 2025 Highlight | flameZ post-plant sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ post-plant sweep"},"81":{"name":"Austin 2025 Highlight | dgt Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dgt Almost Clutch"},"810":{"name":"Budapest 2025 Highlight | ropz Tunnel trap","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Tunnel trap"},"811":{"name":"Budapest 2025 Highlight | broky duel to triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky duel to triple"},"812":{"name":"Budapest 2025 Highlight | broky Doors closer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Doors closer"},"813":{"name":"Budapest 2025 Highlight | broky Scout showcase","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Scout showcase"},"814":{"name":"Budapest 2025 Highlight | Twistzz smoke timing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz smoke timing"},"815":{"name":"Budapest 2025 Highlight | frozen Upper Tunnel sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Upper Tunnel sweep"},"816":{"name":"Budapest 2025 Highlight | frozen B-site burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen B-site burst"},"817":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Dust II"},"818":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Dust II"},"819":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Dust II"},"82":{"name":"Austin 2025 Highlight | dgt Clutch Attempt","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dgt Clutch Attempt"},"820":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Dust II"},"821":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Dust II"},"822":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Dust II"},"823":{"name":"Budapest 2025 Highlight | broky vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Dust II"},"824":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Dust II"},"825":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Dust II"},"826":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Dust II"},"827":{"name":"Budapest 2025 Highlight | ZywOo Construction spray","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo Construction spray"},"828":{"name":"Budapest 2025 Highlight | mezii Boost timing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii Boost timing"},"829":{"name":"Budapest 2025 Highlight | ropz crossfire triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz crossfire triple"},"83":{"name":"Austin 2025 Highlight | Lower Defense","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Lower Defense"},"830":{"name":"Budapest 2025 Highlight | ropz Pit triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Pit triple"},"831":{"name":"Budapest 2025 Highlight | broky A-site opener","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky A-site opener"},"832":{"name":"Budapest 2025 Highlight | broky lineup save","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky lineup save"},"833":{"name":"Budapest 2025 Highlight | frozen Banana nade","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana nade"},"834":{"name":"Budapest 2025 Highlight | frozen Banana rush","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana rush"},"835":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Inferno"},"836":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Inferno"},"837":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Inferno"},"838":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Inferno"},"839":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Inferno"},"84":{"name":"Austin 2025 Highlight | FalleN Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN Double Nuke Kill"},"840":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Inferno"},"841":{"name":"Budapest 2025 Highlight | broky vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Inferno"},"842":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Inferno"},"843":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Inferno"},"844":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Inferno"},"845":{"name":"Budapest 2025 Highlight | Vitality win in the GF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality win in the GF"},"846":{"name":"Budapest 2025 Highlight | ZywOo all angles","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo all angles"},"847":{"name":"Budapest 2025 Highlight | ZywOo smoke Deagle","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo smoke Deagle"},"848":{"name":"Budapest 2025 Highlight | mezii Connector triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii Connector triple"},"849":{"name":"Budapest 2025 Highlight | flameZ Short to B","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ Short to B"},"85":{"name":"Austin 2025 Highlight | Leaving Scraps","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Leaving Scraps"},"850":{"name":"Budapest 2025 Highlight | ropz pistol quadro","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz pistol quadro"},"851":{"name":"Budapest 2025 Highlight | ropz Bank post-plant","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Bank post-plant"},"852":{"name":"Budapest 2025 Highlight | ropz A-site AWP","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz A-site AWP"},"853":{"name":"Budapest 2025 Highlight | apEX B-site triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX B-site triple"},"854":{"name":"Budapest 2025 Highlight | frozen A triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen A triple"},"855":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Overpass"},"856":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Overpass"},"857":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Overpass"},"858":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Overpass"},"859":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Overpass"},"86":{"name":"Austin 2025 Highlight | Tec-9 Master","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tec-9 Master"},"860":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Overpass"},"861":{"name":"Budapest 2025 Highlight | broky vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Overpass"},"862":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Overpass"},"863":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Overpass"},"864":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Overpass"},"865":{"name":"Budapest 2025 Highlight | Twistzz breaks the streak","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz breaks the streak"},"87":{"name":"Austin 2025 Highlight | FalleN Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN Closer"},"88":{"name":"Austin 2025 Highlight | Fast Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fast Reactions"},"89":{"name":"Austin 2025 Highlight | molodoy Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | molodoy Triple Kill"},"9":{"name":"Austin 2025 Highlight | Jimpphat Quadra Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Quadra Kill"},"90":{"name":"Austin 2025 Highlight | nqz Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Double Nuke Kill"},"91":{"name":"Austin 2025 Highlight | nqz Retake Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Retake Denied"},"92":{"name":"Austin 2025 Highlight | AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Kill"},"93":{"name":"Austin 2025 Highlight | Just One","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Just One"},"94":{"name":"Austin 2025 Highlight | 8HP Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 8HP Clutch"},"95":{"name":"Austin 2025 Highlight | Pistol King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol King"},"96":{"name":"Austin 2025 Highlight | Pistol Kills","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol Kills"},"97":{"name":"Austin 2025 Highlight | Eco Farmer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Farmer"},"98":{"name":"Austin 2025 Highlight | YEKINDAR Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | YEKINDAR Double Kill"},"99":{"name":"Austin 2025 Highlight | Surprise P2000","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise P2000"}},"weapons":{"1":{"name":"Desert Eagle","sticker_amount":5,"type":"Weapons","paints":{"1006":{"index":1006,"max":0.65,"min":0,"rarity":3,"name":"Night Heist","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RYKFkM-SsHmuRz_1JoPR7XyW2qhEutDWR1I6uJH-RPQInXJB0F-Vb50bqxt3kN-Kw4VCMjYxCyXmvj3hO6X05t-8cEf1yxd2V6Eg","normal_prices":[15124,2268,1999,2618,2082],"normal_volume":[316,141,73,13,23]},"1050":{"index":1050,"max":0.97,"min":0,"rarity":4,"name":"Trigger Discipline","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ8-HHG6Xxutkj-VgXCq6hREuvTi6lob-KT-Ja1UlWMAkTOMCt0G9kIHlP77l5FbW344XxX_4iSJJv31r4bxRUKUn_rqX0V-d-rquYA","stattrak":true,"normal_prices":[603,173,64,53,52],"normal_volume":[703,1019,1850,416,295],"stattrak_prices":[1113,474,201,159,159],"stattrak_volume":[297,345,422,115,142]},"1054":{"index":1054,"max":1,"min":0,"rarity":5,"name":"Heat Treated","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKFsJ_yWMWSR0utJuOB7Syy9kBkY4QKJk4jxNWXGbQZ0CZpyTeBf4xO4m9y1Nuy05wHYg4lNySWr3C1Luyhu4LkKA6As5OSJ2JAJXn6j","normal_prices":[6280,290,144,116,112],"normal_volume":[772,4550,8038,4875,2924]},"1056":{"index":1056,"max":0.5,"min":0,"rarity":3,"name":"Sputnik","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk_OKRe7RsI_WBD2SV_ux6peRWQyC0nQlp5W6Hydz_In7CPQMjWcYmQrZZ5xLumtCxZrnhsQ2I3dkTmCz5jyoaujErvbhRuDcF4A","normal_prices":[909,269,173,164,180],"normal_volume":[1197,474,395,26,24]},"1090":{"index":1090,"max":1,"min":0,"rarity":6,"name":"Ocean Drive","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ_yWMWyZ1e1-j-1gSCGn2x5-sG7Wzdyvc3OSbgcnXpR5FO9bukTtm9WzMePhswaN2N5CmCj_jyhXrnE8ibjhEyc","stattrak":true,"normal_prices":[29384,7427,5878,5822,5988],"normal_volume":[82,295,442,96,58],"stattrak_prices":[36113,13443,7924,8139,7706],"stattrak_volume":[32,56,55,25,10]},"114":{"index":114,"max":1,"min":0,"rarity":3,"name":"Calligraffiti","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6_evb6hoH_OSAmuZxvx3tudWQyC0nQlp52rQmNv_IC7DaFR0ApB4QbMKs0W8k9zuPr6xtAGMjoITmymohyMa6jErvbhrxmEjWA","stattrak":true,"normal_prices":[1001,46,18,15,14],"normal_volume":[377,288,392,111,118],"stattrak_prices":[568,117,54,49,48],"stattrak_volume":[119,129,153,86,108]},"1189":{"index":1189,"max":0.57,"min":0,"rarity":4,"name":"Serpent Strike","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6_evb6hoH-OdD2yV_v53pPVsXSeMmRQguynLzdmsIHOVPVciXMN3QuVeuxexmtHuP77m7gDd34kRxXj_3ChKvS9p5fFCD_SJMmxOXA","stattrak":true,"normal_prices":[198,69,39,37,40],"normal_volume":[2076,1187,2191,86,682],"stattrak_prices":[411,210,75,110,95],"stattrak_volume":[600,608,580,84,266]},"1257":{"index":1257,"max":0.6,"min":0,"rarity":3,"name":"Mint Fan","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-aRbaV_NPisCGae0tF6ueZhW2ewlEoktW2AnI2qJHqSPFBxXJp0QrEIsRbpwYC0Purr4w3W3t1CmXiokGoXuVx1ISUO","normal_prices":[141,53,20,20,16],"normal_volume":[1073,980,967,171,100]},"1318":{"index":1318,"max":0.75,"min":0,"rarity":4,"name":"Mulberry","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk_P2rV7RhNf2sAm6Xyfo44uIwGC_rx08lsjvdwt_7cinDZ1RyX8ZyRe8NsBexwdDgY-zr5gKI2pUFk3tTfLUzaw","normal_prices":[1731,869,272,233,141],"normal_volume":[976,1323,1430,70,227]},"1360":{"index":1360,"max":0.58,"min":0,"rarity":3,"name":"The Daily Deagle","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-urV6dsMs-EHGaA_uJ_t-l9AXm3kxh162qHy9-pd3PEagMmDJMkRuEK4BG4x9zhZe-07gPdiotMyivgznQej0ovEM4","normal_prices":[110,44,19,20,15],"normal_volume":[986,557,390,48,87]},"138":{"index":138,"max":0.75,"min":0,"rarity":2,"name":"Tilted","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRZ7JoMuCSHXSvwP9jsd5tSii0mRgYvzSCkpu3cH-UOgV2D8RyQrMKsRW-mtWyPunr4VeNjIhMmX6ojigY7y9v5ehUA71lpPMO4MWI5A","souvenir":true,"normal_prices":[136,29,6,12,4],"normal_volume":[4155,5722,9616,331,279]},"1430":{"index":1430,"max":1,"min":0,"rarity":4,"name":"Firebreathing","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6_evb6hoH_aaHGKS0-t3pOlgQS6MmRQguynLn9ircSiTPFUgCJAkQbELsxXtktDkMurk4lTZ39hEyn_-3HsbvXxj4fFCD_RcNNN-xQ","stattrak":true,"normal_prices":[718,231,112,82,72],"normal_volume":[565,612,408,115,236],"stattrak_prices":[1728,633,298,234,239],"stattrak_volume":[103,122,171,64,75]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":2,"name":"Urban DDPAT","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRbKB9IeSsG3WS_uJ_t-l9AXm2kxkk42rWn9egc36UOwYiX5N1EOVYsRLtldC0M77g5QXfiN1Fzn_gznQemk8fKYk","souvenir":true,"normal_prices":[3882,496,178,261,227],"normal_volume":[33,329,115,38,60]},"185":{"index":185,"max":0.12,"min":0,"rarity":6,"name":"Golden Koi","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6dsLPWAMWWCwPh5j-1gSCGn20om6jyGw9qgJHmQaAcgC8MmR7IMthm5m4W2M7zj7wOIj4pGn32o23hXrnE8VHBG1O4","stattrak":true,"normal_prices":[29174,22329,0,0,0],"normal_volume":[354,33,0,0,0],"stattrak_prices":[36965,27216,0,0,0],"stattrak_volume":[86,2,0,0,0]},"231":{"index":231,"max":0.2,"min":0,"rarity":5,"name":"Cobalt Disruption","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RbKB9IeSXC2mDxNFmteBqQCq4qhEutDWR1I36c3OVbFQjDcRwR7EO4EW-x4HvMumzswfWjd8XnCn2iShM53s5t-0cEf1ycu8KccY","stattrak":true,"normal_prices":[13798,8438,9302,0,0],"normal_volume":[752,251,41,0,0],"stattrak_prices":[19136,15388,15690,0,0],"stattrak_volume":[205,74,17,0,0]},"232":{"index":232,"max":0.8,"min":0.06,"rarity":4,"name":"Crimson Web","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRf6FvM8-XD3WbxPxJvOhuRz39wEUh5W3Rytyscy7FPAYgWJJzRe4MtUW8loKyZOm3sQzb34lEzyX32zQJsHig-EWd2A","stattrak":true,"normal_prices":[23408,3402,1055,1140,1288],"normal_volume":[110,527,667,39,79],"stattrak_prices":[42386,6858,1863,2158,1957],"stattrak_volume":[52,178,309,22,27]},"237":{"index":237,"max":0.5,"min":0,"rarity":3,"name":"Urban Rubble","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRfqV_KfOSA2iv1Px0se9WQyC0nQlp52nWmduhIn-QaQIpX5RyF-ZY5BS4l9TjZOPmsleN34wWnir73yJI7zErvbj27zddPg","souvenir":true,"normal_prices":[99,27,17,26,33],"normal_volume":[996,475,462,101,28]},"273":{"index":273,"max":0.8,"min":0,"rarity":4,"name":"Heirloom","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbapqMvGFC2Ovxet3t-1scCW6khUz_W3czNegeXueO1N2WZIkE-RY4EGxlNSxZLnn5gfai4oTniSoiStA6y91o7FVItTkIhw","stattrak":true,"normal_prices":[11970,1209,628,1039,625],"normal_volume":[65,214,178,22,89],"stattrak_prices":[7208,2389,1440,1746,1593],"stattrak_volume":[41,77,98,2,17]},"296":{"index":296,"max":0.18,"min":0,"rarity":3,"name":"Meteorite","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Ra7Z0M-SSAmuZ2-tyj-VoXSKMmRQguynLyN-qIH3Daw4mCZR3EeBbsUO-l4a2Prvm7gzWg4MXnymq2H8Yui9usfFCD_RyA7Mmlw","normal_prices":[148,104,100,0,0],"normal_volume":[1785,544,157,0,0]},"328":{"index":328,"max":0.7,"min":0.01,"rarity":4,"name":"Hand Cannon","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORYKVjJPOSAGmfz9F6ueZhW2eww0t-6mrUn977cinDZ1IgD8YiTeUIthjpk9zkYem04wTXj4oRnCv7kGoXuTIzWSlA","souvenir":true,"normal_prices":[52362,46388,45645,51000,47000],"normal_volume":[77,5,8,1,3]},"347":{"index":347,"max":1,"min":0,"rarity":4,"name":"Pilot","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uOReK1hL-SsCmKRxuJzj-1gSCGn2x8jtWncyIupJH2TPwYlCJZyF-Rct0XplNfiYuy2tAeIiItEz36ointXrnE8Ks-4_Fs","normal_prices":[21736,12027,10033,9701,7781],"normal_volume":[66,40,51,19,3]},"351":{"index":351,"max":0.3,"min":0,"rarity":5,"name":"Conspiracy","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ_yWMWaF0-tjo95lRi67gVMk4WTSm9moI3-QPVBxDJByQOJe40O6k4fnM-zgsQXci4gUyH3_3CMa8G81tJHuULJI","stattrak":true,"normal_prices":[1830,1654,1740,0,0],"normal_volume":[2075,1516,196,0,0],"stattrak_prices":[2614,1961,1931,0,0],"stattrak_volume":[549,367,72,0,0]},"37":{"index":37,"max":0.08,"min":0,"rarity":4,"name":"Blaze","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7vORbqhsLfWAMWuZxuZi_uI_TX6wxxkjsGXXnImsJ37COlUoWcByEOMOtxa5kdXmNu3htVPZjN1bjXKpkHLRfQU","normal_prices":[64305,76997,0,0,0],"normal_volume":[899,28,0,0,0]},"397":{"index":397,"max":1,"min":0,"rarity":4,"name":"Naga","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKFsJ_yWMWmRxu9JvOhuRz39zEx06jjWm4n8Ii6WPFQhA5YjE7MJskPrwdTuZb7htlHbg9oTzCn2hjQJsHhQd9ynBw","stattrak":true,"normal_prices":[3283,383,198,189,208],"normal_volume":[155,266,325,115,76],"stattrak_prices":[2205,651,404,398,408],"stattrak_volume":[91,154,223,88,89]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":2,"name":"Night","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk_P2RZq1qKOSsAm6Xyfo4seVrHHjmzRhz42XUm4mgIC6TaQYkXpMjTLIIsRawl9HhYbzktFPfgpUFk3u310nzMg","normal_prices":[8350,1667,1143,1289,1196],"normal_volume":[92,488,184,28,34]},"425":{"index":425,"max":0.46,"min":0,"rarity":3,"name":"Bronze Deco","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RarZiLuqWMXSAwPx9vORWQyC0nQlp4zzdydqtJXuTOgZzW5F4QbNZ4UK7l9e1N-Pq5AeNj9hHmH783S9J6zErvbgcMfnnyA","stattrak":true,"normal_prices":[70,28,18,19,48],"normal_volume":[2152,354,1605,48,29],"stattrak_prices":[167,85,46,65,273],"stattrak_volume":[878,620,738,72,76]},"468":{"index":468,"max":0.75,"min":0,"rarity":2,"name":"Midnight Storm","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6FsM-ScHGqvzedxuPUnGXC3kR904myGyd79eXmUZwYlDsNyQe4JtkWxx9LgYuPrsVaNg99HzDK-0H3GwZY3mA","normal_prices":[16853,2661,1748,1897,1913],"normal_volume":[325,274,156,32,31]},"469":{"index":469,"max":0.75,"min":0,"rarity":4,"name":"Sunset Storm 壱","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6FsM-ScHGqvw-J5v-VWQyC0nQlp52nQn434cC7EblUmCpQmFONYtxCwxIW0Zrvk4ASIiI8UxHn82ika7zErvbhCT1u8fA","normal_prices":[57478,56053,58558,88079,94490],"normal_volume":[85,6,4,1,1]},"470":{"index":470,"max":0.75,"min":0,"rarity":4,"name":"Sunset Storm 弐","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6FsM-ScHGqv0uZ5uu5WQyC0nQlp4DiDyov6JH7FZgAmX5N5F-RZ5hntw9HlNuPkswLa2d1NzCv63S0cvTErvbieIVxaew","normal_prices":[54598,51209,52528,51626,60654],"normal_volume":[71,7,2,1,3]},"509":{"index":509,"max":0.44,"min":0,"rarity":3,"name":"Corinthian","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKFsJ_yWMWSf0-d4pOlgTieMmRQguynLzNz4Iy2ebgUmDZB4QeEDskO5ktWzMrjm7wPd2IlGmCr_3XxBuClr4PFCD_To4zX47g","stattrak":true,"normal_prices":[110,52,37,49,0],"normal_volume":[1002,499,751,77,0],"stattrak_prices":[322,185,148,270,0],"stattrak_volume":[383,259,564,67,0]},"527":{"index":527,"max":0.76,"min":0,"rarity":5,"name":"Kumicho Dragon","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKF-JeKHC2aXzetJu_RkRiq7mhk1sjqKlLD1KCzPKhh0CcBwQLVe5BHrloKyZOnr5w3XiYhDnC39iCpK7X1psrlUWaFw8qXekUifZlV_fDVZ","stattrak":true,"normal_prices":[7093,2737,1932,2163,1997],"normal_volume":[259,375,462,29,101],"stattrak_prices":[11351,6286,3581,5216,3763],"stattrak_volume":[91,129,107,11,32]},"603":{"index":603,"max":1,"min":0.06,"rarity":4,"name":"Directive","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKF-JeKHMWKRxuJzj-JmQTqnlB8rtgKJk4jxNWXGPQ9yA8Z0R7FbtBi7w9S2M7_msgCIid1CmH6viH5I7ilr4-oEUKst5OSJ2LTZlHwR","stattrak":true,"normal_prices":[8843,436,105,88,88],"normal_volume":[59,445,923,281,429],"stattrak_prices":[5890,741,231,205,227],"stattrak_volume":[27,103,319,140,183]},"61":{"index":61,"max":0.08,"min":0,"rarity":5,"name":"Hypnotic","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7vORfqF_NPmUAVicyOl-pK9qSyyywxgjtmnVytyocnLGPA4iWcYmRLYIu0S-xtbuMLjg51DXjoJC02yg2VjGnh4J","stattrak":true,"normal_prices":[22492,23666,0,0,0],"normal_volume":[273,10,0,0,0],"stattrak_prices":[18152,25200,0,0,0],"stattrak_volume":[101,3,0,0,0]},"645":{"index":645,"max":0.5,"min":0,"rarity":3,"name":"Oxide Blaze","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKF-JeKHMWKRxuJzj-JmXTu8kRgpjDGMnYftb32UPwJxDJokRuUIsRi_lNPhM7izsgXZi49GySiq2nxNuCdttbtUB_A7uvqAjSk2l_c","stattrak":true,"normal_prices":[98,52,37,41,44],"normal_volume":[1396,1136,1351,84,84],"stattrak_prices":[246,149,81,113,116],"stattrak_volume":[644,385,626,65,49]},"711":{"index":711,"max":1,"min":0,"rarity":6,"name":"Code Red","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWaXxvxzo_JmXRa_nBovp3PRmNj4c3mTb1RxC5cjF-EItRnrlNzkYrnk5gaI3Y0UmyX52H9K7ixs_a9cBsGEcOCn","stattrak":true,"normal_prices":[18408,4715,4073,3972,3824],"normal_volume":[129,460,599,120,71],"stattrak_prices":[19448,9914,6083,5745,5802],"stattrak_volume":[66,97,117,39,27]},"757":{"index":757,"max":0.5,"min":0,"rarity":4,"name":"Emerald Jörmungandr","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RYqt_Lc-UHGKVz9F6ueZhW2fqzB51sGiGzNqrJXqWbAYmCpJ0RuYDshm_xNPmZuy07wDY3YwXni6okGoXuekvMmaE","normal_prices":[66743,57853,53559,86250,89000],"normal_volume":[222,41,16,1,2]},"764":{"index":764,"max":0.8,"min":0,"rarity":5,"name":"Fennec Fox","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWGVz-Bzs95lRi67gVN14GvRyt77cnKfagRyXsMiTeUNtRO5kYWyYr7i4lfZgoIUzX722CpO8G81tMpbNfMB","souvenir":true,"normal_prices":[56086,30554,23618,38881,30140],"normal_volume":[190,121,56,6,13]},"805":{"index":805,"max":0.6,"min":0,"rarity":5,"name":"Mecha Industries","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWqVwuZ3j-1gSCGn20h042vSyY2tdyjCZwIlXJBxQeNe4EWxxoHkMOq0sQGIid5Fnyr42HtXrnE8p4gbgvE","stattrak":true,"normal_prices":[1283,736,553,563,528],"normal_volume":[1124,1362,1482,128,158],"stattrak_prices":[2675,1630,1412,1467,1546],"stattrak_volume":[380,371,342,20,37]},"841":{"index":841,"max":0.9,"min":0,"rarity":4,"name":"Light Rail","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWKIztF6ueZhW2fhlhlw6m-GnNyvIiiXOwQoDMR2QbZe5hi5k9KxN-vhtFbciN1FnyqskGoXuU4JtHUo","stattrak":true,"normal_prices":[1145,228,99,101,101],"normal_volume":[435,705,1354,270,360],"stattrak_prices":[1633,694,350,353,338],"stattrak_volume":[147,192,368,93,130]},"90":{"index":90,"max":0.8,"min":0.06,"rarity":2,"name":"Mudder","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRZat5NPyWCliDwOByj-1gSCGn20gj4WrVyNiuJ3OfPVAjCpEmE7MKuxbqmtDmPuu0slDW3Y5GyS-tintXrnE8PKHjtHI","souvenir":true,"normal_prices":[1994,20,3,6,8],"normal_volume":[102,177,489,173,116]},"938":{"index":938,"max":0.75,"min":0,"rarity":5,"name":"Starcade","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRb6hkNOSWHFiUxO9xvORWQyC0nQlpsD_SnN79JX2WbQ8pXMNwRO5ZsRK8lt21Nb7r4wPXgtgWmCz7hylJ6jErvbgNUrm8Kg","normal_prices":[24238,9596,5019,4839,4228],"normal_volume":[289,335,324,45,59]},"945":{"index":945,"max":1,"min":0,"rarity":3,"name":"Blue Ply","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ_yWMXWV0eJ_s-BWQyC0nQlpsjzdwtqgIHqfZgAgDZBwROBbtRDsm4HiM7zislfYitpBniz6iy5K7DErvbjLUTqBnA","stattrak":true,"normal_prices":[360,59,32,23,22],"normal_volume":[539,712,1549,459,484],"stattrak_prices":[645,171,83,71,70],"stattrak_volume":[161,405,509,230,185]},"962":{"index":962,"max":0.8,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ8-DHG6e1f1iouRoQha_nBovp3OGmdeqInyVP1V0XsYlRbEI50a5wNyzZr605AyI3t5MmCSohylAuC89_a9cBoMY9UkV","stattrak":true,"normal_prices":[7652,4471,3493,3513,3371],"normal_volume":[1348,3468,5158,120,373],"stattrak_prices":[15329,8898,6116,6777,5859],"stattrak_volume":[361,559,586,37,79]},"992":{"index":992,"max":0.3,"min":0,"rarity":2,"name":"The Bronze","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RZrFgIvWBHViS0-F4quRWQyC0nQlp4muHzt78cXqXbQInCZFzTbEO4xS4lYKzMOnqtQTf3osQm36v3SJMujErvbh3QIzNUw","normal_prices":[2025,325,337,0,0],"normal_volume":[225,365,111,0,0]}}},"10":{"name":"FAMAS","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1053":{"index":1053,"max":0.4,"min":0,"rarity":5,"name":"Meltdown","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2gfadhJfGBMXeR1fpzou89cC-ymBw0jDGMnYftb3rDPQMhXppwRudet0O4xNLhMu7r7leMiY9Cmy34i39L7C9ssucBAvA7uvqAFyvbTO4","normal_prices":[17386,3716,2940,4889,0],"normal_volume":[108,105,91,5,0]},"1066":{"index":1066,"max":0.5,"min":0,"rarity":1,"name":"Faulty Wiring","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a7s25YbZkLvesF2KczeFhj-1gSCGn20lw5GuBwov8InnFOgdyCMByROUNtRe9ltzuZenrtQTdi95Cmy73jHlXrnE8IJYzfbc","souvenir":true,"normal_prices":[792,133,120,141,111],"normal_volume":[250,186,60,65,25]},"1092":{"index":1092,"max":1,"min":0,"rarity":4,"name":"ZX Spectron","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-AHmKT1fx5vt5lRi67gVNxsDvTyNyueHOeaVVzCcN1EbVZtRK5k4LkNOnj4wbe2tlMxH_-jyNN8G81tGqq3pxL","stattrak":true,"normal_prices":[2828,582,298,248,261],"normal_volume":[249,276,392,65,145],"stattrak_prices":[3156,1075,574,513,456],"stattrak_volume":[53,91,98,33,40]},"1127":{"index":1127,"max":1,"min":0,"rarity":5,"name":"Rapid Eye Movement","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-BD3eZxdFzqeR6cCW6khUz_WjRmN79JXmePABxDsB1QeZetxnqx9XhN-nk4A3f399CzX2qiCsa7yd1o7FVINiMH98","stattrak":true,"normal_prices":[2045,615,527,499,491],"normal_volume":[378,904,2097,772,413],"stattrak_prices":[1768,649,516,501,496],"stattrak_volume":[56,213,249,118,97]},"1146":{"index":1146,"max":1,"min":0,"rarity":3,"name":"Meow 36","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-QAXWA_uNzv_ZWQyC0nQlp6jvVztaudCnEbAUgDsckFOAJsBLtlN2yP7zqslGMiooXyCX43H8Y5zErvbiVlZtU7g","stattrak":true,"normal_prices":[143,16,6,5,5],"normal_volume":[525,410,416,171,104],"stattrak_prices":[151,26,8,7,8],"stattrak_volume":[161,203,489,264,252]},"1184":{"index":1184,"max":1,"min":0,"rarity":6,"name":"Bad Trip","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1d7v-ve5tvIfSHHG6A_uJ_t-l9AX6xzExytWndzdj6eCrGb1MkWZB2TOBc4xK8mtHkZezrsQOPjoITyi_gznQezHhrR0c","stattrak":true,"normal_prices":[7373,4663,4302,4205,4073],"normal_volume":[252,265,549,174,123],"stattrak_prices":[8537,4721,3967,3920,3973],"stattrak_volume":[78,82,64,34,21]},"1202":{"index":1202,"max":0.86,"min":0,"rarity":3,"name":"2A2F","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M26eqVkLs-QD3Wvx-97sfJWQyC0nQlptWiEnt6odXLCagcgDpB2QO4PsBmxkoHvPu7ktlff399Cmy7_jyMa5jErvbgLXw1DVg","souvenir":true,"normal_prices":[815,113,24,25,16],"normal_volume":[691,951,1569,37,286]},"1219":{"index":1219,"max":0.7,"min":0,"rarity":3,"name":"Yeti Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4PeRaqh4Jc-VD2qR0tF6ueZhW2fjk01x5jiBytqveXiWOFcnDJMmQeMLskPrmoCzYrzn7wPd3d1Fnyv8kGoXufV393rw","normal_prices":[213,91,25,22,16],"normal_volume":[1262,994,828,61,78]},"1241":{"index":1241,"max":0.7,"min":0,"rarity":5,"name":"Waters of Nephthys","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-bAWuf_uF1teBncCW6khUz_W3WmYv_JSmSZgZ0WJRwEeRbtUS5kIKyZejmsQHciN5AxHj8intK6il1o7FV74niokA","souvenir":true,"normal_prices":[20367,9167,5321,6746,4812],"normal_volume":[154,171,190,16,26]},"1302":{"index":1302,"max":0.75,"min":0,"rarity":1,"name":"Palm","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I__2ReKVhLc-fB2CY1aB06LgwSX_qkx914G7UyI2hI3KfaQYhWMRzRbMMshS8wYLkZenk51bdlcsbmgtj5aMJ","normal_prices":[8,1,1,1,1],"normal_volume":[403,200,291,109,241]},"1321":{"index":1321,"max":0.637288,"min":0,"rarity":2,"name":"Grey Ghost","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4P2RbqVgIeOsCXWV2NFxuO56Wxa_nBovp3PXy9j6dX-fOFUoDZB4Q7IIsBTtwNHjN77jtVfdiY1ByyStiigcun0-_a9cBi0W6vWE","normal_prices":[18,6,2,2,2],"normal_volume":[706,654,387,54,63]},"1365":{"index":1365,"max":0.6,"min":0,"rarity":2,"name":"Vendetta","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4PeRarNSIvySHXOvzedxuPUnSS-3wEx362jWw9eodnLGaFMhCZUlQO5etBe_k9XlNuvkslDcg91FxDK-0H3uRMe02w","normal_prices":[19,4,1,2,2],"normal_volume":[417,448,265,44,81]},"1393":{"index":1393,"max":0.55,"min":0,"rarity":1,"name":"Byproduct","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9veRbq1_JeecHGyv0e9is-lsXBa1lBAmoAKJk4jxNWWUaVN2DsB5Re4D4BLuxoDvP-PmsQffioJFnnqv3y1A7C9r5-tUUPd35OSJ2E5Oe0pX","normal_prices":[3,1,1,1,1],"normal_volume":[656,303,528,29,66]},"154":{"index":154,"max":0.4,"min":0.02,"rarity":5,"name":"Afterimage","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2seqtmJf6sHmaEydFwsexoXBa_nBovp3PQn46ucH_COwcoCMchTe4CshG7loG2NrmztFTajoIXyiitiCpLvSk6_a9cBkMHi1qM","stattrak":true,"normal_prices":[7802,3062,3350,3424,0],"normal_volume":[30,63,34,7,0],"stattrak_prices":[5651,2735,2418,3029,0],"stattrak_volume":[32,17,15,2,0]},"178":{"index":178,"max":0.22,"min":0.08,"rarity":3,"name":"Doomkitty","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s2qZ6tgK_mHGn6vzedxuPUnTHrmxk1x6jmBmdb4Jy6QZw8jW8RwR-9esUHsltXnNu3n5VPXiY5AzTK-0H2q4sGvpw","stattrak":true,"normal_prices":[0,2036,1249,0,0],"normal_volume":[0,98,19,0,0],"stattrak_prices":[0,323,383,0,0],"stattrak_volume":[0,113,21,0,0]},"194":{"index":194,"max":0.8,"min":0.06,"rarity":4,"name":"Spitfire","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_829eK15JvmBC1iWwON3o95rXSilmiIrujqNjsGhI3ueZwJ1CMZ5ROYLthjqm9TuMeq2tgXWiYlDmy_733wd6S5isOcKT-N7rQ0Sk12j","normal_prices":[35721,8841,2241,2634,2168],"normal_volume":[14,22,76,10,5]},"218":{"index":218,"max":0.4,"min":0,"rarity":3,"name":"Hexane","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s2sZLFoKPWLMWuZxuZi_udoFn-2wBh04GXXnIr6dS2RbwUnDZNxQ-8D50OwkdK1ZOzi41OPiI9bjXKpn0lbjaM","stattrak":true,"normal_prices":[1940,350,294,361,0],"normal_volume":[181,83,60,27,0],"stattrak_prices":[692,512,359,429,0],"stattrak_volume":[77,83,54,8,0]},"22":{"index":22,"max":0.8,"min":0.06,"rarity":1,"name":"Contrast Spray","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_829eLZsOc-fB2CY1aByseI-THiwxU1-4j7dnI74eHOUaQciC8d4ReEC4RLpwNXmYrjh4wfflcsbmhid3JyN","normal_prices":[10325,2086,802,1313,608],"normal_volume":[4,21,32,4,6]},"240":{"index":240,"max":0.6,"min":0,"rarity":2,"name":"CaliCamo","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s24abZkI_GeAViUxP1zovVWQyC0nQlp4WXRn9qqI3uVblQgApJzELVb5BHqlYC1MePr71TXi91AzCz33S9KujErvbjpBPXbmw","souvenir":true,"normal_prices":[483,85,36,74,132],"normal_volume":[169,90,182,40,21]},"244":{"index":244,"max":0.6,"min":0,"rarity":3,"name":"Teardown","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82jbbdlH_icGliRz-pJs-5lSxa_nBovp3PQw9r9cXuQZwMjXMF0E7YN4ES9loflPu_htQTX3otGyS3_iCNP6ixq_a9cBmFkCHH9","souvenir":true,"normal_prices":[141,24,12,14,12],"normal_volume":[488,269,1008,87,171]},"260":{"index":260,"max":0.4,"min":0,"rarity":4,"name":"Pulse","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-DG2uDxNF6ueZhW2flxBlxtm_WntqhJyiSbw90CpJyR-8DtRm6kdHkYuLj4QzY2INCzX-skGoXudLVHKnn","stattrak":true,"normal_prices":[3174,1116,1055,1294,0],"normal_volume":[241,138,49,16,0],"stattrak_prices":[2079,1452,1318,2250,0],"stattrak_volume":[186,131,62,4,0]},"288":{"index":288,"max":1,"min":0.1,"rarity":4,"name":"Sergeant","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4c2oaalsM8-ACXOvzedxuPUnF3HmkBx_tjnSmNmrJHiROFN1W8NxFrFZsxbrk4e0Yuvr5wWLi4JAyjK-0H3maOk52Q","stattrak":true,"normal_prices":[0,2226,242,230,172],"normal_volume":[0,99,247,31,97],"stattrak_prices":[0,2691,533,435,336],"stattrak_volume":[0,28,159,23,76]},"371":{"index":371,"max":0.6,"min":0,"rarity":4,"name":"Styx","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2gfadhJfGBMXSb1OJ6o7NWSSi-lA4YvzSCkpu3dnvGPQAkCsMkRLQL5hW6ktC1Pu_h7lHWjY5Fznr-inkY6SxpsO5XAr1lpPPtc2FJkw","souvenir":true,"normal_prices":[11449,2320,1188,1460,1504],"normal_volume":[173,141,146,19,24]},"429":{"index":429,"max":1,"min":0,"rarity":5,"name":"Djinn","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a_s2oaalsM8-ZB2me_uJ_t-l9AXzhwxt-5TiAzdmgd3yeaQ50DZRxEe5b4BXrm4HkPr7kslfcg9pCznjgznQepOOy8CM","stattrak":true,"normal_prices":[6024,1145,1082,1099,1081],"normal_volume":[91,192,258,62,60],"stattrak_prices":[4630,1934,1117,1064,1163],"stattrak_volume":[20,35,69,18,27]},"461":{"index":461,"max":1,"min":0,"rarity":2,"name":"Half Sleeve","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2paaloIuKWCliWwON3o95lRi67gVN35TyBy42pcS6ROAUkWJJ3FOMK50TswNzjPuPh71fYjYoWmX_33CtB8G81tAX5qatv","normal_prices":[155,13,3,3,3],"normal_volume":[1063,1410,255,130,135]},"47":{"index":47,"max":0.8,"min":0.06,"rarity":1,"name":"Colony","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4M29eKVuJc-eD3WZz-tJvOhuRz39xExw5GXTw4qod3uUaQ91ApZ3QbMItxDrxtK2ZbuxtAaLg4hDxS76hjQJsHgze9LmZw","souvenir":true,"normal_prices":[405,5,1,2,2],"normal_volume":[102,220,663,1128,2094]},"477":{"index":477,"max":0.6,"min":0,"rarity":4,"name":"Neural Net","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2oaalsM8-XAXOD_uJ_t-l9AX_lzB8ltmXcnoqvInjEPQEoC5AjELRY4Rm_lIDmM7zlsQ2L3YsQxHngznQe8yNao04","stattrak":true,"normal_prices":[1041,172,98,150,98],"normal_volume":[200,228,150,14,42],"stattrak_prices":[682,324,229,316,231],"stattrak_volume":[92,89,94,11,25]},"492":{"index":492,"max":0.6,"min":0,"rarity":3,"name":"Survivor Z","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-fC2mEwNF6ueZhW2exlE8hsTzcw4n4JC7BOAQpCscmRrRe5xW7w9TgNu7itAHWiYpAziqokGoXuXR1eqm1","stattrak":true,"normal_prices":[2637,81,32,38,27],"normal_volume":[94,134,171,35,55],"stattrak_prices":[315,144,62,126,70],"stattrak_volume":[122,100,172,21,41]},"529":{"index":529,"max":0.8,"min":0,"rarity":4,"name":"Valence","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a_s2oaalsM8-QAWmEzvtkj-1gSCGn2x4ksWzczo39c3_Ga1R1CpByR-YO4RXqm9fgP76w4lbYi91CzSyq2H5XrnE8rQqckvg","stattrak":true,"normal_prices":[2413,586,348,395,283],"normal_volume":[207,323,252,40,16],"stattrak_prices":[2860,1154,621,796,591],"stattrak_volume":[65,84,80,23,24]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":3,"name":"Dark Water","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s20baZ_Ic-XD3Wb_uJ_t-l9ASywkUsmsjzdmdiqIiqXaQ4oDJF0RuNZukO-ltflNu_mslffg9gTnC3gznQeYZiQwTg","souvenir":true,"normal_prices":[0,2705,946,0,0],"normal_volume":[0,25,45,0,0]},"604":{"index":604,"max":1,"min":0,"rarity":6,"name":"Roll Cage","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-BD2uc2NF6ueZhW2exzUhz4WjWmNqpdy-UbwJxDJtxReEMtRGwloflP7m04wfXi94QyXj9kGoXuV3JhaXD","stattrak":true,"normal_prices":[14702,9918,9472,9117,8964],"normal_volume":[110,261,354,90,100],"stattrak_prices":[17721,9429,8924,9006,9084],"stattrak_volume":[29,59,108,36,38]},"626":{"index":626,"max":0.5,"min":0,"rarity":5,"name":"Mecha Industries","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-eC2SYwNF6ueZhW2ewwx4hsm3dz46heSjCPVUjC8chEOYMtxOwkNHiYb63swXY3Y9Nn32skGoXuc3DGOrc","stattrak":true,"normal_prices":[11309,3244,2682,2808,3140],"normal_volume":[258,784,574,50,34],"stattrak_prices":[4017,2566,2000,2339,1982],"stattrak_volume":[122,131,115,6,13]},"659":{"index":659,"max":0.6,"min":0,"rarity":3,"name":"Macabre","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82oaalsM8-eD2SRw_xzj-1gSCGn2xkm5myEzo2sdXPBagInW5pxTLICshnswdOxNrzj71fc2d5CzC76iSJXrnE8xi9ndzw","stattrak":true,"normal_prices":[1984,764,568,499,444],"normal_volume":[57,74,40,37,5],"stattrak_prices":[869,572,504,473,469],"stattrak_volume":[29,11,27,9,6]},"723":{"index":723,"max":0.7,"min":0,"rarity":5,"name":"Eye of Athena","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-cGWuvzvx3vuZscCW6khUz_WzUnNb6eXjCbFV2WcAlTO5ct0G-xIfgZe63tADb34wTzX2qjXlO6Xx1o7FV19iwjVc","stattrak":true,"normal_prices":[3947,771,482,488,454],"normal_volume":[145,173,289,21,53],"stattrak_prices":[4038,1743,959,1064,1072],"stattrak_volume":[57,73,116,1,7]},"835":{"index":835,"max":0.55,"min":0,"rarity":3,"name":"Crypsis","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82oaalsM8-UBmiD1dF_vvJsTD2gqhEutDWR1IyudXKSOFIkC8QhTbEK5kK8x9C2NOK3slbYg48Rnyr_hixI6i85sr0cEf1yzP52oWI","stattrak":true,"normal_prices":[307,25,25,22,19],"normal_volume":[301,117,368,25,36],"stattrak_prices":[151,82,28,57,34],"stattrak_volume":[111,64,143,40,4]},"863":{"index":863,"max":0.55,"min":0,"rarity":1,"name":"Night Borre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82lZqt5M8-RAnKV_uJ_t-l9AXHrxEV-sT-Ez9j7eHuVPQQgXpIhEOQPtxa_wd3gZbnm4QHXi49FxCXgznQeEWoLaGo","normal_prices":[1856,1099,1023,1100,949],"normal_volume":[161,66,81,9,9]},"869":{"index":869,"max":0.6,"min":0,"rarity":3,"name":"Sundown","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82-aahgH-OGAHSV1dF6ueZhW2frzEQhsWrRzNqoIHjCbgR1C5ZxRuIPsUO9l9XiYrnh7lPdj90Uni__kGoXuWBgr_h1","normal_prices":[12093,9862,7617,7965,8000],"normal_volume":[43,21,25,1,4]},"882":{"index":882,"max":0.5,"min":0,"rarity":2,"name":"Halftone Wash","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T-829eKhsM_isCGadwP1JvOhuRz39wxt14WuBy9qpJX-TPFdyDJFxRLRc5BK-wIXlNu3htleP3Y5Bynmt3zQJsHgxqrWZvw","normal_prices":[111,40,16,19,17],"normal_volume":[568,326,420,65,86]},"904":{"index":904,"max":1,"min":0,"rarity":3,"name":"Decommissioned","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-dG2yV_vpzvvJgQCeMmRQguynLnouqJC-VbwciD5J3QORYshftkIXlPuzrtlCP2NlCySmvin9B7Xo_5_FCD_RaCEWnyQ","stattrak":true,"normal_prices":[1037,39,33,25,25],"normal_volume":[195,91,67,94,64],"stattrak_prices":[368,86,35,32,32],"stattrak_volume":[85,195,79,62,48]},"919":{"index":919,"max":0.5,"min":0,"rarity":6,"name":"Commemoration","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-fC2CRwvdJt-5lSxa_nBovp3PUztn4d3qSPQ8kDMR5ROVb4xCxw9a0NLni4lCIio4QzXn32yMb6Sds_a9cBr1TwPEt","stattrak":true,"normal_prices":[5289,3042,3074,3582,3632],"normal_volume":[415,270,244,28,10],"stattrak_prices":[6281,4650,3927,4337,4808],"stattrak_volume":[86,80,65,5,7]},"92":{"index":92,"max":0.8,"min":0.06,"rarity":2,"name":"Cyanospatter","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s28baFrH_yaCW-Ej7olsbNsG3rmzEoj5m6Hz9atJC2WOg8iDJchR7JeuhfuwIbnZO3k4FHAy9USioZeSPo","souvenir":true,"normal_prices":[3177,21,3,4,2],"normal_volume":[48,61,302,38,94]},"999":{"index":999,"max":0.55,"min":0,"rarity":4,"name":"Prime Conspiracy","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2gfalvJeKAMWqRxut4pOBWQyC0nQlp5m7Tmd39cSmSZwUlDZJwTLFZsUW5kIKyNbji71aLj4pDxX38h3wfuDErvbhergaiXw","normal_prices":[10671,8534,9657,10984,11360],"normal_volume":[61,29,36,1,2]}}},"11":{"name":"G3SG1","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1034":{"index":1034,"max":0.76,"min":0,"rarity":2,"name":"Ancient Ritual","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1a4s2vZqdkJf6HMXCZz-tJvOhuRz39zE5ysWjSyterJX-VZ1UgX8EhTeVf5EOxlN3jYemwsw3WjtgQzi7-2zQJsHjSk9PLGw","souvenir":true,"normal_prices":[643,309,202,210,212],"normal_volume":[70,40,84,13,37]},"1095":{"index":1095,"max":0.7,"min":0,"rarity":3,"name":"Keeping Tabs","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-HD2SEyO13vOxoXxa_nBovp3OHzouqcHqRZwBxDcd2EOUDskXtl4DmYevi4FGLg4tDz3n4iylB6Xw9_a9cBgS1m-61","stattrak":true,"normal_prices":[436,162,57,58,50],"normal_volume":[74,72,125,34,32],"stattrak_prices":[425,239,99,130,79],"stattrak_volume":[45,41,76,36,17]},"1129":{"index":1129,"max":1,"min":0,"rarity":4,"name":"Dream Glade","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-UAmaUxNF6ueZhW2e3wkl162TVmdqvd3mUPw9yDJZ4FOYJ4UKxkNfiNrvn4QCMjdlHmHj6kGoXub9gXKkW","stattrak":true,"normal_prices":[370,71,49,48,46],"normal_volume":[365,950,1274,914,594],"stattrak_prices":[361,78,48,45,48],"stattrak_volume":[144,244,443,124,182]},"1305":{"index":1305,"max":0.65,"min":0,"rarity":1,"name":"Green Cell","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82lYKVmKc-QD2qf_uJ_t-l9AXi3whgm4WjczNageHzCZgRyDcchRu8Ls0W5l922N7jhsgyMjYpAzS7gznQe2xurqq8","normal_prices":[3,1,1,2,1],"normal_volume":[633,259,460,72,304]},"1328":{"index":1328,"max":0.637288,"min":0,"rarity":1,"name":"Red Jasper","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I4P2Rb_d-J6GsGmidwPp5j-1gSCGn20Ql62_Tztz8dymWPwYoXpYjQ-8Ds0TpmoHnYbzh51aKjYhBzXn23CpXrnE8L3fMNjQ","normal_prices":[3,1,1,1,2],"normal_volume":[595,468,565,96,126]},"147":{"index":147,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle Dashed","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_826abRoH-ObAXWE_uRjvuZlSha_nBovp3PRz92tJSrFOw4oAsYmFucLsxaxkdfiNejj5gPX349BmXmqhnlPun5i_a9cBim8k1Zw","souvenir":true,"normal_prices":[144,4,1,1,1],"normal_volume":[41,558,395,37,73]},"195":{"index":195,"max":0.8,"min":0.06,"rarity":3,"name":"Demeter","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2sZLFoMP-fF2Cfz9F0ouB_QBa_nBovp3OEnoz4cHnFZgMnD5R5TeQP40Swx4XgNLm34g3ei49FxC2qiXgbuy9t_a9cBh-mV6Cr","stattrak":true,"normal_prices":[2553,594,480,515,324],"normal_volume":[15,30,70,7,16],"stattrak_prices":[4163,687,624,537,655],"stattrak_volume":[5,23,38,6,12]},"229":{"index":229,"max":0.28,"min":0,"rarity":3,"name":"Azure Zebra","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_820baZ_IfOSA1iSzftzj-1gSCGn20tz6jjXnN-pJSiUOAIlD5FyR-FYuhbtwdSyMb_l4VPajI1FyCSo2iJXrnE87owZcUA","stattrak":true,"normal_prices":[445,285,259,0,0],"normal_volume":[181,56,21,0,0],"stattrak_prices":[385,307,340,0,0],"stattrak_volume":[108,68,23,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":2,"name":"VariCamo","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s24abZkI_GeAVicyOl-pK9qTn7gwUlwsWrVzd2sci3GZ1cnDpF0TeNe5kG9mt21Mrzq4VPYjdhA02yg2WVbe73u","souvenir":true,"normal_prices":[19,8,4,3,3],"normal_volume":[286,266,269,45,43]},"294":{"index":294,"max":0.3,"min":0,"rarity":2,"name":"Green Apple","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I4M2peqFoLs-fB2CY1aBzs7g4SXC2zRgjsWuBmdmtdiifagMhWZUlEeEP5BG9ktG2Pu-w4QSMlcsbmpnYc5LS","normal_prices":[23,8,7,0,0],"normal_volume":[625,421,135,0,0]},"382":{"index":382,"max":0.25,"min":0,"rarity":3,"name":"Murky","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1a4s2pO7dqcc-eG3Wb2NF6ueZhW2e2wE5y6juDy46uJ3qePVR1C5BzR7UO4xa9ldXlYuK07wSP2dlMzin6kGoXucw3wj8l","stattrak":true,"normal_prices":[291,73,69,0,0],"normal_volume":[109,108,37,0,0],"stattrak_prices":[187,139,139,0,0],"stattrak_volume":[92,38,1,0,0]},"438":{"index":438,"max":0.4,"min":0,"rarity":4,"name":"Chronos","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2tYLZiLv-AMWDD0uknj-1gSCGn20R1sG3dyt2qdyiWbwB2A8R0QeJcska6x9znNurrsgWNjooWxX37iyhXrnE8dtReaHc","normal_prices":[35805,42903,29712,500000,0],"normal_volume":[25,2,2,1,0]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I4M2-ZadSLPmUBnPelOwj47A4GCyywEgl52_TmNyuJH2XOgJzX5UlQeUCsBS9m9bhP-rq4Rue1dx74w5z0g","normal_prices":[6742,412,266,1322,857],"normal_volume":[10,15,25,2,1]},"465":{"index":465,"max":0.8,"min":0,"rarity":1,"name":"Orange Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2lYaliLv-sCm6RzOF4tPJWQDuymxoijDGMnYftby6RPwN1DZQmTbYL5kO9mt2zN-3j4wSKjdpDmy2tjCNN6ik45ewAAKs7uvqAyDUCDXE","normal_prices":[1267,1190,929,991,849],"normal_volume":[85,52,138,6,21]},"493":{"index":493,"max":0.9,"min":0,"rarity":5,"name":"Flux","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-VAnKI_v5jovFlSha_nBovp3ODz9uoc3vGOgMmApp3QrFe5xftm9bjNOm24Afb3YlBn3mqjS8dvy1p_a9cBmtTF-_C","stattrak":true,"normal_prices":[4212,1006,642,660,631],"normal_volume":[89,129,168,37,41],"stattrak_prices":[5486,2941,1779,1822,1825],"stattrak_volume":[33,50,52,15,16]},"511":{"index":511,"max":0.85,"min":0.14,"rarity":5,"name":"The Executioner","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-WFmKT1Pp_v-9sXRa_nBovp3PXmdyseC3DOFN1DJZ1TeIOtEKxmoG2PuKwsgOPgoxGzyr7jnhPvXlq_a9cBnGZIRC4","stattrak":true,"normal_prices":[0,5846,833,776,707],"normal_volume":[0,38,294,44,38],"stattrak_prices":[0,7345,731,660,767],"stattrak_volume":[0,1,64,13,18]},"545":{"index":545,"max":0.52,"min":0,"rarity":3,"name":"Orange Crash","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82pO7dqcc-eB2uZ1ed3v_NoQS62qhEutDWR1Iv_IC2eZgUkA5Z0RbEL5BLqw9flMby2swba34JBnHr22CMd5i1r67ocEf1y0mrzb0E","stattrak":true,"normal_prices":[72,26,29,21,24],"normal_volume":[225,99,54,36,24],"stattrak_prices":[88,45,23,33,27],"stattrak_volume":[102,101,123,40,6]},"6":{"index":6,"max":0.8,"min":0.06,"rarity":2,"name":"Arctic Camo","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2veqd5KfOsAm6Xyfo4s7BsFyyxzUlw5j6BmNn6In-QZw8pA8MiQuBYuha9mtLvZengtlGIjpUFk3s2Ceep5Q","normal_prices":[16890,5498,2657,2329,3318],"normal_volume":[8,7,3,3,6]},"606":{"index":606,"max":0.45,"min":0,"rarity":3,"name":"Ventilator","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-FC2mEyOJ3pO57cCW6khUz_W_Rwo36cC6SagZzDZZyQbMN5kTtwNC0Mb60sg3cjo8UnHn4j3hPuid1o7FVSaKTKS0","stattrak":true,"normal_prices":[67,22,22,21,0],"normal_volume":[257,117,62,26,0],"stattrak_prices":[78,32,15,22,0],"stattrak_volume":[103,66,100,29,0]},"628":{"index":628,"max":0.7,"min":0,"rarity":4,"name":"Stinger","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-FB3eV09Fvte1lQD6MmRQguynLyo6rdH-RPAZ0D8chQeIL50TukdK2P-_rtFPejN8WmH34jylJvHtq5fFCD_TvHmnxYA","stattrak":true,"normal_prices":[1062,514,293,239,259],"normal_volume":[210,165,185,2,44],"stattrak_prices":[466,216,124,166,165],"stattrak_volume":[86,72,58,16,16]},"677":{"index":677,"max":1,"min":0,"rarity":3,"name":"Hunter","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-QC3OdxNFkteV8Vxa_nBovp3Pdw9arJCrCP1N1DZFyR7EDskO4wd3mYr_ltVHa2oNNziWshn5Nunlp_a9cBi4_3bmx","stattrak":true,"normal_prices":[130,24,18,14,13],"normal_volume":[77,136,79,49,68],"stattrak_prices":[222,29,17,14,15],"stattrak_volume":[81,46,31,28,31]},"712":{"index":712,"max":0.7,"min":0,"rarity":4,"name":"High Seas","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-RG2STwOBztfNWQyC0nQlp4j7Syt-rdHPEOAIjCpV5TLQK40K5wdLjY-_r7wfeio1AySiriCIf6DErvbj1Mwus0A","stattrak":true,"normal_prices":[778,194,67,63,66],"normal_volume":[248,141,155,15,60],"stattrak_prices":[720,278,131,169,107],"stattrak_volume":[98,69,210,55,28]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82jbbdlH-SSAFicyOl-pK8-Tn3qwkgi5j7Wm9z7dy6fbFMoWcZ0RucOshK5l4DkZr_l5ACNgtpM02yg2YL7CXWd","souvenir":true,"normal_prices":[3209,329,261,312,314],"normal_volume":[11,18,34,2,41]},"739":{"index":739,"max":0.5,"min":0,"rarity":3,"name":"Violet Murano","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1a4s2jfbZsLv-sGG6fzetij-1gSCGn2050tmuDn9v8JXmXPwclD5txROII40G-l9S1Mb-04lGIit5Mm3qt2HtXrnE8WK3_Jks","normal_prices":[3581,3060,3190,3070,7212],"normal_volume":[62,18,12,3,3]},"74":{"index":74,"max":0.8,"min":0.06,"rarity":1,"name":"Polar Camo","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2veqd5KfOsDWie1fx3o_VWQyC0nQlp5D7Xn9n6cn2UP1IoCMF0ROYO4xnsldK1Nbnh5AGM2olDyy-siXwfuzErvbiZGyPTng","souvenir":true,"normal_prices":[103,5,1,2,1],"normal_volume":[64,348,469,303,90]},"8":{"index":8,"max":0.8,"min":0.06,"rarity":1,"name":"Desert Storm","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2qbbdoMuSsAm6Xyfo45bU5S3i1wR5w5DnUyt6tIyqVOAEkCccjQ7Nb4RbslYayPr7i4FGPjpUFk3uqKe2F9w","souvenir":true,"normal_prices":[74,3,1,1,1],"normal_volume":[126,53,877,162,293]},"806":{"index":806,"max":0.65,"min":0,"rarity":4,"name":"Scavenger","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-AD3GRxutJvOhuRz39xkl2tziGmNf9JX-WPQcpAsEiQOUNsBixx4bmN7nj5FHb3Y9Cyiz-hzQJsHglCU9Y5w","stattrak":true,"normal_prices":[160,58,44,59,46],"normal_volume":[177,120,181,140,18],"stattrak_prices":[219,115,86,92,81],"stattrak_volume":[70,242,172,40,60]},"891":{"index":891,"max":0.8,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-RAmaTyv13vuVWQyC0nQlp4miGytahcSiTZ1J0DZZ1ELYDskO7mtfjMujn5gbajYlGyS38jywY6jErvbjKP5Wfiw","stattrak":true,"normal_prices":[552,318,80,116,73],"normal_volume":[52,56,83,31,52],"stattrak_prices":[365,207,82,236,84],"stattrak_volume":[21,22,78,1,39]},"930":{"index":930,"max":0.55,"min":0,"rarity":3,"name":"New Roots","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82jZ7ZiH_OSHHGZz-lJvOhuRz2xmQgijDGMnYftby2eOgEiDsMmReUDs0G5m4fhM7zm4ADY2d9FzyT_33kfvylp4utQV6E7uvqAlSn4mj4","souvenir":true,"normal_prices":[991,739,332,664,810],"normal_volume":[42,39,101,2,6]},"980":{"index":980,"max":0.8,"min":0,"rarity":3,"name":"Digital Mesh","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-XB3SC1P5ij-1gSCGn20wh4m-By9-qIC7COA8jWcNxRuUPshe6kNfnYe62tQ2K2NpHmXj2iC9XrnE82YBIy5I","stattrak":true,"normal_prices":[295,131,67,66,63],"normal_volume":[53,99,62,26,114],"stattrak_prices":[291,117,66,78,69],"stattrak_volume":[25,14,37,17,19]}}},"13":{"name":"Galil AR","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"101":{"index":101,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhV7BiMv6SCmivzedxuPUnGHGywEtysm7Xy9qudXqWbwZ1XsRxQeIDs0W7mtbkM-ux4VCL3oxCmDK-0H3kO6HdPw","normal_prices":[3772,1108,1023,1086,989],"normal_volume":[67,68,94,18,43]},"1013":{"index":1013,"max":0.7,"min":0,"rarity":4,"name":"Phoenix Blacklight","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V7RlL_WdB3-v1e9xo955WjujmRgYvzSCkpu3JyqTblQhX5dxTeMJ40Pux4C2MOyw51DXjYtAyH7_jy9JuCk45LpWWL1lpPNjwyLnRw","normal_prices":[21885,9341,7864,9861,9384],"normal_volume":[359,129,100,4,18]},"1032":{"index":1032,"max":0.6,"min":0,"rarity":3,"name":"Dusk Ruins","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V7Z4Kf6AMXWVxdF6ueZhW2fnlBkl427dno2rcXLBagYjDMN0Qu8Ls0a9wIK0PrvhtlHYgogTyy_5kGoXuQFMiuDz","souvenir":true,"normal_prices":[6092,1696,998,1161,1746],"normal_volume":[119,46,18,7,8]},"1038":{"index":1038,"max":1,"min":0,"rarity":5,"name":"Chromatic Aberration","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWSY0-F7sd55Rie4qhEutDWR1NivcH2VOAchC8B4ReZesxa5l4LlPu6z7wTa2IhHmCj4jyNJ7Sls4LscEf1yskqHCW4","stattrak":true,"normal_prices":[2873,628,333,302,294],"normal_volume":[279,543,812,158,221],"stattrak_prices":[4252,1407,645,661,553],"stattrak_volume":[111,130,206,78,52]},"1071":{"index":1071,"max":0.55,"min":0,"rarity":4,"name":"CAUTION!","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6NsLPmfMWSR1Pp_v-9WQyC0nQlpsmnQwoqgIHuWa1QnC5EjRuJcsRi6lNfvPuvi7wPajo9Bziys23xIujErvbiCbfcatA","souvenir":true,"normal_prices":[9308,7690,5754,0,8500],"normal_volume":[62,7,14,0,2]},"1147":{"index":1147,"max":0.7,"min":0,"rarity":3,"name":"Destroyer","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWOV0vpkv_hsXRa_nBovp3PWwougcHvBP1IpWJohEOdc5hLrwNTiZbjh7gbaithNnnqsjX4f7y8-_a9cBt1aCBEk","stattrak":true,"normal_prices":[51,14,5,7,5],"normal_volume":[1104,546,680,236,139],"stattrak_prices":[66,15,7,13,7],"stattrak_volume":[372,70,351,70,98]},"1178":{"index":1178,"max":0.554422,"min":0,"rarity":5,"name":"Rainbow Spoon","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PO_V7BkNPGdB3Kd_vx3ue9rQD6MkhwrujGEiLD1KCzPKhhxCMclQeAPtUK-xoWxPrvkslOKg4tHzXn-3Xsbvyo647sLVqoh_6XekUifZrx5Pjj5","normal_prices":[4959,3254,3027,3375,3406],"normal_volume":[927,993,861,56,74]},"1185":{"index":1185,"max":0.798995,"min":0,"rarity":4,"name":"Control","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PWvZK1hH_OcAHOCzuJJo_V7RiK2qhEutDWR1Nmvcn6RPFVxW5txTbRZuxDuxNKzZu2x7wCMiNpExCSshyof7Xlt5-scEf1y6paUA5M","stattrak":true,"normal_prices":[409,82,39,36,40],"normal_volume":[734,808,2002,43,360],"stattrak_prices":[439,140,64,76,65],"stattrak_volume":[186,432,776,45,212]},"119":{"index":119,"max":0.8,"min":0.06,"rarity":1,"name":"Sage Spray","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V7d9MvGKMWOV0utkpN56Ti62qhEutDWR1N6qcCqSOgEiCsMhQLZftxnpxtfkP-Ph71eMjYtDmCX3jytO5nlt5OkcEf1yc_oaZQU","souvenir":true,"normal_prices":[409,5,1,2,1],"normal_volume":[156,349,521,1192,121]},"1264":{"index":1264,"max":0.6,"min":0,"rarity":2,"name":"Robin's Egg","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhbZt_L_KaAHSVxulJvOhuRz39kRl04ziAwouhInmTaQMlCcNxReFZ5xTqmtO1PuLntFDX3d8QyST_jjQJsHiwz7gI3Q","normal_prices":[25,8,2,2,1],"normal_volume":[1472,698,1364,48,69]},"1275":{"index":1275,"max":0.6,"min":0,"rarity":1,"name":"Grey Smoke","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGha6xSIvycHGWvw_lJt-BlRiWyhyIrujqNjsH9dimTZgAmCMMhRuEL5xCxkNa0Pum3sgzX3osWyH362ixL7HlqtehUT-N7rUWzKN8P","normal_prices":[3,1,1,1,1],"normal_volume":[815,317,406,59,349]},"1296":{"index":1296,"max":0.6,"min":0,"rarity":2,"name":"Acid Dart","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3bZt0JfyfAXCv1P13tt5lRi67gVNwtzvRzIv8dn_CZgBzXMMjRuZbsxe_lYbjNOzg71fajI8WnC2qjH9L8G81tK7k0ppc","normal_prices":[17,7,3,3,1],"normal_volume":[176,667,594,55,103]},"1314":{"index":1314,"max":0.75,"min":0,"rarity":2,"name":"O-Ranger","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhbZtiMvGdCWKvx-J_s-pWQyC0nQlp4jjRyYuhdy2WOgBzWZFxQrMP4RCwldbhM7jj5VDZi4IWzin7inwd5jErvbhrB4cQjg","normal_prices":[32,7,2,1,2],"normal_volume":[886,980,888,115,227]},"1383":{"index":1383,"max":0.7,"min":0,"rarity":3,"name":"Sky Mandala","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3bZtoIeKHBlidwOByse1ocCW6khUz_WzSy42rcS3CbwMkD5Z0TOAOsBDswNfhZu3q5w3ajdpNzSj-ii9P7nl1o7FVbxi6bE4","normal_prices":[198,89,33,32,23],"normal_volume":[1086,1618,165,11,136]},"1434":{"index":1434,"max":1,"min":0,"rarity":4,"name":"Galigator","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PWvZK1hH_eSAm6XwPp5ot5lRi67gVN_42_VydytcX3BbQ8pCsB0ReMCtEG_lYLuNuji4AGPjt8Qynj4jXlI8G81tMQ6bFYi","stattrak":true,"normal_prices":[554,191,106,81,56],"normal_volume":[400,571,465,201,190],"stattrak_prices":[982,352,191,143,124],"stattrak_volume":[82,173,210,49,68]},"192":{"index":192,"max":0.8,"min":0.06,"rarity":3,"name":"Shattered","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6d_Nf2DAmKvw_x3pu5WQyC0nQlpsm7dn96tcniROgMoX8RzFuIJtRPqxtXhMujjsgLYjIlEzS-ojiIa5jErvbio8HB-SQ","stattrak":true,"normal_prices":[5874,973,639,590,537],"normal_volume":[18,41,67,5,27],"stattrak_prices":[11684,1318,573,777,596],"stattrak_volume":[13,32,69,7,18]},"216":{"index":216,"max":0.04,"min":0,"rarity":3,"name":"Blue Titanium","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0POgV7BkNPGdB3Kdkr5gj-1gSCGn208jsDvRmNmqdn6fbw4iCJp5Q7Nb4xW8xNSzMenk7wbX341AzyitjitXrnE8X82UsFg","stattrak":true,"normal_prices":[2881,0,0,0,0],"normal_volume":[227,0,0,0,0],"stattrak_prices":[1192,0,0,0,0],"stattrak_volume":[378,0,0,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":2,"name":"VariCamo","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V7JsMvmQD2qf_uJ_t-l9AXzgwU0ktW6HnIr_cH7FO1R1CpFyTbQNtBHqkYHuM-iw5FDeid1NmCjgznQefGamZCs","souvenir":true,"normal_prices":[35,6,4,4,5],"normal_volume":[109,421,386,60,37]},"237":{"index":237,"max":0.5,"min":0,"rarity":2,"name":"Urban Rubble","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V7JsMvmQD2qf_vtksuBncCW6khUz_TiDz9b8dXKQaAZ0X8MiRLVZ4RXslIflN-_g4gKIit1BnHn4iSNBvCl1o7FV6ub4EBU","normal_prices":[3349,1031,797,1202,925],"normal_volume":[48,76,33,4,9]},"239":{"index":239,"max":0.6,"min":0,"rarity":3,"name":"Metallic Squeezer","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6t7JeKDD3SD_v53ue99cDm2myIqtimElrD1KCzPKhh1W5N4EeQJ4ELuwNXgYu3r7gHe2ItExC_3hitL6C1o6-sEB6J0q_eBkUifZqkJVocB","souvenir":true,"normal_prices":[110,34,19,22,18],"normal_volume":[1802,1276,1011,74,99]},"241":{"index":241,"max":0.6,"min":0,"rarity":1,"name":"Hunting Blind","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6loM_isHWuR0uZzo95lRi67gVMhsjyBmI38eHKUawZyDcB2RbVcuhXql4bnMePjsg3XjdgUxCr43y4d8G81tK0-GwoG","souvenir":true,"normal_prices":[1179,348,278,305,260],"normal_volume":[70,43,35,1,10]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0POvV6JsJPWsA2KEwOJ6ueJWQyC0nQlp52uGm9yodC3GZ1d0CMdyQeJctRDqmtayY-Kz71fW2IIUziz8intK6TErvbiZh4dEMQ","souvenir":true,"normal_prices":[2909,500,620,2105,0],"normal_volume":[129,42,88,5,0]},"264":{"index":264,"max":0.6,"min":0.1,"rarity":3,"name":"Sandstorm","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V7dsLvSAGmiCzNF6ueZhW2exkx4m6mrcmd6heS-XZgB1ApZ3FLUI5xm6ktezMuzh7gTeiYpFnCr-kGoXuTw2UKiI","stattrak":true,"normal_prices":[0,1439,142,196,151],"normal_volume":[0,186,531,25,36],"stattrak_prices":[0,548,143,230,150],"stattrak_volume":[0,171,194,22,39]},"294":{"index":294,"max":0.3,"min":0,"rarity":2,"name":"Green Apple","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhV6N_JfWdMWuZxuZi_rI5H3_iwR9_4GSHmNuhcinDPQQgWZd5QLEJuka6koK1Mu6z7wDf2YhbjXKp2JcVlJI","souvenir":true,"normal_prices":[40,5,3,0,0],"normal_volume":[2004,1617,399,0,0]},"297":{"index":297,"max":0.8,"min":0,"rarity":3,"name":"Tuxedo","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhV6t_I_GsAm6Xyfo45ONqGHC2kE1y42jWz9uscXmfbQQlCsZzFOACuxawl4GxMevj4QPfg5UFk3uvmVba9Q","normal_prices":[321,168,60,57,33],"normal_volume":[1412,424,509,43,83]},"308":{"index":308,"max":0.6,"min":0,"rarity":3,"name":"Kami","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6NsLPmfMWyRzOdJvOhuRz39wkl142uEwtqsJ3OealV1DZYmFuNZ4xTtx4HnZuPl4gaLjdpNnHqt3TQJsHjaThnzjg","stattrak":true,"normal_prices":[869,226,111,138,126],"normal_volume":[319,140,243,118,66],"stattrak_prices":[685,322,140,150,135],"stattrak_volume":[212,155,146,27,47]},"379":{"index":379,"max":0.9,"min":0,"rarity":4,"name":"Cerberus","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6doMvKBG3Svxu96ue1WQyC0nQlpsTjVzdb8IH-UOw8lX8B5EeYJ40a8k4XnPuvqsgzYjt0QnCyqh3wb7DErvbjusqqqdw","souvenir":true,"normal_prices":[26291,7091,3225,2821,2814],"normal_volume":[159,86,302,50,30]},"398":{"index":398,"max":0.85,"min":0.35,"rarity":6,"name":"Chatterbox","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWaS0-9lue5ncCS2kRQyvnPXnIn7eSrEZ1AnD5NxTeII4ESwxN3jN7zl5QHXjdhAnyuo2y9Nv3xs_a9cBuAhdjfO","stattrak":true,"normal_prices":[0,0,17323,10185,9784],"normal_volume":[0,0,48,229,276],"stattrak_prices":[0,0,38616,10579,10536],"stattrak_volume":[0,0,24,42,71]},"428":{"index":428,"max":0.85,"min":0.1,"rarity":5,"name":"Eco","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWKTztF6ueZhW2exwExw4WrcyImrcHmTbQAlWcQkQudYt0O5lNfgP-nh5AOL3otAziz7kGoXua-HTb4P","stattrak":true,"normal_prices":[0,11049,1076,1006,1059],"normal_volume":[0,244,1708,209,88],"stattrak_prices":[0,13443,1795,1409,1372],"stattrak_volume":[0,92,423,69,41]},"460":{"index":460,"max":0.7,"min":0,"rarity":3,"name":"Aqua Terrace","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0POjV6NoL_2WGnWZwtFlpOR5XBa_nBovp3Pdzo6hcH6Ta1RxWZslRuYC4xG9x4bgP-zj4wfY2YoQzyT43XhA7Shq_a9cBkjd5CSZ","normal_prices":[19352,14542,11675,16843,16600],"normal_volume":[70,18,14,1,1]},"478":{"index":478,"max":1,"min":0,"rarity":3,"name":"Rocket Pop","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfD3Wv0e9kpOhqQyygqhEutDWR1Nf8eXzDP1InCMR3QucIshjrktexMOqz4QPcjo1Gz3qq2H9L5ylu4ugcEf1yh3Lp9zc","stattrak":true,"normal_prices":[1243,272,107,63,53],"normal_volume":[377,494,386,81,123],"stattrak_prices":[2211,487,175,97,82],"stattrak_volume":[144,211,201,64,142]},"494":{"index":494,"max":0.9,"min":0,"rarity":4,"name":"Stone Cold","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfMWmZxuZip-hnSBa_nBovp3PSnI2heXqXOwQjDpcmQ-UN5BjrmtexP-rgswDajotBxCz5iyhMui5u_a9cBuYTcBV8","stattrak":true,"normal_prices":[2704,483,214,170,159],"normal_volume":[337,459,323,62,33],"stattrak_prices":[3082,1001,419,392,329],"stattrak_volume":[67,105,137,47,39]},"546":{"index":546,"max":1,"min":0,"rarity":4,"name":"Firefight","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfD3WvyOB1te9sXSinmg8YvzSCkpu3eH_EZ1IgDsR1ReYPshm6x9XnZe204VCMiIsXzS_33S0b7X5t4-dQUb1lpPOTHSUAOw","stattrak":true,"normal_prices":[1420,189,103,95,96],"normal_volume":[240,171,179,65,73],"stattrak_prices":[1412,342,138,111,109],"stattrak_volume":[57,70,58,46,55]},"629":{"index":629,"max":1,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWaCjO13ve5WQyC0nQlp5T7dzoqpeX3FZ1R2DZd4Qe4CtRS_k9y0Ye7qtQOP2oxAyX73iytK6TErvbi0QhR0PQ","stattrak":true,"normal_prices":[1618,165,54,34,37],"normal_volume":[201,42,123,67,115],"stattrak_prices":[516,80,34,31,31],"stattrak_volume":[56,90,111,56,44]},"647":{"index":647,"max":0.55,"min":0,"rarity":4,"name":"Crimson Tsunami","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6NsLPmfMXCR1-tJvOhuRz39x0Qm6mjQzo6qeHLGOg8nXJUiE-UKtxa5mtPgZu3rtFGMiIwXxH-viDQJsHh48m4KFg","stattrak":true,"normal_prices":[978,285,168,190,147],"normal_volume":[414,230,192,41,37],"stattrak_prices":[1219,556,326,382,375],"stattrak_volume":[159,109,74,1,25]},"661":{"index":661,"max":0.55,"min":0,"rarity":5,"name":"Sugar Rush","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWSRz-pvs-loQDqMmRQguynLyNqpJX_CPwUpXpEmEOMLs0K-kdPiN-uz4wfW2IgWyySr2ixKvCht4fFCD_QYspg1jQ","stattrak":true,"normal_prices":[23186,6104,5172,6742,5378],"normal_volume":[107,108,75,6,2],"stattrak_prices":[18584,12609,8276,20207,7995],"stattrak_volume":[57,21,15,1,1]},"76":{"index":76,"max":0.8,"min":0.06,"rarity":2,"name":"Winter Forest","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6JiMvWAGliHyOBitfNWQyC0nQlp4m7Wy96geHvCPVQjA5d2ROYDtRC4lIGzYeLrtADejt0TzC6tj3tO7DErvbiqpszlmA","normal_prices":[29933,5408,2671,2849,2739],"normal_volume":[8,12,18,2,10]},"790":{"index":790,"max":0.83,"min":0,"rarity":2,"name":"Cold Fusion","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6p4I_yWD3Wv0uVjvO16cCiigBwYvzSCkpu3cy6UbQIgC5QkReYKsEHsmtS2Yb_itA3Y2INNyXj6jHxK7Ho_selRA71lpPOhjRfzhg","souvenir":true,"normal_prices":[81,15,2,4,2],"normal_volume":[1318,789,831,87,163]},"807":{"index":807,"max":0.5,"min":0,"rarity":4,"name":"Signal","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6NsLPmfMXSZxuB3vN57Si2MmRQguynLnIqvIy-TO1UlXJMjEeAN4UGwk9DkZLnltgPYjYkTnCn6iy8buips5PFCD_QZl2QaUg","stattrak":true,"normal_prices":[283,88,53,71,81],"normal_volume":[660,302,302,87,104],"stattrak_prices":[338,207,126,145,146],"stattrak_volume":[196,162,374,44,35]},"83":{"index":83,"max":0.8,"min":0.06,"rarity":4,"name":"Orange DDPAT","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6BpMPGHMWiCwOBxtd5lRi67gVN-4WzRwomqeHKQOwEoAsdzRrENskK7wIXiM-m341feg44TzXr33C0Y8G81tE9ebY28","stattrak":true,"normal_prices":[10863,4373,1777,1759,1790],"normal_volume":[11,31,28,6,3],"stattrak_prices":[33814,4958,2605,2262,2678],"stattrak_volume":[4,29,48,6,2]},"842":{"index":842,"max":0.75,"min":0,"rarity":3,"name":"Akoben","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6NsLPmfMWabzuxzvt5lRi67gVMlt2_dzd6qcH2TOgN0CpIlE7Ve5hbukdW0MrixslPW2IgQzyv8jypI8G81tJzCUipD","stattrak":true,"normal_prices":[377,43,22,27,20],"normal_volume":[342,196,192,28,74],"stattrak_prices":[277,74,29,58,28],"stattrak_volume":[169,108,260,29,42]},"939":{"index":939,"max":0.47,"min":0,"rarity":2,"name":"NV","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V7RiLOmsCXWVxOBJt-BlRiWMmRQguynLnNn4JXyWalMlW5ciE-RftRCwlt3gYbyz41Tb34pBmSr92yod7itq5fFCD_TxM0_hWQ","normal_prices":[76,24,16,16,51],"normal_volume":[851,229,438,62,14]},"972":{"index":972,"max":0.8,"min":0,"rarity":4,"name":"Connexion","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfMXeYzut4uflWQyC0nQlpt22Dzd_4cS7Db1NzDZYkQuIKsBW4xt3jPurq7gPag4oXnCqrhipB7TErvbi_0k78nw","stattrak":true,"normal_prices":[305,64,34,48,30],"normal_volume":[814,824,903,112,135],"stattrak_prices":[359,124,56,65,53],"stattrak_volume":[161,276,698,76,74]},"981":{"index":981,"max":1,"min":0,"rarity":3,"name":"Vandal","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfMXGRz-p3vN5lRi67gVMj4mzVw92tdHKXPwcjD8AhR-YKtBe8mtHkNLvgtAGIjd0WxCyv2CNI8G81tKkB1-EH","stattrak":true,"normal_prices":[2436,146,81,44,51],"normal_volume":[124,100,96,89,86],"stattrak_prices":[941,152,87,59,56],"stattrak_volume":[61,39,63,30,7]}}},"14":{"name":"M249","sticker_amount":5,"type":"Weapons","paints":{"1042":{"index":1042,"max":0.7,"min":0,"rarity":3,"name":"O.S.I.P.R.","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiVI0P_8PP1SI_-eDG6exNF6ueZhW2fhwB53smmAzIr_cy2fa1N0D5J0E-Je4BG_lt22N-63sQLYid0UxCytkGoXuS8jTKqZ","stattrak":true,"normal_prices":[61,20,17,16,15],"normal_volume":[326,146,224,34,73],"stattrak_prices":[134,41,32,35,25],"stattrak_volume":[110,122,129,23,43]},"1148":{"index":1148,"max":0.65,"min":0,"rarity":4,"name":"Downtown","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SJP-EAHGf1etJvOhuRz39wUh-5GuGz4mrJHuSbg4jWJp1FLINsRCxwdDuZezm7leK3d5GmSr_jTQJsHj3YwoNRA","stattrak":true,"normal_prices":[143,55,38,35,32],"normal_volume":[823,742,945,70,97],"stattrak_prices":[181,95,49,53,51],"stattrak_volume":[220,341,284,33,71]},"120":{"index":120,"max":1,"min":0,"rarity":3,"name":"Hypnosis","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wi8Ju6uRYL19Lv-AB3SvzedxuPUnTny1wkgm5znWyon4dC2TPFRxX8AmROcLthW8kdTgMrm051fcjIsQzTK-0H3IfNSRpg","stattrak":true,"normal_prices":[204,36,16,11,11],"normal_volume":[69,255,97,47,52],"stattrak_prices":[211,58,22,21,21],"stattrak_volume":[56,24,83,51,41]},"1242":{"index":1242,"max":0.8,"min":0.02,"rarity":1,"name":"Submerged","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SM_OSHGaS_uJ_t-l9AXmyxkt0t2yDyYurci6TPQcgCcckTOMLsxCwk9PiM7i041Tago1FnH7gznQeMmXICmk","souvenir":true,"normal_prices":[55,13,3,3,2],"normal_volume":[334,304,346,26,83]},"1298":{"index":1298,"max":0.6,"min":0,"rarity":1,"name":"Sage Camo","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC4M2kfapqLPWsCmKDwPpJvOhuRz39lkUisWTSmIz7I3uValQjXMEmE-AO4Ea9k9HvZLy27g2P3otEnnj8iDQJsHjxYKi7jg","normal_prices":[3,1,1,1,1],"normal_volume":[609,325,1134,84,143]},"1370":{"index":1370,"max":0.7,"min":0,"rarity":1,"name":"Sleet","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC6s2jOvA0H_OSHFiH0-9mj7JWQyC0nQlp6zzQwtiudHvCO1MlDJByQuIC4UO7lta0Zuy0swPZiNhDxSv33C0f6zErvbjSvv-GUg","normal_prices":[3,1,2,1,1],"normal_volume":[853,403,319,60,184]},"1435":{"index":1435,"max":1,"min":0,"rarity":3,"name":"Bock Blocks","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wi8Ju6uRaqhiI_uAMXeF0_56td5lRi67gVNw4juHnIr_JSmeOwQnXsd1RbZYtkTpkoDjY7nm5Vfci4NDxS__jyoY8G81tOB68LmM","stattrak":true,"normal_prices":[90,21,9,7,5],"normal_volume":[142,227,234,83,104],"stattrak_prices":[154,51,22,20,16],"stattrak_volume":[102,105,135,23,46]},"151":{"index":151,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFU0Pi7ZqNhJc-fB2CY1aB3tbI4S3ngl04ktj7XnNb7InvCOgAlC5Z4Q7ID4RHqlNDgZOPj4Qzdlcsbmsfre7St","normal_prices":[1396,601,474,501,479],"normal_volume":[21,63,67,20,42]},"170":{"index":170,"max":0.8,"min":0.06,"rarity":1,"name":"Predator","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0OirarZsI_GeMWuZxuZi_rM9H3nkk01-6mSAzon_d3vBZw4lXsB0TOQD4RftwdXmY7-3tlffioNbjXKpMr9foB4","normal_prices":[607,141,100,77,69],"normal_volume":[46,175,180,47,32]},"202":{"index":202,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle DDPAT","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC0PaqeKV5H_qGAGCcxNF0ouB_QBa_nBovp3PXmNqqICqWbwB2ApMiQeFYsEXqmoDiZem37lTfit4WmS3623lB6itr_a9cBmG97jrI","normal_prices":[5423,668,356,396,361],"normal_volume":[18,18,2,17,2]},"22":{"index":22,"max":0.8,"min":0.06,"rarity":1,"name":"Contrast Spray","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0OG-eqV0H_yaCW-Ej-shsbBtS3q2wkUitWzUz9b_c3vEZ1UhD5R4F-QL40a8m4HuZbnitlfAy9USVV6qaxA","souvenir":true,"normal_prices":[1061,140,94,90,278],"normal_volume":[2,27,146,39,32]},"243":{"index":243,"max":0.6,"min":0,"rarity":2,"name":"Gator Mesh","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0P-re6xSMOmHBmie_uJ_t-l9ASrkwxxwtWrUyY79I3yUaA5xWcd2RO4C4BO6l4HkZbnj7lSM2YtDzC3gznQeaJe5pgI","souvenir":true,"normal_prices":[21,5,4,3,4],"normal_volume":[168,258,311,42,82]},"266":{"index":266,"max":0.7,"min":0,"rarity":3,"name":"Magma","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiNK0P2se61pKfGdMWuZxuZi_rNrTC-wl0gh5WXXmIqpIyiSbVIoXJckEO9eukTrx4XkMbjh51bYjIJbjXKp9iAER2c","stattrak":true,"normal_prices":[368,178,127,179,91],"normal_volume":[50,80,88,13,4],"stattrak_prices":[368,190,127,180,105],"stattrak_volume":[81,60,72,55,13]},"401":{"index":401,"max":0.8,"min":0,"rarity":3,"name":"System Lock","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SM_WYGmiC_uJ_t-l9AXzhzEt25Wjcn4n4dHKebgMlCMB2RO5b40S-x9TnN-KztFDf3ohDzirgznQedTUXMuU","stattrak":true,"normal_prices":[151,57,35,52,33],"normal_volume":[157,112,116,31,20],"stattrak_prices":[256,75,35,62,44],"stattrak_volume":[93,61,85,37,31]},"452":{"index":452,"max":0.5,"min":0,"rarity":2,"name":"Shipping Forecast","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC0OihbK1sI6OsAm6Xyfo4s7c4Gnvmx0l0tWjSzoyoeC7BPwUgDsAiQ-cMsROwloG2Y-rr4wfe3pUFk3scMmqwFg","normal_prices":[2009,1878,1781,1715,1762],"normal_volume":[74,34,45,6,3]},"472":{"index":472,"max":1,"min":0,"rarity":1,"name":"Impact Drill","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFU0PmrcadiLP-BHVicyOl-pK9rS3jlxBhztznQmNmrIn-VbFcmW5ZyReZe5hi9m4e1MO7j4w2Mg91A02yg2QZ4bFj3","normal_prices":[965,524,429,337,327],"normal_volume":[76,94,120,14,36]},"496":{"index":496,"max":1,"min":0,"rarity":4,"name":"Nebula Crusader","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiVI0P_8PP1SLvWRG2uR_u1kpfJoSyyhqhEutDWR1Ir_JSiXOgciDJN4RucCsRW8w4KyZu_q5FeLjN4RnCmt33lP7nxv5-wcEf1yLX15hXE","stattrak":true,"normal_prices":[923,214,110,108,94],"normal_volume":[114,136,194,65,20],"stattrak_prices":[1405,573,242,238,246],"stattrak_volume":[50,51,65,60,36]},"547":{"index":547,"max":0.5,"min":0,"rarity":3,"name":"Spectre","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SM-CWDXOCxNF6ueZhW2fqwklx4j_Wyd_6J3yeOlcoXMclQuQI4xbrw4fmNrziswLX2IhHziqrkGoXuVEVHa_j","stattrak":true,"normal_prices":[60,26,38,26,24],"normal_volume":[340,121,369,26,29],"stattrak_prices":[84,35,20,39,36],"stattrak_volume":[137,95,124,31,43]},"648":{"index":648,"max":0.45,"min":0,"rarity":4,"name":"Emerald Poison Dart","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0P_8PP1SJuKcCVif0-dxue9oQxa_nBovp3PRzNb8JX2VO1IpDsclRrEPtxXtxNSxYuuw4QHai9gWyCT2j3gYuHlt_a9cBlcR8wa2","stattrak":true,"normal_prices":[500,129,127,127,0],"normal_volume":[118,124,111,33,0],"stattrak_prices":[406,224,213,291,0],"stattrak_volume":[25,90,46,18,0]},"75":{"index":75,"max":0.8,"min":0.06,"rarity":2,"name":"Blizzard Marbleized","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC0PCiYb53IeKXMWuZxuZi_rIwF3DmzBx14WTTwtisIH6fOAYmWJImReMC5xm-koGxM-yw4wKIj9lbjXKpzG9Fj_8","normal_prices":[24500,5841,3272,4094,3150],"normal_volume":[3,23,5,1,2]},"827":{"index":827,"max":0.5,"min":0,"rarity":3,"name":"Humidor","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0P-heqtSI_GBGG6extF0pfNnWxa_nBovp3OGnomhc3-ROFInDJclReQOtkS_xNO0MLuwtVCL3Y9DxSqr3y9Lunxq_a9cBnmfuyfW","souvenir":true,"normal_prices":[757,333,197,336,1502],"normal_volume":[159,71,80,12,15]},"875":{"index":875,"max":0.5,"min":0,"rarity":2,"name":"Spectrogram","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipP0OKraa9-H-KSB2mSzvlJvOhuRz39kxsj5WXUz4urInmWblIgCZVxTbJfthXsmoDuM-m05QPeiIJAyiuvjjQJsHhX7l6_wQ","normal_prices":[73,28,15,16,16],"normal_volume":[577,363,309,35,39]},"900":{"index":900,"max":0.65,"min":0.05,"rarity":3,"name":"Warbird","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiVI0P_8PP1SN_GBDG6CxdFgtfVsXSi9qhEutDWR1NqpdymUbgcgDcRwEeUO5xa7kIGzMOjgsQzejNoRni6ohyJL6ytv4-4cEf1yirMa72w","stattrak":true,"normal_prices":[655,272,115,99,66],"normal_volume":[9,52,118,30,40],"stattrak_prices":[1054,202,77,201,116],"stattrak_volume":[7,28,53,35,52]},"902":{"index":902,"max":0.75,"min":0,"rarity":4,"name":"Aztec","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiNK0P_8PP1SIeqHC2SvzedxuPUnTirnwEslsT6Gzd2sJHLCOlUpWJohE-MMsxW6l9GxPuy24AyL398QnjK-0H18Ww4Zdw","stattrak":true,"normal_prices":[468,101,42,60,60],"normal_volume":[108,160,183,26,49],"stattrak_prices":[376,180,76,98,93],"stattrak_volume":[32,75,103,5,44]},"933":{"index":933,"max":0.5,"min":0,"rarity":2,"name":"Midnight Palm","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0OKvZKlSLvmUBnOvzedxuPUnS3Cxlx8ksW7Um9mtc3KTOwAlCJF4FO4PskO9wd3jZLjn4wSN2I1HzDK-0H3u05_o_Q","souvenir":true,"normal_prices":[160,82,51,144,120],"normal_volume":[167,113,246,20,2]},"983":{"index":983,"max":1,"min":0,"rarity":3,"name":"Deep Relief","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SJPWWHliCxOJ_tedWQyC0nQlp5DzUzIyqcnyQOAckWJckQu8KuhnpkdPgNu-0tgTYio5Eny2shnsd7TErvbi9QVp9bQ","stattrak":true,"normal_prices":[287,141,84,47,51],"normal_volume":[48,79,145,72,94],"stattrak_prices":[628,130,75,57,54],"stattrak_volume":[48,51,46,21,29]}}},"16":{"name":"M4A4","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"101":{"index":101,"max":0.8,"min":0.06,"rarity":2,"name":"Tornado","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFU0OaheqpsJP-sAm6Xyfo4secwGX3llEp3sT_dwtz4IH3GZgchD8AmTeUP5hO8lIG0Zuji5VTWipUFk3sAwQa4aw","souvenir":true,"normal_prices":[18952,3781,879,937,924],"normal_volume":[39,130,182,24,24]},"1041":{"index":1041,"max":0.79,"min":0,"rarity":6,"name":"In Living Color","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSLP-FC1icyOl-pK84GH2wxhty4DjcyNuhdHyXbAVxW8QjTbEMthC8kNa0MLmzs1Hbj95E02yg2bbWGcKW","stattrak":true,"normal_prices":[10543,4248,3114,2915,2712],"normal_volume":[296,707,802,60,97],"stattrak_prices":[12212,5431,2963,3482,2964],"stattrak_volume":[129,135,188,15,29]},"1063":{"index":1063,"max":1,"min":0,"rarity":6,"name":"The Coalition","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSI_-SAm6EyOF4j-1gSCGn200jt2_XnIuseX_GaFR0XpEhReULtUKxlIWzP-_gs1HZjI1NzSutiClXrnE8e4r3Ge8","normal_prices":[169340,56443,38840,17367,12955],"normal_volume":[71,200,189,135,90]},"1097":{"index":1097,"max":1,"min":0,"rarity":4,"name":"Spider Lily","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6V6JhL-eWHHSvzedxuPUnHXiwlk4lsTvUz477ICiRPw52WJNxROICtxK-wYDhZejm5gCP2I9MzjK-0H1trtkVHA","stattrak":true,"normal_prices":[7673,1464,789,598,540],"normal_volume":[309,911,978,113,84],"stattrak_prices":[7910,3264,1469,1225,1114],"stattrak_volume":[108,151,183,41,45]},"1149":{"index":1149,"max":1,"min":0,"rarity":3,"name":"Poly Mag","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJfyaGmKv1e91pOhqTiWMmRQguynLzY2pIi2QawR0CpdwTOdeuhXrw9XjZeq04QLYjIlFxSz9hn9MvCw44vFCD_Q07cip4Q","stattrak":true,"normal_prices":[172,14,7,5,5],"normal_volume":[745,756,1282,308,201],"stattrak_prices":[186,22,8,8,7],"stattrak_volume":[312,83,444,492,152]},"1165":{"index":1165,"max":1,"min":0,"rarity":4,"name":"Etch Lord","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRe6psK_WRB3OV_uJ_t-l9AXjnw0Qh5GqGn9b_dH3Cbg4nCcAhRLIM4BW7mtXmM7jjtAXai40WmHngznQeK6EUrpc","stattrak":true,"normal_prices":[546,87,42,32,34],"normal_volume":[876,746,1600,371,1013],"stattrak_prices":[729,219,121,101,102],"stattrak_volume":[180,276,499,273,505]},"118":{"index":118,"max":0.85,"min":0,"rarity":4,"name":"Turbine","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRbrF-Kf-dMWuZxuZi_rRtGiriwUgh5m6Bn9z4IHLEOA4gDpZxQOULsUW9k4eyMOLitQzd3opbjXKpOa4i6Kc","stattrak":true,"normal_prices":[2042,298,117,127,107],"normal_volume":[320,207,653,25,130],"stattrak_prices":[2135,691,310,387,295],"stattrak_volume":[123,171,269,24,63]},"1209":{"index":1209,"max":1,"min":0,"rarity":5,"name":"Hellish","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSNOKSB2mvyet6vN5lRi67gVMj5W_VyNb7Ii-TPFdxCpskQOMDsEOxxNHgYb-xswKKgo8WyH2t3X9J8G81tMARX_8e","souvenir":true,"normal_prices":[21744,6319,2672,1683,1486],"normal_volume":[342,559,674,228,119]},"1210":{"index":1210,"max":1,"min":0,"rarity":3,"name":"Choppa","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRb7ZoJf6sDWadztF6ueZhW2fjl05-6mzVmdmgcHOTZgIhXpJ1RO5c4Bjql9DjMunhsgOL34gUnnr-kGoXuTonsfJ3","stattrak":true,"normal_prices":[193,17,7,5,6],"normal_volume":[758,343,1808,561,422],"stattrak_prices":[397,57,19,9,8],"stattrak_volume":[255,931,1100,91,50]},"1228":{"index":1228,"max":0.8,"min":0,"rarity":6,"name":"Temukau","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSNPWeG2yR1NF6ueZhW2ewlBtx5W6AmYv9JS6XaAV1CJEmTeUL4UTpxNzjZO3jtgaIjN9ExCuskGoXuRnyRhBA","stattrak":true,"normal_prices":[10961,5509,3011,2809,2649],"normal_volume":[791,1452,1950,79,180],"stattrak_prices":[18227,7851,3192,3091,2686],"stattrak_volume":[211,264,414,24,66]},"1255":{"index":1255,"max":0.7,"min":0,"rarity":6,"name":"Eye of Horus","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSMvGsAm6Xyfo46eU5H3DnlxlytTyDwtr_JHmQZw4hC5R5RrRbtRO5xtCyZrzktgCI2ZUFk3sFC5kC3A","souvenir":true,"normal_prices":[91412,45365,27924,22405,17902],"normal_volume":[184,205,285,26,73]},"1266":{"index":1266,"max":0.6,"min":0,"rarity":2,"name":"Naval Shred Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC6s2sZLFoH_3HDzOvzedxuPUnFnCxzElysG_Wydz9c3-VaARzXpEhEeVethDtx4LvPujktgbYiogTyDK-0H1inonrSw","normal_prices":[41,7,2,5,1],"normal_volume":[1566,1112,1134,81,114]},"1281":{"index":1281,"max":0.75,"min":0,"rarity":4,"name":"Sheet Lightning","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL6s2iYaNlNP6aAGCvzedxuPUnSiuxw0x06mjUzt2teX2QPQQkXMQmR7EK4EG9mtyzNr62tlbb2YpHzTK-0H1YrMl7BA","normal_prices":[895,321,102,95,73],"normal_volume":[644,1000,1403,101,360]},"1313":{"index":1313,"max":0.7,"min":0,"rarity":2,"name":"Steel Work","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipP0P-rfKVhH_WXCWKD_uJ_t-l9ASyywhtz4GmGmNn9eH7CaQ4gC5ZxQLJc40bqlNSxNOjg4VSMjopMyyvgznQecTvSN4E","normal_prices":[31,5,2,2,1],"normal_volume":[1623,113,804,50,136]},"1353":{"index":1353,"max":1,"min":0,"rarity":6,"name":"Full Throttle","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRe69_MuKHMWCCxOt4j-1gSCGn20kk4mSHn97_eXqTOgMkXpdzR-MNsxO7w9e2Yrnk5VbciIhDznj8iy9XrnE8J4rQ87g","stattrak":true,"normal_prices":[20992,8857,4363,3106,2716],"normal_volume":[230,572,627,178,174],"stattrak_prices":[39811,15155,8322,5745,4901],"stattrak_volume":[47,135,122,53,51]},"1364":{"index":1364,"max":0.65,"min":0,"rarity":2,"name":"Aeolian Dark","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC6s2vard5MvGQGlibz-Fij-w9cCW6khUz_TvQnt37cS_EaQAgDMciEbVb4EK4ktzvZb_ltlOI3o4RmHmt23xKvSh1o7FVNKLRyHM","normal_prices":[38,6,2,4,1],"normal_volume":[1534,1140,737,43,112]},"1432":{"index":1432,"max":1,"min":0,"rarity":3,"name":"Zubastick","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRcrFvIeOHB2Sb_uxhj-1gSCGn208j5WqDw9ascn6VOlQoCJV0RbVb5xO5l4fgY-Pk5waMitpHzS79jiJXrnE8cY5TeGQ","stattrak":true,"normal_prices":[118,23,10,7,6],"normal_volume":[478,441,441,74,159],"stattrak_prices":[249,93,42,22,25],"stattrak_volume":[141,277,244,91,72]},"155":{"index":155,"max":0.46,"min":0.02,"rarity":6,"name":"Bullet Rain","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0PC7ZKhoNM-BD26e_uMisbBWQyC0nQlp4GmGydioIH3DPFMjDMd2QrQO5hDtkNK2Ne_htAXd3d0Uyiiriysb5zErvbh6fsb98Q","stattrak":true,"normal_prices":[31284,9536,6986,8380,10200],"normal_volume":[147,264,162,18,3],"stattrak_prices":[26798,10379,8934,12103,350000],"stattrak_volume":[34,51,38,2,4]},"16":{"index":16,"max":0.8,"min":0.06,"rarity":2,"name":"Jungle Tiger","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0OSRfK1qJeKsAm6Xyfo457AxHyznxBkmsWzcyYmoeXLCalR2D8R3E-8O5he9wIXmM7zr4QSP3pUFk3sDhAfDyg","normal_prices":[8763,3505,1054,1190,1158],"normal_volume":[11,118,95,15,13]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":4,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0Pq7ZrBoMs-eAWOV0-BJvOhuRz39xUh0tmyDmIusd3mTbldxCcEmRrYNsEO8k9a1Punis1OLj4pBxHn82jQJsHibcUQx2g","normal_prices":[58838,11958,5146,5468,5825],"normal_volume":[14,10,55,2,8]},"167":{"index":167,"max":0.8,"min":0.06,"rarity":3,"name":"Radiation Hazard","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0Py7Y6F-NOKaHmKvzvx3vuZscCW6khUz_WqGyI34dy6SbgcnWMN2QLNZu0GxkNznMbjn5lbbgtlGyCuviyJNu311o7FVcM-jMdQ","souvenir":true,"normal_prices":[50593,9522,3338,3625,2834],"normal_volume":[30,137,224,32,23]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":2,"name":"Urban DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0PaqeKV5H-WBDFicyOl-pK8xF3DjzR5_4zncnouhcSjGPQ8jA5B3ELFbuhPqloDkPrvjsgXY2t5N02yg2Rf5X8A9","souvenir":true,"normal_prices":[3415,77,8,8,9],"normal_volume":[189,1339,3750,177,54]},"176":{"index":176,"max":0.8,"min":0.06,"rarity":3,"name":"Faded Zebra","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0OirarZsI_GeMWWH_uJ_t-l9AXu3zBkhsDyHz4z9dXmVagJzW8MiQbFetBfrkNHhZbjr51CMiN8TyS_gznQeEoYBjXk","stattrak":true,"normal_prices":[5999,2798,813,503,519],"normal_volume":[13,34,34,11,64],"stattrak_prices":[11013,887,369,430,384],"stattrak_volume":[2,170,468,74,133]},"187":{"index":187,"max":0.42,"min":0.06,"rarity":4,"name":"Zirka","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0OG6abZSIuKSGGivzedxuPUnSXnqkBwj62vTn9b8cyjBOlNxD8Z2Te8L5Ea8xtbkNe6z7lTajotCmDK-0H35HfkCFQ","stattrak":true,"normal_prices":[10243,2830,2426,3546,0],"normal_volume":[33,199,117,13,0],"stattrak_prices":[23192,3958,3328,3796,0],"stattrak_volume":[6,79,73,7,0]},"215":{"index":215,"max":0.3,"min":0,"rarity":6,"name":"X-Ray","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0Oq8ab1SLaSsAm6Xyfo46LAxTHrgxU8lt2WHmNf7cS-Ub1JxDpQkQecO40OwxN2yZbvg41DciJUFk3vXysuZ3Q","stattrak":true,"normal_prices":[19688,6786,6626,0,0],"normal_volume":[452,344,93,0,0],"stattrak_prices":[15952,9508,9792,0,0],"stattrak_volume":[111,69,28,0,0]},"255":{"index":255,"max":1,"min":0.18,"rarity":6,"name":"Asiimov","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6V6V-Kf2cGFidxOp_pewnTii3w0x_tmTRnt2qdHyWaFAjA5UlQOYI5BO5k9bhZunm41OI34NDnjK-0H3pAWw_Rw","stattrak":true,"normal_prices":[0,0,19196,11596,9037],"normal_volume":[0,0,775,131,250],"stattrak_prices":[0,0,47737,31497,18306],"stattrak_volume":[0,0,159,13,61]},"309":{"index":309,"max":0.4,"min":0,"rarity":7,"name":"Howl","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afVSKP-EAm6extF6ueZhW2exwkl2tmTXwt39eCiUPQR2DMN4TOVetUK8xoLgM-K341eM2otDnC6okGoXufBz_TAB","stattrak":true,"normal_prices":[592641,468919,400100,440000,0],"normal_volume":[175,138,95,4,0],"stattrak_prices":[1400117,940924,728285,663751,0],"stattrak_volume":[77,19,25,1,0]},"336":{"index":336,"max":0.7,"min":0,"rarity":6,"name":"Desert-Strike","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0OanfKVjM-ScHGqvzedxuPUnHnjnxEsi4WTTntqucnuUaA92CZR2E-IDtRa-mobnYeLksQbXg4hDyTK-0H1Bbz5yqg","stattrak":true,"normal_prices":[10552,2840,2747,3033,2870],"normal_volume":[205,291,205,9,42],"stattrak_prices":[7833,4417,3952,4885,5688],"stattrak_volume":[93,43,72,5,21]},"384":{"index":384,"max":0.8,"min":0,"rarity":4,"name":"Griffin","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJ-KaCGGZz9F6ueZhW2e2zERysm3Umdesd3rGald1DpRyQLVbtUa5mtPvYuzrtATeg95EmS2vkGoXuZ5UWeP5","stattrak":true,"normal_prices":[12365,706,391,620,425],"normal_volume":[80,333,336,29,47],"stattrak_prices":[3037,1185,987,1330,1073],"stattrak_volume":[78,65,145,16,27]},"400":{"index":400,"max":0.75,"min":0,"rarity":5,"name":"龍王 (Dragon King)","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSIf6QC3SE0-96j-1gSCGn20x062mAwtb8cX3CaAMoApV3EeFZ50Wwk9fuM-vqtAHW3opHn3iqiSxXrnE8PytIGFg","stattrak":true,"normal_prices":[6725,2501,1438,1770,1465],"normal_volume":[376,729,693,40,57],"stattrak_prices":[9398,5650,2902,5064,2792],"stattrak_volume":[112,119,113,8,15]},"449":{"index":449,"max":0.33,"min":0,"rarity":5,"name":"Poseidon","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0OKhe6FkJP-dMWuZxuZi_uM9Sn23xkx_sG3VyNyqcnnFZgchDMYjQuMJtRHuw9PvZuPjtlCI3d9bjXKpHL2aoaM","normal_prices":[193154,111086,125192,0,0],"normal_volume":[177,79,7,0,0]},"471":{"index":471,"max":0.6,"min":0,"rarity":4,"name":"Daybreak","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiNW0PmnZatjL8-AG2mCyP1zj-1gSCGn2xgl5mjRzd2qeXmeO1coDZpxEeUJsxnrwYaxY7-w4wTb2NpGz3762yxXrnE8iKAzA8Q","normal_prices":[139171,61093,54656,0,105570],"normal_volume":[70,18,12,0,3]},"480":{"index":480,"max":0.52,"min":0,"rarity":4,"name":"Evil Daimyo","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJeaaAliUwOd7qe5WQyC0nQlp4GqGz42ucCqXaQMhDpd4R-AIsxK6ktXgZePltVPXitoRn3-tjCgd6zErvbijVJZd2Q","stattrak":true,"normal_prices":[879,465,358,360,377],"normal_volume":[1569,1393,844,69,94],"stattrak_prices":[2081,1183,817,943,920],"stattrak_volume":[378,337,237,19,19]},"512":{"index":512,"max":0.8,"min":0,"rarity":6,"name":"Royal Paladin","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSMv-KD2uv0v9jufNscCW6khUz_W-Az9b8d3LFZ1AnDMAjR-4CsBO9xofhNL_q4wLWjogUzyn43SxM73x1o7FVNN3FvCs","stattrak":true,"normal_prices":[25370,7092,6882,6862,6526],"normal_volume":[145,296,321,11,47],"stattrak_prices":[33726,10530,7631,10500,7868],"stattrak_volume":[65,72,70,1,11]},"533":{"index":533,"max":0.64,"min":0,"rarity":6,"name":"The Battlestar","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSMPmcAGKV09F6ueZhW2fjxB9_4GqEyN6vdi_BPwQgWZIkRLYD4Ba_kILgYeOz4lbagthBz3_9kGoXuZIYHoDp","stattrak":true,"normal_prices":[11989,3113,2822,3226,3215],"normal_volume":[187,213,249,22,21],"stattrak_prices":[10407,4815,3889,4365,4244],"stattrak_volume":[67,59,82,7,2]},"588":{"index":588,"max":1,"min":0,"rarity":5,"name":"Desolate Space","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJPWAAWuR1etJo_FoTCyMmRQguynLnNepJXPEaQJyDZJ0QOdbsxi7ktS0Y-Li4ADegthGn32ojCJJ7CxosfFCD_SyjfEkHg","stattrak":true,"normal_prices":[8793,1847,1235,1138,1155],"normal_volume":[327,759,1230,215,167],"stattrak_prices":[10576,4315,2707,2592,2604],"stattrak_volume":[90,141,171,61,37]},"632":{"index":632,"max":0.7,"min":0,"rarity":6,"name":"Buzz Kill","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSM_WQGmiC_uJ_t-l9AX22kBh0tm3Qn92qdS7GPARyW5t0QLQD4xi6w9XkZe3jsgDW3ogUnH3gznQeqfpfmso","stattrak":true,"normal_prices":[53901,33613,26994,24142,21723],"normal_volume":[229,398,473,35,77],"stattrak_prices":[19882,12049,8920,9364,7925],"stattrak_volume":[140,135,195,8,22]},"664":{"index":664,"max":0.5,"min":0,"rarity":5,"name":"Hellfire","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSKPWfAmGZ0-tJvOhuRz39zEp24GTXmImsInqWP1AkXpBwE7FetUTswdfkPu7h5QXXithBy32t2DQJsHhDPmtuAA","stattrak":true,"normal_prices":[45007,18914,15012,8857,9934],"normal_volume":[166,159,77,16,12],"stattrak_prices":[25075,16586,10577,11683,10977],"stattrak_volume":[92,49,36,4,5]},"695":{"index":695,"max":0.9,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSLvWcMWmfyPxJvOhuRz39wE1142vSztmvInvBOgV0W5R1FLYNuxW4wIbgNrmx4g2Kj4tMmCX93zQJsHgJr0dqFw","stattrak":true,"normal_prices":[10769,4589,3087,2840,2755],"normal_volume":[457,978,1463,128,173],"stattrak_prices":[14340,6472,3483,2983,2774],"stattrak_volume":[152,225,272,41,48]},"730":{"index":730,"max":0.5,"min":0,"rarity":2,"name":"Dark Blossom","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0PC7bJtvLOWWMWuZxuZi_rZsSi3rzRlwtmjVy4yheHzGa1V0DcF5RO4JsxO-x9C1ZenqtFbW2d1bjXKpi8Drf9k","normal_prices":[10861,1787,1320,1390,1438],"normal_volume":[202,105,62,31,22]},"780":{"index":780,"max":0.5,"min":0,"rarity":2,"name":"Mainframe","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiNW0PGneqd4KeSRAWaCxdFlue1_SjuMmRQguynLmIyoI3KROlcgX5RxQrQMt0O6lIfkPuPi5AKKi9pEzX773XsYuHlj4_FCD_Ts_y5QsA","souvenir":true,"normal_prices":[35,5,3,3,5],"normal_volume":[2037,420,1281,80,49]},"793":{"index":793,"max":0.4,"min":0,"rarity":3,"name":"Converter","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0OCrbJtlJeisAm6Xyfo46OAxFnHixEhztzuAyo79eCqfb1VyXpclTONctxS6w9KxMbi25Fbd2ZUFk3t2_C2R8Q","souvenir":true,"normal_prices":[178,112,84,87,0],"normal_volume":[3418,1172,643,83,0]},"8":{"index":8,"max":0.8,"min":0.06,"rarity":2,"name":"Desert Storm","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0Pare6F_NM-fB2CY1aB347UxFi-3kEgi5TmAw93_dXKWPFR1CJchTOQDsxa6m4DkM--0sgfZlcsbmn2FVX37","normal_prices":[8088,1800,1019,1062,1233],"normal_volume":[28,81,92,16,21]},"811":{"index":811,"max":1,"min":0,"rarity":3,"name":"Magnesium","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSI_icHneV09FxuO56Wxa_nBovp3OAzo2vdHPFPFUmCJRxRbNZ4xewx9W1Nb7j4gzXg99Ayy73iC1Aun1q_a9cBiEfMG3G","stattrak":true,"normal_prices":[493,113,41,19,19],"normal_volume":[920,1123,1952,686,746],"stattrak_prices":[1328,370,147,69,61],"stattrak_volume":[275,459,486,204,507]},"844":{"index":844,"max":0.8,"min":0,"rarity":6,"name":"The Emperor","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSJf2DC3Wf09F6ueZhW2exwBh_6m3dnt36InjDPQ4oXJt1TbJeshW_mtfjN-vrsgaKiokWy333kGoXuRj4z9Nd","stattrak":true,"normal_prices":[22826,6670,4927,5166,4909],"normal_volume":[253,686,1065,46,71],"stattrak_prices":[41135,12959,6468,6000,6479],"stattrak_volume":[121,145,166,4,18]},"874":{"index":874,"max":0.64,"min":0,"rarity":4,"name":"Polysoup","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFU4M2-Z6h0M_-GHlidle8ij-1gSCGn2x904j7dntz4eX6UOlcmCZFwQLIL4Ri7ktexMePg4Q3ZiIIQmyv6inxXrnE8bylol6Q","normal_prices":[3457,1811,1109,987,1021],"normal_volume":[596,325,302,24,61]},"926":{"index":926,"max":0.5,"min":0,"rarity":4,"name":"Red DDPAT","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0PaqeKV5H-WBDGae_vxztN5lRi67gVNxsT_SmYv8InrDblQhDJN2R7ZZ4RW7m9azYb_n5gLZ391AnCj92y8c8G81tFE6rC2P","souvenir":true,"normal_prices":[10628,3157,2429,2963,10537],"normal_volume":[47,39,45,9,1]},"971":{"index":971,"max":0.73,"min":0,"rarity":5,"name":"Tooth Fairy","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSMeWWC2mWwOdkqd5lRi67gVN35WyDwtv8IC-RblVxCpchQLIOuhK8xNG2YbnktAXZjthFxCiohntP8G81tOVu8Qhw","stattrak":true,"normal_prices":[1522,561,356,368,337],"normal_volume":[882,858,1774,52,203],"stattrak_prices":[2296,1092,644,730,637],"stattrak_volume":[269,266,350,57,105]},"985":{"index":985,"max":0.98,"min":0,"rarity":5,"name":"Cyber Security","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSI-mRC3WA1OB9j-1gSCGn2x9-527Tyt-pcnyUagQlW5JxEOIOuhjrw9XlMrixtQTd2NhNmH_5jCNXrnE8Cu1wa6c","stattrak":true,"normal_prices":[18532,4706,2054,1963,2085],"normal_volume":[172,208,191,27,72],"stattrak_prices":[13453,6690,3344,3163,3352],"stattrak_volume":[72,76,65,7,26]},"993":{"index":993,"max":0.7,"min":0,"rarity":3,"name":"Global Offensive","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0PG9b6tSI_GeAVicyOl-pK89HijjkU534mTRw478IirEOgUhXpshQrMK4xW9x4biYrvnsgDd3ohA02yg2Z7zUK8D","normal_prices":[7579,1903,1622,2020,1914],"normal_volume":[203,148,124,3,43]}}},"17":{"name":"MAC-10","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1009":{"index":1009,"max":1,"min":0,"rarity":5,"name":"Hot Snakes","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-AAGabxNF6ueZhW2fhlEwk4DmDzYr9dnvGbgFzDJojFrYMsBS7m9PhMLjh5APZ2IlCnC2qkGoXufthzYDr","normal_prices":[39829,31025,30402,25572,21717],"normal_volume":[43,5,15,4,10]},"101":{"index":101,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M26Z7ZjIfScMWuZxuZi_rg7H322kxgj62vQn9aheC7BblUgCZolReUNsBXukdLgP77r5A3fid1bjXKp3olIKis","normal_prices":[13311,915,242,392,223],"normal_volume":[14,45,31,3,23]},"1025":{"index":1025,"max":0.7,"min":0,"rarity":4,"name":"Gold Brick","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2pZ6hpH_KBB2Sb_uJ_t-l9AX2wwhl35jzRw4yodymWO1R0X5V0FrRc4Bi-m4DuY-2xsgzY39oRmSTgznQe6Q1Q_KE","souvenir":true,"normal_prices":[13338,7150,4588,6279,5812],"normal_volume":[70,20,47,4,3]},"1045":{"index":1045,"max":1,"min":0,"rarity":4,"name":"Button Masher","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-DAXWEwOx6td5lRi67gVN04GjXnIr7JyiSbQJ2W8Z4QuEItBS_kdyxZurnsVfcjYgTzH6r2ClN8G81tG_8yXMP","stattrak":true,"normal_prices":[652,68,36,32,30],"normal_volume":[167,312,449,122,127],"stattrak_prices":[438,128,55,46,40],"stattrak_volume":[79,89,256,101,20]},"1067":{"index":1067,"max":0.62,"min":0,"rarity":5,"name":"Propaganda","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-DHGiAwOl3vuVocCW6khUz_T_WzN6hcHOQaQIgCZIlFrEPtUS7wdW0Ne6wtFTYj9pAzyr-3SxP6n11o7FVcf1yckU","normal_prices":[16080,4544,3251,3342,3500],"normal_volume":[121,131,194,16,40]},"1075":{"index":1075,"max":0.6,"min":0,"rarity":1,"name":"Strats","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9s24bbZ5KfecHXeCwPdJsu18Sha_nBovp3PTmIuoJ3yVa1clXMB4TbEOsBHtwdHiZO-x7gWN2d8XyS_4i3xM53k4_a9cBrlyT3NZ","souvenir":true,"normal_prices":[354,108,117,108,108],"normal_volume":[201,35,83,28,23]},"1098":{"index":1098,"max":1,"min":0,"rarity":5,"name":"Toybox","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-HAX6SzvZJvOhuRz39zRkismnVy9uveXqfZgYpW8R0TLRbshHtx9HvN77g5Qzbi4wTyniojTQJsHhO4vjwuQ","stattrak":true,"normal_prices":[8787,2490,1383,1189,1190],"normal_volume":[62,129,185,61,58],"stattrak_prices":[7077,2853,1542,1672,2024],"stattrak_volume":[18,17,47,17,13]},"1131":{"index":1131,"max":0.9,"min":0,"rarity":3,"name":"Ensnared","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-DB3-ZxNF6ueZhW2fikB935ziGztj7JHyQbgIkWZsmFrJY4xTpwdOzP-Oz7laNj4lFyy2tkGoXudbL5uIf","stattrak":true,"normal_prices":[87,14,5,5,5],"normal_volume":[636,719,913,161,177],"stattrak_prices":[92,16,6,8,8],"stattrak_volume":[271,400,249,183,207]},"1150":{"index":1150,"max":1,"min":0,"rarity":3,"name":"Monkeyflage","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-eAWmbxPdwvOBuSha_nBovp3OBzdisJHPDaQ5xXpF2Ru4M5BTtlYHnYr7h5lbZg4gQzC_22ikfvSZt_a9cBiKJuAuZ","stattrak":true,"normal_prices":[131,19,6,5,5],"normal_volume":[466,845,539,139,165],"stattrak_prices":[91,19,8,6,6],"stattrak_volume":[151,347,428,75,59]},"1164":{"index":1164,"max":1,"min":0,"rarity":3,"name":"Light Box","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJtkLPyGHW6fz9F6ueZhW2e2lBsk4WvXw974diiSblV1DMBxRrEJu0PrwNy1Mruw4gKK3d0TynmskGoXuUBgCcQQ","stattrak":true,"normal_prices":[94,19,5,5,5],"normal_volume":[972,1392,485,208,179],"stattrak_prices":[210,29,11,8,7],"stattrak_volume":[383,82,760,38,26]},"1204":{"index":1204,"max":0.7,"min":0,"rarity":4,"name":"Derailment","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJt5MvGaAFiT0-9luN5lRi67gVN14j6Gy9_7cSqQZw4hW5BzEeICthW6kYe1ZO_ntQ3e2olGnn-vhygY8G81tHTA36iF","souvenir":true,"normal_prices":[1936,595,234,210,186],"normal_volume":[663,899,1299,49,231]},"1229":{"index":1229,"max":0.79,"min":0.21,"rarity":4,"name":"Sakkaku","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-AD2ybwOVjj-xsSyCmmFMk5mnRzdeqdSnCPVN2DpV3QeELtELrlIbiPrzqsVOMjdlBnySvjH5O8G81tOTP5a5f","stattrak":true,"normal_prices":[0,0,70,32,30],"normal_volume":[0,0,6901,1305,886],"stattrak_prices":[0,0,146,56,44],"stattrak_volume":[0,0,2059,203,460]},"1244":{"index":1244,"max":0.8,"min":0.02,"rarity":2,"name":"Echoing Sands","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-ADWaCwOxJvOhuRz39xRlx5GmEyIn9cSjCOg52C8B0TLEOtxa_xNziMu3ktFOP2o1HznqqijQJsHgtnfG5bw","souvenir":true,"normal_prices":[451,97,19,21,16],"normal_volume":[77,314,603,29,70]},"126":{"index":126,"max":0.66,"min":0,"rarity":4,"name":"Saibā Oni","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJtiOvGYB1icyOl-pK89HXuxkRt2627Syt2udn6TZlJyW5R0QuMKsRm6lNflNO3g7lfbi49H02yg2Yk7YeQ4","stattrak":true,"normal_prices":[552,252,107,148,88],"normal_volume":[374,314,449,62,63],"stattrak_prices":[998,536,256,325,246],"stattrak_volume":[143,130,209,35,58]},"1269":{"index":1269,"max":0.637288,"min":0,"rarity":1,"name":"Storm Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4P2RZaVucaCsDGuFxOxzovNwcCW6khUz_W7dz9qrJH2XZgYjC5UiQOADshC5x9W1ML_jsg3djIxCnC6oiSsduyx1o7FV5IlAGpg","normal_prices":[5,1,1,1,2],"normal_volume":[865,197,370,56,176]},"1285":{"index":1285,"max":0.68,"min":0,"rarity":3,"name":"Poplar Thicket","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9veRb7ZoJf6sCGiCxP1ij-1gSCGn2x8mtm2Bntf7JHKSaAN2C5siTeIK5hO6wYGzMuritQ3ej4MTxHmqjHhXrnE8uA1Mzbk","normal_prices":[78,24,9,8,7],"normal_volume":[974,617,619,46,83]},"1295":{"index":1295,"max":0.58,"min":0,"rarity":2,"name":"Acid Hex","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9veRb7ZoJf6sDWadztF6ueZhW2fhw09_6mjSw9r4cy6RPVV1DZZwE7UI4xDsl9CyNuvi4gHf2o1NnH7-kGoXuXqvgvHX","normal_prices":[18,6,1,2,1],"normal_volume":[833,448,443,85,97]},"1334":{"index":1334,"max":0.8,"min":0,"rarity":1,"name":"Bronzer","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M2seqtjOvWsHmiHxetkj-1gSCGn2xgjsWrRyIysJXiXOwIhW5pwQrUI4Bftl4W2P-2351HZj49GmHj_iCJXrnE8D5vakEw","normal_prices":[6,1,1,2,1],"normal_volume":[280,470,588,53,99]},"1349":{"index":1349,"max":1,"min":0,"rarity":4,"name":"Cat Fight","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJtmIf2aDWaE2-tJvOhuRz39l0lx42_Qz9v_cC2SagNyX8RwEbZbskHpltKzYriw4QPeioIWxXqv3DQJsHgCTO4phQ","stattrak":true,"normal_prices":[293,121,62,49,39],"normal_volume":[392,471,515,208,148],"stattrak_prices":[743,280,147,131,96],"stattrak_volume":[88,141,169,55,90]},"1367":{"index":1367,"max":0.6,"min":0,"rarity":2,"name":"Snow Splash","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9veRa6V_H-eBD3fE_uJ_t-l9ASrklhkk4Wrdm9msIy3DblVyA5cmQLMDtxS_ltPmYe_msgbeiY5EziTgznQeYbrm-7Y","normal_prices":[19,5,1,2,1],"normal_volume":[511,569,278,24,47]},"140":{"index":140,"max":0.9,"min":0,"rarity":3,"name":"Pipsqueak","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2hfqF_MPGAHViD0PtzsepWQiiwxE0YvzSCkpu3eXiQOlMkDpAhEeELuhi8x9DmM-uw4VCL2YlAzSn223tL7idp67wDUL1lpPNy-DeiVw","souvenir":true,"normal_prices":[356,79,25,21,18],"normal_volume":[1005,1478,1751,193,193]},"157":{"index":157,"max":0.8,"min":0.06,"rarity":2,"name":"Palm","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I_82-aahgH_yaCW-Ej78l4uJoHH-2lBh-4mTQnIupdHrEO1QgW5MhTbIPtUHul9C1P7ni5gLAy9USZUzbrTo","souvenir":true,"normal_prices":[427,16,2,2,2],"normal_volume":[171,267,487,41,80]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":1,"name":"Urban DDPAT","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9s2qbLRsNM-GHGWvzedxuPUnGXnlwhh-5m7XmYmrJHiUaFJzD8QmTeIC5EG-moKyYerg7g3Z34pMnDK-0H2xTdMbHg","souvenir":true,"normal_prices":[4287,531,195,253,262],"normal_volume":[13,52,33,5,17]},"188":{"index":188,"max":0.8,"min":0.06,"rarity":4,"name":"Graven","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a_s2rfKdlJfSsA2aTkL5JsvNoWSaMmRQguynLztytdHieOA92W8N5Re4D4ELtk9O2Nbnq5FfWjIkRn333hn9O731j4_FCD_RXlm8jng","stattrak":true,"normal_prices":[10373,2927,2196,2430,1978],"normal_volume":[11,14,63,5,5],"stattrak_prices":[14263,4578,3243,3546,3295],"stattrak_volume":[8,31,28,3,7]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a7s2oaaBoH_2WGmaczed1j-1gSCGn20QlsWqAz4z8d3yfP1IpW8QkQeIN5hXtldTkMuqzsQyNjNgUxX6vjCpXrnE8FVzqUc8","souvenir":true,"normal_prices":[3892,1759,1792,3235,0],"normal_volume":[65,48,26,3,0]},"284":{"index":284,"max":1,"min":0,"rarity":4,"name":"Heat","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-BC2OYzvpJvOhuRz39xR5w4GzUyo6pdnuUawMpWJokTLUL50K6l9XiNO7i4lGKiYsRxCv6jTQJsHim4lDW8g","stattrak":true,"normal_prices":[1628,498,306,201,209],"normal_volume":[146,84,226,37,63],"stattrak_prices":[2125,1144,496,440,364],"stattrak_volume":[34,71,105,48,32]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M28baBSLPmUBnPemLZw4rk6Gi3gxkp_5W3Qmdv_cnrDPwZ1Asd2FOcM5BO4k4KxMe7h7xue1dzcbAPD_Q","souvenir":true,"normal_prices":[42,19,19,0,0],"normal_volume":[2029,1518,150,0,0]},"310":{"index":310,"max":0.5,"min":0,"rarity":4,"name":"Curse","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpou7umeldf0Ob3fDxBvYyJkIWIlu7LP7LWnn8fuJJ0ieuSoor30AWw_BA5Yz_wdYPHIQE8NQ3Z-QW7w-i50ZG-7p_Km2wj5HdXDtEr5g","stattrak":true,"normal_prices":[1665,839,999,1487,1800],"normal_volume":[46,64,31,11,3],"stattrak_prices":[2461,1406,1468,3000,2575],"stattrak_volume":[25,20,23,2,5]},"32":{"index":32,"max":0.08,"min":0,"rarity":2,"name":"Silver","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4c29Yah7JeKsAm6Xyfo44-UwS32xwkUjsGzSwtqoJCjCOABxD8AkFu5bsha7wdGyM-rn4wzWjpUFk3tFRcHXeg","normal_prices":[25,25,0,0,0],"normal_volume":[3665,164,0,0,0]},"333":{"index":333,"max":0.8,"min":0.06,"rarity":1,"name":"Indigo","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M2nZqBkJ_-sD2mU_ulktfhWQyC0nQlptT_VztavJXyfa1QgW5J0FuMCtBLtw4ayMe_g5VPZg49MzCX423sf6TErvbjb2X3Wdg","souvenir":true,"normal_prices":[3092,477,291,290,273],"normal_volume":[34,18,58,19,72]},"337":{"index":337,"max":0.5,"min":0,"rarity":4,"name":"Tatter","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2lZ7Z4MOSsAm6Xyfo4tbY7H3q1xRt152TWyt6tc3ifaVcmDppxReVethawlYHmNO6ztQbciJUFk3uxmhdQIQ","stattrak":true,"normal_prices":[1719,673,528,722,656],"normal_volume":[78,46,59,18,3],"stattrak_prices":[1382,996,712,885,980],"stattrak_volume":[50,28,26,18,11]},"343":{"index":343,"max":1,"min":0,"rarity":2,"name":"Commuter","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2ifaNqIfeWMWqRwr8mj-1gSCGn2xlwsT6Byt__cHOePwAkCZEjF7VYuhewmtDuZby0slON3o8WxC7_3H5XrnE86gO55vs","normal_prices":[4019,1279,906,1505,895],"normal_volume":[24,25,7,2,9]},"372":{"index":372,"max":0.7,"min":0,"rarity":3,"name":"Nuclear Garden","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2gfadhJfGBMXSb1OJ6o7JWQiiwxE0YvzSCkpu3Ii_COw4jDsMkEbYJsxe5xNezPu-3swCN3dhEz3_33XlA63lo6-8DWL1lpPMiXZ_jZw","souvenir":true,"normal_prices":[7152,2113,2310,1680,1817],"normal_volume":[142,50,52,1,5]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a7s2oaaBoH_yaCW-Ej-h347AwHyzqx04l4WvSyI77cCjCbQEhW8MjE-NcthG8loXlMujh7g3Ay9USCa6Cs30","normal_prices":[6190,8388,0,0,0],"normal_volume":[807,9,0,0,0]},"402":{"index":402,"max":0.5,"min":0,"rarity":4,"name":"Malachite","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-eD2uRwuZ_pORWQyC0nQlpt27Uw4yrJy_FOlQpCJp2Te5Y5hPqw9HuYePksVaKjt0TmS_2hihJuDErvbgNFzWT1Q","stattrak":true,"normal_prices":[865,314,188,221,228],"normal_volume":[278,119,189,83,20],"stattrak_prices":[1161,563,364,393,473],"stattrak_volume":[95,66,75,17,12]},"433":{"index":433,"max":0.45,"min":0,"rarity":6,"name":"Neon Rider","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-dC2ie0-dytfNWQyC0nQlp5DzTntmgdC7COABxX5NxQrUOtUS5w4LgMu6zsVCK2IJCmyisjitM6DErvbicsEA0SQ","stattrak":true,"normal_prices":[11073,10198,9738,12037,0],"normal_volume":[400,508,344,41,0],"stattrak_prices":[11327,9696,10077,10706,0],"stattrak_volume":[55,55,93,8,0]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a_s2hYahoJM-fB2CY1aAituJtTnvjkUx3tziGmd6hJy-VZlAoWZtwFLRZ5EbpwNLvYb-zsgOKlcsbmn9_3b1O","souvenir":true,"normal_prices":[9228,4410,2755,2655,2459],"normal_volume":[146,72,175,23,18]},"498":{"index":498,"max":0.5,"min":0,"rarity":3,"name":"Rangeen","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-SAmKbyfd3j-V8QBa_nBovp3PWztqtJXqWPVdzX8d3EbUDtkS_w9bmYui04gbYiolGnH_833xM6C5o_a9cBlensHEx","stattrak":true,"normal_prices":[160,30,27,26,25],"normal_volume":[121,123,265,38,34],"stattrak_prices":[141,58,25,51,39],"stattrak_volume":[155,92,106,73,11]},"534":{"index":534,"max":0.5,"min":0,"rarity":3,"name":"Lapis Gator","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-WAmKT1fx_s-h9Vha_nBovp3ODztegd3LEawcnX5ByFLQPtxSxldyxPrjg5QCPj94Ty3j8j3tLu30__a9cBu41m2up","stattrak":true,"normal_prices":[256,114,72,51,69],"normal_volume":[216,195,127,6,42],"stattrak_prices":[309,183,83,90,81],"stattrak_volume":[87,67,76,25,53]},"589":{"index":589,"max":1,"min":0,"rarity":3,"name":"Carnivore","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a_s2jaadScaCsD2uZxOBJs-BkQBa_nBovp3PSmdqpcy2fPwEoWMciQLYKtBa9lYDmN-zlsVDXiNpAnnmqiHwcv3w5_a9cBiTJtAYY","stattrak":true,"normal_prices":[406,49,31,33,28],"normal_volume":[147,170,124,85,101],"stattrak_prices":[472,73,37,31,24],"stattrak_volume":[71,75,90,48,43]},"651":{"index":651,"max":0.52,"min":0,"rarity":4,"name":"Last Dive","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a7s2jaac8cM-HBmKvze9lpN5tRj-2qhEutDWR1N76Iy_BblUnCZd5QLFesEXrmtWzMui05wPc3o4TnnqojS8au3094ekcEf1ydsF2boo","stattrak":true,"normal_prices":[482,127,127,158,130],"normal_volume":[264,240,284,87,26],"stattrak_prices":[420,238,217,251,261],"stattrak_volume":[119,118,68,13,3]},"665":{"index":665,"max":0.65,"min":0,"rarity":3,"name":"Aloha","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-SAmiYwNF6ueZhW2flxhsmtW3RnNiscnOWPA9xC5MiTeUKtRXqk9HgMOvh4wPd3tkQmXn6kGoXucQMChaB","stattrak":true,"normal_prices":[1423,670,496,447,482],"normal_volume":[60,56,110,13,12],"stattrak_prices":[1070,636,441,807,507],"stattrak_volume":[25,24,27,20,5]},"682":{"index":682,"max":0.6,"min":0,"rarity":3,"name":"Oceanic","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-cDWKRz-dJvOhuRz39lh4h52qGm9z7cCjBZ1IpCJp5QbRZtxXql9LnPrnr5wLXiY5EzX_2jjQJsHjZHPDEEg","stattrak":true,"normal_prices":[110,19,28,18,18],"normal_volume":[469,225,391,41,59],"stattrak_prices":[87,45,17,22,14],"stattrak_volume":[194,153,185,13,41]},"742":{"index":742,"max":0.5,"min":0,"rarity":4,"name":"Red Filigree","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s28bapSMvWXMWuZxuZi_rk6F3DixUt_5W3Vn96odS-fO1N0D8MkQu4NukG4kdbiN7yw5gyLjdpbjXKp1e3DB44","normal_prices":[12703,11390,10725,9019,0],"normal_volume":[57,9,7,1,0]},"748":{"index":748,"max":1,"min":0,"rarity":2,"name":"Calf Skin","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-QBmKTyutkj-1gSCGn2x92sWXWntytdHPDOlIlWZJwR-5csBS8k4K1Nuzn4QLa398UyCiq2CxXrnE8x1-1j1w","souvenir":true,"normal_prices":[77,17,8,7,7],"normal_volume":[670,504,227,260,249]},"761":{"index":761,"max":0.5,"min":0,"rarity":3,"name":"Copper Borre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2lZqt5M8-RHGiHz9F6ueZhW2eywBwhsWmAz9-peSjFalQmCJFyTeEC4UO5kNTjNOy0sgXa3oxNzC36kGoXufH8E8DI","normal_prices":[13015,11090,9924,13216,11220],"normal_volume":[68,25,26,1,4]},"812":{"index":812,"max":0.9,"min":0,"rarity":4,"name":"Pipe Down","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-WFmiv0edmtfJWQyC0nQlpt2rRwtqhdHjFa1N1A5ZxEO4MukW4lNayNrnhsVDc3YxGzir9iXkc7DErvbgEiQoeZQ","stattrak":true,"normal_prices":[774,103,45,44,46],"normal_volume":[193,187,162,49,106],"stattrak_prices":[777,217,93,93,86],"stattrak_volume":[71,127,123,42,24]},"826":{"index":826,"max":0.6,"min":0,"rarity":1,"name":"Sienna Damask","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I_82jYbZsJ_WsCGuf1utko959TieMmRQguynLzNv4J32XaVdzX8dyTOcJsxS_x4CxYeKz5QCKjo0RzCv7iC9I5nlv4_FCD_Ti47lJig","souvenir":true,"normal_prices":[96,64,26,36,27],"normal_volume":[369,369,287,58,59]},"840":{"index":840,"max":1,"min":0,"rarity":3,"name":"Whitefish","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-VB3SY_ux3ufVWQyC0nQlp52jdwt-vdnyeP1QoDZQlTeQNtRO-w4e1ZeKzswCM2INHynn3hixPujErvbg9KuBZSA","stattrak":true,"normal_prices":[293,47,22,16,17],"normal_volume":[145,103,149,24,24],"stattrak_prices":[311,66,38,24,19],"stattrak_volume":[66,93,178,94,64]},"871":{"index":871,"max":0.5,"min":0,"rarity":1,"name":"Surfwood","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I_826f61qM8-RC2aTydF6ueZhW2eww0omsGuGmd2oIH_BPVNxCcMjE7EC4Bnul9KzMenj4wPajY1FmXj-kGoXuac9-lER","normal_prices":[1119,554,547,581,586],"normal_volume":[121,122,106,20,13]},"898":{"index":898,"max":1,"min":0,"rarity":6,"name":"Stalker","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-AGmacyutkj-1gSCGn20V0t27Tw974Jy-WOg9yW8N3QOQDsxG4x9O0ZOPqtgHZ399HzST8ji9XrnE8CxAHwFY","stattrak":true,"normal_prices":[14527,4457,3617,3653,3755],"normal_volume":[83,149,207,56,35],"stattrak_prices":[48168,11150,6346,5541,6265],"stattrak_volume":[18,35,44,17,13]},"908":{"index":908,"max":1,"min":0,"rarity":3,"name":"Classic Crate","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-XG3SE_u1ksfVscCW6khUz_WvVntmrI3KXOgcpXpQmRbYK5xe6ktLiYuLksVONi4tMyC_72CpN7nx1o7FVpG3zbwE","stattrak":true,"normal_prices":[338,25,31,24,25],"normal_volume":[125,101,46,117,65],"stattrak_prices":[159,44,16,17,15],"stattrak_volume":[58,54,103,60,68]},"947":{"index":947,"max":1,"min":0,"rarity":5,"name":"Disco Tech","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-dD2SCxNF6ueZhW2frkR5z4m_SyY37cnKRblIpW5smQOcO4EW7lYa1ZOjgtFCLg4wXnn72kGoXuTa4h8QB","stattrak":true,"normal_prices":[2729,715,501,467,466],"normal_volume":[398,666,1431,356,188],"stattrak_prices":[4850,1578,737,705,732],"stattrak_volume":[135,187,239,100,97]},"965":{"index":965,"max":1,"min":0,"rarity":4,"name":"Allure","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-aHWifz-B3j-1gSCGn209w626GnNuucC2SaFMiC8B3FuUJ5kW7wdPnZe7g7gyP2Y4Ry3_5hnlXrnE8RS4Y9Xw","stattrak":true,"normal_prices":[380,74,33,32,31],"normal_volume":[343,552,859,213,215],"stattrak_prices":[373,119,60,52,54],"stattrak_volume":[129,150,360,149,140]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M2-fbZ9LPWsAm6Xyfo457RoS3vlzRx2sWWAzNz4dXvGbQ9zCsZ1FOMI40G4ktDvY-LgtQ3YipUFk3sgu3LoQg","stattrak":true,"normal_prices":[4930,597,460,474,505],"normal_volume":[29,141,46,16,13],"stattrak_prices":[8219,851,304,290,254],"stattrak_volume":[14,73,43,24,23]}}},"19":{"name":"P90","sticker_amount":5,"type":"Weapons","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7i1k_OaheqlrMv-dGlicyOl-pK8-HSixlhh2sG_TydaveS7EZw91A5ByEeIJ4Rm6kNfgMbzr7wGMgolA02yg2VYIqRCy","souvenir":true,"normal_prices":[2364,443,248,280,250],"normal_volume":[27,37,31,25,16]},"1000":{"index":1000,"max":1,"min":0,"rarity":5,"name":"Run and Hide","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk5fOpfaV_H-DKXlicyOl-pK85H36xlEsmtT_SmN2geSqVOAMkCJpwQOQP5BOxlNHiYruwtgXajI0X02yg2YhNEJOA","souvenir":true,"normal_prices":[34753,34064,17699,21274,18760],"normal_volume":[45,4,6,1,3]},"1015":{"index":1015,"max":0.5,"min":0,"rarity":3,"name":"Tiger Pit","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k-_upbbZ-H_KBAXCe_uJ_t-l9AX6wxERy4W_UyYytIn2RPQYjDpp2F-Vc4xi8x9e1Pu7n5gfcjYoWzCrgznQeZAcpQ5E","normal_prices":[2572,2258,2014,2632,2051],"normal_volume":[82,54,41,12,7]},"1020":{"index":1020,"max":0.5,"min":0,"rarity":1,"name":"Ancient Earth","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_CNk7vytYaFjNM-RHGiHz9F6ueZhW2e1lBl3sDyHw9uudXiWO1J1A5RzTOcI5hLqxIbnNLnhsgWN2d1GzHn9kGoXua3B7-6C","souvenir":true,"normal_prices":[391,103,95,114,178],"normal_volume":[317,90,97,327,29]},"1074":{"index":1074,"max":0.5,"min":0,"rarity":3,"name":"Schematic","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk-fe8fK1qL_eWAVicyOl-pK89HXrjwhh_sGWDz4yrcn-eZlR1XMAkFOYIshTqlIXlMbnk7lHWiIlE02yg2XF_CACM","souvenir":true,"normal_prices":[1577,1022,1313,1788,2773],"normal_volume":[43,14,14,3,2]},"111":{"index":111,"max":0.8,"min":0.06,"rarity":3,"name":"Glacier Mesh","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4ve9YJtqLPGQB2KC_uJ_t-l9AX3ikERzsGiDmYuucijGbVNzXpMhELEOsEG9ldDnM-7n5QfW2dkUmHngznQeLgH7yAw","souvenir":true,"normal_prices":[4838,801,719,1059,1401],"normal_volume":[16,60,21,2,3]},"1154":{"index":1154,"max":0.7,"min":0,"rarity":4,"name":"Vent Rush","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V7BsLvefC2OvzedxuPUnTXywwElz52XXzIz4dn2RalcoC8FzQrJfsRe-moG0YeK2sQPZ3YpEmzK-0H18Z6zceQ","stattrak":true,"normal_prices":[145,56,36,32,32],"normal_volume":[862,866,2005,95,156],"stattrak_prices":[233,104,50,64,53],"stattrak_volume":[232,403,368,83,58]},"1190":{"index":1190,"max":0.950549,"min":0,"rarity":4,"name":"Wave Breaker","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0PChZ7d5H_KfG2KvzedxuPUnTHrlzU9xt2qHzd-rJ3yQb1cmXJNzF-Vc5BS6wdLjMe60tAyP3dhNzTK-0H3NvEQllg","stattrak":true,"normal_prices":[387,71,41,38,36],"normal_volume":[838,766,1562,283,182],"stattrak_prices":[517,129,72,63,61],"stattrak_volume":[200,259,625,369,134]},"1199":{"index":1199,"max":1,"min":0,"rarity":2,"name":"Straight Dimes","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0OG6baFhI-KSCHOvzedxuPUnTSy3zE5w5zzXzIqodXmfbFIgCMd3ELIDskawwNXgZrvq4gDWjdpByjK-0H2Y7GSoBg","souvenir":true,"normal_prices":[183,12,2,2,1],"normal_volume":[260,662,422,147,293]},"1233":{"index":1233,"max":0.6,"min":0,"rarity":4,"name":"Neoqueen","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V6poL-GGC2Ke_uJ_t-l9ASyyxhl04zuDn4muInOXPAF2W5shQOAMs0G7xNfkZOuwswbej4JDnyvgznQe6S6_YqA","stattrak":true,"normal_prices":[118,52,31,32,35],"normal_volume":[1430,1106,2133,191,624],"stattrak_prices":[178,74,41,50,56],"stattrak_volume":[356,372,528,77,304]},"124":{"index":124,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Spray","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk_OK8ab1SM_GdClicyOl-pK88Sn3gxU91sGiAw9mreSqROgJyCsF5EOVf50S_x9SzP7iztlaLiYJF02yg2VFl2-bi","souvenir":true,"normal_prices":[92,2,1,1,1],"normal_volume":[121,384,826,247,237]},"1250":{"index":1250,"max":1,"min":0,"rarity":4,"name":"ScaraB Rush","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V7duIeKSDFifx9FhufJtQCSMmRQguynLmYmrdCnGPAUkD5BxQuYC5hO8wdK0Y-_nsgbciNhMyn6v238cuy1jsPFCD_S-VwnSrw","souvenir":true,"normal_prices":[2512,1316,765,486,636],"normal_volume":[149,123,102,69,46]},"1256":{"index":1256,"max":0.6,"min":0,"rarity":3,"name":"Reef Grief","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Tte0PGheqVhH_yaCW-Ej7wu6bhsHy3rlEQi4DvUy9_6JXjGa1JxCpUmQ7MPsxLukoLmYrvr4lPAy9USG-O6-8A","normal_prices":[106,52,19,17,14],"normal_volume":[996,677,550,80,11]},"127":{"index":127,"max":0.75,"min":0,"rarity":4,"name":"Randy Rush","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0OCvZqB0H-KGHW-vzedxuPUnGCy3lhsj6zmAyYn6eXyQbwMhApAmFu8C5xTpktHjMejl71aPjtkQnjK-0H3AcMEIag","stattrak":true,"normal_prices":[438,125,64,74,58],"normal_volume":[217,267,578,62,100],"stattrak_prices":[667,184,113,138,116],"stattrak_volume":[113,77,277,1,40]},"1277":{"index":1277,"max":0.6,"min":0,"rarity":1,"name":"Blue Tac","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk-uGvbpt_L-WdClicyOl-pK9rS3DjwEgjtziHyNioJ3rDaFdxXpR4TbUK4xbtx9K2ZbjltQPei91G02yg2byPK7vI","normal_prices":[3,1,1,1,1],"normal_volume":[640,287,701,100,247]},"1291":{"index":1291,"max":0.63,"min":0,"rarity":2,"name":"Mustard Gas","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Tte0OihZ6lSLPmUBnPexbh35LYwGX61xxl-tzjdnon6dn3DalN2CpVyRbILsEK7xNXiY7_r5hue1dzKUs1JfA","normal_prices":[20,6,2,2,2],"normal_volume":[100,321,492,53,64]},"133":{"index":133,"max":0.5,"min":0,"rarity":2,"name":"Wash me","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4OSrerRsM-OsCmifxeJzj_FlWiSMmRQguynLz9qsdn6UZw4gDZUlEbNfthiwkNXlY7u05gDX3YlMnC2rjCwfuyhr4PFCD_Qqz45uYg","souvenir":true,"normal_prices":[16,3,2,2,1],"normal_volume":[2002,338,455,34,35]},"1332":{"index":1332,"max":0.65,"min":0,"rarity":1,"name":"Desert Halftone","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9TZk_PujeKhoH_OSA2ivzedxuPUnGXHqkE1-4mjdz9eudnuTPQ8gWZpzE-Ve5hOxlNHgY-jj5VPY39gXyjK-0H2RUgwoBA","normal_prices":[4,1,1,1,1],"normal_volume":[300,400,655,38,182]},"1361":{"index":1361,"max":0.65,"min":0,"rarity":3,"name":"Aeolian Light","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Tte0POse7B_IfOHMWyezvpJvOhuRz39zER2tWvVyd2qdXOeaVN2WJV3Qu9Z50GwxNa1NLji4gPfjINDziv8iDQJsHgxRzCSnw","normal_prices":[87,42,19,19,15],"normal_volume":[525,321,650,63,59]},"1419":{"index":1419,"max":1,"min":0,"rarity":5,"name":"Deathgaze","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0ParabBlJ_GJC1icyOl-pK85GHy1kEh3627Tntn6dC-SOgFyXJR3RO8Jt0a7lIG1M-PksgLZjNoT02yg2XMB6aCz","stattrak":true,"normal_prices":[2369,1094,555,524,418],"normal_volume":[242,273,343,276,173],"stattrak_prices":[3973,1387,704,621,543],"stattrak_volume":[74,80,92,45,38]},"156":{"index":156,"max":0.32,"min":0.08,"rarity":6,"name":"Death by Kitty","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk7PO6e694LPyAMXfJkdF6ueZhW2fgkUh042jUnN2geSqTaFN2CcQmQuRfsBXtxtfkN7mztASIg91Bniv8kGoXucYQxgOQ","stattrak":true,"normal_prices":[0,9465,7267,0,0],"normal_volume":[0,159,84,0,0],"stattrak_prices":[0,28881,15037,0,0],"stattrak_volume":[0,24,27,0,0]},"169":{"index":169,"max":0.8,"min":0.06,"rarity":2,"name":"Fallout Warning","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4eelbbd5MvmDC1idwPx5v-9WQyC0nQlp5WiGz92hJC-RagR2CMNxF7NZskG-w9LmNurls1TYiYlFzy722ihP5zErvbhQBxTlOQ","souvenir":true,"normal_prices":[10516,3182,984,1443,947],"normal_volume":[5,4,45,4,10]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk6_O-eKhoH_yaCW-Ej7Yi5LI7F3jrk05y4G-HzY37dCiRPVAnCpZ3R-MI4BnpkICxMLjr5QHAy9USM2Zemfk","souvenir":true,"normal_prices":[7311,410,315,254,299],"normal_volume":[16,13,78,13,5]},"182":{"index":182,"max":0.52,"min":0.06,"rarity":5,"name":"Emerald Dragon","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk6-Cvb6tjH-DKXliS0-9gv95lRi67gVMm4m3Vzdmqci-SO1clX8Z1QeYO5xi5mtTuPu7l4FDc2o4TmH32jC1P8G81tLxM49od","stattrak":true,"normal_prices":[48730,14713,10901,9299,13400],"normal_volume":[11,49,32,3,3],"stattrak_prices":[67249,26770,16957,18565,20650],"stattrak_volume":[15,18,10,4,1]},"20":{"index":20,"max":0.8,"min":0.06,"rarity":4,"name":"Virus","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk9f2jaq1oH_yaCW-Ej7l0tLY8Fn3jk0h342jRwtz9In6TOg4kDZImQ-4Nshi4w9LmNOnh4wHAy9USHtJ8vvM","stattrak":true,"normal_prices":[2029,400,185,294,266],"normal_volume":[39,63,27,15,31],"stattrak_prices":[4410,523,353,411,362],"stattrak_volume":[7,46,74,19,42]},"228":{"index":228,"max":0.5,"min":0,"rarity":4,"name":"Blind Spot","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk4v2qe7RiNOOsAm6Xyfo4seVsTn3ikU0jt2nQnIqqJ3KeOA4jDJV0EOMPt0S7xNLjM76w7gLd2ZUFk3vvaUMV8A","stattrak":true,"normal_prices":[1565,1232,1152,1447,1475],"normal_volume":[162,87,52,7,4],"stattrak_prices":[1251,1130,1076,1221,1298],"stattrak_volume":[127,46,79,7,8]},"234":{"index":234,"max":0.45,"min":0,"rarity":2,"name":"Ash Wood","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk--Wnb7dSLPmUBnPex-p16ec6HHixlBx_4TvUwor7I3mQPFNyX8B5Ru9Z5xftl9G0Y-7nsRue1dw3cZ5lyQ","souvenir":true,"normal_prices":[20,6,5,5,0],"normal_volume":[351,394,382,36,0]},"244":{"index":244,"max":0.6,"min":0,"rarity":3,"name":"Teardown","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4ve9YJtlL-SsD2mU_u15vOVWQyC0nQlp5mjWy4n9cX3FZ1UiApMkQbJZ4BK8ktXnM-zrsgzeg4wQyHr3iiMc5zErvbiseXdBZA","souvenir":true,"normal_prices":[83,28,14,16,13],"normal_volume":[239,270,594,35,25]},"283":{"index":283,"max":0.75,"min":0.08,"rarity":5,"name":"Trigon","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V7B_KfecAFicyOl-pK9vGi3nlEt24GnSwoypc3rFbQ52XsN0EOFcshfuwYa1NbzktVTZ3ohN02yg2RSFidN_","stattrak":true,"normal_prices":[0,1303,836,994,1040],"normal_volume":[0,188,228,20,46],"stattrak_prices":[0,2005,1693,2180,2133],"stattrak_volume":[0,58,98,4,35]},"311":{"index":311,"max":0.5,"min":0,"rarity":3,"name":"Desert Warfare","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnwpHIVvfOsPfI9dqDCWDDGkb4j5OU_Fy_kx0l1tj6DnoqseC2TP1cpAsF2QPlK7EcMYXqtDg","stattrak":true,"normal_prices":[700,401,287,674,648],"normal_volume":[52,25,25,3,1],"stattrak_prices":[1162,365,287,541,785],"stattrak_volume":[47,4,54,6,1]},"335":{"index":335,"max":0.35,"min":0,"rarity":3,"name":"Module","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_Cxk_f23aahvLPWWClicyOl-pK8_Sn_rwE1x5z6AyY6qeXmRb1cgWMNwR7Ff4Bm_m9y0Przq4A3b348Q02yg2QQMyM9M","stattrak":true,"normal_prices":[175,98,95,0,0],"normal_volume":[498,308,172,0,0],"stattrak_prices":[230,126,122,0,0],"stattrak_volume":[363,262,154,0,0]},"342":{"index":342,"max":1,"min":0,"rarity":2,"name":"Leather","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk7eChf6pSLPWSGm-V09Fm6bFWQyC0nQlp5z-HmYr_cH2XaVJ1DcRwEbFYsES5xtK0NOux7waMgoMTzyyrinlO7DErvbjoM7X31Q","normal_prices":[2706,1065,676,649,624],"normal_volume":[31,28,27,21,33]},"359":{"index":359,"max":0.92,"min":0,"rarity":6,"name":"Asiimov","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-JaV-KfmeAXGvzedxuPUnTSjikRgksjuBzoz4dXLFb1QoC8QlTLQD4EPqk4LvN-Pns1aMioNBzTK-0H3gQVv65g","stattrak":true,"normal_prices":[19522,16107,15563,15236,15217],"normal_volume":[219,406,457,116,89],"stattrak_prices":[28864,16698,16019,15801,16371],"stattrak_volume":[46,82,58,24,17]},"486":{"index":486,"max":1,"min":0,"rarity":3,"name":"Elite Build","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6lsM-SWHH6vzedxuPUnHyi1xE9xsGiDmdqpdnmRPwcgDZslRuAM40Trx93nNevj7gOPjdlGzzK-0H27CoeJJQ","stattrak":true,"normal_prices":[354,54,60,43,41],"normal_volume":[214,387,298,84,77],"stattrak_prices":[470,80,42,31,38],"stattrak_volume":[90,235,289,122,101]},"516":{"index":516,"max":1,"min":0,"rarity":5,"name":"Shapewood","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V7dlIeCWGWifxdF6ueZhW2fglEtz6zjWyo2uJXKeaAF1ApZ2F7YN5BC_w9TjYbzg5VCNg9pEnHiskGoXuQsJgcHb","stattrak":true,"normal_prices":[3429,935,840,834,690],"normal_volume":[91,144,251,49,59],"stattrak_prices":[3903,1144,702,743,711],"stattrak_volume":[23,36,53,48,29]},"593":{"index":593,"max":0.6,"min":0,"rarity":4,"name":"Chopper","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V6J4LPysGm-CzvpivORWQyC0nQlptWTXzt-tIyrFPQMjCpImQbED5xm5kIDhZePitlbdjotBnH783H9L7jErvbjpMmMyTQ","stattrak":true,"normal_prices":[516,133,116,106,108],"normal_volume":[326,305,276,23,34],"stattrak_prices":[511,250,141,263,147],"stattrak_volume":[105,147,168,24,15]},"611":{"index":611,"max":0.8,"min":0,"rarity":3,"name":"Grim","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6N_Kf2eMWuZxuZi_rA9GHDrlh8h6m7dw4qpciiUOgQkAsF2ELYPsBjploe2P7ngsQaIjN5bjXKpNUOMolU","stattrak":true,"normal_prices":[107,22,24,26,19],"normal_volume":[340,349,270,33,55],"stattrak_prices":[175,50,19,59,19],"stattrak_volume":[115,294,268,48,84]},"636":{"index":636,"max":0.75,"min":0,"rarity":5,"name":"Shallow Grave","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V7dlIfyfAXCvxvx3puRWQyC0nQlpsWzUyIqvcCiVPFQnW8YmEO4P5xi6xNS2Num35FbX34lCzX7_hytK5zErvbi02RizsA","stattrak":true,"normal_prices":[5405,3409,2738,2554,2423],"normal_volume":[163,245,410,33,122],"stattrak_prices":[3269,1420,979,1109,977],"stattrak_volume":[31,57,98,20,24]},"669":{"index":669,"max":1,"min":0,"rarity":4,"name":"Death Grip","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk_6v-V6ZsMvWRAWmV0tF0vPRscCW6khUz_WqAy4z6cX2Tbg8hWJN2RLQMsRPplNDmYr63sVPciIkTyij3iX5M7yt1o7FVUmFnInA","stattrak":true,"normal_prices":[4562,3322,2513,2062,1815],"normal_volume":[48,25,45,22,55],"stattrak_prices":[4006,2585,1442,1356,1288],"stattrak_volume":[20,12,10,1,37]},"67":{"index":67,"max":0.08,"min":0,"rarity":5,"name":"Cold Blooded","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k_P6nfKxoMs-DVzevzedxuPUnSivqkBt_5m7Rw9v8cXmTZ1UjX5Z5EOEIuhK8koHuNe7r51fYjt4XyDK-0H2E4aJrDg","stattrak":true,"normal_prices":[6776,6743,0,0,0],"normal_volume":[184,12,0,0,0],"stattrak_prices":[8815,9307,0,0,0],"stattrak_volume":[55,7,0,0,0]},"717":{"index":717,"max":1,"min":0,"rarity":3,"name":"Traction","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V7B_JfGXMWuZxuZi_udvTHDjzUVxsm-Aw9auIniRPQJ2XJVyEONetxDuk4HiNeu24VSP391bjXKpopWoUos","stattrak":true,"normal_prices":[219,46,38,27,26],"normal_volume":[93,157,86,185,184],"stattrak_prices":[320,76,34,32,35],"stattrak_volume":[56,92,101,60,92]},"726":{"index":726,"max":0.5,"min":0,"rarity":2,"name":"Sunset Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk7f6hZ6lSL-KSAGCV_uJ_t-l9AX3klxl_5mzQmN34dXLDaAd0XJYmROIJsUHswdzuYe7ktgzfit1DmS_gznQesD3mhjI","normal_prices":[1556,1264,1300,1312,1579],"normal_volume":[57,106,70,13,16]},"744":{"index":744,"max":0.5,"min":0,"rarity":3,"name":"Baroque Red","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k-fegbbBiH-KWClicyOl-pK8_Gi3qlEp2sjvSzomhIi_CalByW5shQuNcuhm8m9GzMePg5gLW2IxC02yg2WEL1Rk5","normal_prices":[3676,3404,3387,4117,3844],"normal_volume":[48,19,8,2,2]},"759":{"index":759,"max":0.5,"min":0,"rarity":4,"name":"Astral Jörmungandr","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k5f28ZZtvLOWWMWuZxuZi_rJtFiziwkom4GXTyNqrIC-TPVMgApAkE-EMtUS-xoCzNry35Fff3t5bjXKprRMe7_8","normal_prices":[37474,43306,42046,65336,140000],"normal_volume":[78,3,7,1,1]},"776":{"index":776,"max":0.5,"min":0,"rarity":3,"name":"Facility Negative","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk7f67bbR_Kf6HMWaB1O9JvOhuRz39zE5_tmvSzNugeXyUOAMlW5pyQOcN4Re-xte0Nb_n4wXf2INNynj_jzQJsHhMSbHang","souvenir":true,"normal_prices":[191,25,11,12,12],"normal_volume":[172,174,167,31,34]},"828":{"index":828,"max":0.47,"min":0,"rarity":2,"name":"Verdant Growth","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4v28Z5t5JeiHB2uV_ulkteRncD-6mxgYvzSCkpu3eXqUaFMkDZciEeZesxG4w4fgZe3g51HfiY4RmS33jCNMvXpst-gFAr1lpPPtRxOxww","souvenir":true,"normal_prices":[194,60,33,136,388],"normal_volume":[309,120,169,28,17]},"849":{"index":849,"max":0.75,"min":0,"rarity":3,"name":"Off World","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6trJuecHGuU_uJ_t-l9AS_jwBwisG3SzN-rcX-SbA4lCsR4R-EDuhi6wIG1NuzjtFba2N8WxS3gznQePPXjzOg","stattrak":true,"normal_prices":[154,28,19,19,19],"normal_volume":[225,125,235,12,135],"stattrak_prices":[183,53,26,28,23],"stattrak_volume":[61,136,281,18,73]},"911":{"index":911,"max":0.57,"min":0,"rarity":5,"name":"Nostalgia","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6piM-SSAmCZwNF6ueZhW2fgxBh25mmAyY6reS2WaAElCpZ2RrMOuxO6k4LnNuy2tgLejoIWyXj3kGoXuTP4YgZa","stattrak":true,"normal_prices":[1431,538,419,529,441],"normal_volume":[142,183,83,31,30],"stattrak_prices":[2679,1053,638,985,628],"stattrak_volume":[55,79,82,5,14]},"925":{"index":925,"max":0.5,"min":0,"rarity":1,"name":"Desert DDPAT","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk6_a-abBSJPWAC3WE_uJ_t-l9ASjgwBx3sj_Ry4qqcXKfPVdxD5J4F7MIsBnpl9OzP7jg7gLd2dpFyiXgznQeFOalmMw","souvenir":true,"normal_prices":[68,69,32,69,59],"normal_volume":[823,108,190,12,49]},"936":{"index":936,"max":0.55,"min":0,"rarity":4,"name":"Attack Vector","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk__2icZt7Kf-fC3Ov0bcmj-1gSCGn20QhtW_Vm9r8InmVbFJyDJMkE-IJsEOwm9G1Mu3jswSP2t1Hyy-s3yJXrnE8K5R_WCY","normal_prices":[1967,1080,701,712,687],"normal_volume":[371,298,214,30,22]},"969":{"index":969,"max":1,"min":0,"rarity":3,"name":"Freight","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V6diLuSSB2mV09F6ueZhW2fhk09ytjmDm4n8JHOebQEgCMAmQrEMuhi4k4W0MurntVHfid5GnC38kGoXuRB1lB54","stattrak":true,"normal_prices":[86,14,5,5,5],"normal_volume":[480,358,549,169,131],"stattrak_prices":[81,20,9,6,7],"stattrak_volume":[159,154,327,91,285]},"977":{"index":977,"max":0.6,"min":0,"rarity":3,"name":"Cocoa Rampage","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk_6v-V6BkLv-sHGad0e9xtd5lRi67gVMl52jUztr9cn7CbQEmWZV1R-ED5BHqx9G1PuOxsgWM2N4Xniqrh35L8G81tGacA9-f","stattrak":true,"normal_prices":[272,100,65,69,75],"normal_volume":[216,117,114,29,63],"stattrak_prices":[225,101,51,71,61],"stattrak_volume":[114,87,102,28,25]}}},"2":{"name":"Dual Berettas","sticker_amount":5,"type":"Weapons","paints":{"1005":{"index":1005,"max":0.7,"min":0,"rarity":1,"name":"Heist","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4s2mba1-NM-DAmae0tFxouRsQRa_nBovp3OEn437c3yTZlJ0DpB3QORfshS8xIfjYe3n7wTbi98Wzn2o2ilPuilv_a9cBr2drwX0","normal_prices":[605,135,100,528,66],"normal_volume":[220,276,191,29,65]},"1086":{"index":1086,"max":0.5,"min":0,"rarity":1,"name":"Oil Change","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I_82rZqNkLvWsCm6C1fdJvOhuRz39x0txtzuHn9j_cn6VbVMiCpJ4Q-MCuhDukYXnN-7q4wTbjIlGzij9jzQJsHgVbYzf3Q","souvenir":true,"normal_prices":[253,166,155,136,97],"normal_volume":[151,131,71,8,16]},"1091":{"index":1091,"max":1,"min":0,"rarity":3,"name":"Tread","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_KWHGKE1e9lj_V7Sii3qhEutDWR1NmhcnPEPA92CJBxQeUNsha-ltC0ZOnltQHfjI1Gn3r7jy9N7npvsb4cEf1yGJF-WOQ","stattrak":true,"normal_prices":[699,215,61,49,51],"normal_volume":[105,40,101,45,73],"stattrak_prices":[679,240,117,92,100],"stattrak_volume":[30,41,32,37,44]},"112":{"index":112,"max":0.801418,"min":0,"rarity":4,"name":"Hydro Strike","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1f-vOiV6FhKeSWMW-Jxfx5j_J9XSC4kCIrujqNjsGgeHrGa1B2W5t1Q7NetkOwk4C2Ybzq4FDWjI0TzS6viilLv3tp6rwLT-N7rWtjCU_P","stattrak":true,"normal_prices":[604,233,92,97,70],"normal_volume":[284,293,451,40,71],"stattrak_prices":[1083,442,186,225,166],"stattrak_volume":[91,80,127,33,26]},"1126":{"index":1126,"max":1,"min":0,"rarity":5,"name":"Melondrama","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2rZK15JeOsDGKHwPxzj-1gSCGn20t_5TiBmdf9Jy-QaQIiW5F1E-BesxG9lIaxNuLj41He340Ryi79ii5XrnE8Xl7Qhlk","stattrak":true,"normal_prices":[1742,646,522,510,493],"normal_volume":[382,971,1796,692,490],"stattrak_prices":[1794,651,490,512,488],"stattrak_volume":[125,195,342,195,124]},"1156":{"index":1156,"max":1,"min":0,"rarity":4,"name":"Flora Carnivora","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2qfaVhH_WfB3OV0tFzpuhlcC-_mg8mjDGMnYftbynGOA4lDZd4FOZYuxi6kdPvZuLrsgTW2IIQxXn7iSNJ6ic96-YCB_I7uvqA4cV5qzc","stattrak":true,"normal_prices":[444,85,40,36,34],"normal_volume":[450,703,1671,776,225],"stattrak_prices":[592,162,67,57,56],"stattrak_volume":[119,194,263,235,203]},"1169":{"index":1169,"max":0.698529,"min":0,"rarity":3,"name":"Hideout","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1f-vOiV6ZoMvWHGmaD_uJzpOloQxa0hxQpjDGMnYftb3-WbQ92WcZ4EeFZs0TtxIfvZr_m7wXW2I0TySv93ywd5yxu5-0FAPE7uvqA-FxXgtE","stattrak":true,"normal_prices":[34,11,5,5,5],"normal_volume":[1775,914,512,44,64],"stattrak_prices":[45,16,8,12,8],"stattrak_volume":[242,200,835,110,116]},"1263":{"index":1263,"max":0.7,"min":0,"rarity":2,"name":"Rose Nacre","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4P2Reqt-Jc-UAWuU_uJ_t-l9AXuxlkl_5j_TyN2qc3-SaQd0C5d3FOQCsBfqlYWxYey34FeLjoJNny_gznQe5VNQ57w","normal_prices":[22,6,1,1,1],"normal_volume":[74,391,481,44,83]},"1290":{"index":1290,"max":0.8,"min":0,"rarity":2,"name":"Polished Malachite","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4PGmV6lsMvKfC1iX0-dmo95lRi67gVN_5GWHz46sInLGPwAmX8F2E7MNsxPsld21Zerr5AyI34hCzHqrjShB8G81tPVumS8Z","normal_prices":[92,15,3,4,2],"normal_volume":[1094,687,1336,56,119]},"1335":{"index":1335,"max":0.8,"min":0,"rarity":1,"name":"BorDeux","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4PGmV6VuMumfB2Svxvx_oPJWQyC0nQlp4TnXyImgd3mXbAAjXpZ4FORZuxawm4XhNOKxtQ3ciYJBxSj-jHwcujErvbh_J5_kxQ","normal_prices":[6,1,1,2,1],"normal_volume":[251,150,636,53,55]},"1347":{"index":1347,"max":1,"min":0,"rarity":4,"name":"Angel Eyes","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1f-vOiV6FhKeSWMWWZw-J_s-BlcCi9khgrjDGMnYftb32WZlN1W8B5R7UN50brwYDlPrm3s1CPjYoXmCn3hnlJuCpi574EAqA7uvqAcmHsw_M","stattrak":true,"normal_prices":[288,123,62,51,38],"normal_volume":[358,394,586,229,217],"stattrak_prices":[758,253,134,126,94],"stattrak_volume":[94,159,202,49,78]},"1373":{"index":1373,"max":0.678431,"min":0,"rarity":1,"name":"Silver Pour","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4PeRaad_OfyaDViWzeFh495lRi67gVN3tmnTn4yreXvFZgYjD8QlE-QK4EGxkda0Ze20tQbZ2Y9CyS_5iC1K8G81tJXDIHOE","normal_prices":[5,1,1,1,1],"normal_volume":[637,339,1548,42,107]},"139":{"index":139,"max":0.82,"min":0,"rarity":4,"name":"Sweet Little Angels","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2hfqF_MPGAHViSwOxvj-V8TiW6kA4YvzSCkpu3dHrEag8oCMd2EeMCtRa5xIbkZuuxtVbb2IhHz3_7hywavH1s6-lTB71lpPNncouquQ","souvenir":true,"normal_prices":[1184,499,220,209,177],"normal_volume":[737,588,971,69,161]},"153":{"index":153,"max":0.6,"min":0.26,"rarity":4,"name":"Demolition","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M26aapqJeKaAGKvzOtyufRkASrhkEV-sWXRy4qudH-XbAJ1WZF1E7EDt0G8k4e2M-_q5FOLi4NHzX7gznQeYfmGzpI","souvenir":true,"normal_prices":[0,0,2707,1223,1298],"normal_volume":[0,0,61,27,11]},"190":{"index":190,"max":0.8,"min":0.06,"rarity":3,"name":"Black Limba","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s29baV-L_6sC2uZ1etlj-N7Tj-8qhEutDWR1NyuJC6SPQQoC8N1TLYMthC_kNTmMOKw4gLe2osWmC6vhylB6C5i4OscEf1yNRLqhkE","stattrak":true,"normal_prices":[3481,584,499,509,458],"normal_volume":[6,21,50,17,8],"stattrak_prices":[8065,701,581,588,493],"stattrak_volume":[3,29,63,9,17]},"220":{"index":220,"max":0.2,"min":0,"rarity":4,"name":"Hemoglobin","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4s2he7dkJumsHGKU_uJ_t-l9ASjjxEgm4mWHzYuhdi-RPVByD5pxF-ULshS6xofjMrzgs1eIiIxHnnrgznQe0T5dj0k","stattrak":true,"normal_prices":[1784,1666,1725,0,0],"normal_volume":[267,54,10,0,0],"stattrak_prices":[3066,2650,2700,0,0],"stattrak_volume":[43,35,11,0,0]},"249":{"index":249,"max":0.4,"min":0,"rarity":4,"name":"Cobalt Quartz","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4s2ter1-NPGfAm6KxOpJsu18Sha_nBovp3OGm92vdXyWOgN2Dcd2E7Zfsxa7kNe2Zbm2slSN2N1HnCmqi39MuCc6_a9cBtlhe-EA","souvenir":true,"normal_prices":[75,39,31,48,0],"normal_volume":[936,461,826,92,0]},"261":{"index":261,"max":0.5,"min":0.05,"rarity":4,"name":"Marina","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s2jabZkLvGsHXKe0-dltd5lRi67gVN34DuDyoytIH3EPwYnDMYjROde4RC9lIDnZO_i51TejdoRxSWrhn9B8G81tGB0zZHS","stattrak":true,"normal_prices":[2897,701,529,606,473],"normal_volume":[41,71,57,27,3],"stattrak_prices":[5363,1016,824,907,778],"stattrak_volume":[21,49,57,25,3]},"276":{"index":276,"max":0.58,"min":0,"rarity":3,"name":"Panther","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M2-aap5KPWBMWuZxuZi_uA4Si-3kRx-sDzUn4r_cnPGa1AiApJwReRc4RXrwIHjMLu25AGP2otbjXKpeGQaAco","stattrak":true,"normal_prices":[749,474,300,291,306],"normal_volume":[204,118,56,18,14],"stattrak_prices":[863,581,382,391,300],"stattrak_volume":[59,50,79,4,20]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4c2gabJ0H_yaCW-Ej7ci4blsTi_kwkki62yAnN6tcHLGZg4iAsF1FLULuhPuxtTiMOnn4gzAy9USUx32_HM","souvenir":true,"normal_prices":[1511,2368,0,0,0],"normal_volume":[156,25,0,0,0]},"307":{"index":307,"max":0.45,"min":0,"rarity":3,"name":"Retribution","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnl8StP6ryvOqJpJqjACjbBkb93srg-Fn7ilBhysWXSyNarJSqUZlIpCMclTbMCrFDmxYRwJ9Kk","stattrak":true,"normal_prices":[550,790,620,11404,0],"normal_volume":[14,41,27,1,0],"stattrak_prices":[634,511,426,744,0],"stattrak_volume":[31,21,34,2,0]},"330":{"index":330,"max":0.22,"min":0,"rarity":1,"name":"Briar","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s24YapoM8-fB2CY1aAn4rlsTnzhxxhx5TuHwt76cXuXbVApApV0TLJctxm9kd3vZL-35wTWlcsbmthIan4W","souvenir":true,"normal_prices":[959,328,306,0,0],"normal_volume":[139,42,28,0,0]},"396":{"index":396,"max":0.47,"min":0,"rarity":4,"name":"Urban Shock","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2rZK15JeOsG3WSwOBlpO57Qha_nBovp3PQzI6pc3iRZ1cjC5dzQe4CsxPtwdHjMevq41CLjIpMm3_5jypN7Cxp_a9cBoxgoAoS","stattrak":true,"normal_prices":[585,261,186,235,232],"normal_volume":[195,112,87,28,19],"stattrak_prices":[864,462,399,412,468],"stattrak_volume":[66,65,36,13,3]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a_s2oZ7ZuJfSsAm6Xyfo45LVtG3zgzEt-tmWHydutd3nFaVciDJIjFrZZt0OxmoXkMuuz7wbY2pUFk3vnrYa7Ww","souvenir":true,"normal_prices":[108,15,10,9,9],"normal_volume":[149,113,286,106,111]},"447":{"index":447,"max":1,"min":0,"rarity":4,"name":"Duelist","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2jZ7BlJeKsAWGv0et3ou1WSiW6gRgYvzSCkpu3dn-RaFdzDZV4F-RZtxW7w9fgM--x5geNjooUyH3-iS5K53pq47wLUr1lpPNOmOBZwg","normal_prices":[29250,24446,23142,27730,25000],"normal_volume":[28,6,2,2,5]},"450":{"index":450,"max":0.5,"min":0,"rarity":1,"name":"Moon in Libra","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s20Z6BkIfPCMWuZxuZi_rFtFnC1zB9-tW_cz9z6dnvEbw4jD5MiRbMDs0Xqm9G1Ybvgs1bc3oJbjXKpy-pewO4","normal_prices":[1238,599,500,459,466],"normal_volume":[131,45,80,5,1]},"453":{"index":453,"max":0.08,"min":0,"rarity":3,"name":"Emerald","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4c2rZaF_IfyXMWuZxuZi_uBrF3u3zE5xsWjTzIr7eHKeaVIpCpd5QOIC5xi_w9PjY-2x4QDd3opbjXKpzqjop3Y","normal_prices":[4824,6798,0,0,0],"normal_volume":[214,18,0,0,0]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M2-ZadSLPmUBnPekb8g5LI8Hyi2l01z42Tdmdj9cXiRaA4jXJp4E7YJ4Ra8lILmP-7itBue1dzkV1WWjA","souvenir":true,"normal_prices":[103,3,1,1,1],"normal_volume":[261,518,872,129,276]},"47":{"index":47,"max":0.8,"min":0.06,"rarity":1,"name":"Colony","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M29eKVuJc-eD3WZz-tJvOhuRz39wRx2smzVyIqtJ3OQaARzDschFO5esxm5mtHiM-7l5wCN3ohBxSz63zQJsHg_UethgQ","souvenir":true,"normal_prices":[140,4,1,1,2],"normal_volume":[139,63,306,54,478]},"491":{"index":491,"max":1,"min":0,"rarity":3,"name":"Dualing Dragons","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2qfaVhIvWBHGKE1e9JtPNoSCa9hiIrujqNjsGqcn-VZ1JyXMR3RuMK5xDswNXkYbjitgePj91Bynn32y5N7ydtsLoET-N7rXzpOmeh","stattrak":true,"normal_prices":[549,81,32,26,25],"normal_volume":[145,192,331,102,163],"stattrak_prices":[909,161,75,50,51],"stattrak_volume":[62,94,129,39,39]},"528":{"index":528,"max":1,"min":0,"rarity":3,"name":"Cartel","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a_s2qfaVhIvWBC3OEwP1Js-B7Wyy_qhEutDWR1I38I3yROgAmDZIjFuEJ50S6lNLvMuKx5lPbj9gRySz92HhKuiZp5ekcEf1yPnX3Fyc","stattrak":true,"normal_prices":[625,144,66,36,46],"normal_volume":[144,114,61,22,79],"stattrak_prices":[834,183,87,56,52],"stattrak_volume":[54,36,69,46,56]},"544":{"index":544,"max":0.45,"min":0,"rarity":3,"name":"Ventilators","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhIvWBC3OEwP1JpuRnWyC_lAkooS66lob-KT-JblNxDcMiQe8M5hDtxtfnNrvrswyLjdgWzCyvhytP7ilqt7pXBfdz-rqX0V-MxKZG7g","stattrak":true,"normal_prices":[69,23,30,21,0],"normal_volume":[248,118,271,32,0],"stattrak_prices":[88,46,21,27,0],"stattrak_volume":[94,88,67,24,0]},"625":{"index":625,"max":1,"min":0,"rarity":4,"name":"Royal Consorts","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_KWHGKE1e9lj-ZmQy22myIxtjOMmYrGLSLANkI-C5AjFOcM5EaxxtTmPrnl4Q2Ki91Eyyz32y1Luyk44u4LUqEjr_ff3BaBb-MmOWu8Lw","stattrak":true,"normal_prices":[3198,650,292,252,265],"normal_volume":[136,260,281,125,149],"stattrak_prices":[1460,420,177,149,152],"stattrak_volume":[51,77,133,28,33]},"658":{"index":658,"max":0.6,"min":0,"rarity":5,"name":"Cobra Strike","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhIvWBC3OEwP1Js-5rXSiMmRQguynLydn9JXmUOwMgCsN1EbMPsRHtxoDuZrzm4VTait4Tzn_-jn4f7ipu4fFCD_Qo-zseRg","stattrak":true,"normal_prices":[20920,7454,5309,5894,5337],"normal_volume":[62,58,32,4,6],"stattrak_prices":[16553,10360,6855,33721,7026],"stattrak_volume":[27,5,14,2,2]},"710":{"index":710,"max":0.5,"min":0,"rarity":3,"name":"Shred","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I_82rZK15JeOsGW6e1etkj_NoRi22hyIrujqNjsGrJ3rGbQAgDsEhE-YJ5he7w9TgZOnrtgWI2oNNxCv6hixP7SZitrpRT-N7rUuDq4Qp","stattrak":true,"normal_prices":[128,36,28,28,32],"normal_volume":[108,296,90,62,20],"stattrak_prices":[137,85,29,35,44],"stattrak_volume":[94,131,126,17,54]},"747":{"index":747,"max":1,"min":0,"rarity":5,"name":"Twin Turbo","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2qfaVhH_WfB3OV0tFkse1lVha_nBovp3OHytv8JCnBbAF1X5MjR7UPsBfrmoHuNr7nsgbfjdlAxSr63CIfuChr_a9cBiuNovOB","souvenir":true,"normal_prices":[2725,603,276,194,192],"normal_volume":[259,243,242,93,145]},"824":{"index":824,"max":0.6,"min":0,"rarity":2,"name":"Drift Wood","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I_82qer1SN_-cClicyOl-pK87GXGwlkxx5TnRnon4IHvCPAIiW8dxQ7Nc50K6l4XhY-m04QLdjo9N02yg2cWHvD9Z","souvenir":true,"normal_prices":[259,96,36,94,113],"normal_volume":[177,124,68,3,52]},"860":{"index":860,"max":0.55,"min":0.06,"rarity":2,"name":"Pyre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s2pbah9Jf6sCmaCytF6ueZhW2fhzU8l4G3dyYr4d3jCPAd1AsdwQ-QD5hS7x9XlZOi35wGM2IMWzX2vkGoXuX-7oZQZ","normal_prices":[6018,1873,1584,1647,1915],"normal_volume":[10,69,75,14,8]},"895":{"index":895,"max":1,"min":0,"rarity":3,"name":"Balance","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_WfB3OV0tFkv_JscCW6khUz_W2Dyon_dimePA8lWJclQrMJthm-kYW2NbzrtQ3eioJCnyWo33wa7Hl1o7FV2r7YJY0","stattrak":true,"normal_prices":[929,259,175,108,92],"normal_volume":[95,75,77,27,20],"stattrak_prices":[1200,312,174,113,130],"stattrak_volume":[43,45,66,55,44]},"903":{"index":903,"max":0.7,"min":0,"rarity":3,"name":"Elite 1.6","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_WfB3OV0tF1vOB6XCCwqhEutDWR1Ir4JS2UbQRxW5J5QLICsxi8ld3mY7jq4AeKj99FzCSsiy1M5y9q6r0cEf1yqEZuIxI","stattrak":true,"normal_prices":[144,30,26,28,26],"normal_volume":[95,129,118,48,90],"stattrak_prices":[158,53,29,42,27],"stattrak_volume":[59,53,128,45,53]},"978":{"index":978,"max":1,"min":0,"rarity":4,"name":"Dezastre","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_WfB3OV0tFytftoXD2hkCIrujqNjsH4c3qeOgR2XpJzFOcD4BK_m4HmN7mx5wGIjthDxHn23yhLv31u6u4HT-N7rWmjRO8T","stattrak":true,"normal_prices":[2051,1162,347,261,251],"normal_volume":[89,109,81,17,45],"stattrak_prices":[2229,1062,442,389,363],"stattrak_volume":[31,31,49,27,38]},"998":{"index":998,"max":0.65,"min":0,"rarity":2,"name":"Switch Board","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s2gfalvJeKAMWCCxOt4j-1gSCGn20104juHydqtcnLBblAiWMdxQrUKsEG-wd3iPrmx5gGNiNgXznqtiCNXrnE8feK4iuw","normal_prices":[760,342,258,265,294],"normal_volume":[107,67,135,18,54]}}},"23":{"name":"MP5-SD","sticker_amount":5,"type":"Weapons","paints":{"1061":{"index":1061,"max":0.58,"min":0,"rarity":4,"name":"Autumn Twilly","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9s26eqVkLvGBDW-Z1et1pN5lRi67gVMj5DiAw9avcn-XOlQoDMEjFrYOsETpkIfuYb-x7gaNj9pMzX74inwb8G81tAuAxr4i","normal_prices":[1999,1099,815,900,809],"normal_volume":[124,89,82,9,12]},"1137":{"index":1137,"max":1,"min":0,"rarity":3,"name":"Necro Jr.","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSK_mXMWmVwvx5vu5kRiq8myIrujqNjsH8JXqXPVAhDZVyR7YO4ETrxtLvZbmxtAXfiIpCzHr5h3tB635j4-gCT-N7reJfmdfh","stattrak":true,"normal_prices":[83,14,5,5,4],"normal_volume":[555,740,621,288,280],"stattrak_prices":[90,18,6,6,8],"stattrak_volume":[141,257,189,85,344]},"1180":{"index":1180,"max":1,"min":0,"rarity":3,"name":"Statics","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1W_6eRe7BsNPmQHViSzftzj-1gSCGn20l252_Tz478Jy3EbAYnX8FzFuAI5kO5wNK1P-uz4lSP2doRyS_6iipXrnE8LnlBQOA","stattrak":true,"normal_prices":[218,35,17,12,10],"normal_volume":[161,135,156,113,95],"stattrak_prices":[223,63,33,18,21],"stattrak_volume":[74,101,137,31,35]},"1231":{"index":1231,"max":1,"min":0,"rarity":3,"name":"Liquidation","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1Y-s2jePF-JM-CG26TytF6ufB8Ri2ygRQovQKJk4jxNWXBOgUmDsN5FrIM5xi4lIHgNe7q51Pdi4pGni-t2ntA5ids5LxRVPUj5OSJ2Kcl14st","stattrak":true,"normal_prices":[85,14,5,4,5],"normal_volume":[623,120,501,176,269],"stattrak_prices":[118,17,8,6,6],"stattrak_volume":[196,252,302,98,97]},"1274":{"index":1274,"max":0.638225,"min":0,"rarity":1,"name":"Lime Hex","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I_82iYaloH_iWFlicyOl-pK8_HH22xxl34DiHz9mreS-TblN2C5FwFOQN4Rjpx9C1Yunh4gfbg91M02yg2SHKjRF4","normal_prices":[3,1,1,1,1],"normal_volume":[538,251,690,249,138]},"1294":{"index":1294,"max":0.6,"min":0,"rarity":3,"name":"Gold Leaf","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9veRb6thJM-QD2qf_uJ_t-l9ASvgwUghsGndmdyoI36TPA9xX8R5EOQOuhe8m920Mujq7wDY3YwTzn3gznQe4R7J2J0","normal_prices":[58,21,8,9,7],"normal_volume":[638,427,362,40,57]},"1344":{"index":1344,"max":1,"min":0,"rarity":3,"name":"Focus","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1W_6e9bJtuKOKcA2KvzedxuPUnG3rmxU525WTdztqhIH-XOwYiA8QjR-AOtRC6kIfhNuPntgbfio1EmzK-0H16sAwJOA","stattrak":true,"normal_prices":[85,19,9,6,6],"normal_volume":[688,530,275,94,130],"stattrak_prices":[133,45,23,19,11],"stattrak_volume":[66,213,155,83,15]},"1366":{"index":1366,"max":0.6,"min":0,"rarity":2,"name":"Snow Splash","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9veRZbQ4H_OSHFiH0-9m5N5lRi67gVMk5WXQztarIHiVbQ8lApF2F7QN5xS_xtfnNujqswTWidhAnyr3jngc8G81tMzA05Bb","normal_prices":[20,4,1,2,1],"normal_volume":[756,290,272,19,55]},"1385":{"index":1385,"max":0.75,"min":0,"rarity":2,"name":"Picnic","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I4PeReqFpH_yaCW-Ej7sk5OBtGnDmwE4i526Dm9msI3LBbldxWcAiF7ZftBG5kdWzNLzi5wbAy9US1mpPgEo","normal_prices":[30,9,2,2,1],"normal_volume":[136,566,474,30,80]},"161":{"index":161,"max":0.9,"min":0.2,"rarity":2,"name":"Neon Squeezer","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I_82hfqF_MPGAHViAwOd4pN55SieMmxgovQKIn4vwNCaJPAN2DZJ2Te9Y50a-wYW1Menh41fZi9oRni6sii1P6idu4usHUqUi87qX0V_tTvsQDw","souvenir":true,"normal_prices":[0,0,9,2,1],"normal_volume":[0,0,1112,83,343]},"753":{"index":753,"max":0.8,"min":0.06,"rarity":1,"name":"Dirt Drop","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I_826abRoH-ObAXWE_vx3vO1wcCW6khUz_W_TydqocinDPwYlW8MhQuMMs0LsxNblN7_jtVCM2I9Cz3_43Hsd7il1o7FV674h8n8","souvenir":true,"normal_prices":[105,3,1,1,2],"normal_volume":[72,390,918,112,2049]},"768":{"index":768,"max":0.75,"min":0.25,"rarity":2,"name":"Savannah Halftone","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T-82sZLF_H_OSA2ivzP4jo-VWQiy3nAgq_TjTyN6qICqTPVRzCZN4Q7EKsES6xtDlMb7gsQXb3oxHzHj32HtJ73p1o7FV_MEGTHA","normal_prices":[0,0,9,3,3],"normal_volume":[0,0,934,96,190]},"781":{"index":781,"max":0.5,"min":0,"rarity":3,"name":"Co-Processor","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1a4s2tYbZuNfmHDGiR0-pJsfB8Tha_nBovp3PQm9_7eHrFP1UgDJUlEbMNtxPrkd2xMLmw5AXf3opFmy-qiXgbvHk5_a9cBm-j3VYi","souvenir":true,"normal_prices":[191,24,12,13,14],"normal_volume":[181,115,197,43,42]},"798":{"index":798,"max":0.8,"min":0.06,"rarity":2,"name":"Nitro","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I4M2heqVjJ_WsD2STxOBio7JWQyC0nQlp42yEzImsdH3EaAEgC8N2EeYJtRbuxtDjYr_q7weI3d5FzCz43ChOvDErvbiO5Zd60w","normal_prices":[1224,541,271,304,294],"normal_volume":[27,78,207,43,77]},"800":{"index":800,"max":0.35,"min":0,"rarity":4,"name":"Lab Rats","collections":["set_blacksite"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9s2iaaZ_IeSsA3fF_uJ_t-l9AXrhxh4l5G_Um9eoJX6WaAVyXMN1RbYM5Bi4wN21Yuq0swTdidhMzSTgznQed7nbwhE","souvenir":true,"normal_prices":[0,0,0,0,0],"normal_volume":[0,0,0,0,0]},"810":{"index":810,"max":0.8,"min":0,"rarity":5,"name":"Phosphor","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSJvWAGm6GwOJJtPNgXxa_nBovp3PRzd-vdCqQOgYgCMYkRrECskLuwdfkZeqz5QKMjYwUnHj33SlI630__a9cBl0Wy4S-","stattrak":true,"normal_prices":[1445,579,414,446,415],"normal_volume":[127,265,574,33,37],"stattrak_prices":[2492,1166,595,807,698],"stattrak_volume":[86,95,142,10,11]},"846":{"index":846,"max":1,"min":0,"rarity":4,"name":"Gauss","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePF-JM-SHXOCzuN3pOhqcCW6khUz_WzTzYmhJXuSaANzW8EkQ7JZ4BjsxtSzYezr5lbfidlEzC-vjnxK7ih1o7FVYPX5q0o","stattrak":true,"normal_prices":[442,93,57,50,50],"normal_volume":[92,112,260,141,121],"stattrak_prices":[529,138,73,66,53],"stattrak_volume":[84,46,145,91,26]},"872":{"index":872,"max":0.55,"min":0,"rarity":1,"name":"Bamboo Garden","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9s2saalvL_-sHXOdwPx1j-1gSCGn200k5mzWyd-tcX2RbwYjW5dyQ7YIsxi_kdfvY7mztQSP2o5Mnn_4hntXrnE8gm_uARc","normal_prices":[679,567,545,532,521],"normal_volume":[153,65,91,17,17]},"888":{"index":888,"max":0.68,"min":0,"rarity":3,"name":"Acid Wash","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSJeSQBlicyOl-pK9rTnjqlkkitmTVn437IiiePQRyX8F4FuBc5xS_lYHgZevj7wzagosX02yg2cdA74dF","stattrak":true,"normal_prices":[428,222,79,86,92],"normal_volume":[89,76,56,25,63],"stattrak_prices":[368,220,100,172,102],"stattrak_volume":[21,16,58,39,30]},"915":{"index":915,"max":1,"min":0,"rarity":4,"name":"Agent","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSJvKaMWuZxuZi_uU6Gn7glhxytWSAy4uqI3yTbA90WcQkRu4K5BG6x921Nb_q4w3f3YlbjXKpj8G4GlA","stattrak":true,"normal_prices":[694,147,53,50,47],"normal_volume":[167,145,122,88,82],"stattrak_prices":[1586,316,119,103,97],"stattrak_volume":[74,75,61,53,47]},"923":{"index":923,"max":0.55,"min":0,"rarity":5,"name":"Oxide Oasis","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSLvWcAFiWzet9pOB7QRa_nBovp3OAmYr_cnLFOlN0A5d4Qu4KtRi6lYG2Mr7n4QCLg48Tm3_-3yxOvSdj_a9cBsgSaNGx","souvenir":true,"normal_prices":[28561,20233,12738,18863,17125],"normal_volume":[42,14,32,2,2]},"949":{"index":949,"max":1,"min":0,"rarity":3,"name":"Desert Strike","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1Y-s2jePFSJPWAC3WE_v1iouhiSha_nBovp3PUzYyqdHKfOgJ1CpAhROQJukW4lYDuMr7jswfWjdpNyimsi35O53s-_a9cBg0oJUav","stattrak":true,"normal_prices":[135,18,20,15,15],"normal_volume":[199,117,69,47,64],"stattrak_prices":[128,25,11,10,13],"stattrak_volume":[68,91,103,53,115]},"974":{"index":974,"max":0.8,"min":0,"rarity":4,"name":"Kitbash","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePF-JM-ED3SExOJ3vuVWQyy0lB4-jDGMnYftb32XZ1NyX5B5QuJcthi7k9K0Ye6zsQeP2IMRyiX4iSJLvC5q6-4HUaY7uvqAsG-atjE","stattrak":true,"normal_prices":[200,60,35,33,32],"normal_volume":[596,596,1559,66,116],"stattrak_prices":[287,106,52,54,56],"stattrak_volume":[109,241,244,31,116]},"986":{"index":986,"max":1,"min":0,"rarity":3,"name":"Condition Zero","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSI_-dCm6EyOF4quR7QBa_nBovp3PQz93_InrCbAVxCcN5RbNZthm7w9e0Y-q35gbdi49GzX2vjCIf63xr_a9cBnKSfiDi","stattrak":true,"normal_prices":[679,158,73,45,42],"normal_volume":[81,102,85,79,62],"stattrak_prices":[494,120,70,58,58],"stattrak_volume":[66,32,45,41,49]}}},"24":{"name":"UMP-45","sticker_amount":5,"type":"Weapons","paints":{"1003":{"index":1003,"max":0.75,"min":0,"rarity":4,"name":"Crime Scene","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSI-KaA2Kv0u1zvuRWQyC0nQlpt2SEmdiheHiUalMnCJd4FuFb5xHul4LjMu3q5gPX2N0QyC-siXsY7DErvbhN2TV12A","normal_prices":[10479,7833,8961,11149,10799],"normal_volume":[94,25,35,10,13]},"1008":{"index":1008,"max":0.6,"min":0,"rarity":2,"name":"Houndstooth","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2mZ7FjJOOHAWiEydF0ou5-QRa_nBovp3PWyYmtJH3BZlQnXJclEecN4xLrwYCzMLy24waNjtlMxCv93SpJ7H5o_a9cBoyJn1nJ","normal_prices":[678,529,405,558,386],"normal_volume":[74,115,45,18,29]},"1049":{"index":1049,"max":0.5,"min":0,"rarity":3,"name":"Oscillator","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a4s27ZbQ5dc-WAmKT1fx5p-B_Sha_nBovp3PTztuvd3jDOlMhX5IjR7YPtRTtx4XjNum2tQOLjItHmyj5j34b6Spt_a9cBq1OnGjK","stattrak":true,"normal_prices":[36,18,18,15,17],"normal_volume":[456,240,534,31,43],"stattrak_prices":[89,44,33,32,28],"stattrak_volume":[142,61,203,34,25]},"1085":{"index":1085,"max":0.49,"min":0,"rarity":2,"name":"Mechanism","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s2rZqNkLvWsHmKCx-FkveBnTCyMmRQguynLwo2reHmVbgQkApR1FrNc50KwmoazMbyw4VHeioJBziX-hiocvH1otvFCD_SLOTiQGw","souvenir":true,"normal_prices":[540,348,218,544,682],"normal_volume":[69,27,36,3,20]},"1157":{"index":1157,"max":1,"min":0,"rarity":3,"name":"Roadblock","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_M27ZbRSMv-SCmWczu19j-1gSCGn2xgi5GnWmdmodXyUbwUhA5RyF-FcthS8w4ayMrjgtAzX2t9Byir83HtXrnE8YWMltLM","stattrak":true,"normal_prices":[94,15,5,5,5],"normal_volume":[470,370,303,124,128],"stattrak_prices":[72,16,7,6,5],"stattrak_volume":[163,286,228,72,68]},"1175":{"index":1175,"max":0.801418,"min":0,"rarity":3,"name":"Motorized","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtsM-OWA2WcxOpJte9uRie2qhEutDWR1N2gcy7DalAhCMd3QucO5EPukN2yN-iw5QyN2IkRzSr6iXtO6StrsL0cEf1y62CUsqE","stattrak":true,"normal_prices":[38,13,5,5,5],"normal_volume":[1413,525,679,58,122],"stattrak_prices":[68,18,7,12,7],"stattrak_volume":[241,422,44,62,116]},"1194":{"index":1194,"max":1,"min":0,"rarity":5,"name":"K.O. Factory","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtiLPSsDWaC1eF5vt5lRi67gVN2tWXTzI6tc3rGPQ4kWJUiQrJf4RPskIW2ZO3r4VaKi9hFyX-qhy0a8G81tA_18T9p","stattrak":true,"normal_prices":[1800,586,409,390,372],"normal_volume":[363,691,1509,498,268],"stattrak_prices":[2616,899,533,512,470],"stattrak_volume":[124,183,256,79,85]},"1203":{"index":1203,"max":1,"min":0,"rarity":3,"name":"Late Night Transit","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uKRfLZsLuOaGlicyOl-pK84GnHkkR935D-EyY2sdymXZlAhXJUmRbQD4BDumtbiMLjhtAzWg45A02yg2WS1GQky","souvenir":true,"normal_prices":[594,117,29,22,16],"normal_volume":[1286,834,1177,234,219]},"1236":{"index":1236,"max":1,"min":0,"rarity":5,"name":"Wild Child","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSI_yGGmSY_uV_s-pWQyC0nQlpt2iHmNyqd3KVOlB0D5YlTeZb5xjsx9PjZOjl4VCNgt1EnC77iSMf7jErvbhWyVIDbA","stattrak":true,"normal_prices":[1635,489,295,276,267],"normal_volume":[223,756,947,180,183],"stattrak_prices":[2098,591,315,280,280],"stattrak_volume":[106,152,140,64,48]},"1303":{"index":1303,"max":0.7,"min":0,"rarity":1,"name":"Green Swirl","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I4PGmV6x4JeObB2GE_upzo-B9cCW6khUz_TiBmIv4dCjBZ1RzX5txE-IOt0Lsk9zkY7y04QfYjN4RmCv22nxAvXp1o7FVlEIYfjU","normal_prices":[3,1,1,1,1],"normal_volume":[424,378,1371,71,218]},"131":{"index":131,"max":1,"min":0,"rarity":5,"name":"Neo-Noir","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtjJf-sAGiZ09F6ueZhW2flw0R0sGrcy4z9cn6XagVxCpR4F7Rb5BPplIbjY7vj4AOLjt0TzSj9kGoXuYU0ZhpI","stattrak":true,"normal_prices":[3123,1042,531,446,405],"normal_volume":[159,235,347,123,61],"stattrak_prices":[5464,1948,832,701,685],"stattrak_volume":[35,99,94,24,36]},"1351":{"index":1351,"max":1,"min":0,"rarity":4,"name":"Continuum","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtkLPyGA26ewNFg4t5lRi67gVN1tm7Qy9itcXqTOwYlXJpxFLEO4Ba_wYXgP7u0tQXajoxFxX-q3SxP8G81tMlVCWLZ","stattrak":true,"normal_prices":[287,115,65,50,36],"normal_volume":[405,479,528,266,278],"stattrak_prices":[641,257,132,135,104],"stattrak_volume":[69,196,189,54,91]},"1387":{"index":1387,"max":0.7,"min":0,"rarity":3,"name":"Warm Blooded","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9veRfKF-NM-SAG6dwOJJoPNgQT2MwUgYvzSCkpu3dnuUalN2X5IjRe5fsUa9xoeyN-rr7waMiINDnC7_jnlI6ixq5OpWWb1lpPMCclDonA","normal_prices":[128,56,26,29,21],"normal_volume":[714,317,465,77,167]},"1426":{"index":1426,"max":1,"min":0,"rarity":3,"name":"Fragment","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uKRbrZsJ_2WAHOvzedxuPUnGH3qwxtzsjzczN-odXqePQN0C5EiFrUK50G7lYXkP7jh71bXjdlEyDK-0H3tn7dQwA","stattrak":true,"normal_prices":[104,21,10,7,6],"normal_volume":[276,228,315,89,73],"stattrak_prices":[131,45,22,19,16],"stattrak_volume":[96,106,130,49,30]},"15":{"index":15,"max":0.8,"min":0.06,"rarity":2,"name":"Gunsmoke","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2pbah9Jf6sAm6Xyfo4trM5GCzrkE5w42jVzYqgdijBalR2CMd4R-JeuhS8lNXjN7nj4gTa2pUFk3skeb6bFA","souvenir":true,"normal_prices":[236,17,10,9,9],"normal_volume":[31,181,366,29,77]},"169":{"index":169,"max":0.8,"min":0.06,"rarity":2,"name":"Fallout Warning","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_82gfa9oM-SBB3eV_uN3ou5mQRa_nBovp3PTw9z8eC3BaQRyDJEiQO5YtRK8lNOxYuLjtFHe34hAyin2hi9AvX5j_a9cBo7SjwdV","souvenir":true,"normal_prices":[7500,3382,939,903,1366],"normal_volume":[1,37,83,2,11]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":1,"name":"Urban DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2qbLRsNM-GHGWvzedxuPUnGS3hwBxxtm6Am4yreH2TP1N0A5EhROBb5Ba5k9TjYuLrtQWMjdhCyTK-0H2MxuWOFg","souvenir":true,"normal_prices":[100,3,1,2,1],"normal_volume":[73,149,343,297,97]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_82qabR9LPWsAm6Xyfo46bMxGn-3x00m4m-HzN2sIH6SZwQpWJVwQu4MuhK5xIXiMuO24QLej5UFk3vMYylqRQ","souvenir":true,"normal_prices":[1181,112,75,79,68],"normal_volume":[8,47,23,9,22]},"193":{"index":193,"max":0.34,"min":0.06,"rarity":3,"name":"Bone Pile","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_829Y7FhLM-XB2aX0-97j-N7Tj-8qhEutDWR1I6rcX3GblRyD5V1TecIsxPukdbuYeqz4Q3ZjopMyiyrjHgfuCdqt-kcEf1yvOcVYJ0","stattrak":true,"normal_prices":[1962,597,597,0,0],"normal_volume":[20,41,27,0,0],"stattrak_prices":[3096,674,691,0,0],"stattrak_volume":[2,66,78,0,0]},"250":{"index":250,"max":0.6,"min":0,"rarity":3,"name":"Full Stop","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s24abZkI_GeAViCxOpJvOhuRz39zBwi6zvUm4ypdXrDOAUkDMF2ELJf5BG4k9DuMenh4VOMgo1DzCT4jDQJsHiJeUvUrw","normal_prices":[549,249,161,212,158],"normal_volume":[152,23,82,21,9]},"281":{"index":281,"max":0.75,"min":0.05,"rarity":3,"name":"Corporal","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSI_-BHmiCwOJJvOhuRz39wUUi4W6Bzdipd3KWOwInXJFyTbEKuhbtloHlMbzm5AbW2YkWzSv5jjQJsHiIsauxOw","stattrak":true,"normal_prices":[217,58,61,43,44],"normal_volume":[42,97,219,30,79],"stattrak_prices":[285,92,40,64,45],"stattrak_volume":[38,129,188,17,49]},"333":{"index":333,"max":0.8,"min":0.06,"rarity":1,"name":"Indigo","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I4M2nZqBkJ_-sD2mU_ulktfhWQyC0nQlp4WjTyN78In-Wb1QgDcNzRLUI5ka4wdfjPruxswbdgopGzHj73yNLvzErvbhz6ja6HQ","souvenir":true,"normal_prices":[1795,409,302,282,254],"normal_volume":[42,88,77,20,6]},"362":{"index":362,"max":0.4,"min":0,"rarity":3,"name":"Labyrinth","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2iYapoM8-cHGaexutJvOhuRz39wRtx4WXczNupdS2XawApD5okQLEK5hm4kYHvYrjm5FDbj4MWnnn4ijQJsHh9pjg_2g","stattrak":true,"normal_prices":[78,28,24,51,0],"normal_volume":[321,209,86,37,0],"stattrak_prices":[86,30,25,48,0],"stattrak_volume":[318,56,149,40,0]},"37":{"index":37,"max":0.08,"min":0,"rarity":3,"name":"Blaze","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s2oZKVgJeOsAm6Xyfo4srhvSi21wUoi4j_Xzt7_di6RaQ4mA5YhRuIMtEbswIDmMbzg5ACN35UFk3uW8e_n9A","souvenir":true,"normal_prices":[2686,4533,0,0,0],"normal_volume":[414,6,0,0,0]},"392":{"index":392,"max":0.35,"min":0.06,"rarity":3,"name":"Delusion","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_827ZbQ5dc-XQ3GZ0ud5vvJWQyC0nQlp5z7RwtyrIC6WbAYgCJp3Q-YD4RXsxN3jN-7n41He390QzXn5iCMf5jErvbiLTzB_rQ","stattrak":true,"normal_prices":[864,154,59,0,0],"normal_volume":[89,37,59,0,0],"stattrak_prices":[896,144,118,0,0],"stattrak_volume":[60,146,139,0,0]},"412":{"index":412,"max":0.68,"min":0,"rarity":4,"name":"Crimson Foil","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_PGmV7d9L-KHMXKd0bojj-1gSCGn20V2tm_Sn9irdX3EZwUkA5B1R-IL5Ebsk9O2MOni4AKIgogUmH333SlXrnE8E6oIYXY","normal_prices":[970,405,313,364,350],"normal_volume":[1504,832,842,89,133]},"436":{"index":436,"max":0.35,"min":0.25,"rarity":4,"name":"Grand Prix","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a4s27ZbRSMvGQC3WvzOtyufRkASjjxU1x42nVyo2rdnKQbA9xX5ohRrYMtBntmtW1N7zj5lDZgthFzC3gznQezoUeLLY","stattrak":true,"normal_prices":[0,0,108,0,0],"normal_volume":[0,0,479,0,0],"stattrak_prices":[0,0,126,0,0],"stattrak_volume":[0,0,324,0,0]},"441":{"index":441,"max":0.39,"min":0,"rarity":3,"name":"Minotaur's Labyrinth","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s2iaaZ0MvmdGm-vzedxuPUnHSiwwUUh5jndn939dC2QaVApXJdwR7Ncsxe8xtWyMrmwtAWIjohGzzK-0H1h0wYN6w","normal_prices":[12581,10095,8458,0,0],"normal_volume":[80,21,5,0,0]},"488":{"index":488,"max":0.7,"min":0,"rarity":3,"name":"Riot","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-GHnWfwPxJvOhuRz39lx8h4DnXw9f6cCiWbVNyXsYhF-RbsxK5m9LhMevmtVDeg4JAyyr3jDQJsHgJoZgLvA","stattrak":true,"normal_prices":[144,49,63,50,38],"normal_volume":[227,205,200,26,46],"stattrak_prices":[104,70,35,41,30],"stattrak_volume":[104,188,92,38,17]},"556":{"index":556,"max":0.77,"min":0,"rarity":5,"name":"Primal Saber","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-DHG6dwOJlseNsXRa_nBovp3PRn478JHmePQ8hDcF2Q7YDtxXrk92zYbyw7gXYjIhEyCn_3Hsbui44_a9cBklqRdMs","stattrak":true,"normal_prices":[2218,1029,983,1044,987],"normal_volume":[185,407,603,39,62],"stattrak_prices":[2663,1097,1017,1182,1091],"stattrak_volume":[87,132,115,11,25]},"615":{"index":615,"max":1,"min":0,"rarity":3,"name":"Briefing","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-eC3OCyPpzouBWQyC0nQlp627XyNigJHjBOwIiXMNyQuUKsRKwktK2Zu_j5FOKi9lCzHmtjCNKvDErvbgMSlL6rA","stattrak":true,"normal_prices":[177,23,27,19,15],"normal_volume":[214,86,267,60,17],"stattrak_prices":[158,31,15,13,14],"stattrak_volume":[113,84,171,84,70]},"652":{"index":652,"max":1,"min":0,"rarity":4,"name":"Scaffold","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_M27ZbRSIfKKHXSvzedxuPUnGi2ywBwhsmuDnNn9cX_EbA4mCcF1QbJZ5BPtm9fjZejnslDciNgUzTK-0H2MLp31Hw","stattrak":true,"normal_prices":[772,224,126,116,119],"normal_volume":[174,88,135,119,94],"stattrak_prices":[817,305,235,208,215],"stattrak_volume":[59,63,116,42,32]},"672":{"index":672,"max":0.7,"min":0,"rarity":3,"name":"Metal Flowers","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a_s27ZbQ5dc-VAmadxOh6v_ZsXRa_nBovp3PTnN2vc3zGaFAgWMZ4F-MDsBW7kNXhP7i04gCI2oNDyij8iSpI7S84_a9cBuxmxCPI","stattrak":true,"normal_prices":[967,871,487,611,402],"normal_volume":[73,33,100,22,5],"stattrak_prices":[967,544,421,495,433],"stattrak_volume":[30,19,22,8,6]},"688":{"index":688,"max":0.55,"min":0,"rarity":4,"name":"Exposure","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-LQ3WR2NF7seJhRie2qhEutDWR1Nutci2WbwBzWZFyF-Fetka_ltbgM7nh5AKKiYoRmXr73H4b7ilvsekcEf1y88bI5DM","stattrak":true,"normal_prices":[245,93,81,86,90],"normal_volume":[339,248,292,89,63],"stattrak_prices":[288,135,98,111,105],"stattrak_volume":[93,144,137,49,52]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a4s2tabZvL_6sCG6SxPxJvOhuRz39lh9w42SGzI2uIijBPAIoApEjEe5f5hG9w9LvMOm37lePjYNCyCz43DQJsHigSNbmtg","normal_prices":[18,15,0,0,0],"normal_volume":[1380,152,0,0,0]},"704":{"index":704,"max":0.8,"min":0,"rarity":4,"name":"Arctic Wolf","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-EBm6ExNFwse9ucCW6khUz_WiGzY6pJyjCZwN1A5p5Q-MCuxa7ldW0Ne3ntQHW2YpFmSv63S1B73t1o7FVFkKgM50","stattrak":true,"normal_prices":[399,78,34,51,31],"normal_volume":[353,403,328,62,81],"stattrak_prices":[350,124,56,62,57],"stattrak_volume":[178,220,194,29,57]},"725":{"index":725,"max":0.55,"min":0,"rarity":3,"name":"Day Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2sZKtiLc-BC2OvzedxuPUnGHDmxEl-5mWGzYysdiifP1dzDZMmQe9ZsBnrl9yzZOPrtQTaj9lAxDK-0H1hFDwwPA","normal_prices":[9886,7552,7202,7080,10335],"normal_volume":[43,25,21,2,1]},"778":{"index":778,"max":0.5,"min":0,"rarity":1,"name":"Facility Dark","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2sZLFoMOKaAHOvw-JjtfNsSxa_nBovp3PVnN_7JyjDOgciWZRyQudf5hjrwYHnNOjl4gKN2YtNmXj5iS5Lvys5_a9cBlkwYg2r","souvenir":true,"normal_prices":[4,1,1,2,1],"normal_volume":[899,1384,1695,732,45]},"802":{"index":802,"max":0.5,"min":0,"rarity":5,"name":"Momentum","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSIeKBAXCD_uJ_t-l9ASzrx0txsWiBydv4JCmSaFdzDJt0TOYN5hbtwYWzNerl5QeIj4IXyX3gznQeadzF8t4","stattrak":true,"normal_prices":[1057,486,455,495,485],"normal_volume":[226,477,320,31,40],"stattrak_prices":[1507,680,595,577,626],"stattrak_volume":[112,143,106,17,16]},"851":{"index":851,"max":0.4,"min":0,"rarity":4,"name":"Moonrise","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s27ZbQ5dc-eAWie0-dltd56WiegkAkYvzSCkpu3IHzGbQFxCMByE7MJsxC6w9ayN-3ntgPf3YtGmX6tiyxM6X1pt-cCUr1lpPMz7bPahA","stattrak":true,"normal_prices":[221,68,51,92,0],"normal_volume":[732,628,195,61,0],"stattrak_prices":[247,116,69,205,0],"stattrak_volume":[253,123,94,31,0]},"879":{"index":879,"max":0.08,"min":0,"rarity":5,"name":"Fade","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s2oaaBoH-WeHlicyOl-pK8_HHzmzU52sTjWntegc32faAR2DMEkELMI4xmxw4G1Yrnn4FCM3d4Q02yg2U-vv27j","souvenir":true,"normal_prices":[23488,72000,0,0,0],"normal_volume":[79,3,0,0,0]},"90":{"index":90,"max":0.8,"min":0.06,"rarity":1,"name":"Mudder","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2jZ7B5LPWXMXSRz-pJvOhuRz39wUR1sWqGm9v7IC_FPQclCJp5E-YD4Bbum9axM7_l4VCKi48Qy3793zQJsHiVhPnxlA","souvenir":true,"normal_prices":[102,3,1,1,1],"normal_volume":[312,453,2113,75,115]},"916":{"index":916,"max":0.8,"min":0,"rarity":4,"name":"Plastique","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSIv-eDFicyOl-pK8_Hn_hxh91sWrVyN-rI36XZwIoWJZ3FrMJ50XtxoLhZL625lCM2YxH02yg2Yusl7aN","stattrak":true,"normal_prices":[394,122,46,73,49],"normal_volume":[227,144,96,49,86],"stattrak_prices":[592,215,81,156,87],"stattrak_volume":[38,92,147,29,51]},"93":{"index":93,"max":0.8,"min":0.06,"rarity":1,"name":"Caramel","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I4M2tabZsLfWfMWuZxuZi_rgxTXGwkBt36juDnI36dXrFOw5yC5ciF7YPsUbuld22Zb-x4lCP34tbjXKpx97cZGE","normal_prices":[6481,1287,1149,1056,1203],"normal_volume":[11,73,52,7,29]},"990":{"index":990,"max":0.7,"min":0,"rarity":4,"name":"Gold Bismuth","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_M27ZbRSJ_-fCliSyP17pfVhcCW6khUz_Wrczt__dn3GbVR0D8dxEOAMsxW9lofkMum04w3eg4kXzy6q339BvHx1o7FVa_qMENU","stattrak":true,"normal_prices":[2036,775,322,451,266],"normal_volume":[158,101,182,14,19],"stattrak_prices":[1274,737,394,419,405],"stattrak_volume":[46,44,50,8,22]}}},"25":{"name":"XM1014","sticker_amount":5,"type":"Weapons","paints":{"1021":{"index":1021,"max":0.5,"min":0,"rarity":4,"name":"Ancient Lore","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RaapuKfWdGliHwPx7j-1gSCGn204k626ByIqteX-TbAQjCcAhRbFcsUK5ktbhYb_j5VePi4JMnyX4in5XrnE8pNPbCik","souvenir":true,"normal_prices":[9631,3276,3256,18748,8330],"normal_volume":[47,11,5,1,1]},"1046":{"index":1046,"max":0.9,"min":0,"rarity":5,"name":"XOXO","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMXeFz-VJvOhuRz39xE8j5GXQztepd3OUOwJ2C5JwELYKsULslobuY-7htlDditkUnyn73zQJsHgY6bTDGg","stattrak":true,"normal_prices":[1702,474,311,292,298],"normal_volume":[230,469,982,102,172],"stattrak_prices":[2744,763,366,416,405],"stattrak_volume":[66,121,169,36,65]},"1078":{"index":1078,"max":0.55,"min":0,"rarity":1,"name":"Blue Tire","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_OKRfK1_Jc-HHGKRxdF0vPRscCW6khUz_T7Vydn7dS6UZ1ciD8YhE7Je4Rm-l4bjN-mxtVaPi9lMxSqqjy9B7Xx1o7FVHG_KYuo","souvenir":true,"normal_prices":[306,96,63,100,155],"normal_volume":[104,86,21,1,25]},"1103":{"index":1103,"max":1,"min":0,"rarity":3,"name":"Watchdog","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk6OGRcKk8cKHHMXCR1e1-tO5ucCW6khUz_W2Dz9ehdHuWZwN2CJd0EOYDt0LpxNG2Zr6w4w3ei48UyC2riCJN6Sl1o7FVTxWp7to","stattrak":true,"normal_prices":[629,249,153,117,103],"normal_volume":[131,137,79,25,41],"stattrak_prices":[2276,486,282,184,176],"stattrak_volume":[84,76,49,30,36]},"1135":{"index":1135,"max":0.5,"min":0,"rarity":4,"name":"Zombie Offensive","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RcKlSOv-eDG6V_uFwtuRnXCClkCIrujqNjsGqdnzEOFUjW5omROQNt0LuwNKyYeKwslfYiN0Qmyr83Hsd6iZj5esAT-N7rRccpDyZ","stattrak":true,"normal_prices":[116,55,48,50,49],"normal_volume":[1948,950,1671,209,131],"stattrak_prices":[131,56,49,45,52],"stattrak_volume":[456,230,461,52,55]},"1174":{"index":1174,"max":0.799353,"min":0,"rarity":3,"name":"Irezumi","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk9___OPU5H_mBC32FzOdJvOhuRz39k0h14juBztapc3-fPVIjWZomFucMtxe9m9zmNOjltQ2N2dgTnCr_3zQJsHjkNdtnHQ","stattrak":true,"normal_prices":[34,11,5,5,5],"normal_volume":[921,658,721,28,133],"stattrak_prices":[70,18,8,9,6],"stattrak_volume":[230,484,441,49,26]},"1182":{"index":1182,"max":1,"min":0,"rarity":3,"name":"Mockingbird","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk9___OPU5H_2cDWyZz-l0ufNtcCW6khUz_T-AnNagJH3FbwQnCsEmTeEMs0aww9biMby3tleKjtkQmSX-2yMfv311o7FVNa3OfdQ","stattrak":true,"normal_prices":[90,14,6,5,5],"normal_volume":[390,590,962,41,40],"stattrak_prices":[138,19,8,6,7],"stattrak_volume":[127,129,392,107,205]},"1201":{"index":1201,"max":0.746575,"min":0,"rarity":3,"name":"Run Run Run","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk9___OPU5H_aBC26XyfpJvOhuRz39xkh_5DjRmYr8IHyXZlIjX8NxQrQJ4xSxk9flZL-0sgOIi4NGySishjQJsHhKqh3UFQ","souvenir":true,"normal_prices":[512,75,22,18,17],"normal_volume":[1255,438,813,81,119]},"1215":{"index":1215,"max":0.7,"min":0,"rarity":4,"name":"Solitude","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2tYJtgL-WdGmaZz_1JvOhkRj22kSIzujCApYPwJiPTcAAhDMN2TecI4Rbsld3jN7zr5ATc2o1CnCitj3tKu3to4e8FBaom-KXJz1aWwa05Mw8","normal_prices":[4325,315,72,109,47],"normal_volume":[447,1042,1666,91,230]},"1254":{"index":1254,"max":1,"min":0,"rarity":1,"name":"Hieroglyph","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMXeYwPx3v-lWQyC0nQlpsj7UwoyveCqROwRyC5cjQO8N5kSxlNKzN-O24QGL345BnniriXxP6jErvbhMqiQO1A","souvenir":true,"normal_prices":[95,14,5,3,2],"normal_volume":[243,29,305,171,134]},"1267":{"index":1267,"max":0.6,"min":0,"rarity":2,"name":"Gum Wall Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-urV6B_KeCDF1iTwON5j-1gSCGn20l34WvTzd6vd3PDPVRzDpJzFucLu0S8kNDjMOO04gDd3thByy_223hXrnE8nLj3yx8","normal_prices":[22,5,1,2,1],"normal_volume":[321,612,993,59,59]},"1287":{"index":1287,"max":0.6,"min":0,"rarity":3,"name":"Copperflage","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-aRa6t9MPWBMWKUxutlj-1gSCGn209ztj_Wz9uvcHqWPwRzWJskEOIMtBaww9ayM-zm5QfZ399GySj52ihXrnE8Uj-RCug","normal_prices":[56,21,8,8,7],"normal_volume":[875,524,348,36,81]},"1333":{"index":1333,"max":0.6,"min":0,"rarity":1,"name":"Canvas Cloud","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRa6hiNfSsDWadztF6ueZhW2fgwhghtm3SzN6qcS6fbwV1DpV5QO8P5kTulIW0P7vj4ATbjdlEm3iokGoXuQMfRK1o","normal_prices":[3,1,1,1,1],"normal_volume":[641,352,832,177,161]},"135":{"index":135,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Perforated","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_OKRfKV9Jc-XAXOD_vtksuBncCW6khUz_WrRnNugIHuUOld1W5JzE-MM5BLtmt3lML_rsgOLgt8XnCmr2HlA7np1o7FVfDpLkjE","souvenir":true,"normal_prices":[3864,358,158,219,219],"normal_volume":[5,35,15,5,8]},"1381":{"index":1381,"max":0.6,"min":0,"rarity":2,"name":"XoooM","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2rV71oLPycGViIzNF6ueZhW2fhkEpz5T7dw9-tJ3-Rb1cpD8chR7JZuxXsloe0Ybux4VDY2N1CnH6vkGoXuebNu3Fx","normal_prices":[18,7,2,2,1],"normal_volume":[1598,706,266,33,46]},"146":{"index":146,"max":0.75,"min":0,"rarity":4,"name":"Monster Melt","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRZ7JoMuCSHXSvzOF4o_VsXTqMjRAYvzSCkpu3JXqTOg8gDcYhROQDsxPux9bjYezm5waM2YlGnHn22y1BuiY45ewCBL1lpPOtgL12Pw","souvenir":true,"normal_prices":[1009,412,216,221,160],"normal_volume":[630,696,810,54,165]},"166":{"index":166,"max":0.8,"min":0.06,"rarity":3,"name":"Blaze Orange","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRYLFjNPWBMWWcwPRzj-57Tie0kCIrujqNjsGtdSiVbVBxCpJ5QuFbsUPpk9G2Mb6ztAza2IhDzyuojitB7Ck5tuxTT-N7rSTH9lIp","normal_prices":[21995,3794,1797,1746,1742],"normal_volume":[7,6,12,11,8]},"169":{"index":169,"max":0.8,"min":0.06,"rarity":2,"name":"Fallout Warning","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_OKRZrFmJeOHHG6AxNF7sfNmQCeMmRQguynLn46odi3FblMmDpQlFu4KsRa_mtHhZby25wTbg9pMmC2qhy0d7y9tt_FCD_Qn1tAvmg","souvenir":true,"normal_prices":[11299,3741,1168,2318,1061],"normal_volume":[5,24,36,6,2]},"205":{"index":205,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2RYrFjJ_yWMWWCwPh5j-1gSCGn20wi5jnRntiucnPEagN2WMZ2EecMsxPplNHjYbyz7waM2dgQmyr-3ChXrnE8eSu-DEQ","normal_prices":[7367,1108,454,438,504],"normal_volume":[3,16,43,16,10]},"238":{"index":238,"max":0.5,"min":0,"rarity":3,"name":"VariCamo Blue","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRfqV_KfOSA2ivw-Jjtd5lRi67gVN0tmTdyN-gJy2fb1AjCcFzFOYDu0btxNDkYr_k4APXg4JNxXn32n5L8G81tKBcQXWQ","souvenir":true,"normal_prices":[1914,1173,558,1518,1458],"normal_volume":[21,6,15,6,2]},"240":{"index":240,"max":0.6,"min":0,"rarity":2,"name":"CaliCamo","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRfqV_KfOSA2ivxetltfN9cCW6khUz_TuGmI2odiqUaVN2A5IkFuJZtRjrldDkNLiw4ADc2o1Emyj72yxM5ix1o7FV5bllY3w","souvenir":true,"normal_prices":[27,18,9,9,9],"normal_volume":[240,212,10,20,79]},"314":{"index":314,"max":0.5,"min":0.03,"rarity":4,"name":"Heaven Guard","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMW-VwPhzvt5uWiihkSIrujqNjsH7cHLFPwd1WZsiFrJYuhC4lNTuNu3n5ASN3YxEniStjSMa6H45675UT-N7rZnbv6eE","stattrak":true,"normal_prices":[1644,782,540,694,699],"normal_volume":[23,74,26,26,14],"stattrak_prices":[2221,1062,704,733,852],"stattrak_volume":[9,39,61,2,11]},"320":{"index":320,"max":0.5,"min":0.08,"rarity":3,"name":"Red Python","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRe6psK_WABW6e_vxztN5lRi67gVN05G3dyt77dXjBZ1MpWJQmReRbthbpxNDvZb6x4AOP2oMRz3_42ntJ8G81tDf1ocTs","stattrak":true,"normal_prices":[0,456,309,387,294],"normal_volume":[0,71,48,18,1],"stattrak_prices":[0,503,181,255,245],"stattrak_volume":[0,30,34,35,2]},"348":{"index":348,"max":0.56,"min":0,"rarity":3,"name":"Red Leather","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRZKFsNPiWHFiIzL8m4bVWQyC0nQlp4WTQytf_IHqRagInCJN5QOYD50W_w9XnZeLm5wWLgt5FnCmoin8b7jErvbjJCtb1Lg","normal_prices":[6710,4910,4202,0,5453],"normal_volume":[24,24,2,0,2]},"370":{"index":370,"max":0.6,"min":0,"rarity":3,"name":"Bone Machine","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RZrFuLPWSHFiDyvt6vPI4cDG-xE125wKJk4jxNWWSbgApXpBzRbFfsEXrlNyyMOKx5lSNgt5FySSohy9OvCZr5uYHA_F35OSJ2NlEZ-xJ","souvenir":true,"normal_prices":[2440,1985,1701,1725,1610],"normal_volume":[100,31,30,7,1]},"393":{"index":393,"max":0.5,"min":0,"rarity":5,"name":"Tranquility","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMWSR0-disfJWQyC0nQlp5zjWnNigIC-falMlWMN2F-cP5Ba-xoXlMri0swTZg41EyX34jS1LuDErvbgNI5zBZg","stattrak":true,"normal_prices":[2951,1144,930,948,1105],"normal_volume":[157,152,50,8,6],"stattrak_prices":[7618,4364,2691,2442,3053],"stattrak_volume":[56,40,14,1,1]},"407":{"index":407,"max":0.5,"min":0,"rarity":3,"name":"Quicksilver","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMXSZxuJ3j-1gSCGn20oksGTXy4yrIC3GbwYpCJF1RuQMtkG-koCyNO22tVSIiY1GxXn6iyhXrnE8nW2Det4","stattrak":true,"normal_prices":[147,42,33,33,35],"normal_volume":[214,107,71,23,26],"stattrak_prices":[125,80,43,69,76],"stattrak_volume":[53,89,41,54,27]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORaqh4JfSsAm6Xyfo4s7NrFnmylk114jiBnNn7cC7GaFcgC5pxEbZe5kTslYG0N7625laN2JUFk3tWvCSOkg","souvenir":true,"normal_prices":[75,19,3,2,3],"normal_volume":[255,218,305,71,164]},"505":{"index":505,"max":1,"min":0,"rarity":3,"name":"Scumbria","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMXST1ON0ouhocCW6khUz_WWEnNyvcymfalB0DZd4FOEDtBnrl9LiN-3i7gPWj9hBxCusiClP6iZ1o7FVjZ8JfoU","stattrak":true,"normal_prices":[205,58,24,14,19],"normal_volume":[48,133,120,34,89],"stattrak_prices":[367,79,26,31,33],"stattrak_volume":[36,42,87,35,45]},"521":{"index":521,"max":0.65,"min":0,"rarity":4,"name":"Teclu Burner","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMW-f1dFkv-VWQyC0nQlptj_Tn9v4J3zEbVIjCZEkELRcska_x4DmNumz4QHWjYtNxSSqjSNAuzErvbjrIzaCAA","stattrak":true,"normal_prices":[550,196,98,138,118],"normal_volume":[128,164,140,47,54],"stattrak_prices":[785,537,240,378,355],"stattrak_volume":[62,51,85,4,17]},"557":{"index":557,"max":0.75,"min":0,"rarity":4,"name":"Black Tie","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMXSAxO1iovRkcCW6khUz_Wncm4v6dnuVawImXsZzTONcsRK5xofkYeywtgWKioNDxCX9in8cvy91o7FVLrGdyvk","stattrak":true,"normal_prices":[712,183,101,103,101],"normal_volume":[318,106,274,21,47],"stattrak_prices":[1165,445,154,188,155],"stattrak_volume":[61,78,150,6,33]},"616":{"index":616,"max":0.5,"min":0,"rarity":3,"name":"Slipstream","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRcKk8cKHHMWGCwO1ise1WTSWmkCIrujqNjsGrdn-WZw51ApR5FO4K5xDuk9O0Zunm5lGIio4Rnn2rjyhA7Cw_se1WT-N7rYJQ1fMT","stattrak":true,"normal_prices":[65,28,21,21,19],"normal_volume":[261,101,133,35,28],"stattrak_prices":[135,87,31,46,42],"stattrak_volume":[127,98,261,29,57]},"654":{"index":654,"max":0.5,"min":0,"rarity":4,"name":"Seasons","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKlSLPWSCFiWwOpzj-1gSCGn200i6mvRn4mpdCiVblRxDJd3FuILuxi7ktHuNb-04wzW2dpGzin-2ihXrnE8PcTco88","stattrak":true,"normal_prices":[310,143,122,161,124],"normal_volume":[383,338,522,43,21],"stattrak_prices":[470,284,271,222,252],"stattrak_volume":[117,122,106,19,15]},"689":{"index":689,"max":0.72,"min":0,"rarity":4,"name":"Ziggy","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMX2Zxulvj-BnTjuwnQQYvzSCkpu3In6XPA4lAsZ5E-JbukWwwd3nY-zn4gLe2thNmCiv2ixK6SZs5ucHVb1lpPO5jVz-xA","stattrak":true,"normal_prices":[406,100,83,90,86],"normal_volume":[271,207,266,52,93],"stattrak_prices":[381,161,104,156,113],"stattrak_volume":[123,87,171,16,53]},"706":{"index":706,"max":0.7,"min":0,"rarity":3,"name":"Oxide Blaze","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMWiIyOpzj-NlTjO2qhEutDWR1N-tJ3zDOFAoDZMhRrNbsUa_x9fuMrvrsgDW3YJGxHn22ixO6C9j5uscEf1ygXv9Ksw","stattrak":true,"normal_prices":[39,13,11,10,8],"normal_volume":[185,140,500,23,67],"stattrak_prices":[70,18,8,20,9],"stattrak_volume":[157,87,195,20,40]},"731":{"index":731,"max":0.6,"min":0,"rarity":2,"name":"Banana Leaf","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRZKFsJs-UHGKVz9F6ueZhW2e3zRlxsTvVzdqpdy6eOwF0X8ciQOcD5hjqwNLmNu7isQHfjY1Cz3mvkGoXuYSrXADo","normal_prices":[1993,1212,1174,1637,1163],"normal_volume":[87,25,75,5,21]},"760":{"index":760,"max":0.5,"min":0,"rarity":3,"name":"Frost Borre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RY6piNOOsHW6c1-tkj-1gSCGn20V05W2Dw9v8ICjGbQMkWJd4TedZtRGxkNDnNOjqsgGN34MXxX76jH9XrnE82FMLyIU","normal_prices":[13441,10912,9382,10618,15829],"normal_volume":[57,19,14,3,4]},"821":{"index":821,"max":0.37,"min":0,"rarity":4,"name":"Elegant Vines","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RZat_L8-HC3-EyOJzj-N7Ri67gSIrujqNjsGqJX3BagJxDcFwROJbtkLpltHlNOPi4AyLjN8UxX33hypK6Hw_se0GT-N7rUzICquq","souvenir":true,"normal_prices":[4995,1938,2094,0,0],"normal_volume":[100,48,32,0,0]},"834":{"index":834,"max":0.6,"min":0,"rarity":3,"name":"Halftone Shift","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-aRe6xsMPWAMX-dkL4n5N5lRi67gVN24GnSm9b9cHrGOg8hCpMmRLMC4xftwdPkYbvq5gzZio4UnC_6iy5L8G81tJrSBQ92","normal_prices":[291,167,105,157,118],"normal_volume":[362,274,398,21,26]},"850":{"index":850,"max":0.65,"min":0.14,"rarity":5,"name":"Incinegator","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMW6ewud4tfNoWyahqhEutDWR1NuuJXqWO1d0CsdyE-9ctxPpkYDmYr6zsgKLgt5NnC33in9B7idi4u8cEf1ypt9Mlvk","stattrak":true,"normal_prices":[0,4264,526,546,518],"normal_volume":[0,41,685,50,48],"stattrak_prices":[0,6405,590,702,605],"stattrak_volume":[0,10,163,26,26]},"95":{"index":95,"max":0.8,"min":0.06,"rarity":1,"name":"Grassland","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2Rb7ZsM-OfD2mU_uJ_t-l9AXq1lxsh5mqDm4qodXyVOgUgW5MjRu8CtEPrldHmPrnm4lbZiY1Az3jgznQeEo4wiRY","normal_prices":[7760,677,266,525,378],"normal_volume":[17,36,43,5,23]},"96":{"index":96,"max":0.8,"min":0.06,"rarity":1,"name":"Blue Spruce","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2RZat-M8-fB2CY1aAg4OU7S3rkkE115WqEyN2rcnqXOwNyAsMhFuUP4UO4l920M-O0s1GNlcsbmkmuSLNg","souvenir":true,"normal_prices":[142,5,1,2,1],"normal_volume":[121,680,545,1026,83]},"970":{"index":970,"max":0.5,"min":0,"rarity":5,"name":"Entombed","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMWad1OJzpN5rQzy2qhEutDWR1N-hI3yWbVRyD8YiEOVZ50TqmoKyZb7rtVfWgosQzX7-3X9K5yc4tr4cEf1yVvkijss","stattrak":true,"normal_prices":[593,372,328,306,297],"normal_volume":[670,815,1560,42,33],"stattrak_prices":[943,552,445,473,480],"stattrak_volume":[206,245,229,24,15]},"994":{"index":994,"max":0.65,"min":0,"rarity":1,"name":"Charter","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RabF5KP-BB3OJ_uxkv_ZncCW6khUz_W3Tw9ypcXmSbwQoC5IlRbRZ4RK5wNLlNeq04AbXjopHnC_8hyoY7C11o7FVhjRGDrg","normal_prices":[149,95,81,85,83],"normal_volume":[371,532,351,82,92]}}},"26":{"name":"PP-Bizon","sticker_amount":5,"type":"Weapons","paints":{"1083":{"index":1083,"max":0.44,"min":0,"rarity":2,"name":"Breaker Box","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a7s25YbZkLvesAm6Xyfo45-c-SXvhzUl352rSm9eqdS3DPQBxCJMjQuBYtRDsmtDmM77i51HcjpUFk3uv8knCxA","souvenir":true,"normal_prices":[435,326,217,644,0],"normal_volume":[62,37,9,1,0]},"1099":{"index":1099,"max":0.77,"min":0,"rarity":3,"name":"Lumen","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1c_M2sYb5iLs-VAmaDyetkj-1gSCGn209-4mzRn9irIimXOFRzCpAhQORYu0bqw9HhNuix4Aba2opCznr72ipXrnE8UpZyTdo","stattrak":true,"normal_prices":[516,176,65,71,51],"normal_volume":[127,76,122,27,52],"stattrak_prices":[458,224,82,103,76],"stattrak_volume":[62,66,77,19,57]},"1125":{"index":1125,"max":0.67,"min":0,"rarity":4,"name":"Space Cat","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-AHmaTxO13pN5lRi67gVN04jvcmYv6IHnGbw51XsYmQO5ftBG9xoexNrix4gPYjIJEzX_2iX9I8G81tOIzQC5J","stattrak":true,"normal_prices":[130,62,51,49,47],"normal_volume":[1332,887,3027,264,341],"stattrak_prices":[156,69,47,48,50],"stattrak_volume":[355,174,709,50,121]},"13":{"index":13,"max":0.8,"min":0.06,"rarity":4,"name":"Blue Streak","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s29eKhsNOSWHFicyOl-pK8-Hyzjx0t1sWjdy4v_dXyVaFcpC5ElTO4OsxSxkILjYu3k5wKM2dlG02yg2QMXfH6m","stattrak":true,"normal_prices":[1538,440,274,329,295],"normal_volume":[51,94,65,20,22],"stattrak_prices":[4358,673,381,486,432],"stattrak_volume":[10,73,87,17,28]},"1325":{"index":1325,"max":0.6,"min":0,"rarity":1,"name":"Wood Block Camo","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s25Z6tpH_eBD26e_u13ve5WXSy3qhEutDWR1NyucS6XPQMmD5p1ELYC4EG5xoCxMezktgHZjoJDnH342ChLu3k5sO4cEf1y1FpRu8Y","normal_prices":[5,2,2,2,2],"normal_volume":[204,19138,746,45,108]},"1374":{"index":1374,"max":0.58,"min":0,"rarity":1,"name":"Bizoom","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9veRa6V_H-eBD3evw-dsv-9WQyC0nQlp6zzdzI6rIHOealMiCJolEOVb5EPrx9PuN7_i5lHW2d9NySj2jy9N6DErvbhOwQNAJg","normal_prices":[2,1,1,1,2],"normal_volume":[1204,451,1085,43,41]},"1392":{"index":1392,"max":0.6,"min":0,"rarity":1,"name":"Thermal Currents","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9veRb6FiIvmBCnSv0vt4ouh6Sha_nBovp3PRmdysdHLCZwUjDsB1FOcJ4BW4mobhZu3q7wyKj4MTzCj2jHhJu30-_a9cBrr9UcuO","normal_prices":[3,1,1,2,1],"normal_volume":[953,326,594,14,87]},"1418":{"index":1418,"max":1,"min":0,"rarity":3,"name":"RMX","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Z5uihZpt_LeisAm6Xyfo45OI7S37gwEhx4WiGnt_8eS2RPw4nX8AkTeNftkS8ltLkNePj5gyI3ZUFk3vfJ75LcA","stattrak":true,"normal_prices":[124,24,10,7,6],"normal_volume":[459,458,324,61,72],"stattrak_prices":[242,79,31,22,19],"stattrak_volume":[154,180,173,78,69]},"148":{"index":148,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dashed","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_826abRoH-ObAXWE_v13vuVWQyC0nQlp62XcyNygJCrDawR1WZIlQ7QL4xS_wNblPu_h7gOP3oJHynr8iHhK6zErvbioPrlsUA","souvenir":true,"normal_prices":[139,2,1,1,2],"normal_volume":[116,259,520,62,1512]},"149":{"index":149,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Dashed","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_826abRoH-ObAXWE_vtksuBncCW6khUz_TuAmdesJH2UPVUoDZF1QLQM4xW4l4XvNuLh71bb3d0Qnnitjn5A5yl1o7FVE2UWbJk","souvenir":true,"normal_prices":[139,4,1,2,1],"normal_volume":[60,110,358,203,97]},"159":{"index":159,"max":1,"min":0,"rarity":3,"name":"Brass","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a_s2seqV-M8-fB2CY1aAl5LhsTnuxlEV24WncyI74IiqQZ1IpCsZxQuAP5xa5xIXuM7635gHYlcsbmmbf3gmt","souvenir":true,"normal_prices":[397,44,14,8,7],"normal_volume":[497,823,632,98,44]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":3,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2mfap5JeKsA2iUxPx4j-1gSCGn20Ul6mrVzon8IC7FbQ4mX5pwF-QC5xO8ldfiM-vgsVPXjo5GxHqqjihXrnE8j2angJE","normal_prices":[23955,4890,1868,1899,2103],"normal_volume":[6,10,7,3,2]},"171":{"index":171,"max":0.8,"min":0.06,"rarity":1,"name":"Irradiated Alert","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_82gfa9oM-SBB3eV_uxkv_ZncCW6khUz_TvSzNj7c3vGO1AnWJpzFrVf4UO8m9zkP-637gzej4NDnnqr2HlAvyl1o7FVWICpUPY","souvenir":true,"normal_prices":[3306,540,276,611,300],"normal_volume":[14,28,39,8,8]},"203":{"index":203,"max":1,"min":0,"rarity":3,"name":"Rust Coat","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a_s29fKFoLM-RHGaGztF6ueZhW2fnxU904mnQy9atcXPDbgAmXsNyQe5Ysxi6moHuN-_m4g3eid9Czn2rkGoXuZcB6ljd","normal_prices":[4253,1355,1580,1516,1842],"normal_volume":[6,2,3,5,23]},"224":{"index":224,"max":0.5,"min":0,"rarity":3,"name":"Water Sigil","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s25abBoMs-QHGKD1dF6ueZhW2frwRwh4j7VwoqpdHyWPQcgCpd2TbFYsxC-l4a0Pu2ztA2NgtkUzST-kGoXuZ4FYcbA","stattrak":true,"normal_prices":[603,299,215,280,236],"normal_volume":[89,12,38,35,4],"stattrak_prices":[479,384,275,465,1300],"stattrak_volume":[129,55,78,2,4]},"236":{"index":236,"max":0.6,"min":0,"rarity":2,"name":"Night Ops","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s24abZkI_GeAVieyOl-pN5lRi67gVMk4Gvdy439eS3DPFUgXpp3Qu5btESxm4LnZbmxtAPdg90WmySqinxN8G81tMa6T4nf","souvenir":true,"normal_prices":[41,10,3,9,5],"normal_volume":[200,95,243,20,74]},"25":{"index":25,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Leaves","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_82ibaV7JeOsAm6Xyfo45bU-Hi_gkRl-t2mAw937Iy3FPQF2DJpxQOADsBawloC0Yr_m41GIiJUFk3v_uUXI3A","normal_prices":[12794,660,284,357,303],"normal_volume":[2,22,25,18,2]},"267":{"index":267,"max":0.45,"min":0.05,"rarity":3,"name":"Cobalt Halftone","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a4s26fbZ8L_mAC1iYwOJwpO5nSha_nBovp3PTnN79IH-fZw5xW5V4RrJYtRHpmtzkM-K04laIidlDz376jHhB5ixj_a9cBqXoycG_","stattrak":true,"normal_prices":[1506,146,121,121,0],"normal_volume":[13,114,126,5,0],"stattrak_prices":[421,138,96,146,0],"stattrak_volume":[44,215,89,14,0]},"293":{"index":293,"max":0.5,"min":0.08,"rarity":1,"name":"Death Rattle","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2gbbZiJPmSMWuZxuZi_rNrHCjkw09_5mzUz4uudSrEb1QiWcd0RLMDsEK7kILkMO2071aLj41bjXKpFxy7d4g","normal_prices":[0,195,82,79,65],"normal_volume":[0,260,446,80,64]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I4M28baBSLPmUBnPemO105rI6SirhzRwi6zjWzd2uJCmfaFByApMiRbNcuxC_k9TgZb_qthue1dzUHyay4A","souvenir":true,"normal_prices":[18,8,8,0,0],"normal_volume":[2607,1894,639,0,0]},"306":{"index":306,"max":0.5,"min":0,"rarity":4,"name":"Antique","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-SAHOZ0Ptzj-1gSCGn20sj4DnTyN2pdyjFOg4oXJV5Qu5c5xS9w4bjNL7q7gHd2INGxCn_iyxXrnE83Efvvd0","stattrak":true,"normal_prices":[1223,690,574,568,688],"normal_volume":[93,67,54,23,13],"stattrak_prices":[1455,916,647,810,1104],"stattrak_volume":[62,60,61,10,4]},"349":{"index":349,"max":0.5,"min":0,"rarity":4,"name":"Osiris","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLr2cHW6CyP1JvOhuRz39xUxx6jiBz42rIHjBbAcnWZcjROcJsxjtmoXmNe_k5QHajtlNyC2r3zQJsHh050JUDA","stattrak":true,"normal_prices":[285,189,182,186,223],"normal_volume":[423,355,241,40,39],"stattrak_prices":[383,254,172,164,257],"stattrak_volume":[214,239,81,18,12]},"376":{"index":376,"max":0.9,"min":0,"rarity":2,"name":"Chemical Green","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I4M2peqF0H_6GDWuVwPxJt_NsSieMlxQ9vDO6lob-KT-Jbg8oW8R0TeALsxbql4K0Prjg5g3c2oJCyXn7jXkf73lq5O0GBfYm8rqX0V9pS7L6MA","souvenir":true,"normal_prices":[2212,562,381,228,294],"normal_volume":[140,84,27,8,29]},"457":{"index":457,"max":0.8,"min":0,"rarity":1,"name":"Bamboo Print","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2saalvL_-sBHKexuJzj-hnRBa_nBovp3OAm9qhc3ySOlVxXJQkEeZf5BK9k4LhM7vqsVbWgosRmHmrj3lMvyZs_a9cBpyTCsd5","normal_prices":[1858,1161,1048,848,772],"normal_volume":[63,62,48,3,35]},"508":{"index":508,"max":1,"min":0,"rarity":4,"name":"Fuel Rod","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-dAX-Zzvtlj-1gSCGn2xkhsW7Rzt3_c3OePQElW8R3F7IJt0Lrl9e0ZO_r4wHZiINEyij323lXrnE8VjeQjNs","stattrak":true,"normal_prices":[756,209,104,86,90],"normal_volume":[200,253,138,19,76],"stattrak_prices":[940,346,178,141,143],"stattrak_volume":[98,98,126,45,49]},"526":{"index":526,"max":1,"min":0,"rarity":3,"name":"Photic Zone","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-QB3OZ2-t4j-1gSCGn20hw5GXWntf_eH-Wa1MgX5N2EeBc50G_w9HuZL_h4gGLjd8XxX37iHtXrnE8eXv1H4U","stattrak":true,"normal_prices":[401,141,69,36,31],"normal_volume":[148,158,94,12,64],"stattrak_prices":[460,124,56,48,50],"stattrak_volume":[82,120,141,57,53]},"542":{"index":542,"max":0.5,"min":0,"rarity":6,"name":"Judgement of Anubis","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-QG3WDxNF6ueZhW2fkzU0isDvTnomsdS7BbwF0A8ElROJfshC8wN3jYu-2tQ3c2osTxCitkGoXuVioOA3_","stattrak":true,"normal_prices":[10056,9477,9837,10530,10251],"normal_volume":[162,141,179,29,8],"stattrak_prices":[10255,9814,10105,15000,25228],"stattrak_volume":[65,48,65,2,8]},"594":{"index":594,"max":1,"min":0,"rarity":3,"name":"Harvester","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1c_M2-eJtvKeqcAFiYwPxgtfJ9SjuMmRQguynLyd76dSqfZlUoA5dwFOBb5BGxxNDlP-Lg5QKM2IoUyyqv2ixL7ihr6vFCD_SgdFoAow","stattrak":true,"normal_prices":[450,36,30,25,23],"normal_volume":[82,86,49,34,63],"stattrak_prices":[279,53,20,25,21],"stattrak_volume":[54,66,7,63,41]},"641":{"index":641,"max":0.5,"min":0,"rarity":3,"name":"Jungle Slipstream","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2sYb5iLs-HAXWe_ulkteRncCW6khUz_WjQn9msInvFOlIjCZJyFuMKsEG-l4blY-zh5lDWi4lFnCr53S1Juip1o7FVTY_WZWI","stattrak":true,"normal_prices":[80,29,29,26,32],"normal_volume":[217,100,74,9,21],"stattrak_prices":[75,33,31,41,34],"stattrak_volume":[83,91,161,25,39]},"676":{"index":676,"max":1,"min":0,"rarity":5,"name":"High Roller","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-SAmuvyOBJvOhuRz39kEx1smnczomgJX2XbA4hC8BzRe9etxntldblMuyx5wfc2ooWni7_3DQJsHhZ08njvA","stattrak":true,"normal_prices":[3196,1014,882,838,831],"normal_volume":[154,242,276,67,34],"stattrak_prices":[4308,1264,879,913,912],"stattrak_volume":[68,88,108,16,22]},"692":{"index":692,"max":0.8,"min":0,"rarity":3,"name":"Night Riot","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-BB2iE_uJ_t-l9AXqxzUQisWTWz9egc3KWbAJ0XJt5Q7YN5xnuxNDiN7iz4waLgtkWzS7gznQeDJdgNeg","stattrak":true,"normal_prices":[69,13,12,9,8],"normal_volume":[311,231,245,113,102],"stattrak_prices":[78,16,8,11,7],"stattrak_volume":[114,122,212,6,50]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a4s2tabZvL_6sCG6SxPxJvOhuRz39zEVy62yAmNn4JXOXZg52DcQiTOZb5kbumtGzZOrn4VbX2NpMyyj7jDQJsHiD-oETFg","souvenir":true,"normal_prices":[757,1063,0,0,0],"normal_volume":[67,10,0,0,0]},"770":{"index":770,"max":0.4,"min":0,"rarity":2,"name":"Cold Cell","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_825abxSMuWRMWWZ2-F4j-1gSCGn2x4i5G3Wytb6dH6RPAByA5tzFOQNsBK9m4K2Nrnm4lfW2t4Rny_53SNXrnE84jRZ-LA","normal_prices":[17,5,3,9,0],"normal_volume":[1140,289,268,108,0]},"775":{"index":775,"max":0.5,"min":0,"rarity":1,"name":"Facility Sketch","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2sZLFoMOKaAHOv1uZ_pORWQyC0nQlptTjWyImvJSnBOgcjCcF2EbMDskLploCzZO-0swfZithGnCWq3X5P6jErvbhS6IbYJA","souvenir":true,"normal_prices":[6,1,1,1,1],"normal_volume":[3370,2524,2252,59,66]},"829":{"index":829,"max":0.5,"min":0,"rarity":1,"name":"Anolis","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2iYb5sMvSsHWyZz9F6ueZhW2e2xkpytWjTydaqeHKXbAJyApN4QuUOtkG8wNTiMLm3tAKM2Y9Hny75kGoXub_Drj6P","souvenir":true,"normal_prices":[74,40,31,33,30],"normal_volume":[549,298,338,38,58]},"873":{"index":873,"max":0.5,"min":0,"rarity":1,"name":"Seabird","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I4M2vebFsH-OHA2aCwtF6ueZhW2exxhh-6mWHnI76dn2Sb1MiDsFyQbFZsELtxNTmMerg4VDd2YxAyiqtkGoXuSVM9Bwl","normal_prices":[830,544,513,489,514],"normal_volume":[232,40,77,21,14]},"884":{"index":884,"max":1,"min":0,"rarity":4,"name":"Embargo","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-BAWaU_vl3ovNgQDuMmRQguynLnt37I3ifb1VyW8F4Te8D4UTrl4GxZru25FTZjI9GnCr5iC4YvSto4PFCD_TYHp-YNQ","stattrak":true,"normal_prices":[2329,426,148,144,140],"normal_volume":[88,86,73,31,51],"stattrak_prices":[2586,756,338,362,282],"stattrak_volume":[39,41,54,22,21]},"973":{"index":973,"max":1,"min":0,"rarity":3,"name":"Runic","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1c_M2sYb5iLs-bC2uc0-9_tOR7cCW6khUz_WiGm42pJXyUPwFzXJJxRrZf4xS7x4fvN7ix4gHX3o9HzX32hipBuyp1o7FVwd1bSh8","stattrak":true,"normal_prices":[82,15,6,5,5],"normal_volume":[440,848,1436,130,189],"stattrak_prices":[98,16,8,6,6],"stattrak_volume":[318,20,291,207,109]}}},"27":{"name":"MAG-7","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0OG6Z7ZgJuKcAHOvzedxuPUnS3_iwk926m6EnIyvIn3DbQF0X5UjRbJfthewktK2MLzq4ATcgoJCxTK-0H2wBd1PlQ","souvenir":true,"normal_prices":[1781,182,80,85,72],"normal_volume":[11,70,155,90,13]},"1072":{"index":1072,"max":0.37,"min":0,"rarity":4,"name":"Prism Terrace","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0PWrZ6loNOKaDViD1etmo955SiihmSIrujqNjsGrcX3GbAB2AsdyQLMOsESxktPgMOKw7wOMgt4WmSv5jS1M63lpsedRT-N7rVBJ5qCN","souvenir":true,"normal_prices":[6515,4454,4427,0,0],"normal_volume":[58,4,9,0,0]},"1089":{"index":1089,"max":0.6,"min":0,"rarity":4,"name":"BI83 Spectrum","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSIvmAA3KEydF6ueZhW2fml0Vw4mWGnN2udHmSOgAoCJMjQOJY4xK8k9XvPu-x5Qba2N5HzH73kGoXuQbKMJGE","stattrak":true,"normal_prices":[739,210,151,195,185],"normal_volume":[367,321,276,6,24],"stattrak_prices":[871,328,213,285,250],"stattrak_volume":[143,106,133,28,8]},"1132":{"index":1132,"max":0.7,"min":0,"rarity":3,"name":"Foresight","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSMOKWCm6T1eFkj-1gSCGn2xgmsWvRm96seXOfbFMjXJR1R-NY4xjukNLlYurn4QeN3t5CmCT7jHxXrnE8UENGXls","stattrak":true,"normal_prices":[36,10,6,6,5],"normal_volume":[1202,100,2502,103,102],"stattrak_prices":[32,11,7,8,8],"stattrak_volume":[298,19,282,92,88]},"1188":{"index":1188,"max":1,"min":0,"rarity":3,"name":"Resupply","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wi9a6KWRaalgL8-RAX-vzedxuPUnTHjgkxwj52SHyImqcX2fO1AhDMNxEe4I4RWwkIXgMO60sQPeiYgQmTK-0H2GsAjMqQ","stattrak":true,"normal_prices":[87,14,5,5,5],"normal_volume":[422,325,352,184,192],"stattrak_prices":[81,18,8,6,6],"stattrak_volume":[119,313,377,49,159]},"1220":{"index":1220,"max":1,"min":0,"rarity":3,"name":"Insomnia","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSKf6AAWqeyO9JvOhuRz39wh4k4TzUnN_9cC6WO1J2DJdyROcI4BC9x9XmN-vj71eN34xAzC33hzQJsHiziLtbUA","stattrak":true,"normal_prices":[78,14,5,5,5],"normal_volume":[478,640,522,348,253],"stattrak_prices":[85,17,7,6,6],"stattrak_volume":[184,230,275,79,229]},"1245":{"index":1245,"max":1,"min":0,"rarity":3,"name":"Copper Coated","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSJ_-cAmOvzedxuPUnHXDilhh1sGzQy4yscXPCbAcgXpNwE-UJuhjqkNW0Zrm05VDdjIoXyDK-0H3aMMdvcg","souvenir":true,"normal_prices":[1044,261,102,100,89],"normal_volume":[135,142,263,61,89]},"1306":{"index":1306,"max":0.65,"min":0,"rarity":1,"name":"Copper Oxide","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0PW8bb1vLOWWMWuZxuZi_rk6Sn-3lBx04WiEyd6rICjEag8nCZZwRuANsBLpxNfiM-vq5waPj4hbjXKpmkGFhL8","normal_prices":[3,1,1,1,1],"normal_volume":[661,243,803,116,323]},"1355":{"index":1355,"max":1,"min":0,"rarity":3,"name":"MAGnitude","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wi9a6KWRa61_I_yWMWSf0f5zot5lRi67gVN34z_Xwo36J32VPFclWZN3TeUJsxjukNXjYe-0tQTc3oNCyXqrjHgY8G81tEUQW-wE","stattrak":true,"normal_prices":[90,19,9,5,5],"normal_volume":[510,516,278,66,85],"stattrak_prices":[134,43,21,19,14],"stattrak_volume":[160,335,181,42,26]},"171":{"index":171,"max":0.8,"min":0.06,"rarity":1,"name":"Irradiated Alert","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFL0Py7Y6F-NOKaHmKvw_x5p-9WQyC0nQlp5z7dwtr4JHjEawR0W5J5R-INtBPpwdzvMeK24FHZiotBzSWq3SMa5jErvbi6fRO3ow","souvenir":true,"normal_prices":[3348,503,321,281,254],"normal_volume":[9,50,34,6,8]},"177":{"index":177,"max":0.18,"min":0.02,"rarity":3,"name":"Memento","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0PutZ7dsKPWXHGie_uJ_t-l9ASjlzRl34WnUzN6tJy-eOg50C5N1TLYLthaxm4HlZbiz4AXXjNpDmCXgznQeeQk0p-w","stattrak":true,"normal_prices":[612,363,380,0,0],"normal_volume":[80,68,9,0,0],"stattrak_prices":[668,363,825,0,0],"stattrak_volume":[143,46,19,0,0]},"198":{"index":198,"max":0.8,"min":0.06,"rarity":3,"name":"Hazard","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFL0PqvcqV_JM-RHGaGztF6ueZhW2flxR8ksDvcnt_7JC7DaQUgA5FxQe8I50TsmobhMe2041SI2dpFySWrkGoXuaG6AS0C","normal_prices":[15138,3571,2079,2444,2358],"normal_volume":[8,26,14,8,3]},"291":{"index":291,"max":0.4,"min":0,"rarity":3,"name":"Heaven Guard","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSKPWSGGKe_uJ_t-l9AXm1zEol52_cz9z9d3rDb1J0DZdwFOMLtxa4m4W2Zejn5ALc2NhFzyTgznQeMWQmjgI","stattrak":true,"normal_prices":[75,56,53,66,0],"normal_volume":[340,97,138,20,0],"stattrak_prices":[131,58,46,104,0],"stattrak_volume":[271,132,154,16,0]},"32":{"index":32,"max":0.08,"min":0,"rarity":2,"name":"Silver","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNV0OGnZLJoMs-fB2CY1aAm5Lc7SSyxl0t1sj7Wn9ipdXuRZwMkD5NzRbVftkPsx9LvZOjjsgyMlcsbmlF3IVC_","souvenir":true,"normal_prices":[3449,2569,0,0,0],"normal_volume":[147,2,0,0,0]},"327":{"index":327,"max":0.22,"min":0,"rarity":2,"name":"Chainmail","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0PGmaa1jLfGaAlicyOl-pK9tHXnrxUV14Gjcy4yoInmQPQEnD8FwQORb5ELqxtXhNOrm5A3Zjo4R02yg2X61hecA","normal_prices":[2146,1806,1686,0,0],"normal_volume":[101,62,24,0,0]},"34":{"index":34,"max":0.08,"min":0,"rarity":2,"name":"Metallic DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0Oe8aqVjH_yaCW-Ej7ch5bQ_GiqxlBxy422Bwt2seCjEbVMkX5J2R-8J4RPsx9bkNO7jtgLAy9USmH-e5kI","souvenir":true,"normal_prices":[13,15,0,0,0],"normal_volume":[1345,41,0,0,0]},"385":{"index":385,"max":0.49,"min":0.06,"rarity":3,"name":"Firestarter","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFL0P-vb_NSJvmBC2WZ1fpzvt5lRi67gVNyt27dz46scn2TaQ52XpV1E-8I4RLuwIHnMO2w4gfa2NlHmy2ri3xP8G81tFM5kI47","stattrak":true,"normal_prices":[874,317,62,65,110],"normal_volume":[35,26,107,37,45],"stattrak_prices":[1896,236,105,106,114],"stattrak_volume":[12,45,52,32,19]},"39":{"index":39,"max":0.8,"min":0.06,"rarity":4,"name":"Bulldozer","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0OurZKhiN8-fB2CY1aAn4bMxFijqzB5z4WjdnI2vc3nFbFcpCpomR-8NtxK_x9W2MO_k5VDYlcsbmtRYf5JR","souvenir":true,"normal_prices":[20625,3733,1125,1303,1281],"normal_volume":[30,133,138,11,40]},"431":{"index":431,"max":1,"min":0,"rarity":4,"name":"Heat","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSMvWXBmiE_uJ_t-l9AX7nzBsk623dm46odHmUbFd1Dcd2RbINtBXtkNDjMbzj5AGKjt4UyijgznQe8JftFTE","stattrak":true,"normal_prices":[944,201,108,107,100],"normal_volume":[221,315,174,67,89],"stattrak_prices":[1495,371,172,141,142],"stattrak_volume":[78,148,182,62,75]},"462":{"index":462,"max":0.65,"min":0,"rarity":3,"name":"Counter Terrace","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0PWrZ6loNOKaDViD1etmo95uXSy2myIrujqNjsH6InKeOAIgX5smTbMLtka-loflYe7n5wDZjt5AySX7hyhNuns547wBT-N7rTTigBkB","normal_prices":[14285,13521,11346,140000,11800],"normal_volume":[56,16,11,1,1]},"473":{"index":473,"max":1,"min":0,"rarity":1,"name":"Seabird","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0PO_faVSLPmUBnPel-oj5LhsTnniwRx15TmDn9esdXLGPFIlW5QiRuRftEG8xNTgMuLrtRue1dzd1mVtfQ","normal_prices":[945,493,422,418,308],"normal_volume":[81,51,54,68,35]},"499":{"index":499,"max":0.5,"min":0,"rarity":3,"name":"Cobalt Core","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSLemBDWKexNF6ueZhW2fkwBshsT-DntuscSiVbABzD5Z2QuRftRXuwYblY-_i5AePj49Emyn7kGoXuSUXTp8T","stattrak":true,"normal_prices":[162,46,28,26,28],"normal_volume":[268,125,139,24,35],"stattrak_prices":[189,84,42,52,49],"stattrak_volume":[169,84,66,33,18]},"535":{"index":535,"max":0.45,"min":0,"rarity":4,"name":"Praetorian","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSMOKSC3Of0-d3vt5lRi67gVMl5j_VzIr_eSnBbw4iXsR2FLZfsRi6x9LvNOqw4FePid4UmCX2iC1J8G81tOf1qE-m","stattrak":true,"normal_prices":[502,169,157,177,0],"normal_volume":[78,86,62,29,0],"stattrak_prices":[824,462,365,559,0],"stattrak_volume":[77,70,49,13,0]},"608":{"index":608,"max":0.44,"min":0,"rarity":4,"name":"Petroglyph","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSNOKaDGac_uJ_t-l9AXm1kUQl4TzcytqpeSjFagMkW5AiQbZYsEG_mtTnN-jq4AWLidpNnC3gznQeOK4te4s","stattrak":true,"normal_prices":[286,114,86,90,0],"normal_volume":[321,278,95,20,0],"stattrak_prices":[250,111,104,144,0],"stattrak_volume":[140,88,74,28,0]},"633":{"index":633,"max":0.45,"min":0,"rarity":3,"name":"Sonar","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0P-vb_NSLfGfCGiCzNF6ueZhW2fgxEol4TnQyo2qd3qTPwQhD5d0F-YPuhHpwNHlZLvi5VTY3dhAy339kGoXufaFAiYQ","stattrak":true,"normal_prices":[463,45,44,38,0],"normal_volume":[292,150,131,36,0],"stattrak_prices":[108,40,25,43,0],"stattrak_volume":[62,35,72,35,0]},"666":{"index":666,"max":0.45,"min":0,"rarity":3,"name":"Hard Water","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0P-vb_NSI_GGHXOZwtF6ueZhW2eykx534j_VydygIi6fPQJ0DJcmQrIMukK7k9HvZO224FbajI8WnC-tkGoXudK2z8cj","stattrak":true,"normal_prices":[694,613,383,472,0],"normal_volume":[38,17,40,14,0],"stattrak_prices":[677,501,539,554,0],"stattrak_volume":[29,25,12,11,0]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0PGveqZiLs-VB2WV09F6ueZhW2fqlhgm5mzSnNqgdiqSO1AnW5YlR-8Ct0Hqkte0Y7-xsg3d3o9BnCX6kGoXuYaRGffM","normal_prices":[342,359,0,0,0],"normal_volume":[501,64,0,0,0]},"703":{"index":703,"max":0.92,"min":0,"rarity":4,"name":"SWAG-7","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNK0P-vb_NSM-eSCTCvzedxuPUnHirhkxhxtzvRzI38dnLEOlQnW5N1F-FZtRG6kYLvPu205ADaj40RnDK-0H0F4y2tgg","stattrak":true,"normal_prices":[442,107,37,33,33],"normal_volume":[171,227,212,60,83],"stattrak_prices":[772,181,63,67,58],"stattrak_volume":[90,92,157,36,55]},"737":{"index":737,"max":1,"min":0,"rarity":5,"name":"Cinquedea","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSJ_ySHXSvzedxuPUnSijmlh9x4D-BnNyuJ3LCbAVzAsdxFuRe5EPpw9XiMbvh5lHYiYwQyjK-0H3Th2Gpiw","normal_prices":[71866,71479,65597,43831,44765],"normal_volume":[54,11,7,2,5]},"754":{"index":754,"max":1,"min":0,"rarity":1,"name":"Rust Coat","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNK0OG6baFhH_mdCGKCz-FJvOhuRz39kElztWzRn4r9eXqWblAjXpQjRuIPuhm7k4KxYeLisgDfjtlFmSSqijQJsHiheIBpJg","souvenir":true,"normal_prices":[28,2,1,1,1],"normal_volume":[169,841,349,594,700]},"773":{"index":773,"max":0.7,"min":0,"rarity":2,"name":"Wildwood","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU7PqRf61hJOecAWOvzO9x595lRi67gVN36mzTw9v8cnyRaAZ1XMB2E7MPtkS-lYK2YuOx7gTd3dlDziSqjixB8G81tBJWeXuA","normal_prices":[26,6,3,4,3],"normal_volume":[837,386,248,19,107]},"787":{"index":787,"max":1,"min":0,"rarity":4,"name":"Core Breach","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0Py7a6hoIeKsBmiEzvx3vuZscCW6khUz_WzdnoyvIHvGPFJzD8B0QrINshPtw9fmYunrsw2PiNlEnC_5iy5L5y11o7FVg__4LKQ","souvenir":true,"normal_prices":[1536,421,87,96,67],"normal_volume":[114,291,190,72,80]},"822":{"index":822,"max":0.55,"min":0,"rarity":1,"name":"Navy Sheen","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0Pyvfr1SM_iaAGKvzedxuPUnHyu2lh8j5zuBzYv4Iy3FZwJzCJMlQbEL5hO-ltPnP7zmswHY39hAxTK-0H11955Myw","souvenir":true,"normal_prices":[75,32,23,46,44],"normal_volume":[652,395,208,112,156]},"909":{"index":909,"max":0.8,"min":0,"rarity":3,"name":"Popdog","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSMP-DCmiX_uJ_t-l9AXixkBgm5G7VnN-rcn_Bb1UmWcBxFuACtRC5kNC1Zunr5wbdi4hEyn7gznQeG1-SDIY","stattrak":true,"normal_prices":[198,28,38,29,22],"normal_volume":[45,150,64,46,29],"stattrak_prices":[134,23,15,23,19],"stattrak_volume":[52,69,93,5,55]},"948":{"index":948,"max":1,"min":0,"rarity":5,"name":"Justice","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSKuWAGm6TxNF6ueZhW2fikUt36znWyNz_dn2ROgMhD5EiR7EO5BKxl4DlMLyx7gyNi4hAniz5kGoXuQ9OXJLa","stattrak":true,"normal_prices":[2481,681,518,497,483],"normal_volume":[206,244,506,92,116],"stattrak_prices":[3847,1260,609,619,581],"stattrak_volume":[74,84,120,24,47]},"961":{"index":961,"max":1,"min":0,"rarity":4,"name":"Monster Call","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSLf-dHXOV09F1se1lcCW6khUz_WncmIz8JHmTa1JyApd5FLEMsES-kNDhM-3i5QKM2Y5AzSr9jngY6Cp1o7FV7cAHRyI","stattrak":true,"normal_prices":[368,90,40,32,30],"normal_volume":[355,812,644,235,273],"stattrak_prices":[510,160,63,53,56],"stattrak_volume":[142,206,229,109,116]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0OGvZqBSLPmUBnPew-0jtrk6TnDgwEwl4j-GzdqtcHnFPAdxXpMmRLIN5EW8w9KzM-rnshue1dx36R-nYw","souvenir":true,"normal_prices":[4525,724,187,221,239],"normal_volume":[12,18,14,12,7]}}},"28":{"name":"Negev","sticker_amount":5,"type":"Weapons","paints":{"1012":{"index":1012,"max":0.65,"min":0,"rarity":3,"name":"Phoenix Stencil","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s2-YKtoLvmLMXORxv1JouRtcCW6khUz_WzTy96heC-VbwMkDJB0FLMPtBi7x9XlN76x5VfYg98UySv3h35A7yd1o7FV05NZ2dU","normal_prices":[2491,2390,2031,1947,2006],"normal_volume":[70,47,35,5,13]},"1043":{"index":1043,"max":0.65,"min":0,"rarity":4,"name":"dev_texture","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-XC3GExPZipfNscCW6khUz_W_QzdmhJy7EOFAkWMdzF-dbtEK9moGyZbi37gTZi4xMxH36iipK73p1o7FVNCisfvA","stattrak":true,"normal_prices":[208,59,34,32,32],"normal_volume":[446,170,579,39,72],"stattrak_prices":[252,116,50,66,51],"stattrak_volume":[108,113,141,28,62]},"1080":{"index":1080,"max":0.49,"min":0,"rarity":3,"name":"Infrastructure","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s24bbZ5KfecHXeCwPdJvOhuRz39zU9w4m3RmdmqdSiSa1BxDJMiQ-4NsELqwYHgMujm5lHbg9gRxHqo2DQJsHghIlc9AQ","souvenir":true,"normal_prices":[1840,1180,1206,2815,1475],"normal_volume":[44,13,12,2,1]},"1152":{"index":1152,"max":1,"min":0,"rarity":3,"name":"Drop Me","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-QAmKR09Flu_hWQyC0nQlpsDnVy4mpcSiQOlB2CJRxR-AK4BDrw4azN-225lfc2t0Tznr6iX4f6zErvbg1B8-kIw","stattrak":true,"normal_prices":[95,15,5,5,5],"normal_volume":[454,373,395,167,133],"stattrak_prices":[91,29,8,6,5],"stattrak_volume":[128,135,424,102,57]},"1260":{"index":1260,"max":0.8,"min":0,"rarity":2,"name":"Sour Grapes","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I4PeRaqF_MumsAm6Xyfo44-Q7Gy3jzBsh4Tncw4n6cXiRbFAlW5B3TbEJu0PuwNWzPu_r4wDagpUFk3tgr-gSOQ","normal_prices":[50,9,1,2,1],"normal_volume":[505,515,549,36,121]},"1300":{"index":1300,"max":0.75,"min":0,"rarity":1,"name":"Raw Ceramic","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I4M2tbbZsLfmQMWmVxutgj-1gSCGn20524W3czd_9I3zGaAUnDZt0FOAKtBbpm4LkMOq25FHe3YtAz3-siy9XrnE8kYfBu1E","normal_prices":[5,1,1,1,1],"normal_volume":[272,185,818,64,227]},"144":{"index":144,"max":1,"min":0,"rarity":2,"name":"Wall Bang","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2hfqF_MPGAHViX0-9wj-9sSCylqhEutDWR1Iv6cyiSZgcnWZp4F7Fe4Ba9kIHnZe7i4g2Lj4xFzS_3iC9A7C1p6-gcEf1yfzRcjE8","souvenir":true,"normal_prices":[121,9,2,1,2],"normal_volume":[1111,374,401,123,110]},"201":{"index":201,"max":0.8,"min":0.06,"rarity":2,"name":"Palm","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82-aahgH_KBD3Gf_uJ_t-l9AXHgkU1x5WvQmY38cnvDZg8iX8d5E-Nc5BXqxN3gZO7jtlbZ3dkQmC3gznQei7Y7Jls","normal_prices":[7708,928,440,611,652],"normal_volume":[6,25,62,22,8]},"240":{"index":240,"max":0.6,"min":0,"rarity":2,"name":"CaliCamo","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s24abZkI_GeAViUxP1zovVWQyC0nQlptzzdzougeHmfaFJxWcZyTLVbtBTulNS0ZbjlsQTYjN1Dm3j8iX4c6DErvbiLvYVdBg","souvenir":true,"normal_prices":[2522,2222,1725,2007,1972],"normal_volume":[36,25,15,2,10]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1a4c2gabJ0H_yaCW-Ej7cu4rJrSXzikUh04G2Em9yteS-SagAkDsQlEOMP4RexldKzM7ix4lPAy9USZWBsgPo","normal_prices":[31450,65969,0,0,0],"normal_volume":[13,1,0,0,0]},"285":{"index":285,"max":0.45,"min":0,"rarity":3,"name":"Terrain","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82gbaNoNs-HG3WB_vpzovNoRieMmRQguynLz4qgJyqWOg8iDZFyFOcD40axlYflNL7htgDb2thNmH6oinkc5yZt4fFCD_QbgNa1nA","stattrak":true,"normal_prices":[93,49,55,43,0],"normal_volume":[332,18,242,23,0],"stattrak_prices":[131,92,44,64,0],"stattrak_volume":[166,111,80,109,0]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1a4s2veql0H-ObB2mV_uJ_t-l9AXrikxgk6z-EyYytcHLGbAclC8EhE-QJthjplN2yZO3gtVbcjIsXzSzgznQeWdeDBGI","normal_prices":[7,2,2,0,0],"normal_volume":[939,1299,322,0,0]},"317":{"index":317,"max":1,"min":0,"rarity":3,"name":"Bratatat","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2seqV5IeSSGliexOlzpt5lRi67gVN2sDzUwtevIy_EZwZ1DZclEOANu0brmtDuPriw5lTejdlHxSv3iilA8G81tKRsmgNk","stattrak":true,"normal_prices":[1188,342,241,276,339],"normal_volume":[59,44,23,14,22],"stattrak_prices":[2853,497,248,182,185],"stattrak_volume":[27,45,64,24,38]},"355":{"index":355,"max":0.5,"min":0,"rarity":3,"name":"Desert-Strike","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-HB3ORz_1iv_NkcCW6khUz_WnUz42tI3-WOw5zDpAmQOQD4ELskoDlMeni4gTWjoNNmSj_33kcvC51o7FVXp6G1h4","stattrak":true,"normal_prices":[77,26,25,28,25],"normal_volume":[285,97,104,30,66],"stattrak_prices":[77,48,21,30,45],"stattrak_volume":[118,139,104,51,15]},"369":{"index":369,"max":0.4,"min":0,"rarity":2,"name":"Nuclear Waste","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82gfadhJfGBMXeR1fpzou86cCe2khgxjDGMnYftby3EOFB0D5JxRLZZ5BXrm9PmPrjm7weKiY0Xz32ri3hKv3pu4-wBU6Y7uvqADsXx-os","souvenir":true,"normal_prices":[602,558,323,434,0],"normal_volume":[63,25,68,16,0]},"432":{"index":432,"max":0.2,"min":0.1,"rarity":3,"name":"Man-o'-war","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1a4s2gbaNoNs-UAmiC2NF6ueZhW2fikBh352vQyt-sI3mRbQ8lDJpxTLVfuxC5k4W0MLvm5VfeithHnij5kGoXuSdORNFb","stattrak":true,"normal_prices":[0,23,27,0,0],"normal_volume":[0,398,138,0,0],"stattrak_prices":[0,40,36,0,0],"stattrak_volume":[0,280,92,0,0]},"483":{"index":483,"max":0.65,"min":0.14,"rarity":4,"name":"Loudmouth","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-SAGmZyed6sfVmXRa_nBovp3PXzousdnrBbgEiX5QjTbICsEa7ktTnNOPrsQLW3YoQyS33jygbuHts_a9cBgJfeVOc","stattrak":true,"normal_prices":[0,1453,89,102,83],"normal_volume":[0,15,215,28,76],"stattrak_prices":[0,4411,159,260,161],"stattrak_volume":[0,21,103,39,26]},"514":{"index":514,"max":1,"min":0,"rarity":4,"name":"Power Loader","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-aA3eRwvpJvOhuRz39lE914j-HyYmscHLBZ1J1X5NyEbYI5Be8k4DmYuzh4AGIgo0QzSqs3TQJsHgPf9N5RQ","stattrak":true,"normal_prices":[1023,305,129,88,88],"normal_volume":[267,237,253,61,55],"stattrak_prices":[2922,1197,416,285,226],"stattrak_volume":[99,136,143,39,48]},"610":{"index":610,"max":0.65,"min":0.1,"rarity":3,"name":"Dazzle","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s2gbaNoNs-XD32KzetJvOhuRz39xxxzsmWEz9v9I3zFaQQiA5pzE7YLt0WwwdHkZrjktQXeg4gXyXj62zQJsHixNFIgjA","stattrak":true,"normal_prices":[0,128,22,25,20],"normal_volume":[0,245,217,65,30],"stattrak_prices":[0,326,33,36,17],"stattrak_volume":[0,80,51,44,45]},"698":{"index":698,"max":0.55,"min":0,"rarity":4,"name":"Lionfish","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82gbaNoNs-fB2iex-dluN5lRi67gVNx62XXzI74InPGbQMpDpMiRLMOsRG4lNXvPuritFeN3YpMzSSo2yhN8G81tOHyHega","stattrak":true,"normal_prices":[190,58,35,42,41],"normal_volume":[513,291,346,28,34],"stattrak_prices":[253,105,54,70,71],"stattrak_volume":[129,170,170,32,30]},"763":{"index":763,"max":0.6,"min":0,"rarity":5,"name":"Mjölnir","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1c_M2gbaNoNs-HBmiC_uJ_t-l9AXDhxRsi62yEmYqrdSmSbQMhWcN3EO8KshHpw4LmP-Oz51bcjNgXn3ngznQe6IKqifc","normal_prices":[250784,215191,224099,0,0],"normal_volume":[45,5,3,0,0]},"783":{"index":783,"max":0.5,"min":0,"rarity":2,"name":"Bulkhead","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s2qfad5M8-KC2uczvlJvOhuRz39kB50sWmBw4moJXnGPFd1WJMjFLFZs0S9lNGxNuLg7weLg91BzCj73TQJsHg2tHPevg","souvenir":true,"normal_prices":[34,5,3,3,3],"normal_volume":[842,643,1359,72,80]},"920":{"index":920,"max":1,"min":0,"rarity":1,"name":"Boroque Sand","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s24bapoNP-sGmae_uJ_t-l9AX3glxh142zUzIz_dXiWPVMjX8EhF-MP40K8l9TiMr_j7lPXiYxGzyzgznQeGMlgK6w","normal_prices":[914,410,334,288,186],"normal_volume":[32,83,73,36,36]},"950":{"index":950,"max":0.7,"min":0,"rarity":3,"name":"Prototype","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-DHGiEzvpvoORWQyC0nQlp6juDydugcHvEawVxApB3F7JftxTsloDgZOqx51PY345AxXr33SNPuzErvbi5RDlayg","stattrak":true,"normal_prices":[65,23,21,18,14],"normal_volume":[251,223,354,16,24],"stattrak_prices":[115,34,13,20,11],"stattrak_volume":[131,109,210,63,37]},"958":{"index":958,"max":0.79,"min":0,"rarity":3,"name":"Ultralight","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-GAnOCwOJ_t-l9cCW6khUz_WSAnNj_cX6VZlQlX8Z0TeVc4RG5w4ayM-2w5wzYidhGyXr-iC0f6Cl1o7FVuI8WfEM","stattrak":true,"normal_prices":[35,13,5,5,6],"normal_volume":[487,341,713,47,484],"stattrak_prices":[46,17,7,7,6],"stattrak_volume":[253,259,279,36,65]}}},"29":{"name":"Sawed-Off","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1014":{"index":1014,"max":0.6,"min":0,"rarity":1,"name":"Clay Ambush","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZt5KfeWHHSv1e94j-1gSCGn2093tmzRy92gI3-Qb1QjWcN2EOBb5xjqm4XgY-rq4w2LjI1DmC38hn9XrnE8CIO4W8k","normal_prices":[160,148,99,78,67],"normal_volume":[179,230,328,53,72]},"1140":{"index":1140,"max":1,"min":0,"rarity":3,"name":"Spirit Board","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F5pehjTha_nBovp3OEyN-ocCmWPwYkCpoiE-QMt0bsxNbnNLm25waK345DyST23CpP5ytp_a9cBm4mGqdG","stattrak":true,"normal_prices":[79,13,5,5,5],"normal_volume":[317,361,503,210,224],"stattrak_prices":[68,15,7,6,8],"stattrak_volume":[146,172,174,97,262]},"1155":{"index":1155,"max":1,"min":0,"rarity":5,"name":"Kiss♥Love","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F9ufJ6QyalkCIrujqNjsGoI3-QZwZzD5F5TbUDsBi_xtW1NuqwsVaPjoxFmST93ClI6S1osuYDT-N7rb6xkGzX","stattrak":true,"normal_prices":[1672,500,338,295,285],"normal_volume":[383,644,1208,321,220],"stattrak_prices":[2564,710,454,418,389],"stattrak_volume":[107,122,169,55,65]},"1160":{"index":1160,"max":0.61886,"min":0,"rarity":4,"name":"Analog Input","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29abNoJP-VCFiXwONzot5lRi67gVN3tWTdyNipdCiQPwdxCJV2RuBY4xa_wILgMLu37leK3otMzHmo3H5J8G81tFoL-ETi","stattrak":true,"normal_prices":[114,55,35,34,33],"normal_volume":[2644,902,1300,154,203],"stattrak_prices":[238,115,75,82,77],"stattrak_volume":[294,563,886,130,153]},"119":{"index":119,"max":0.8,"min":0.06,"rarity":1,"name":"Sage Spray","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJt-MOKSF1iUxP1zovVWXCi0kCIrujqNjsH9eC_GblMpCMB4RLYJuhi8wdLiN7_qslaNjdkWyCmqjn9O5yk5sbwBT-N7rdc-87w7","souvenir":true,"normal_prices":[1872,117,62,105,44],"normal_volume":[14,18,73,49,2]},"1272":{"index":1272,"max":0.780822,"min":0,"rarity":1,"name":"Runoff","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2pe6dlH-KaHnecxNF6ueZhW2ewx0l_4G7dnNf8d3qfaABzDpZ5ROUPtxbqw9a2Ye-3tgWL2YNHnHiqkGoXuXAJUfvg","normal_prices":[6,1,1,1,1],"normal_volume":[330,406,683,26,221]},"1391":{"index":1391,"max":0.6,"min":0,"rarity":1,"name":"Crimson Batik","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcaFSIvGHB2yvxPdzo95lRi67gVNxsGjUzIz9ci7DblclD5d1Ee5esEO4mt3vN7_g5VeIj4xAzi2r23kb8G81tFlYllZq","normal_prices":[3,1,1,1,1],"normal_volume":[773,367,1068,121,102]},"1427":{"index":1427,"max":1,"min":0,"rarity":3,"name":"Fusion","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29abNoJP-VCFiW1P1_v-9WQyC0nQlp4WiHyY79eHmXOw4mW5JwQ-Jc5hO7koXjML_jsgSK2oJHmyz82ilB7DErvbjU0C2wDw","stattrak":true,"normal_prices":[91,22,10,7,5],"normal_volume":[212,225,246,48,46],"stattrak_prices":[129,46,23,19,16],"stattrak_volume":[104,100,117,52,38]},"171":{"index":171,"max":0.8,"min":0.06,"rarity":1,"name":"Irradiated Alert","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJtjNfuWHXOCyP5zj-N7QD69qhEutDWR1NquJHuXO1J2CMZ2TLEPtxe8wdLhMO_gsQ2PiolBzymojX5A6X054O4cEf1yT4AnDcQ","souvenir":true,"normal_prices":[2969,481,282,272,246],"normal_volume":[6,40,30,8,23]},"204":{"index":204,"max":0.8,"min":0.06,"rarity":2,"name":"Mosaico","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtsLPmsGm6cxNF0ouB_QBa_nBovp3PQmNyod3vGa1BzDcYhEbZZtxjrx9XuZbvitVbf34IUmXn933tM5ypp_a9cBnkXArQx","normal_prices":[6692,815,547,756,502],"normal_volume":[4,8,5,8,38]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2vaZtrIfSWMWqV1e96vOhqcCW6khUz_TuHwt2odHKROA90WZN2Fu4DsEO-mtTlNLiws1SNi99NxHmtj3tI5n11o7FVJSB89LY","souvenir":true,"normal_prices":[76,28,14,36,0],"normal_volume":[708,308,128,53,0]},"250":{"index":250,"max":0.6,"min":0,"rarity":3,"name":"Full Stop","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZt7IeKaDWadztFkteVWQyC0nQlp42yEyIr7cX6TaVN0XJsiQeYJ5BTplYDjYrnj7wPX3opHnHr93CJN7zErvbhNR0v1hQ","souvenir":true,"normal_prices":[84,22,11,60,16],"normal_volume":[266,275,178,123,55]},"256":{"index":256,"max":0.4,"min":0,"rarity":6,"name":"The Kraken","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F5s_VmXzy-hSIrujqNjsH_eXmWaVRyXpF3EOZe5Bm8w93gMbzn4waPg98Tzir8jHwbuC5p4uZUT-N7rZ8ILI16","stattrak":true,"normal_prices":[7818,6920,6954,10684,0],"normal_volume":[135,75,57,9,0],"stattrak_prices":[10951,8453,9255,69723,0],"stattrak_volume":[30,16,7,4,0]},"30":{"index":30,"max":0.8,"min":0.06,"rarity":2,"name":"Snake Camo","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJt-LvGYC1icyOl-pK8xHnDixkt_52zdyYqudXjBb1dyDJIlEe5e50G_xN22Yb_qs1TZiN5A02yg2XLJgstT","souvenir":true,"normal_prices":[216,19,2,2,2],"normal_volume":[156,264,357,58,117]},"323":{"index":323,"max":0.8,"min":0,"rarity":2,"name":"Rust Coat","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-NPWWAlicyOl-pK87TC2ylB534jiGzNv6dCjFPQR2XpJ4RuQPtRbqx9znYujitFPZ3oJC02yg2T-LVFiK","souvenir":true,"normal_prices":[2238,1119,1068,1415,1327],"normal_volume":[22,21,28,4,28]},"345":{"index":345,"max":0.5,"min":0,"rarity":3,"name":"First Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZtqMvWWAFicxO9iuOR7cDqyghgjvDuDpYPwJiPTcA9yXpB0QOQPsEW_l9DlY-3m4gaK3YtDyS_7jCpB7S9vtuwDUfck8qHJz1aWiwWPy5U","normal_prices":[6423,3400,3023,6450,4800],"normal_volume":[25,7,2,4,1]},"390":{"index":390,"max":1,"min":0,"rarity":4,"name":"Highwayman","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-IeeWCmiWx9F0vOBqRC68mRkYvzSCkpu3dXuVaQchCMRwQeJYsxaxl9W0N-nrtVeMid4XyHn53XtN5n5st-xRU71lpPM2tqJ-2A","stattrak":true,"normal_prices":[582,201,112,110,91],"normal_volume":[37,53,6,21,12],"stattrak_prices":[983,611,271,259,251],"stattrak_volume":[8,15,19,6,25]},"405":{"index":405,"max":0.5,"min":0,"rarity":4,"name":"Serenity","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9FytfdocCW6khUz_W2Dwtv6cXLFZgUnD5VzQrMPtxjrx9K0Ye637wzYj4gXzimqiH9KuC91o7FV9mPR2UI","stattrak":true,"normal_prices":[506,202,166,246,147],"normal_volume":[165,107,53,27,7],"stattrak_prices":[661,401,373,429,542],"stattrak_volume":[54,56,58,23,13]},"41":{"index":41,"max":1,"min":0,"rarity":3,"name":"Copper","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZtuL-CDC3WvzedxuPUnHirik0x1smnTnN76dC3Dbg8nA8NxROcNsBW9lNTiMurh4wLYj9gRmzK-0H1mwe_z3Q","normal_prices":[16879,9501,9900,9399,9499],"normal_volume":[7,2,2,4,6]},"434":{"index":434,"max":0.55,"min":0,"rarity":3,"name":"Origami","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F5ouhuTiS6qhEutDWR1IutIyqSalBzWZQjQbUD4UaxltCzNuLgslTejYwTxSn2jCIc5n1jtbscEf1yxjZ09aw","stattrak":true,"normal_prices":[47,22,24,26,25],"normal_volume":[435,137,230,54,36],"stattrak_prices":[88,41,23,34,32],"stattrak_volume":[136,88,94,28,34]},"458":{"index":458,"max":0.6,"min":0,"rarity":1,"name":"Bamboo Shadow","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtvIf2RAWivy_t4t-1scCu_lB4sjDGMnYftb3mTOAMlCcRwQONcs0buxoKxNOy2tgyKjtgXmHj62ypPuHs56-hUBas7uvqAJwYOBrA","normal_prices":[1311,1130,1022,930,650],"normal_volume":[91,72,64,19,6]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtpJOCSGlicyOl-pK8xTnGyxksl62zcytahI3KSaAYpCpBwEbFYtBa9lNblP77ktg2P3oNB02yg2UVFED2F","normal_prices":[76,4,1,2,1],"normal_volume":[97,281,256,518,56]},"517":{"index":517,"max":1,"min":0,"rarity":3,"name":"Yorick","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2pe5t-IeeWCmiWx9F4teJ7QCSymx4ioQKJk4jxNWWTaQEnXsR1QOUItBC9mtTgMenntVCKjY4RyS79jy8b6iw5susEBfYs5OSJ2HUgdoR1","stattrak":true,"normal_prices":[203,35,19,12,13],"normal_volume":[118,83,188,30,88],"stattrak_prices":[313,74,34,30,28],"stattrak_volume":[40,54,91,22,68]},"552":{"index":552,"max":1,"min":0.4,"rarity":3,"name":"Fubar","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2pe5t-IeeWCmiWx9FwpeNoXRa-kBkupjDLmN39d3jDb1VzApsjFu4DuxC5ltKyMbi2sVbZ2tpNyiuvjH8Y7HpqsPFCD_SxQd5sJw","stattrak":true,"normal_prices":[0,0,0,146,24],"normal_volume":[0,0,0,77,202],"stattrak_prices":[0,0,0,4163,16],"stattrak_volume":[0,0,0,54,36]},"596":{"index":596,"max":1,"min":0,"rarity":4,"name":"Limelight","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWClifx-hJvOhkSha_nBovp3ODz4utJHrBZ1MjD5YkFO8NtBjqwdXvP-nn4QLZjIJNnHio2Hwd5npq_a9cBh09Jdi8","stattrak":true,"normal_prices":[797,206,101,95,94],"normal_volume":[107,108,138,74,54],"stattrak_prices":[966,259,147,156,144],"stattrak_volume":[52,59,83,41,30]},"638":{"index":638,"max":0.7,"min":0,"rarity":5,"name":"Wasteland Princess","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt6MM-AD3CVxeFwtt5lRi67gVMksWuEmduuIH2fPwUkWJojQuMP5xi8lNzlY-234lDag4xFnin_jihN8G81tH9UxALW","stattrak":true,"normal_prices":[5339,3438,2785,3133,2570],"normal_volume":[153,218,324,25,52],"stattrak_prices":[3437,1394,927,903,965],"stattrak_volume":[25,50,84,18,27]},"655":{"index":655,"max":1,"min":0.05,"rarity":3,"name":"Zander","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-IeeWCmiWx9Fsse9tSjvhqhEutDWR1N79dXrBbFUgXpt4QrJb5hfuktTgYuLrtAXXiNpGySuvjS8b6i9j4escEf1ycSPZoqI","stattrak":true,"normal_prices":[488,52,30,23,23],"normal_volume":[45,29,87,88,59],"stattrak_prices":[324,58,31,32,28],"stattrak_volume":[9,24,121,63,42]},"673":{"index":673,"max":1,"min":0,"rarity":3,"name":"Morris","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-IeeWCiqfx-hJtu1mWCyhqhEutDWR1NypJSnDPQF2C8N2EOEL4xjqkd20Ze7q4APW3dkWxSit2i4a7Ctp4LkcEf1yx89MV8Y","stattrak":true,"normal_prices":[138,21,24,13,14],"normal_volume":[72,163,229,18,44],"stattrak_prices":[117,29,12,9,13],"stattrak_volume":[52,72,62,27,33]},"720":{"index":720,"max":0.8,"min":0,"rarity":5,"name":"Devourer","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9FytfdmWju2hyIrujqNjsH8JSnBPQdxDcEiF-FZshS7kdG1NOyz4wKKiYNDmXn3jHkd5n055ulTT-N7rdPAUyyq","stattrak":true,"normal_prices":[1902,646,450,542,448],"normal_volume":[66,260,236,8,49],"stattrak_prices":[3353,1325,707,705,762],"stattrak_volume":[31,80,101,1,22]},"797":{"index":797,"max":0.08,"min":0,"rarity":3,"name":"Brake Light","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2vaZt7JeKHB2Cf_vxztN5lRi67gVMj5T_Ry9yhcS-XaFUiDpVwEe4D4Bi9lta1Yb_m5FfdiYxNmS_3j35A8G81tL5T7kT_","souvenir":true,"normal_prices":[110,88,0,0,0],"normal_volume":[948,53,0,0,0]},"814":{"index":814,"max":0.9,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F0vOBqRBaglBMjjDGMnYftb3qSOAF2XpV0ELMJsUS_ldGzMO_isVHagt9Az32ojiob6Hk9sbtXB6o7uvqARF8zTjE","stattrak":true,"normal_prices":[108,27,15,15,14],"normal_volume":[62,81,30,45,92],"stattrak_prices":[94,34,13,12,14],"stattrak_volume":[79,42,77,19,63]},"83":{"index":83,"max":0.8,"min":0.06,"rarity":4,"name":"Orange DDPAT","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtpJOCSGlif0-94t-RWQyC0nQlp4GyAzoqsdSmWaFJyD5UhEeFcsBm-ktK0M7nj7wKI394Xn3-vhisfujErvbhk58vgGA","stattrak":true,"normal_prices":[8405,2586,1818,1968,1965],"normal_volume":[11,25,12,2,10],"stattrak_prices":[26658,4118,2790,3373,2845],"stattrak_volume":[4,11,23,7,5]},"870":{"index":870,"max":0.5,"min":0,"rarity":1,"name":"Jungle Thicket","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJt9IfyeMWCCxOt4j-1gSCGn2xhztj6Bn97_dnzBaQAoA5ciE-8PukG6k9fhZOi34gOPit9BxSz7hytXrnE8FOcrcRs","normal_prices":[728,671,559,545,504],"normal_volume":[200,86,86,9,24]},"880":{"index":880,"max":0.49,"min":0,"rarity":1,"name":"Parched","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtpJeOWHHOvw-J5v-xWQyC0nQlp52_dnoqsdHjDaAInDMNzQbZc4ROxxIbgMrmxtALagtgXniiv3HxOuDErvbjDfqqgDA","souvenir":true,"normal_prices":[63,66,31,66,28],"normal_volume":[503,427,122,84,30]},"953":{"index":953,"max":1,"min":0,"rarity":4,"name":"Apocalypto","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F3oO5qTiWqhQkojDGMnYftb3vFbVcmDsRwEOdbtkW4lIbiMOrh4FaIiYMQxXmoiXkd7n1o5b4AWKM7uvqARUQpSmk","stattrak":true,"normal_prices":[501,99,53,45,44],"normal_volume":[221,180,222,96,108],"stattrak_prices":[589,166,93,82,89],"stattrak_volume":[52,111,117,79,101]}}},"3":{"name":"Five-SeveN","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1002":{"index":1002,"max":0.1,"min":0,"rarity":4,"name":"Berries And Cherries","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaaVSJvGXC1iCxOpJsu18Sha_nBovp3OEmY2vIi_FagEoDMMjQuMKthDqm9TjP-O3sVSLio0Qnnr22i0f7C9t_a9cBnO-dw69","normal_prices":[14674,14389,0,0,0],"normal_volume":[320,17,0,0,0]},"1062":{"index":1062,"max":0.5,"min":0,"rarity":2,"name":"Midnight Paintover","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SL-aWHHeR0v1JoOBgQT28gxg1jCmAm4PGLSLANkI-X5YmF-QN4EK8wdXgNenrsgDejYNAmS33jHtB6Ctj5esBBKItqKXQhhaBb-MJGErI3w","souvenir":true,"normal_prices":[15,3,2,2,3],"normal_volume":[856,357,653,36,33]},"1082":{"index":1082,"max":0.52,"min":0.01,"rarity":5,"name":"Fall Hazard","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSNvWBGm6XztFwufdsXCylkBMYvzSCkpu3Ii-QbQ51XJpzQ-8PsUOwmoLvZLm3sQfb3tkTxHj-hytBv35jt7wFBL1lpPNwauo7lw","souvenir":true,"normal_prices":[37435,24749,21186,66180,44694],"normal_volume":[18,8,5,1,2]},"1093":{"index":1093,"max":0.41,"min":0,"rarity":4,"name":"Boost Protocol","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRb7dSJvmFC1iDxPhzvt5sSTygnBIpjDGMnYftby7FalV1D5QhE-EDthW8xtCyPu63tFPciYhBynn_jykfuCttte4CA6E7uvqAn_5lxU8","stattrak":true,"normal_prices":[1137,478,291,354,0],"normal_volume":[587,426,261,40,0],"stattrak_prices":[1471,929,671,999,0],"stattrak_volume":[190,132,94,14,0]},"1128":{"index":1128,"max":1,"min":0,"rarity":3,"name":"Scrawl","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-BlXyGyqhIqtjqEpYPwJiPTcAInA5J0FO9csBSww4bhZruzswLcjIsXmCusjCsbuno_57tXUqB386HJz1aW2pI_m5Q","stattrak":true,"normal_prices":[89,15,5,4,5],"normal_volume":[498,761,706,175,241],"stattrak_prices":[118,23,8,6,8],"stattrak_volume":[236,383,290,386,307]},"1168":{"index":1168,"max":1,"min":0,"rarity":4,"name":"Hybrid","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRbq17JeOWGGKe_uZvsvNgSxa_nBovp3OBmd6oJXyeaQ9yCsZxEOICsUO7kdK0Y-qxtFCN2YsQnCv7i39N7ixp_a9cBsh2vVQD","stattrak":true,"normal_prices":[378,72,40,34,33],"normal_volume":[595,1360,1305,367,332],"stattrak_prices":[522,147,82,78,76],"stattrak_volume":[173,262,442,792,291]},"1262":{"index":1262,"max":0.6,"min":0,"rarity":2,"name":"Sky Blue","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6toH_KfG2KvwOByj-JhXSa-kCIrujqNjsGueHuXb1VxDZRzFuJe5BC4w4XnYbnj5A2NjIMUyyr3iikY6Cc4tecBT-N7rc172J_D","normal_prices":[29,8,2,3,1],"normal_volume":[1408,800,939,52,86]},"1336":{"index":1336,"max":0.636986,"min":0,"rarity":1,"name":"Autumn Thicket","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tiH_KBD2mTyetlj-1gSCGn2xsl5Tvdm9itJy_DaFUoDJYhRuVZsBm9lobiNeiz71HcgoNGyHr4jypXrnE8g0nYtGk","normal_prices":[3,1,1,1,1],"normal_volume":[922,267,989,134,432]},"1380":{"index":1380,"max":0.65,"min":0,"rarity":3,"name":"Fraise Crane","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6toH-CaAGyvwvx3vuR6cCW6khUz_WmHno2ueSmRbFAmC8MjF7EPsBDtwdDkZe_n41fYithDzyWo2CwY6nx1o7FVHGyLYB0","normal_prices":[399,162,29,27,22],"normal_volume":[840,864,667,63,108]},"141":{"index":141,"max":0.8,"min":0.06,"rarity":2,"name":"Orange Peel","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe7RSNPGDC1if0-94t-RWQyC0nQlp6jjTytf7JH6XbQIiD5t2EOZYsBDtl4LjNe7k4QzYidlEzX34hn8Y7zErvbi46hZUEA","souvenir":true,"normal_prices":[751,17,1,2,2],"normal_volume":[64,394,615,37,158]},"1429":{"index":1429,"max":1,"min":0,"rarity":3,"name":"Dark Polymer","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRbq17JeOWGGKe_v55vPhkSjuMkRw1uAKJk4jxNWWVaw9yAsF3R-cItkTqx9HiY-23tFeN3oNFyS_9jn4a5i5o5b0AB6B35OSJ2MsRWanJ","stattrak":true,"normal_prices":[114,25,10,7,6],"normal_volume":[437,409,256,35,56],"stattrak_prices":[202,72,28,20,16],"stattrak_volume":[145,179,163,46,55]},"151":{"index":151,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSKuWdCWuV_uJ_t-l9AXy3wEok5G6Gw9uocnKfbQRzXpJzQ-Ne4BLsm9LnNrzk7wWKiIxNxSngznQeNadjO4s","normal_prices":[5310,786,367,366,314],"normal_volume":[11,34,46,5,36]},"210":{"index":210,"max":0.08,"min":0,"rarity":1,"name":"Anodized Gunmetal","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaapSJ-WdA2KEwOJJsvNoWSaMmRQguynLy9v_J3qTPAYmX8Z5F-YCskG5xtHgNe22sgTYjIIXmSX5jX5L6Ck-t_FCD_SvybkrEQ","normal_prices":[1920,2735,0,0,0],"normal_volume":[132,19,0,0,0]},"223":{"index":223,"max":0.5,"min":0,"rarity":3,"name":"Nightshade","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SJvycGWKC0tF6ueZhW2frl08m5mrXyd-seSmVOgUkX5MhReRcsRHsm9LjZe_htACI3oJEzHj6kGoXucu6NwSL","stattrak":true,"normal_prices":[3415,372,202,300,344],"normal_volume":[55,53,76,24,47],"stattrak_prices":[547,311,233,624,437],"stattrak_volume":[111,48,133,8,19]},"252":{"index":252,"max":0.4,"min":0,"rarity":3,"name":"Silver Quartz","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaalSI-KKHXORzeJ_quRtcDq6mQsioQKJk4jxNWXCP1AmX8Z0EbIP5Be8w4fhNu7r5ATZ3t4Xzn782yJB63o-5bkLA_En5OSJ2KaCxRX6","souvenir":true,"normal_prices":[89,18,14,18,0],"normal_volume":[623,492,499,45,0]},"254":{"index":254,"max":0.8,"min":0.06,"rarity":3,"name":"Nitro","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSL-KSAGCV_u91s-RnWzqMmRQguynLy9ugci3EZlUpDMYjTOID4EPrxNTvZO224QWM3o9NniWs23lP5nw9tfFCD_Qs49oXvw","normal_prices":[5874,3750,3134,4417,3573],"normal_volume":[18,31,9,3,7]},"265":{"index":265,"max":0.3,"min":0,"rarity":3,"name":"Kami","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SK_GeB1icyOl-pK9oGnHnk012sT_XzNv4eXuUawUlDpEkQOIN40XskIHmP-mx4wOLio1B02yg2SJzf1Vk","stattrak":true,"normal_prices":[625,276,228,0,0],"normal_volume":[738,465,109,0,0],"stattrak_prices":[520,431,448,0,0],"stattrak_volume":[484,366,119,0,0]},"274":{"index":274,"max":0.2,"min":0,"rarity":4,"name":"Copper Galaxy","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaalSI_-DHmKC_uh6teJiXBa_nBovp3OAnN_6cXvEOwFzDcFzQ7Vc4BPuwNy0M7jk5gWL39pCnC35jShN6S1p_a9cBt8cUyQh","stattrak":true,"normal_prices":[2830,1297,1371,0,0],"normal_volume":[390,54,15,0,0],"stattrak_prices":[2651,2091,2435,0,0],"stattrak_volume":[108,59,19,0,0]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSMvWXMWuZxuZi_rAwG36xxUp-t2rVwt6vdCmSPAQnDpNxQOBY5BXsxoWzZuvg5Ffdid1bjXKptD9kyfI","normal_prices":[8566,7177,8673,0,0],"normal_volume":[91,46,4,0,0]},"352":{"index":352,"max":1,"min":0,"rarity":5,"name":"Fowl Play","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSdaesCGKR1eZzovJWQyC0nQlptm_Vw9ercnOUaA8lA5skFuIPsxPqmtXkNu205lfYiN8XnCyvj3hNvDErvbiIo1idJQ","stattrak":true,"normal_prices":[9645,1871,1724,1644,1766],"normal_volume":[54,61,185,90,63],"stattrak_prices":[4111,1920,1690,1658,1687],"stattrak_volume":[43,29,55,31,20]},"377":{"index":377,"max":1,"min":0,"rarity":2,"name":"Hot Shot","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSJ-KWF1ie1O16teB7cCahlBMgtgKDk5n8HjjCKFN-Zc4pEr9OrBm4xN3vNrix41aIjtkQyH-s2ipMvSY_sOxRBaFx-vCE3AuXYLE_45kdZKHwQRxY8PU","souvenir":true,"normal_prices":[9471,999,450,349,278],"normal_volume":[117,157,60,62,24]},"387":{"index":387,"max":0.25,"min":0,"rarity":3,"name":"Urban Hazard","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j_R7TSi9qhUmqTyXnrD1KCzPKhhzXpBwFu9YtxK6k4buYenrtgDWj4NGyX3-2yhBun1qt-YBBKsg_aXWkUifZnLiQ4dl","stattrak":true,"normal_prices":[397,274,237,0,0],"normal_volume":[664,243,81,0,0],"stattrak_prices":[555,387,390,0,0],"stattrak_volume":[333,150,63,0,0]},"427":{"index":427,"max":0.9,"min":0.1,"rarity":5,"name":"Monkey Business","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-NoQSi9lCIrujqNjsGheXmXPQcoWMFzEO5ZtUOwkILjY7yzsg3ci91DySiohn4buCht4eYET-N7rZVO80Su","stattrak":true,"normal_prices":[0,5921,1057,1010,1104],"normal_volume":[0,121,1156,150,91],"stattrak_prices":[0,5244,1162,1149,1195],"stattrak_volume":[0,59,212,43,29]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSL_mfC2OvzedxuPUnH3C1kRsi4jiAw4qtdXjCO1V2WcZxF-EO5xLsxtHmMeKw5g3fit4TnDK-0H1W4XC76Q","stattrak":true,"normal_prices":[6926,1457,1096,1144,1375],"normal_volume":[385,708,924,350,214],"stattrak_prices":[7644,3352,2396,2319,2584],"stattrak_volume":[51,82,186,100,75]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSMP2QMWuZxuZi_rRtTXjkxE115DjdmNn7ciieaVAkAsN4ELVc40Htx4fmPrng51DXj95bjXKpZ_EmD5Y","souvenir":true,"normal_prices":[2399,268,266,319,297],"normal_volume":[8,22,49,4,8]},"464":{"index":464,"max":0.8,"min":0,"rarity":4,"name":"Neon Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SK_meAWmf_up_sexmQS2gqhEutDWR1In4di-TagIkXMMiF-Vcthm5kNbvML604Ffdgt4WzCj22ikau35q4OwcEf1ySWJgvKc","normal_prices":[62764,72393,57927,131101,49781],"normal_volume":[39,3,11,1,4]},"510":{"index":510,"max":1,"min":0,"rarity":4,"name":"Retrobution","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j_NsWzu8lwgzujKLpYPwJiPTcAByWJB4TOULsxS5wNfmPuzjtQHciYpHmCuqhypJvSlr4LsGBaEmr_bJz1aWW-JyGhc","stattrak":true,"normal_prices":[1511,274,118,103,102],"normal_volume":[196,302,196,54,67],"stattrak_prices":[1143,577,251,197,206],"stattrak_volume":[92,77,119,44,35]},"530":{"index":530,"max":0.61,"min":0,"rarity":4,"name":"Triumvirate","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-B8SCS2mwkitwKJk4jxNWWXPAZzD5pwTeBetUPtw4C1N7jh5A3bj48RxSyqiiwc7Sg6tr0ABaAk5OSJ2O3yTJMF","stattrak":true,"normal_prices":[1954,256,183,241,192],"normal_volume":[105,96,167,18,38],"stattrak_prices":[1014,528,323,411,327],"stattrak_volume":[78,60,54,19,21]},"585":{"index":585,"max":0.7,"min":0,"rarity":3,"name":"Violent Daimyo","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC1iDxPhzvt5tTiC-jBIYvzSCkpu3cXjCPAB2WZMmQ-EK4BTqlNSzNOLk71GI3tpGmX2oii5N6nk667kDWL1lpPNv4wCTtw","stattrak":true,"normal_prices":[176,63,38,31,28],"normal_volume":[585,428,324,16,93],"stattrak_prices":[312,141,64,136,61],"stattrak_volume":[180,220,306,50,66]},"605":{"index":605,"max":1,"min":0,"rarity":3,"name":"Scumbria","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSJvmFC1iDxPhzvt56TDy-lw8usgKJk4jxNWXBP1JzAppxQ-UN5hm_mtLgZbjn5wPdi49Bnyqr3SJPvChq4-tWB6Ak5OSJ2BFWlPNZ","stattrak":true,"normal_prices":[639,25,22,17,19],"normal_volume":[139,86,38,82,89],"stattrak_prices":[338,43,22,15,16],"stattrak_volume":[75,86,143,59,59]},"646":{"index":646,"max":0.7,"min":0,"rarity":3,"name":"Capillary","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j_dsRieMmRQguynLmY79IinFbA90CZN2Q-Bc4UW6x9KyZLnjtQCMjo8WyXr7jy1O6Ck_sfFCD_SqR6qLvA","stattrak":true,"normal_prices":[189,40,29,29,25],"normal_volume":[292,129,98,36,20],"stattrak_prices":[146,75,33,68,33],"stattrak_volume":[130,83,104,41,73]},"660":{"index":660,"max":1,"min":0,"rarity":6,"name":"Hyper Beast","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-lwXyyhlxgmoCm6lob-KT-JO1QgWZVyELEPu0W4l9KzYbzn5Fbf3YkTzn_8hihIvXxtsOoFUKYirLqX0V_f6-eqCw","stattrak":true,"normal_prices":[49708,35411,26888,27217,26425],"normal_volume":[53,69,109,40,22],"stattrak_prices":[67592,26409,19013,16699,13304],"stattrak_volume":[15,32,17,4,4]},"693":{"index":693,"max":0.65,"min":0,"rarity":3,"name":"Flame Test","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRb7dSJvmFC3SV1-t4j-lmWxahmhkYpTSKlortHifOOV5kFJt1FOVYsBC_lobmNe3q4AOK3dhDnimrhyoa7i9ssO4CU6F0rvWBiwvfcepqcNk1MwM","stattrak":true,"normal_prices":[61,18,12,13,10],"normal_volume":[761,173,379,24,65],"stattrak_prices":[105,40,14,27,17],"stattrak_volume":[282,199,269,35,87]},"729":{"index":729,"max":0.5,"min":0,"rarity":3,"name":"Crimson Blossom","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SIuWXMXWVxdF6ueZhW2ewkE5162rRnNerIy6WagApDptyRuVZshbql9DuMOPj71CI2YoRzyqokGoXufqVyZvA","normal_prices":[9561,8579,8199,9032,13857],"normal_volume":[33,24,13,2,2]},"78":{"index":78,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Night","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SJv-BC3SE_uB_t-l9cCW6khUz_T7Untv9cXmfPAEnCZFwRLUJtEXtxN3iN-mz7gffjtkRnir-2nkauyx1o7FVpfrK-Xo","souvenir":true,"normal_prices":[312,4,1,2,1],"normal_volume":[167,145,398,334,141]},"784":{"index":784,"max":0.5,"min":0,"rarity":1,"name":"Coolant","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SJOWQGnSvxvxzte9WQyC0nQlp5m_cmNqueH7EbQAiXpN0FO5YtBK_x4XgMrjmswON2osQzn77iipJ6zErvbgVYFr6QQ","souvenir":true,"normal_prices":[6,1,1,1,2],"normal_volume":[2154,1536,1948,136,388]},"831":{"index":831,"max":1,"min":0,"rarity":4,"name":"Heat Treated","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSI_GAC1iYwPxyte9sSxa1nAsioDiTn4HGLSLANkI-D5pxEbIDu0btkoXlNuO24wDZ2YhDmH7923tI7ClrsblWAqMj-KPRiBaBb-NawNZy0w","normal_prices":[2863,546,321,325,321],"normal_volume":[742,2065,3244,1459,1099]},"837":{"index":837,"max":0.7,"min":0,"rarity":6,"name":"Angry Mob","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC1iDxPhzvt5oQS6hjCIrujqNjsH_cy2RagUjA8BwR-de5hjskNflNrnqsgaLiYgRyyythitM7Hw-sekKT-N7rXEld5dH","stattrak":true,"normal_prices":[8428,5113,4959,5601,4935],"normal_volume":[193,240,363,26,36],"stattrak_prices":[8177,5162,5019,6124,5863],"stattrak_volume":[46,50,77,5,14]},"906":{"index":906,"max":0.55,"min":0,"rarity":4,"name":"Buddy","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-Z6SHCMmRQguynLw4r9IHiRbFdzA8FzELYL4xntw9e1Mu7q5laMjN5AzXiqinxI6iw_t_FCD_TZbg2oLg","stattrak":true,"normal_prices":[611,121,56,78,76],"normal_volume":[272,158,213,44,20],"stattrak_prices":[535,265,118,166,136],"stattrak_volume":[100,97,63,74,33]},"932":{"index":932,"max":0.5,"min":0,"rarity":2,"name":"Withered Vine","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe7RSLf-BAViExPZiue1scDmmhw0rtgKcn4P1Ljz4Ml93UtZuReJcshe5m9HuYunhsQ3dgowWnCqviSgduC1q5OgGBKN0r6Le2gnHZKp9v8fcyxvZMw","souvenir":true,"normal_prices":[517,94,52,166,278],"normal_volume":[98,39,68,17,61]},"979":{"index":979,"max":0.9,"min":0.02,"rarity":5,"name":"Fairy Tale","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC1iDxPhzvt5tRiihjCIrujqNjsGtdi-UbVUgXJAlRrFfuxi-lNbuPr7ltA3cjtkRzyit2H8c7H1t4O9TT-N7rZbBTJfn","stattrak":true,"normal_prices":[39344,5984,2637,2605,2593],"normal_volume":[106,184,217,21,23],"stattrak_prices":[21717,7162,3609,3801,3732],"stattrak_volume":[28,56,53,16,16]}}},"30":{"name":"Tec-9","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1010":{"index":1010,"max":0.8,"min":0,"rarity":1,"name":"Phoenix Chalk","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0OKmZ6FjKeisGmaX0tF6ue1oTBa_nBovp3PTnNuoIH2TPw9xApB0EOQK5kK-k93gNrjr4QSPj4JEnH__jy0d7io4_a9cBnAYh6IJ","normal_prices":[1849,154,110,589,77],"normal_volume":[214,113,198,15,82]},"1024":{"index":1024,"max":0.65,"min":0,"rarity":3,"name":"Blast From the Past","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0POga61oLuSsGm6cxP1JoORoTCGMmRQguynLm4qpJ3PDaQ9zXpIjQ-AJ4xawlNOzMrjktVPZ349AmS323Xga534-tvFCD_QT7Lx_Ug","souvenir":true,"normal_prices":[3139,1053,726,1662,1528],"normal_volume":[60,28,51,4,10]},"1159":{"index":1159,"max":0.9,"min":0,"rarity":3,"name":"Slag","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjZe7KuRYrFjK-mSHGOvxOBxue9sSju6mxoYvzSCkpu3eHPFZwMkWZBzR-cDsEbpm9DvY-yx51fajd8WyXn4hntBvX465OkBVL1lpPMDDuBGag","stattrak":true,"normal_prices":[75,12,4,5,5],"normal_volume":[583,558,710,139,64],"stattrak_prices":[102,20,9,9,7],"stattrak_volume":[192,464,288,169,62]},"1214":{"index":1214,"max":1,"min":0.06,"rarity":4,"name":"Whiteout","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0OWmYbBoL-WHMXOVwrdJvOhuRz39lB9_smmDn9ugdCrCbFcnCJEmFrVcuhC4w9TgNePhsQWKiN4QzSv7hzQJsHg2FaN_Cg","souvenir":true,"normal_prices":[39832,2766,429,224,180],"normal_volume":[251,993,1620,175,423]},"1235":{"index":1235,"max":1,"min":0,"rarity":3,"name":"Rebel","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SJuKWC2OfzNF6ueZhW2fgkU0k5GmBzIn6eHjBagBxDZMhReYN5hC5ldbgNb7jtFbfgt5Ey3_3kGoXuRiiuNrn","stattrak":true,"normal_prices":[82,13,5,5,4],"normal_volume":[455,361,793,91,63],"stattrak_prices":[98,17,8,6,6],"stattrak_volume":[200,185,426,112,99]},"1252":{"index":1252,"max":1,"min":0,"rarity":3,"name":"Mummy's Rot","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SLeWeA36vzedxuPUnS3_jlEUm5muAzd6qcXiRaw9yWZciRuQItUHpxNXnP--27lGL2d5CyzK-0H1vVdbZoA","souvenir":true,"normal_prices":[2406,293,122,92,101],"normal_volume":[121,120,243,39,131]},"1279":{"index":1279,"max":0.8,"min":0,"rarity":1,"name":"Blue Blast","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0OaraahSLPmUBnPex7cj4Lg9GS-ylB4jsGTSzov_JHvDag8nCcB4FrZes0XtwIblNOLhshue1dxd5qECaQ","normal_prices":[16,1,1,1,1],"normal_volume":[740,612,704,105,263]},"1286":{"index":1286,"max":0.7,"min":0,"rarity":2,"name":"Garter-9","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU6s29ZqVmJeOYB2mvzedxuPUnTHDlkU5y5j-BnI6gJX_Cag8nXpp5QORb4RCxmobuNLjgswDY2dlAxDK-0H3cj7008Q","normal_prices":[31,11,2,2,3],"normal_volume":[82,68,440,41,128]},"1299":{"index":1299,"max":0.75,"min":0,"rarity":1,"name":"Raw Ceramic","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0PGreqVgKfOsAm6Xyfo45uI5Siy1wU4l62rWyN-ocS_FbAFzDZtzFOdZtBe-kNy1Zu627gSI2ZUFk3tFqaykOQ","normal_prices":[6,1,1,1,1],"normal_volume":[462,204,471,34,56]},"1322":{"index":1322,"max":0.6,"min":0,"rarity":2,"name":"Citric Acid","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU4M2-aa1jNM-AHmuR1f1JqeRlQyakqhEutDWR1NagcXnGOA8iXptyQO9Y5Bjpw4DlNrvntQOIiY4UyHmvh3hK7iw56rwcEf1yY9HMcYg","normal_prices":[19,5,1,2,1],"normal_volume":[1523,93,562,41,50]},"1384":{"index":1384,"max":0.6,"min":0,"rarity":2,"name":"Banana Leaf","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC6s2sabBkK8-WF2KD_vpzs7hWQyC0nQlpsWnRz9atIH3Gag4oCpQjFucP4Rfux9PuNr7j7wDZ3tgTny3_h3xPvzErvbgFFfz3Tg","normal_prices":[24,9,2,3,1],"normal_volume":[1130,573,333,48,52]},"159":{"index":159,"max":1,"min":0,"rarity":3,"name":"Brass","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNK0PC8abd-H_yaCW-Ej-91tuQ7Sy3gzB9x4m_Vy9b8dy-SaFcjDZchQ-IL5EHqxtzhP7y34ADAy9USp8n4eRk","souvenir":true,"normal_prices":[11742,2958,1131,589,520],"normal_volume":[10,65,22,8,10]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":1,"name":"Urban DDPAT","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PaqeKV5H-WBDFicyOl-pK89HC3iwkwh522Dm9qqIijEbQN1XJt1TOZb5kbtkIbkZr7l4QTeiYIQ02yg2SkrOr2J","normal_prices":[282,7,1,2,2],"normal_volume":[154,144,380,583,1099]},"179":{"index":179,"max":0.8,"min":0.06,"rarity":4,"name":"Nuclear Threat","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFL0Py7Y6F-NOKaHmKvxvxzte9WWyywzCIrujqNjsGtIyjEbQR1A8Z1QLVZtha_k9HvNbu04wTei4sWxCX93SJP7nw_4rtWT-N7rTdwfM9W","souvenir":true,"normal_prices":[103292,13547,5140,5414,4342],"normal_volume":[5,45,60,11,16]},"2":{"index":2,"max":0.8,"min":0.06,"rarity":1,"name":"Groundwater","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0P2iYbJoH_yaCW-Ej7om4eQ6H3zrxEwk4T-HmN78dirCb1MmA8Z3Re8D5hS5x9KzYrvkslPAy9USDDHRuWI","souvenir":true,"normal_prices":[242,6,1,1,1],"normal_volume":[305,1643,2371,209,379]},"206":{"index":206,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0OaheqpsJP-sDHWR1-FJvOhuRz39w0Qh4WiHmd-uc36eZlcmX5p0E-IKuxLqkt3kYe_jsgDYg4NCziX82jQJsHiZ2a0fyg","normal_prices":[12500,946,416,391,449],"normal_volume":[9,16,30,10,14]},"216":{"index":216,"max":0.04,"min":0,"rarity":3,"name":"Blue Titanium","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNV0OanfKVjKeWeXTeG_uJ_t-l9AXnikBh-6mvTztz4eHvCOgIiCpFzQOAJ5xPulNK2Nr7q7gHcg9lEm3ngznQe7B1sAb0","stattrak":true,"normal_prices":[2985,0,0,0,0],"normal_volume":[124,0,0,0,0],"stattrak_prices":[854,0,0,0,0],"stattrak_volume":[173,0,0,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":2,"name":"VariCamo","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0OSveq1uIf2cMWuZxuZi_rBrTXm1w0kksGjRw9yseS3Db1JzW8NyTLICtRiwxNbjMri25AzWg99bjXKp9aEM-ik","souvenir":true,"normal_prices":[33,4,1,3,3],"normal_volume":[630,215,354,62,67]},"242":{"index":242,"max":0.6,"min":0,"rarity":1,"name":"Army Mesh","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFL0P-re6xSIeKeF1icyOl-pK8xGnCxkR5_tWTQztepcHiWOwAlCpJ3Q7ML5BO-lNyxMuvl5wXYiY0Q02yg2eIzVY8M","souvenir":true,"normal_prices":[9,1,1,1,1],"normal_volume":[945,1225,1050,156,107]},"248":{"index":248,"max":0.4,"min":0,"rarity":4,"name":"Red Quartz","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0PG8cbd5IfyfB32VxdF6ueZhW2e3xU13tzmAmdqsIC6TPw8hCcF3ReADuxPtl9ThNu3qtVPbjdlFny2okGoXub5yNIFB","souvenir":true,"normal_prices":[65,31,29,44,0],"normal_volume":[1015,465,982,7,0]},"272":{"index":272,"max":0.2,"min":0,"rarity":4,"name":"Titanium Bit","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0PSifbBoJM-HC2TJ_uJ_t-l9ASi3w0gm62qHzdz6Jy2WbAZxW8dyTOEIukawldfhY7zqtgKN2d9MyHngznQe9VU90c8","stattrak":true,"normal_prices":[2916,890,903,0,0],"normal_volume":[121,36,9,0,0],"stattrak_prices":[1820,1523,1565,0,0],"stattrak_volume":[55,20,7,0,0]},"289":{"index":289,"max":0.7,"min":0.1,"rarity":3,"name":"Sandstorm","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SM_GdCnSEzvx7j-1gSCGn2xsi52XSyIqueCifOAMnD8YkQ-YMtUPpwIK2N-jq4QSK2ohCm36q239XrnE8IX2h_4o","stattrak":true,"normal_prices":[0,398,67,62,56],"normal_volume":[0,189,610,45,126],"stattrak_prices":[0,526,80,118,44],"stattrak_volume":[0,108,481,65,83]},"303":{"index":303,"max":1,"min":0,"rarity":3,"name":"Isaac","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SIeOaB2qf19F6ueZhW2frlEpz6zyAy477dXrEagFxDcclRO4C5EK8wIa1Nem3s1TdiotNzCn5kGoXuYgN6W8t","stattrak":true,"normal_prices":[2027,439,326,227,226],"normal_volume":[240,275,239,83,55],"stattrak_prices":[3430,662,420,266,201],"stattrak_volume":[117,213,238,80,54]},"36":{"index":36,"max":0.08,"min":0,"rarity":3,"name":"Ossified","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0P29e61rOc-fB2CY1aAvsrQ6TCzqzEwisT7QnIqudCjGZgV0CpJ0ROFct0PrlNO2MOzg4gSKlcsbmgSNht1O","normal_prices":[2787,2852,0,0,0],"normal_volume":[227,9,0,0,0]},"374":{"index":374,"max":0.7,"min":0,"rarity":3,"name":"Toxic","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0Py7a6hoIeKsHWyFzeJl5d59SirqqhEutDWR1N2pc3PFbgYgDMF5TbVZ5hfsk93hP7u2tQzf2t0RxSuviiJN5ydo5bwcEf1yPyH7PX0","souvenir":true,"normal_prices":[4303,2238,1572,2239,1710],"normal_volume":[163,119,138,10,13]},"439":{"index":439,"max":1,"min":0,"rarity":2,"name":"Hades","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PqvbKF-H_yaCW-Ej7chtLM9F322lkhxsm7Xyon_Ii-ePAYiD5ElEOUK4ETqx9DmZb_qsgDAy9USH97bt-4","normal_prices":[3440,1957,1727,1694,1932],"normal_volume":[23,27,49,13,40]},"459":{"index":459,"max":0.6,"min":0,"rarity":1,"name":"Bamboo Forest","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PCvZaZiL8-ZG2mXzetJvOhuRz39kx90sjiBn9apcnPBOwRyDJcjTeUKtxbpwNzkZLm04geLjIsXzSivjTQJsHikA0D9yg","normal_prices":[3198,1179,982,1074,845],"normal_volume":[700,285,76,18,28]},"463":{"index":463,"max":1,"min":0,"rarity":3,"name":"Terrace","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PWrZ6loNOKaDViD1etmo95wSiW_mgoYvzSCkpu3eHySPQUmCsF5EeYMu0PuwNe1Nby25AHejY5Myn_5jnxL6S864OoLAL1lpPNSa1bCHA","normal_prices":[17433,12262,11562,13556,10258],"normal_volume":[37,24,10,6,11]},"520":{"index":520,"max":1,"min":0,"rarity":4,"name":"Avalanche","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SIeaSAmaewuZzj-1gSCGn20Qi4m_cwtv8dy7Fbg8kXptyRuMJtEG4kdDuN-jq71ffj90QxCT22HxXrnE83F92lc4","stattrak":true,"normal_prices":[1820,430,219,146,125],"normal_volume":[251,327,264,77,69],"stattrak_prices":[2033,909,458,337,324],"stattrak_volume":[94,87,124,18,38]},"539":{"index":539,"max":1,"min":0,"rarity":3,"name":"Jambiya","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SKvGeDG6JwNF6ueZhW2ewwhhw5WnXy4v_dnqXOwMnAsQmF-IMtxDql9LmP-mw51feiIhDnn78kGoXuTq6iJ_X","stattrak":true,"normal_prices":[1480,148,63,38,26],"normal_volume":[79,105,81,116,33],"stattrak_prices":[540,166,99,50,52],"stattrak_volume":[73,38,126,88,97]},"555":{"index":555,"max":0.43,"min":0,"rarity":4,"name":"Re-Entry","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0Oara_1SMvWXDGuR0vpJvOhuRz39lkp-4j_QnoytcS-RPwEgDZt1FuAJshG6ktW1NLy34gCPj44WmH7-jzQJsHhOKqOsYw","stattrak":true,"normal_prices":[845,145,106,112,0],"normal_volume":[411,181,135,47,0],"stattrak_prices":[577,247,171,196,0],"stattrak_volume":[115,89,133,23,0]},"599":{"index":599,"max":0.5,"min":0,"rarity":3,"name":"Ice Cap","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0Oara5s0H-OWD1iDwOJij-1gSCGn2xtz5TjdyNquJX-XaVV0CMd3EOUP5Bjsw93uP77jsVHejohEyH6t339XrnE8zMglqPs","stattrak":true,"normal_prices":[117,59,32,28,29],"normal_volume":[1066,456,355,20,44],"stattrak_prices":[234,130,43,47,50],"stattrak_volume":[241,137,225,39,31]},"614":{"index":614,"max":1,"min":0,"rarity":5,"name":"Fuel Injector","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SM-WDC3WTye9kt-RtcCW6khUz_Wvcy9qgdCnEPQ8hApBzRrQJ4RW7moDgMLzktFDZiI5HnyWr3ChN5yp1o7FVg4hNKG8","stattrak":true,"normal_prices":[4782,1184,988,946,882],"normal_volume":[248,501,1018,216,138],"stattrak_prices":[6336,2348,1163,1020,1017],"stattrak_volume":[88,134,203,64,51]},"671":{"index":671,"max":1,"min":0,"rarity":3,"name":"Cut Out","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNK0Oara_1SI_iSAmyv0e9ipOR7QRa_nBovp3OGnNb4dHiTaFdzX5EjRLVY5EG6mtOzYu7q4FDb2IxBynmvi34bvCo__a9cBktm4Qsf","stattrak":true,"normal_prices":[2270,848,484,431,386],"normal_volume":[44,50,22,19,18],"stattrak_prices":[3321,1003,655,560,510],"stattrak_volume":[20,17,9,13,4]},"684":{"index":684,"max":1,"min":0,"rarity":3,"name":"Cracked Opal","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SI-KSDWyVxdF5oOBlcCW6khUz_WvSwo2geHiUbFAkD8EkTOFetxi4w9ThZLnm5lfdj4JDznmqjixA6Sd1o7FVGUODCFM","stattrak":true,"normal_prices":[560,29,20,14,15],"normal_volume":[227,139,149,135,79],"stattrak_prices":[306,59,27,18,16],"stattrak_volume":[79,157,209,145,58]},"722":{"index":722,"max":1,"min":0,"rarity":3,"name":"Snek-9","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SM_6SBWKvzedxuPUnHH23wEpz6j7Rydqqdy6SPwcoDpV0RrEN4Ra_x921ZOPitVDdiIpDmDK-0H1esiynQw","stattrak":true,"normal_prices":[568,65,32,23,20],"normal_volume":[112,148,76,70,42],"stattrak_prices":[460,117,38,34,30],"stattrak_volume":[64,49,46,70,87]},"733":{"index":733,"max":0.5,"min":0,"rarity":2,"name":"Rust Leaf","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFL0P6raaJSL-KSAGCV_uJ_t-l9AXnhxUxz5mXSmd2sJ3yfagAjDJp4EeReuxHqwNfnY-O0tQSPjINNz3rgznQeAmDb9hs","normal_prices":[2565,1344,1285,1657,1161],"normal_volume":[46,74,178,16,2]},"738":{"index":738,"max":1,"min":0,"rarity":2,"name":"Orange Murano","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0P-7eqVjL8-cHGaexutJvOhuRz39xUpx5GiEzIqrJy6Qaw9yW5MjFuUDuxe4kILgNe-wsQaIioxNmX2s3zQJsHgf4ROQiw","normal_prices":[2064,605,481,489,500],"normal_volume":[62,13,32,47,27]},"766":{"index":766,"max":0.6,"min":0,"rarity":2,"name":"Tiger Stencil","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU7PqRfK1qJeKsHXOVz-1_vN59SirqqhEutDWR1Nr9cHKVPwRzCJsmROMC5haxldLnMLjk51fdgthNxST4iiJJuis55uccEf1yksXdoWw","normal_prices":[24,5,3,4,3],"normal_volume":[1195,393,508,39,93]},"791":{"index":791,"max":1,"min":0,"rarity":5,"name":"Remote Control","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJf6FAX6vzedxuPUnGSvrlhxw62zXn92sJynGOFcnA5J5EeIPsRm5l93mM-6w7gzW2olEzzK-0H1xr8Niww","souvenir":true,"normal_prices":[4453,542,253,185,218],"normal_volume":[147,300,252,59,115]},"795":{"index":795,"max":0.6,"min":0,"rarity":3,"name":"Safety Net","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0P-re6xSM_GVC3OJzvx3vuZscCW6khUz_WnSyIytcXPBPw8oDpMkQeIPuxjtxoWyYuOztVTX3okXyy3_2y9N6Xp1o7FVepitb8I","normal_prices":[1929,299,183,220,183],"normal_volume":[281,41,111,29,26]},"816":{"index":816,"max":1,"min":0.14,"rarity":3,"name":"Fubar","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJuWRD3WvzedxuPUnGiq1xBh_4D6Bytmrcn_CaFUlX8NyR-5ZtBG7kdzgZe-z5gTb3o9NyDK-0H2rKvLQog","stattrak":true,"normal_prices":[0,777,23,16,14],"normal_volume":[0,143,459,138,511],"stattrak_prices":[0,318,23,17,14],"stattrak_volume":[0,10,134,75,247]},"839":{"index":839,"max":0.8,"min":0,"rarity":4,"name":"Bamboozle","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SIvGeDGif_uJ_t-l9ASi2xxhzsT6Emdr6JCqTPQJyXpR4RLMI5hm_wNHjZe3r5Qzci41Dy3jgznQeOWU5G3g","stattrak":true,"normal_prices":[977,147,66,86,63],"normal_volume":[269,245,324,45,60],"stattrak_prices":[670,272,121,173,105],"stattrak_volume":[105,125,249,19,28]},"889":{"index":889,"max":0.75,"min":0,"rarity":5,"name":"Decimator","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJPWQB2qR1eFkj-1gSCGn20h16j-Ew9j6Jy6QbQB1XJJzQLVYshXqm92xY-7g4wze3dpAySz2iXlXrnE8_HmWmcE","stattrak":true,"normal_prices":[14589,3143,1802,1892,1771],"normal_volume":[101,153,300,22,23],"stattrak_prices":[19544,8538,3432,4308,3863],"stattrak_volume":[29,44,85,4,30]},"905":{"index":905,"max":0.7,"min":0,"rarity":3,"name":"Flash Out","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SJvySHW-vzedxuPUnFn21zRt_6znQmY6gdyiXbQckWMBzRLIPtBnrl9LvYeqx5FPd2ItMmzK-0H2aE-DSCQ","stattrak":true,"normal_prices":[403,33,36,36,22],"normal_volume":[192,172,88,1,52],"stattrak_prices":[160,69,25,51,23],"stattrak_volume":[81,258,187,11,33]},"964":{"index":964,"max":1,"min":0,"rarity":4,"name":"Brother","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJ-WWHG6cze9JvOhuRz39xBsj4GmEyt-vIHjEbgJ2CsR2RONfu0K_lYXvZrjg4ADYg4wXzin42DQJsHgTPX1sbQ","stattrak":true,"normal_prices":[555,70,37,32,30],"normal_volume":[525,544,1155,192,159],"stattrak_prices":[499,125,56,52,53],"stattrak_volume":[116,133,187,89,172]}}},"31":{"name":"Zeus x27","sticker_amount":5,"type":"Weapons","paints":{"1172":{"index":1172,"max":0.67,"min":0,"rarity":5,"name":"Olympus","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1B6ue9V7BlNf6XC3WvxuFyj-1gSCGn2xl2sm7XnI6hdC-XPAcmXsF2RLIP4xbslty2NLvqswePjYlEySn33S9XrnE8cYTqlUY","stattrak":true,"normal_prices":[841,434,309,307,289],"normal_volume":[1038,1184,2753,106,117],"stattrak_prices":[1879,853,547,595,509],"stattrak_volume":[253,363,752,57,129]},"1183":{"index":1183,"max":0.7,"min":0,"rarity":4,"name":"Tosai","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1B6ue9V7BiM_GaMWuZxuZi_uM6GXC3xUh05D7WmY36IHuUZ1AjXpVwR-FZu0OxltHlN-_gsQ3Z34NbjXKpEIQyv90","stattrak":true,"normal_prices":[144,62,36,39,42],"normal_volume":[1430,965,1801,61,220],"stattrak_prices":[365,139,67,89,64],"stattrak_volume":[323,513,1268,120,247]},"1205":{"index":1205,"max":1,"min":0,"rarity":4,"name":"Charged Up","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1B6ue9V7d5If6XD3WU_udlo_RscCW6khUz_WXcntv8InLFbwckWJV4ReJZuxG5lNzlMb7r51bfj99EzHmsjSxA6Hl1o7FVTY6aVfU","souvenir":true,"normal_prices":[2645,804,261,204,166],"normal_volume":[376,650,920,150,177]},"1268":{"index":1268,"max":0.75,"min":0,"rarity":2,"name":"Electric Blue","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1I4PeRbahoI-SBB2Svw-Jjtd5lRi67gVMk4WjUydf4ICiTb1N2CMRwRrQIt0KwxNXmPuyx4g3Y3o5Em36vjCIa8G81tM1Sd6W5","normal_prices":[43,8,2,2,2],"normal_volume":[956,975,1228,47,173]},"1297":{"index":1297,"max":0.6,"min":0,"rarity":1,"name":"Swamp DDPAT","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1T9s2qYaNkI_GeMWGf0-tlpN5lRi67gVNzsDuHyNyueHmQZgUoC5AkQuEKtkHum4fjN-jjtlfXio8UzHis2igb8G81tBqfncax","normal_prices":[4,1,1,1,1],"normal_volume":[1397,202,728,63,81]},"1382":{"index":1382,"max":0.66,"min":0,"rarity":3,"name":"Earth Mandala","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1T9veRbaV_NPisA2aexe96sd5lTBa_nBovp3PWyYr_I3OXbQJxXJIkF7FY4BS_l4e0Ybnl4Vba2INGyy2tiXhAvHw9_a9cBgJStbOC","normal_prices":[121,57,26,29,20],"normal_volume":[645,401,611,27,81]},"292":{"index":292,"max":0.8,"min":0,"rarity":5,"name":"Dragon Snore","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1Y-s2hfqF_MPGAHViU0-9xv-9WVSymhiIrujqNjsH6dH7FOA8pXJZ0Q-MPshe-lte0Pu6z7lbXio5GmSv83yNJ73k54rlWT-N7rWv6YDXa","souvenir":true,"normal_prices":[6209,2997,1575,1585,1433],"normal_volume":[409,387,683,48,81]}}},"32":{"name":"P2000","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1019":{"index":1019,"max":0.5,"min":0,"rarity":2,"name":"Panther Camo","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6ZhIfOYMXeRz_p-tfNWQyC0nQlp522Hm9ivdHjEOg4jC5t3TeAJ5xCwlYHlMuzmsQGIj99BzST9h39K6zErvbhYhH-Bzg","souvenir":true,"normal_prices":[700,253,199,322,706],"normal_volume":[74,57,15,23,12]},"104":{"index":104,"max":0.8,"min":0.06,"rarity":2,"name":"Grassland Leaves","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OG-V6hoIeaWHViX0-9lo-1oQS2MmRQguynLzI77dSqVbwF0D8MkTOYJ5xfpl9zhM-62tleI3o0TxHmviisdvCxttvFCD_RWG0AtOw","normal_prices":[9761,2567,715,1743,697],"normal_volume":[10,22,20,6,5]},"1055":{"index":1055,"max":0.6,"min":0,"rarity":4,"name":"Space Race","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POvV7d9IfOWHGaTxNF5ouBnSCyMmRQguynLzNirI32Ua1dzDpVzQLMKtUGww4LhMejh4FTY34wWyyv-3ylO7S5i4vFCD_Qear_SSQ","normal_prices":[4695,1105,775,1098,1187],"normal_volume":[97,64,91,35,22]},"1138":{"index":1138,"max":1,"min":0,"rarity":3,"name":"Lifted Spirits","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_K8-VAn6Zz-lJtPNsTiSMmRQguynLydatcHrEOgIhXJZxReINtRO7ltexZuiwtQPd34lFxXqqjisYun444fFCD_R1ajI6RQ","stattrak":true,"normal_prices":[90,14,5,4,4],"normal_volume":[554,512,473,157,143],"stattrak_prices":[75,15,7,7,7],"stattrak_volume":[165,212,234,283,148]},"1181":{"index":1181,"max":0.9,"min":0,"rarity":3,"name":"Sure Grip","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OL8Y5trMvGQGmac_uJ_t-l9AS2wwxx06mTUw9b7JH2RZlQoDZYkRLQD5hW4lNPiYePktgzWj45CmSzgznQeV1pFuQ0","stattrak":true,"normal_prices":[98,14,5,5,6],"normal_volume":[609,634,313,72,452],"stattrak_prices":[89,19,7,7,7],"stattrak_volume":[227,358,213,58,179]},"1224":{"index":1224,"max":1,"min":0,"rarity":5,"name":"Wicked Sick","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMWOVwuJ_vuRWQyC0nQlp4jnTyNqodHyXOlQkDZtzF-UN4BjukYeyZuLn5Qbaj4NEzy3_3ywd5zErvbh-3lU8Iw","stattrak":true,"normal_prices":[1867,476,301,273,267],"normal_volume":[317,704,1452,458,338],"stattrak_prices":[2165,675,302,276,276],"stattrak_volume":[128,111,215,119,93]},"1259":{"index":1259,"max":0.6,"min":0,"rarity":3,"name":"Royal Baroque","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OG-bZt-I_GBCFiA0-d4pN5lRi67gVMk4GzVzNz9I32RawMoD5shR-ZeuhGxwIeyNuPntgWIjt5Ani33jC0Y8G81tMIEN1xi","normal_prices":[121,56,19,17,16],"normal_volume":[1423,945,960,91,134]},"1292":{"index":1292,"max":0.6,"min":0,"rarity":2,"name":"Marsh","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OGhbZt5JfGfMWCcyPpitfNWQyC0nQlpsWvXy9-rdSiePQEkWZt0QuEI5kXsldXjMe3k5Qfag91CzyX-hyNL6zErvbj1scXf1A","normal_prices":[18,5,2,2,1],"normal_volume":[761,51,575,84,149]},"1342":{"index":1342,"max":1,"min":0,"rarity":3,"name":"Red Wing","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OL8OPQ9H_SWC3ev0-tyj-1gSCGn20RysWvczNqpeS3GOlQoXsYhTLJbuhfulIHjPurktVHfjY8Wmyuo2H5XrnE8nnCGDRE","stattrak":true,"normal_prices":[87,19,10,8,6],"normal_volume":[664,534,366,111,159],"stattrak_prices":[144,43,22,20,14],"stattrak_volume":[134,257,42,78,98]},"1359":{"index":1359,"max":0.75,"min":0,"rarity":3,"name":"Grip Tape","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OGhbZt9cqDDXliX0-dmo95lRi67gVMlsj7SmNiuIHmfaA4gDZEhQeBZuxa7m4CxYu-w7geL2osRxS6qiSIc8G81tBwotro2","normal_prices":[123,45,19,19,15],"normal_volume":[565,575,449,36,49]},"184":{"index":184,"max":0.3,"min":0.06,"rarity":5,"name":"Corticera","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V6JsNvWfD1iAk74m4N5lRi67gVNzt2TTyo6gdH6XPwEiCcZ2RucC5BG9kdTvZe-24QSIidhHyimoiC0b8G81tLsWWhFO","stattrak":true,"normal_prices":[10272,3558,1973,0,0],"normal_volume":[42,70,24,0,0],"stattrak_prices":[10747,3991,3459,0,0],"stattrak_volume":[17,43,31,0,0]},"21":{"index":21,"max":0.8,"min":0.06,"rarity":2,"name":"Granite Marbleized","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq3V6N_If6aGmKvzedxuPUnHyvhkUh2tmuBztupdi2fPwclDMN1F-JctUTuwYDgYu3rslPdj9lHnjK-0H1HqokLtA","souvenir":true,"normal_prices":[1070,19,9,12,10],"normal_volume":[65,203,362,128,43]},"211":{"index":211,"max":0.12,"min":0,"rarity":5,"name":"Ocean Foam","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6t-M_mVF1iSzftzj_E7H3njqh81siuKpYPwJiPTcA91W5N0EOMNskGwkt3gP-vh41GNiNpDn3r83ShL6itj4bsKA6Im-_XJz1aWVAZrXOc","stattrak":true,"normal_prices":[13357,16860,0,0,0],"normal_volume":[105,11,0,0,0],"stattrak_prices":[26551,25896,0,0,0],"stattrak_volume":[65,4,0,0,0]},"246":{"index":246,"max":0.4,"min":0,"rarity":4,"name":"Amber Fade","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POvV6JsJPWsA2KEwOJ6ueJWQyC0nQlpsjvcmd_7dHyVZgdxAsB1QeRZ5BPqlYbmNuvr5lTW2o1Myyyt3ykY7DErvbib25P3aA","souvenir":true,"normal_prices":[284,87,57,86,0],"normal_volume":[1175,860,281,71,0]},"275":{"index":275,"max":0.7,"min":0,"rarity":3,"name":"Red FragCam","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq3V7RiLOmsDWadztF6ueZhW2flkRsm52nQyNquJ3nBaw4lXMFzQLNf50bpl9GxMePm7wyM3YoWmC_2kGoXucluK1Fs","stattrak":true,"normal_prices":[2455,538,293,276,182],"normal_volume":[80,106,85,13,15],"stattrak_prices":[726,338,212,329,220],"stattrak_volume":[36,60,149,31,30]},"32":{"index":32,"max":0.08,"min":0,"rarity":3,"name":"Silver","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POgV7dkLOaWHFicyOl-pK8_Tn_nx00i6jjXnt-vJyqSaQdzDsYlFrED40W-x9bgYb6z41PY3Y9A02yg2X8l3LyC","normal_prices":[27471,11800,0,0,0],"normal_volume":[171,2,0,0,0]},"327":{"index":327,"max":0.22,"min":0,"rarity":3,"name":"Chainmail","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6dlIfmdA2aZzdF6ueZhW2fqxU4k6znTn434JHnEPA9yWcR2TLIJ4UK4w9e2Nbjr4QbX2owXnyr7kGoXuSuECNR4","souvenir":true,"normal_prices":[7642,7480,8104,0,0],"normal_volume":[43,24,6,0,0]},"338":{"index":338,"max":0.6,"min":0,"rarity":3,"name":"Pulse","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMXeFzf1zj-1gSCGn201wsTnRm9egcS7DaABxDZckQe5Ys0S6xtKxZO-wsQDbi9lMxSv-jS5XrnE8fJdFk9o","stattrak":true,"normal_prices":[623,144,97,135,112],"normal_volume":[185,123,253,47,28],"stattrak_prices":[435,222,110,177,113],"stattrak_volume":[186,249,327,25,25]},"346":{"index":346,"max":1,"min":0,"rarity":2,"name":"Coach Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V6h4J_eSCWKv0bwm4LFWQyC0nQlptTmEyNf9d3mQPQ91D5sjQrYJsxO_xNGxMLzi5QOMio4TxX79iy1JvzErvbjJFhomkA","normal_prices":[3243,1293,800,712,774],"normal_volume":[27,32,8,12,12]},"357":{"index":357,"max":1,"min":0,"rarity":3,"name":"Ivory","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMW6Gzvxvj-1gSCGn20gism3dz96pc3KVOgYoCpR4TOFZsxbsxNzlYejl7lPWiIJBmX6t235XrnE8r5B4jsA","stattrak":true,"normal_prices":[745,33,27,24,23],"normal_volume":[192,86,93,70,87],"stattrak_prices":[350,55,25,25,29],"stattrak_volume":[105,144,126,134,87]},"389":{"index":389,"max":0.6,"min":0,"rarity":6,"name":"Fire Elemental","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMWGZ0-tJte1sQiy9gRwrjDGMnYftb3-RZldxWJVyF-QLsUG5mofnML_qtg3cjd4TyCr4jXsf63lr4-5TVvA7uvqA-y0nTh8","stattrak":true,"normal_prices":[11408,7261,6875,7595,7647],"normal_volume":[130,156,113,7,18],"stattrak_prices":[21474,12164,8779,13120,10193],"stattrak_volume":[28,29,27,3,4]},"443":{"index":443,"max":0.35,"min":0,"rarity":2,"name":"Pathfinder","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OG-V6hsIumBB2mEybxJvOhuRz39lh4ksD7cz96gcX2UaAByA5olQeYLtxbsmtKyY-qxsw3Yg4MWnCz-jTQJsHiIL0xUTQ","normal_prices":[3637,1862,1820,0,0],"normal_volume":[31,26,14,0,0]},"485":{"index":485,"max":1,"min":0,"rarity":4,"name":"Handgun","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PO_V7Q_cKDDMWWfzuNJvOhuRz39xE53sWncnN2vcnKeaQAlA5cjRuUL4RTqxN3nP-ix4QCLjIIQyHn2iTQJsHgxqMM--w","stattrak":true,"normal_prices":[1985,186,96,84,87],"normal_volume":[130,212,182,70,82],"stattrak_prices":[1678,399,184,191,164],"stattrak_volume":[52,151,157,67,15]},"515":{"index":515,"max":0.2,"min":0,"rarity":3,"name":"Imperial","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV7Q_cKDDMW6d0etkueBlcDu2kSIrujqNjsGrJH6XPQ9xAsZ5FLIDtBG5mtfhY7nl4gGNiosTzH792ntOvC1stbsDT-N7ra_mVv2F","stattrak":true,"normal_prices":[122,36,35,0,0],"normal_volume":[836,119,133,0,0],"stattrak_prices":[145,88,98,0,0],"stattrak_volume":[285,144,57,0,0]},"550":{"index":550,"max":0.6,"min":0,"rarity":3,"name":"Oceanic","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq3V7Q_cKDDMWiTxO94ud5lRi67gVNysmuGzt_9JSiQaQJ0C8MkTLJbskHrk4fnZe3isgfZg4tMnySoiX8Y8G81tHDFigbI","stattrak":true,"normal_prices":[186,29,32,31,30],"normal_volume":[367,226,184,47,66],"stattrak_prices":[120,44,21,37,29],"stattrak_volume":[148,91,58,6,49]},"591":{"index":591,"max":0.63,"min":0,"rarity":5,"name":"Imperial Dragon","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PW9V7Q_cKDDMW6d0etkueBlcC2hlBoovQKJk4jxNWXEbAQmDsQmRbNYsxGwxoC1YrvrsQXXg40QxCX533tJ7Xs-4eYKWKAl5OSJ2JuLIVNl","stattrak":true,"normal_prices":[4886,1046,996,1022,941],"normal_volume":[151,210,316,51,109],"stattrak_prices":[3386,1367,931,1289,1071],"stattrak_volume":[89,110,98,11,43]},"635":{"index":635,"max":1,"min":0,"rarity":3,"name":"Turf","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PW9V7Q_cKDDQ3SAzvxij-1gSCGn20h14mSByd6vJXmUagQoXpMkQecN40Xsm4DhM-3k4lTY340UxCn53HhXrnE88VIlnLo","stattrak":true,"normal_prices":[1407,179,56,36,35],"normal_volume":[192,68,111,94,74],"stattrak_prices":[567,103,44,34,39],"stattrak_volume":[75,99,113,53,49]},"667":{"index":667,"max":0.8,"min":0,"rarity":4,"name":"Woodsman","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMW-Fz_pzot5lRi67gVMi5GuBzo6sJXiSOAJxCMR2RuECthTskNG1Yrm3sgCM345CyCj32yJP8G81tLtUlzXH","stattrak":true,"normal_prices":[5467,3380,2168,2429,2426],"normal_volume":[31,40,29,3,17],"stattrak_prices":[3648,2612,1842,2110,1841],"stattrak_volume":[12,7,12,1,7]},"700":{"index":700,"max":1,"min":0,"rarity":3,"name":"Urban Hazard","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMXKCw-94j-loVSihkSIrujqNjsGsJXnFPw4gCcZ1TOIPt0LukoG2ZuqxtAXaj4sTzy6q3SpN7C9u6-YCT-N7rcTI-daA","stattrak":true,"normal_prices":[254,15,12,10,7],"normal_volume":[120,173,274,78,116],"stattrak_prices":[103,17,11,10,8],"stattrak_volume":[79,108,115,47,19]},"71":{"index":71,"max":0.08,"min":0,"rarity":4,"name":"Scorpion","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV7duL-KDB2ie_v4k4LE5cCW6khUz_T-GmNyuc3uTbgZ1CcNzR-8DtkS6wYLvMLzj7wHaid5DnHmthiJK5n51o7FVTAH3Dhg","normal_prices":[10664,6500,0,0,0],"normal_volume":[225,6,0,0,0]},"878":{"index":878,"max":0.52,"min":0,"rarity":2,"name":"Coral Halftone","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq6V6JsI_WHMXfCkb4mj-1gSCGn2xsj5mrWm4v_c37EaAV1CMR2Ru8P4RO7m4fjY7_rsgDZjYMQzHiriyNXrnE8hd3eC64","normal_prices":[63,23,17,22,20],"normal_volume":[385,154,211,41,54]},"894":{"index":894,"max":1,"min":0,"rarity":4,"name":"Obsidian","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMWiS0udyueBncCW6khUz_W7QzNf4eHKUPA9xDMAkFrMJ40brldGxM-rk4lfago1MzXmrjCwYvC91o7FVDbVY3kE","stattrak":true,"normal_prices":[4215,561,176,204,184],"normal_volume":[71,127,89,71,20],"stattrak_prices":[3052,1117,411,389,409],"stattrak_volume":[30,41,44,7,27]},"95":{"index":95,"max":0.8,"min":0.06,"rarity":2,"name":"Grassland","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OGhV6N_IeOAAmaexdF6ueZhW2fkzEght2zVnIz_cXrCPQEmA5IhE7FZ4BG-x4GyY-rr5wWNj4kXyi_2kGoXucFfluJI","souvenir":true,"normal_prices":[3243,278,120,223,168],"normal_volume":[25,22,15,30,71]},"951":{"index":951,"max":1,"min":0,"rarity":4,"name":"Acid Etched","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PO_V7Q_cKDDMWaTyOpJs-1mWSyhqhEutDWR1NmhJH6VZ1BzCZtzTeQKuxe_x4fuYenj4Q3bgtkXyHn-iC5MvC864OccEf1ypheGRTI","stattrak":true,"normal_prices":[1326,119,59,52,54],"normal_volume":[308,417,650,212,118],"stattrak_prices":[815,242,104,94,94],"stattrak_volume":[129,156,193,156,129]},"960":{"index":960,"max":1,"min":0,"rarity":3,"name":"Gnarled","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PO_V7Q_cKDDMWuf0vpJp-57Qy2MmRQguynLyt38dXjDaA5zC5YlQ-Nc5BG5k93mP-jhsVeKiY8XmSr5iy5J7C1s6_FCD_TbNBDIDw","stattrak":true,"normal_prices":[98,15,6,5,6],"normal_volume":[812,528,956,110,177],"stattrak_prices":[114,18,9,6,7],"stattrak_volume":[187,141,345,134,113]},"997":{"index":997,"max":0.65,"min":0,"rarity":3,"name":"Dispatch","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6p4LfKWHHSv0-tyj-NlWiyMmRQguynLm4mscyqXOAJ1DpAjQuML5BDpxN22NuPgsVeN3YpCn3mr3ypB7S455_FCD_SVmRFKPQ","normal_prices":[4775,1746,1620,2072,1681],"normal_volume":[83,48,72,5,11]}}},"33":{"name":"MP7","sticker_amount":5,"type":"Weapons","paints":{"1007":{"index":1007,"max":0.6,"min":0,"rarity":2,"name":"Vault Heist","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_C9k5_ene7BSMPySAHSv2Ot6vO5-cCW6khUz_Wrcydz9di2WPAApA5EmF-MCtRDpktznNri35FeLithAzSuqiHxM7iZ1o7FVdAUc4V4","normal_prices":[2237,540,451,452,520],"normal_volume":[124,87,53,48,31]},"102":{"index":102,"max":0.8,"min":0.06,"rarity":3,"name":"Whiteout","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7i1k-PqnfKFiNeSsAm6Xyfo4teU9Hirmx0gh4GXdy9atInqfOAcgCscmRrNetxewl9HjP7_jsgfei5UFk3u-0OOK7w","normal_prices":[97427,16214,3694,3838,3941],"normal_volume":[13,74,142,17,18]},"1023":{"index":1023,"max":0.65,"min":0,"rarity":2,"name":"Tall Grass","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk6-C3f6tiJM-UHGKVz9F6ueZhW2frxxlx4jnQw4yuJ3yfPQ4hDpd5QOVZsUa5l9XiNb6w5laPjosWyC6qkGoXuWq2Rgm4","souvenir":true,"normal_prices":[1587,299,205,379,237],"normal_volume":[104,66,88,13,7]},"1096":{"index":1096,"max":1,"min":0,"rarity":3,"name":"Guerrilla","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V69lIfuaMWuZxuZi_uU7Hy22xE5x5TnWyYqvIi2SaVN0C8d1QeVf4RC-kdC0MOPl4Qbf2dhbjXKpOJ4z2JA","stattrak":true,"normal_prices":[821,198,73,51,50],"normal_volume":[49,98,112,66,53],"stattrak_prices":[855,250,147,83,65],"stattrak_volume":[18,39,35,33,15]},"11":{"index":11,"max":0.26,"min":0.1,"rarity":3,"name":"Skulls","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk_Pm7ZKh-H_yaCW-Ej7l35OBoTCrmzUQht2mDwon7cHuWPFUlDcFxQ7EDtxbpx4W1Y-LltAfAy9USYNky6pY","stattrak":true,"normal_prices":[0,2008,2365,0,0],"normal_volume":[0,72,69,0,0],"stattrak_prices":[0,2041,2101,0,0],"stattrak_volume":[0,87,64,0,0]},"1133":{"index":1133,"max":1,"min":0,"rarity":5,"name":"Abyssal Apparition","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V6JoIeKsAm6Xyfo45uc9GnnnzBh-5zzTw9n9I3mQPAEgD5YlFuIOthC6wNK1MeKwsgHeiZUFk3vcOiyhPQ","stattrak":true,"normal_prices":[1694,619,530,498,489],"normal_volume":[354,837,1738,595,383],"stattrak_prices":[1646,620,516,503,491],"stattrak_volume":[115,177,301,127,62]},"1163":{"index":1163,"max":1,"min":0,"rarity":4,"name":"Just Smile","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf8DIM0Pi7e7BSM_2aAmKvzedxuPUnHXrkzU4i4z-Dno6sci3BaQApDpN4R-cCthnqx4W2MunhtgCI3d0QmzK-0H0MYFOvtA","stattrak":true,"normal_prices":[366,83,40,34,32],"normal_volume":[354,763,1447,386,374],"stattrak_prices":[551,170,92,80,78],"stattrak_volume":[210,252,694,423,302]},"1246":{"index":1246,"max":1,"min":0,"rarity":1,"name":"Sunbaked","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk4uL5V7d5Mv-dC1icyOl-pK84S3C1lx9w6mndytn8JymTZ1QoC5AiR-AMukbqkoXvZu2x5VfW2o9F02yg2esX37bl","souvenir":true,"normal_prices":[171,16,5,2,5],"normal_volume":[469,390,280,144,519]},"1326":{"index":1326,"max":0.746575,"min":0,"rarity":1,"name":"Short Ochre","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7i1k4ue9fKV_JM-fB2CY1aB04eU6H3_mwxxw4znSmd79c3LBb1MgDZNwROdcuhG7kNHuNr7i5AXflcsbmuYuTdkk","normal_prices":[10,1,1,1,1],"normal_volume":[908,1210,882,109,190]},"1354":{"index":1354,"max":1,"min":0,"rarity":5,"name":"Smoking Kills","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf8DIM0OGjZ69kLvesBW6czf1JprNWQyC0nQlp4z7QmI2pdyjEP1ByD5BwTLQDsRXrktXjP-ri5FHYjIpExCX73CJJ6zErvbgKbpbVdg","stattrak":true,"normal_prices":[2812,1126,623,496,378],"normal_volume":[292,514,557,210,195],"stattrak_prices":[6385,2536,1490,1093,830],"stattrak_volume":[56,131,144,29,64]},"1386":{"index":1386,"max":0.65,"min":0,"rarity":2,"name":"Coral Paisley","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Tte0OKvYbdhJemsGWaCzNF6ueZhW2fklEV-sGvUzdigdX2WbgciCZQjRe9b50Xqm4bkMevj5gaMgo1AnCiskGoXuQsY-r8v","normal_prices":[38,10,3,3,1],"normal_volume":[1248,2456,829,212,64]},"141":{"index":141,"max":0.8,"min":0.06,"rarity":2,"name":"Orange Peel","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk-_O-bZtiMvGdCWKvzedxuPUnFiuxxRl3622By9z4dSiTPwB0ApsjQOMNsxTpkYHnZrvr4AWLiNlEnDK-0H2hOymBhQ","souvenir":true,"normal_prices":[6197,3200,2155,2289,1905],"normal_volume":[11,5,10,4,14]},"1436":{"index":1436,"max":1,"min":0,"rarity":4,"name":"Amberline","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf8DIM0POjaqF_LPmdC1icyOl-pK9rTCzlzBx14m-AyNupdXqfaQElXsN0QLICsxSxw4HjZuzm4gePjY5C02yg2Z3LgsMw","stattrak":true,"normal_prices":[519,197,101,83,56],"normal_volume":[886,1619,767,271,186],"stattrak_prices":[842,385,171,141,114],"stattrak_volume":[152,314,191,64,77]},"15":{"index":15,"max":0.8,"min":0.06,"rarity":2,"name":"Gunsmoke","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk6PeieKFjH_yaCW-Ej7d0sbI8Gyrklht04GvXy46vJ3uQbQ4nWcN5EeAI5hPtmtzjP7nktlHAy9USqCgnGlg","souvenir":true,"normal_prices":[2373,375,120,132,203],"normal_volume":[27,94,44,13,39]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk6_O-eKhoH_yaCW-Ej7kvs7c_GXrhwk4lsWzUztn7ciiUPFQgW5clE-UC5Bbtx9TmY-m041DAy9USq3Wit9I","normal_prices":[2212,1138,1034,1104,990],"normal_volume":[3,51,86,15,20]},"209":{"index":209,"max":0.8,"min":0.06,"rarity":1,"name":"Groundwater","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7i1k4P6nfqFSIuKSGGivzedxuPUnSX7nxEl_527Vzoyvcy2QbQUpC8NxF7NbtkbqwNLlZu-w5QHdiN0UyjK-0H0qFVLm2g","normal_prices":[7897,800,382,440,370],"normal_volume":[4,12,63,3,41]},"213":{"index":213,"max":0.08,"min":0,"rarity":4,"name":"Ocean Foam","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_C9k4OG9YaJ0H_KfG2KvzedxuPUnGX6xlEl2tWmEzdyrd32RbQ5yXpB5RuIK4xaxxIGzY7zl5gza2YITnzK-0H3lsKvKCA","stattrak":true,"normal_prices":[2656,2475,0,0,0],"normal_volume":[153,12,0,0,0],"stattrak_prices":[1367,1708,0,0,0],"stattrak_volume":[100,14,0,0,0]},"245":{"index":245,"max":0.8,"min":0.06,"rarity":1,"name":"Army Recon","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk_OK8ab1SIeKeF1icyOl-pK84Sijhwk525z-AmN2rcC7GaVIgW5p3ROQLthe9ltGyMOKw5wHZjd5E02yg2bE0ycdT","souvenir":true,"normal_prices":[139,3,1,1,1],"normal_volume":[165,373,900,124,143]},"250":{"index":250,"max":0.6,"min":0,"rarity":3,"name":"Full Stop","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk-fO8YadsLf-sHGKU_uJ_t-l9AS3nlhhx5W7Xyo6vJHPDagQpC5d4TO4IsRWwmtSxYuzi5FfciY9CxH_gznQebimdppU","normal_prices":[5459,4098,4387,4237,4291],"normal_volume":[51,9,11,1,1]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_Cxk4fO4cZthKfebGinIw-0v5-cxS33kwEh2tz-HyYugJC7FZwVyXJZ2FO4CtBa4xtPkN-nn-UWA3HYryggq","souvenir":true,"normal_prices":[166,173,0,0,0],"normal_volume":[1950,41,0,0,0]},"354":{"index":354,"max":0.5,"min":0,"rarity":3,"name":"Urban Hazard","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5JadiLf2SAGOV09F6ueZhW2fgx0gl4WTczdj7I3LFaQYjDcQiE-Beuhe6xIXnP-_l41eKi9pEyH79kGoXuW6iY_I1","stattrak":true,"normal_prices":[152,33,26,24,37],"normal_volume":[286,47,94,46,72],"stattrak_prices":[135,84,59,69,66],"stattrak_volume":[208,171,295,153,35]},"365":{"index":365,"max":0.58,"min":0,"rarity":1,"name":"Olive Plaid","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk__6vYaA8H_yaCW-Ej7cv5-BqSijgkRx252yAzdj_cy6QZ1R0XpB0QuZf4Bbrk9a0Yenr5wPAy9USeuvoaWg","normal_prices":[1075,466,290,740,393],"normal_volume":[55,17,12,12,9]},"423":{"index":423,"max":0.5,"min":0,"rarity":3,"name":"Armor Core","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_DNk4uL5V7FhNOKSA2iUxPx4j-1gSCGn2xhw6zjSzYysICiUOgV0Cpd1TORe5BW9w922Nrux5gKLitpGz3irhnlXrnE866qixJk","stattrak":true,"normal_prices":[143,55,26,30,32],"normal_volume":[348,148,124,27,40],"stattrak_prices":[196,111,64,65,71],"stattrak_volume":[343,133,186,55,7]},"442":{"index":442,"max":0.55,"min":0,"rarity":1,"name":"Asterion","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk4_OscbZkLuSbMWuZxuZi_rA_FnC3wERw5zuDyYusInKSOFQhCpZ2FO9Y40a_loC2NL6z5gHWjY9bjXKpANIUSxE","normal_prices":[1761,654,448,496,413],"normal_volume":[146,58,97,25,13]},"481":{"index":481,"max":0.32,"min":0,"rarity":5,"name":"Nemesis","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V6poLeOaHVicyOl-pK87Hyu1kR5_5j_WntigcXmXOlBzCZUjQeMLtBG6x9HuNrvl4gCP2I1B02yg2TXalB0S","stattrak":true,"normal_prices":[2464,661,684,0,0],"normal_volume":[196,294,87,0,0],"stattrak_prices":[2721,1976,1816,0,0],"stattrak_volume":[34,61,31,0,0]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk6_a-abBSLPmUBnPek79w4eNoGnC2xx5x4WvRy43_I3-QOA4iWZJwFu5e5xfpl9HvM-_r5Bue1dxLI7RHCA","normal_prices":[259,7,1,2,2],"normal_volume":[155,308,300,55,1257]},"500":{"index":500,"max":0.62,"min":0,"rarity":4,"name":"Special Delivery","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V6dhIeOAB2GZxOpJvOhuRz39xRhytjuBm9n4d3yXbQF1XJAhQLID4BTskobhZb-35wXZ2toTySz2jTQJsHhDRFQUDw","stattrak":true,"normal_prices":[1092,160,99,243,102],"normal_volume":[223,187,135,44,23],"stattrak_prices":[787,430,224,345,258],"stattrak_volume":[86,115,81,1,31]},"536":{"index":536,"max":0.4,"min":0,"rarity":4,"name":"Impire","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk4uL5V61gMPmBC1icyOl-pK8xGiq2kUV24j6Gn9b4eXmWPwIoApJxRbRbtRW5wdfjYbi0sVfW2tkQ02yg2fafAb5i","stattrak":true,"normal_prices":[1825,228,218,278,0],"normal_volume":[149,109,97,41,0],"stattrak_prices":[1048,635,500,592,0],"stattrak_volume":[87,71,25,21,0]},"627":{"index":627,"max":0.75,"min":0,"rarity":3,"name":"Cirrus","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk6fugaahSMP-cAmOVwOpg4t5lRi67gVMj5j6Dwtaocy6UOAIgApNyQrQOshS7lIXlMbvqslHfi41Eyi7823xK8G81tHGGql6L","stattrak":true,"normal_prices":[1416,147,64,86,62],"normal_volume":[382,182,361,59,78],"stattrak_prices":[565,262,106,176,113],"stattrak_volume":[137,129,173,84,60]},"649":{"index":649,"max":0.7,"min":0,"rarity":3,"name":"Akoben","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk4uL5V7B_KfKSAliJxOJ6v_ZWQyC0nQlpsWmHyIquci7EPQQgCZMkE7FZsUXpx9y2Mu6wsgbWjINFyir9iXlNujErvbjY0_iNfw","stattrak":true,"normal_prices":[316,35,32,41,24],"normal_volume":[217,171,128,38,16],"stattrak_prices":[173,79,43,59,46],"stattrak_volume":[90,59,160,5,24]},"696":{"index":696,"max":0.65,"min":0,"rarity":6,"name":"Bloodsport","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk4uL5V6ZhL_-XHXef0_pJvOhuRz39lxsk4W3Ry96pIHrFOgElDZN2Q-9etUSwk4LnYu3h5wLejYwWxSr43zQJsHiIGMoJQA","stattrak":true,"normal_prices":[7260,3851,3128,3068,2900],"normal_volume":[400,875,771,53,57],"stattrak_prices":[4933,2762,2175,2388,2476],"stattrak_volume":[129,148,254,10,76]},"719":{"index":719,"max":0.8,"min":0,"rarity":4,"name":"Powercore","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk__25bbZuL-KWMWqAltF6ueZhW2fjkE114W7Vzduqdn2XOAYhXpMlEeQI4BW9kofiZOzq4VHXg9hGzi78kGoXuRPPGxs7","stattrak":true,"normal_prices":[1979,354,100,137,89],"normal_volume":[117,224,277,53,81],"stattrak_prices":[1385,474,251,270,224],"stattrak_volume":[68,63,124,6,50]},"728":{"index":728,"max":0.5,"min":0,"rarity":3,"name":"Teal Blossom","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk7eeqV6N_JfWdMWuZxuZi_uAwTnC1zE1zsWTSy936di-fb1AnCMYlTeINsBbrm9S1Mr7r5gKLi9lbjXKpdi5Lf9g","normal_prices":[12537,7679,7080,8997,13098],"normal_volume":[37,21,13,2,3]},"752":{"index":752,"max":0.25,"min":0,"rarity":4,"name":"Fade","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_CNk6fOqbZtgMKesAm6Xyfo45LQ7Fy3rzR536j6HyYn6J3zFaAcjA5RwQ-9fs0O5m93nMe2x5QHfjZUFk3sMNd5yQw","souvenir":true,"normal_prices":[3129,798,729,0,0],"normal_volume":[1836,1292,483,0,0]},"782":{"index":782,"max":0.5,"min":0,"rarity":2,"name":"Motherboard","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_C9k7Pu8a7FkNPKcD3WU_ulkteRncCW6khUz_T7Wm9-vJHmWbAVzDJZzFuMP5hKwxIDiP7jlsQGI2Y9CzSr_j3tJ6i51o7FV2fbsGVQ","souvenir":true,"normal_prices":[36,5,2,3,5],"normal_volume":[622,247,1430,63,88]},"847":{"index":847,"max":1,"min":0.1,"rarity":3,"name":"Mischief","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V7ZsI_uWGmKV09F6ueZhW2fnlE5x52Tdz4mscn6XOAFzXppyQ7RZtkTpwNzuMejn5wyPjYoTy336kGoXuS747mDn","stattrak":true,"normal_prices":[0,361,30,24,19],"normal_volume":[0,66,46,75,214],"stattrak_prices":[0,285,60,48,36],"stattrak_volume":[0,32,175,108,63]},"893":{"index":893,"max":1,"min":0,"rarity":4,"name":"Neon Ply","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V7ZoMPyaDWavzedxuPUnGS2wzBglsm6AnNyqJHLBOAdyCZV0ELIN5xC6kNThY-jqslbbid4WyjK-0H0WWbSZ_g","stattrak":true,"normal_prices":[3696,491,228,232,189],"normal_volume":[63,69,103,70,46],"stattrak_prices":[2903,1076,415,420,439],"stattrak_volume":[18,28,41,47,19]},"935":{"index":935,"max":0.48,"min":0,"rarity":1,"name":"Prey","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk9feseqVuIf2sHGKU_uJ_t-l9AXvqwUsk4DyHnIr7eHySbg8gWcckTOUCsxawk9O1ZeywsQOIg95AznjgznQehcsrUP8","souvenir":true,"normal_prices":[131,59,26,54,72],"normal_volume":[546,56,86,47,20]},"940":{"index":940,"max":1,"min":0,"rarity":2,"name":"Astrolabe","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk7P2ge7BoLPySGm6fz9FysfNicCSjwiIrujqNjsGrcSmSZlMjX8YhQ7QKshWxxoHuZbzm5lfajIsRmSqvjy1Nv3tu6uhQT-N7rcDJm_6d","normal_prices":[2557,38,16,15,15],"normal_volume":[126,524,336,204,142]}}},"34":{"name":"MP9","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1k_OaheqlrMv-dGlicyOl-pK8_S3zjxRh_5mmGn9epIymQPQBxDpQlFuUJ5xa6kt2yZLjkswLY2ooT02yg2WH9Y1dp","souvenir":true,"normal_prices":[4109,470,98,95,62],"normal_volume":[47,70,105,28,6]},"1037":{"index":1037,"max":1,"min":0,"rarity":5,"name":"Food Chain","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6JiL_SsDW-RyOBJvOhuRz39xB5-sGrTnt2tdymVOFApD8dxQLUCuxWxldLkNezjtVDd2t8Uyy_7izQJsHisCKzN8w","stattrak":true,"normal_prices":[2194,610,331,309,273],"normal_volume":[272,463,827,267,131],"stattrak_prices":[3347,1221,642,505,492],"stattrak_volume":[68,112,162,68,61]},"1094":{"index":1094,"max":0.55,"min":0,"rarity":4,"name":"Mount Fuji","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk4uL3V6J4KvmsHm6eytF6ueZhW2fgkUoh5m7dnt78eC7FPFQgXJByE-AL5Bixld20MO2x51DX2o1NxCyokGoXudOiZ_SY","stattrak":true,"normal_prices":[1415,870,534,460,531],"normal_volume":[972,845,848,44,68],"stattrak_prices":[2870,1623,782,937,735],"stattrak_volume":[269,160,205,26,25]},"1134":{"index":1134,"max":0.8,"min":0,"rarity":6,"name":"Starlight Protector","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f-jFk4uL3V7d5IeKfB2CY1dF6ueZhW2flkUtztz_SzYypJSqRalUhDJNwQO4PsBXtx9HkN-K37w3bgohGmHn3kGoXuZ3lRdvF","stattrak":true,"normal_prices":[9027,5999,5757,5876,5533],"normal_volume":[335,554,1403,78,263],"stattrak_prices":[9766,6168,5465,5731,5769],"stattrak_volume":[105,170,303,18,54]},"1193":{"index":1193,"max":1,"min":0,"rarity":3,"name":"Nexus","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f8DIC0PyrcLF-H_yaCW-Ej7ohs7Q5FnDqx0t152XdzI36cCnDaAZyDJNzRuVYsBa4kYHgZbyx4ALAy9USEWUfUe0","stattrak":true,"normal_prices":[103,17,5,5,4],"normal_volume":[772,757,504,82,101],"stattrak_prices":[161,24,8,7,7],"stattrak_volume":[249,465,64,63,89]},"1211":{"index":1211,"max":1,"min":0,"rarity":5,"name":"Latte Rush","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6hsNOSWMWuZxuZi_rdrGCyxxER252ncw9arJC-QOAcmXsF2ROAP4RbrlNOzNbzq5VDb2YJbjXKpzLFi2t8","souvenir":true,"normal_prices":[11395,5701,1913,1459,1193],"normal_volume":[382,326,540,122,106]},"1225":{"index":1225,"max":1,"min":0,"rarity":3,"name":"Featherweight","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V7d4MPWBAm6XyfpJvOhuRz39wB9x6jncwtyvd3jBPw8gCJFwR7YItRW8kNK0P--27wLe391NzCyq3zQJsHiOu4WQDA","stattrak":true,"normal_prices":[89,12,5,4,4],"normal_volume":[574,93,622,41,177],"stattrak_prices":[96,15,8,6,5],"stattrak_volume":[223,42,401,130,72]},"1258":{"index":1258,"max":0.65,"min":0,"rarity":3,"name":"Cobalt Paisley","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Tte0PCifaFSMPGaHWuV2NF6ueZhW2ewwhwmtmmDmdz_eH-RaQZ1CcB3E-BcukKwmoXlNerk5wHY3tkRmX74kGoXuZ6yLkO1","normal_prices":[124,62,20,19,17],"normal_volume":[1025,751,889,50,134]},"1278":{"index":1278,"max":0.7,"min":0,"rarity":1,"name":"Buff Blue","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9TZk7f67bZtoJPeWHVicyOl-pK84TnrhlEwjtWvQzoqvciiWaAIoA5okQ7ZYsBHpxNDkNbzh5QDbjolC02yg2XGzrD7d","normal_prices":[10,1,1,1,1],"normal_volume":[1572,506,652,94,88]},"1301":{"index":1301,"max":0.7,"min":0,"rarity":1,"name":"Pine","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1e0POieK1jJc-UHGKVz9F6ueZhW2fixUtwtm6Hy9urd33CbQUhDsFzF7RetxS_ldzgY7ywsVbdidkWyi6tkGoXuWJp7z88","normal_prices":[5,1,1,1,1],"normal_volume":[761,442,510,99,177]},"1310":{"index":1310,"max":0.6,"min":0,"rarity":3,"name":"Shredded","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Tte0OKnZq9SNPmUC3WvzedxuPUnGCiyxB4ksDzdz4qpeS-UZ1clXsBwTOFc5BO_kdPlNOnl5wOL2IJGyzK-0H3-TFWDqQ","normal_prices":[89,40,17,19,18],"normal_volume":[1010,847,785,39,26]},"1330":{"index":1330,"max":0.6,"min":0,"rarity":1,"name":"Multi-Terrain","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk4ua-V6hkJ_iHQGTDlLsktrNrG3q1zB515GSEm9ahInyRawMgWcN5F-MC4RS5w4HjNuL8p1uJJfiZdX4","normal_prices":[3,1,1,1,1],"normal_volume":[714,464,931,83,110]},"1341":{"index":1341,"max":1,"min":0,"rarity":3,"name":"Broken Record","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f8DIC0OSnZr1hH_yaCW-Ej78gs7M_Hy-xxUUi4WWHyd6tJ33EOAAkXsckE-4M5Baxw9O2ZOO3sgzAy9USMhZdDpQ","stattrak":true,"normal_prices":[83,19,9,6,6],"normal_volume":[485,433,47,56,133],"stattrak_prices":[156,46,22,19,12],"stattrak_volume":[134,317,258,112,33]},"1375":{"index":1375,"max":0.65,"min":0,"rarity":1,"name":"Dizzy","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1e0PaqeKV5H-OEB3Wc_uxhj-1gSCGn204k5mXQwoz4dnrDaQ92CMB3R7FZtxa4mtfkZuyx5gHb2YNNz336jyxXrnE8H46mzhg","normal_prices":[3,1,1,1,1],"normal_volume":[377,152,1252,77,139]},"1388":{"index":1388,"max":0.9,"min":0,"rarity":1,"name":"Bee-Tron","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1e0OurZKhiN8-RB3OD_uJ_t-l9ASrhzRt062_Qm4n8cn-XbFQkCcMkTLQD5EW8m9TjM--34gXf2Y1Hzn_gznQepx3qArs","normal_prices":[20,1,1,1,1],"normal_volume":[372,169,687,133,118]},"141":{"index":141,"max":0.8,"min":0.06,"rarity":2,"name":"Orange Peel","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk-_O-bZtiMvGdCWKvzedxuPUnGXnkzUwj5WnQzt2scXKSb1ciD8ZwEORb5xW_m9XiYe7gtAPXg4kQyTK-0H0u1pUr8A","souvenir":true,"normal_prices":[523,16,4,3,3],"normal_volume":[132,126,682,84,75]},"1423":{"index":1423,"max":1,"min":0,"rarity":4,"name":"Urban Sovereign","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f8DIC0Oe8aqVjH-OcGGKCxOdxvt5lRi67gVMi4m6DmY2hcXLFPAMiA8NxQ-9cshK_m9yyYem04ACLg9hAzH6q239I8G81tD9Ib4M_","stattrak":true,"normal_prices":[483,182,101,84,54],"normal_volume":[394,363,412,211,148],"stattrak_prices":[862,336,171,148,123],"stattrak_volume":[112,140,165,52,45]},"148":{"index":148,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dashed","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk-_O-bZt-KP-BGliDwOByj-1gSCGn20kl5TjVwt-sJC6XOFAmDpUiQecOthTsm9PkYuix5wWP3opHyCr9hy9XrnE8MNQOT0E","souvenir":true,"normal_prices":[146,3,1,1,1],"normal_volume":[80,337,792,128,184]},"199":{"index":199,"max":0.8,"min":0.06,"rarity":1,"name":"Dry Season","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk-_O-bZtpL-SAMWWCwPh5j-1gSCGn20Ql42XQyo2sJ3qSOgNxCscjEeJYtRPtkNfhMuPgsgPcgoJAyH36iiNXrnE8I0B0oz0","normal_prices":[7200,939,372,874,371],"normal_volume":[5,6,56,7,14]},"262":{"index":262,"max":0.3,"min":0,"rarity":4,"name":"Rose Iron","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k-_qheqp0H-KcHWKvzP4vj-1gSCGn20h0423Wn9qoJH6QOwNxXpRxQOQLtEHumtTvP-i05wyMjN5Hz3qtiy1XrnE8Sl7QOgI","stattrak":true,"normal_prices":[1447,588,730,0,0],"normal_volume":[332,85,25,0,0],"stattrak_prices":[1712,1171,1331,0,0],"stattrak_volume":[181,85,37,0,0]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k7uCjcZt-KPmdC1icyOl-pK9rTCvlwEwhsWzcyYmtJ3iVOFQiW5BxTeNbshjqmoXlN7ni7gfa3Y8T02yg2VdURND-","normal_prices":[142,90,84,0,0],"normal_volume":[878,905,143,0,0]},"329":{"index":329,"max":0.22,"min":0,"rarity":3,"name":"Dark Age","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4ve6aahSKf6fD36vzedxuPUnG3uwxxkk6jnWmdqsJy-UbFV0DZV4FLRctUXqwIWyNb_r5Qbdg4lGzzK-0H2q-xqNvQ","souvenir":true,"normal_prices":[7791,7790,8839,0,0],"normal_volume":[90,14,3,0,0]},"33":{"index":33,"max":0.08,"min":0,"rarity":3,"name":"Hot Rod","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_Cxk_feqV6hkJ_iHQD7Cl7ou5rlsGyi2wBgh4WyDytmqcC6fbQAhC8chEeZZtRLrw4LlNLz8p1uJeM3XA-E","souvenir":true,"normal_prices":[19838,20651,0,0,0],"normal_volume":[305,12,0,0,0]},"331":{"index":331,"max":0.6,"min":0,"rarity":4,"name":"Arctic Tri-Tone","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f-jFk7uCtfK1uH_2DV1icyOl-pK86HHrrwE5ztWSGydv_eCifOAF2DMB5Fu5etEK9lt3hMuLh5gWPitgX02yg2dKG9WA-","normal_prices":[983,491,316,333,340],"normal_volume":[1808,916,884,60,109]},"366":{"index":366,"max":0.58,"min":0,"rarity":1,"name":"Green Plaid","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk__6vYaA_H_yaCW-Ej7outuQ8GHrjwkwl52zVno2peXqVbwYoX8N3ReFcsUK7l9PiPuzitgLAy9US-C_U3wM","normal_prices":[768,467,308,800,794],"normal_volume":[19,9,4,2,14]},"368":{"index":368,"max":1,"min":0,"rarity":3,"name":"Setting Sun","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk4eetZKFsMs-DD3OExPx44t5kX3CMmRQguynLyIqvdXiVbFN2CZMhQLRZ4RbumtXhPrji4gzfio5MyCr4in4a7nk_4PFCD_TmMRwm0Q","souvenir":true,"normal_prices":[5863,2743,2415,2339,1502],"normal_volume":[106,79,24,11,20]},"386":{"index":386,"max":0.46,"min":0,"rarity":3,"name":"Dart","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6dlJeaBAWmvzedxuPUnH3_lkRgmtmrVmNn6dC_COFUlWJZwF-df4xW8ktK2N-234QfX2IlMzjK-0H1cH54WRg","stattrak":true,"normal_prices":[408,120,60,83,427],"normal_volume":[218,124,121,6,28],"stattrak_prices":[199,130,119,146,898],"stattrak_volume":[99,90,51,18,26]},"39":{"index":39,"max":0.8,"min":0.06,"rarity":4,"name":"Bulldozer","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1k9veiZKt6H_yaCW-Ej-tztbQ5Hy2wxklw5TiDnt_4eC_GOFR1XJdzQ-AMskXswNbvNuvq4wPAy9USwXKj73o","normal_prices":[95870,23158,10982,10073,10904],"normal_volume":[32,29,82,3,5]},"403":{"index":403,"max":1,"min":0,"rarity":3,"name":"Deadly Poison","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6BoIfSfF1iAzudlv-9WQyC0nQlpsm3Vy9f4eXvEPwcoCcNyQOBY5EWxwN3gNru0tFGK2d5Mny__iS8c5zErvbjRwweEJA","stattrak":true,"normal_prices":[604,84,40,43,33],"normal_volume":[196,195,122,96,53],"stattrak_prices":[576,139,63,45,51],"stattrak_volume":[114,173,116,50,78]},"448":{"index":448,"max":0.3,"min":0,"rarity":3,"name":"Pandora's Box","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk__OgbKt_Ic-fB2CY1aAv5LE9Hyu1wUtx5WTUyYmrcHiUbgIlCcF5Q7RZtUKwlNDiZL7q4QTblcsbmlthBLtr","normal_prices":[17055,15481,14984,0,0],"normal_volume":[162,23,5,0,0]},"482":{"index":482,"max":0.5,"min":0,"rarity":4,"name":"Ruby Poison Dart","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4uL3V6pkNOKcCWKe_uJ_t-l9AXzhkEsm527Xy9r_JynEP1IiWJZ3FOYP4xTqmtznNO-34VCKiYJExSjgznQeVzj6siQ","stattrak":true,"normal_prices":[463,178,108,150,126],"normal_volume":[462,293,167,23,7],"stattrak_prices":[721,350,270,330,315],"stattrak_volume":[147,148,102,43,29]},"549":{"index":549,"max":0.5,"min":0,"rarity":3,"name":"Bioleak","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4uL3V6ZkL_yWD2yvzedxuPUnHSi3xhgm4GSGm4mpcnyTbVQjWcZ5EeIL50LultzgNbvmtAPf3oJByDK-0H0NB5p7wQ","stattrak":true,"normal_prices":[67,25,29,23,21],"normal_volume":[647,235,254,66,15],"stattrak_prices":[118,67,25,38,33],"stattrak_volume":[193,214,160,17,31]},"609":{"index":609,"max":1,"min":0,"rarity":5,"name":"Airlock","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6psMvOaHVicyOl-pK8xGXq2xE536m7dnI2vdS6WagZ2CMFyFrNcsBjuw4G1Ne23tQGN3olH02yg2ZxyeudA","stattrak":true,"normal_prices":[3499,1071,969,960,947],"normal_volume":[179,393,442,80,74],"stattrak_prices":[3795,1253,894,872,973],"stattrak_volume":[92,117,108,30,32]},"61":{"index":61,"max":0.08,"min":0,"rarity":4,"name":"Hypnotic","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk-fe8fK1qL8-fB2CY1aAutbY-TXm2wkRz5zjdzNytIi3GbVQhW8ElRu8L5hK7mtfvNbu04lGMlcsbmn-Uk_5D","stattrak":true,"normal_prices":[2037,2274,0,0,0],"normal_volume":[296,19,0,0,0],"stattrak_prices":[3421,4709,0,0,0],"stattrak_volume":[127,9,0,0,0]},"630":{"index":630,"max":0.45,"min":0,"rarity":3,"name":"Sand Scale","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk5_uqbelgMKmsAm6Xyfo4tuA9TnDrzB5w5GTczo74cnyTblAkWcclRuYIuhXplde2ZePl4FTc2ZUFk3tXKn8xpQ","stattrak":true,"normal_prices":[827,57,52,46,0],"normal_volume":[240,177,72,18,0],"stattrak_prices":[116,40,27,44,0],"stattrak_volume":[65,71,46,97,0]},"679":{"index":679,"max":0.6,"min":0,"rarity":4,"name":"Goo","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6NiL8-fB2CY1aAv5LYwSn23xE4l5GrXn9aqIH-SZlMiD8MjEbYK4UW_x9TmM-Lh4FHYlcsbmqGCM0DC","stattrak":true,"normal_prices":[394,110,84,85,87],"normal_volume":[357,273,337,59,72],"stattrak_prices":[400,194,98,152,98],"stattrak_volume":[190,149,167,94,29]},"697":{"index":697,"max":1,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6ZhIfOYMXSRz-pJvOhuRz39xxsj5GWDn9z6d3rCOFV1CJpwTO4IsEG8x4WzPr6xtlTZ2YlEzX-vhzQJsHjCKAg7iw","stattrak":true,"normal_prices":[155,19,11,9,9],"normal_volume":[179,396,179,80,77],"stattrak_prices":[93,17,9,8,7],"stattrak_volume":[108,151,142,17,21]},"715":{"index":715,"max":0.7,"min":0,"rarity":3,"name":"Capillary","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V7JoKf6sAm6Xyfo457c6SXDrw0VxsmmAzor6IimePwApApYkQLFY5ES9lYCzZO7j7lTZiZUFk3t71H43DQ","stattrak":true,"normal_prices":[206,45,30,30,25],"normal_volume":[416,211,163,6,40],"stattrak_prices":[173,74,43,59,36],"stattrak_volume":[120,120,271,9,23]},"734":{"index":734,"max":0.7,"min":0,"rarity":5,"name":"Wild Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V61-LPGdCliWzeFkse1WQyC0nQlp4WuHz4mpcCrDZ1QhCcR5FrUJtkK9lNPuYezh4gDf2ItNxCr8iypJujErvbjAJv0dlg","normal_prices":[242617,240250,265099,0,300000],"normal_volume":[64,8,3,0,2]},"755":{"index":755,"max":0.8,"min":0.06,"rarity":1,"name":"Slide","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk_OKiabB5JeLAMWuZxuZi_rg6TXrhxk9y5WmGn9etdy3BblVxCMd4Re8LskWwwde1MOq35gfX34lbjXKpcIaNgDA","souvenir":true,"normal_prices":[143,3,1,1,1],"normal_volume":[195,772,841,209,135]},"804":{"index":804,"max":0.75,"min":0,"rarity":3,"name":"Modest Threat","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f-jFk4uL3V6diLP-dFzfB_uJ_t-l9AXGylx4ktmqAydmrInvBOAByWcN1EOUOtxe8mtS2P-vl4FaLioJMz3ngznQehlZuXhE","stattrak":true,"normal_prices":[81,29,17,20,14],"normal_volume":[508,189,196,55,40],"stattrak_prices":[85,33,13,29,16],"stattrak_volume":[156,181,219,29,143]},"820":{"index":820,"max":0.55,"min":0,"rarity":3,"name":"Music Box","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4vu8aaNoH_afAXCV0_1JveR9TiW6liIrujqNjsGtcCmeOw8gAptyFLVb4BaxmtGyML_n5QXW2owUm3j5hi4dvHlr57sET-N7rSSys4ef","souvenir":true,"normal_prices":[1663,426,218,418,452],"normal_volume":[113,29,32,8,16]},"867":{"index":867,"max":0.5,"min":0,"rarity":4,"name":"Stained Glass","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k_OavYapoJM-UAmaD0tF6ueZhW2ewkUxysDjUz42hdS6XagQjXMZxELQC5BS4koGxYevm4QKLgt8Wzy36kGoXuTMoqxid","normal_prices":[15242,13899,12425,0,10610],"normal_volume":[118,29,16,0,2]},"910":{"index":910,"max":1,"min":0,"rarity":5,"name":"Hydra","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6x0JOKSMWuZxuZi_rQ9H363xU5_4GrWnIr8IHqfbwBxA5R2QuZZshm6kdO2Mum35Q3ajoJbjXKp1xQlWoY","stattrak":true,"normal_prices":[5102,1095,545,471,446],"normal_volume":[134,305,330,80,57],"stattrak_prices":[8041,2599,1151,1120,1223],"stattrak_volume":[67,65,77,29,40]},"931":{"index":931,"max":0.5,"min":0,"rarity":2,"name":"Old Roots","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk4v28Z5tuIeKFB2mX_vdzvO1mWBa_nBovp3PUmI6vdi-VOgInDpFxQOIKuhW8lNC1Puqw41fajIJCnCv9j3tIuixt_a9cBudlkiY3","souvenir":true,"normal_prices":[319,83,61,299,160],"normal_volume":[149,124,162,28,38]}}},"35":{"name":"Nova","sticker_amount":5,"type":"Weapons","paints":{"1051":{"index":1051,"max":0.5,"min":0,"rarity":3,"name":"Windblown","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0PyhfqVSN_mdCliUyP1mtfN6TiWMmRQguynLnN_4JXyWbwN1CZN2QbEMthm6k9bjMemw7lTc2N4QySr7h38f7Hxp5fFCD_RpV_ibxw","stattrak":true,"normal_prices":[47,20,28,18,18],"normal_volume":[455,236,398,38,25],"stattrak_prices":[96,44,31,34,29],"stattrak_volume":[179,141,130,28,34]},"107":{"index":107,"max":0.8,"min":0.06,"rarity":1,"name":"Polar Mesh","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0P-re6xSIeKQGm6T_u15vvV7TjqnqhEutDWR1I7_dCmXbgEmWJYiFuZc4BPpkoWyYe3jsVbejt8QyiutjXxPuic45-wcEf1ynwKdBSU","souvenir":true,"normal_prices":[102,4,1,1,2],"normal_volume":[48,135,227,28,453]},"1077":{"index":1077,"max":0.5,"min":0,"rarity":3,"name":"Interlock","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OSrerBkJ_-aAmuF0ud5vt5wSiW_mgoYvzSCkpu3dXOTPw5xDcQkROde4Ra6x4biZOi3tQLfiIJMyCz72ihA63tt5esFWb1lpPMXduS-Jw","souvenir":true,"normal_prices":[1523,825,591,1543,2724],"normal_volume":[23,6,19,2,4]},"1162":{"index":1162,"max":0.698529,"min":0,"rarity":3,"name":"Dark Sigil","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwixU-fORbLZsK_uSHFicyOl-pK8xG3q1lk0l4m2HmI6odXiRbwF1CJchQbEI4RK8kNPiMb-24A3W3YoX02yg2YjfpjSA","stattrak":true,"normal_prices":[36,10,5,5,5],"normal_volume":[1584,39,1640,22,64],"stattrak_prices":[42,14,8,11,7],"stattrak_volume":[240,163,648,81,104]},"1192":{"index":1192,"max":1,"min":0,"rarity":4,"name":"Rising Sun","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwixU-fOReq1-Kf6UMXSFz9F6ueZhW2eyzB9z4WjTzt77JXKVaQcnC5sjTLEMthDpwdzkMr_lsVbW34lGmyj5kGoXuV-iSbwM","stattrak":true,"normal_prices":[471,88,43,38,35],"normal_volume":[782,863,1329,741,191],"stattrak_prices":[662,151,72,62,56],"stattrak_volume":[127,74,701,517,160]},"1247":{"index":1247,"max":1,"min":0,"rarity":4,"name":"Sobek's Bite","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0PyhfqVSM_-RC2yvzedxuPUnGX22wR9y5jvQz436IH_BPQ4nW8FwFuUDskO_lt3gMu_i71GNiNkWyjK-0H21VCFkHA","souvenir":true,"normal_prices":[2736,1327,807,603,777],"normal_volume":[125,74,136,59,42]},"1261":{"index":1261,"max":0.678431,"min":0,"rarity":2,"name":"Turquoise Pour","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU4M2va7Z0LPmQMWGczvlJpPR7Xjy8nA4ijDGMnYftb3-fZwAiDJtyF-cItxO_lNbnY7_h5QHXiIMQxCj3ingf6nw66uYKBfE7uvqA67y3_Ew","normal_prices":[18,6,1,1,1],"normal_volume":[292,453,398,44,81]},"1331":{"index":1331,"max":0.55,"min":0,"rarity":1,"name":"Marsh Grass","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU4M2peqV-M8-DBmiEztF1sexmcCW6khUz_WXTw42hJXuXPVVxDJJxRuAMsUG4ltLlZejqsQLb3oMXyCWthywf6Cx1o7FVg0Gz36E","normal_prices":[2,1,1,1,1],"normal_volume":[886,171,693,62,47]},"1337":{"index":1337,"max":0.35,"min":0,"rarity":2,"name":"Rain Station","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjZJ7vugV7dlIeCWHVjAkNF6ueZhW2ewkUhysW6AzIqvdH2eOFQpC5ZzQeNc5kG8wNeyNL-w4wbfjNgRzn78kGoXuS8lQPk9","souvenir":true,"normal_prices":[37,3,2,0,0],"normal_volume":[3588,533,200,0,0]},"1350":{"index":1350,"max":1,"min":0,"rarity":4,"name":"Ocular","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwixU-fORZ6d4LPGBMWuZxuZi_uU6GHixlk13sjzRwo2oeS_DOwQhCpMhQuRc5EHumoezNe3htgLX3YJbjXKpiWHwHrY","stattrak":true,"normal_prices":[304,116,61,48,35],"normal_volume":[398,392,587,407,43],"stattrak_prices":[707,252,135,129,94],"stattrak_volume":[99,176,148,72,74]},"1368":{"index":1368,"max":0.65,"min":0,"rarity":1,"name":"Currents","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC6s2pbatvKeKXHVicyOl-pK87TSrqzBwisWXTz9qvJXnFOgcnW5J1RLEPuhe_mtHgPuqws1SPi4tA02yg2UgVtCWp","normal_prices":[3,1,1,1,1],"normal_volume":[774,200,1135,126,207]},"145":{"index":145,"max":1,"min":0,"rarity":3,"name":"Wurst Hölle","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0P24bbZ9IeOAMXCF0_1ij-9mWSiMmRQguynLytutd33BbgV1DpdwEOYC5hSwwNPjYr_ksVHdjotGxH742yNL5yk6sfFCD_SvUSZNdg","souvenir":true,"normal_prices":[261,50,22,20,16],"normal_volume":[801,432,410,115,217]},"158":{"index":158,"max":0.8,"min":0.06,"rarity":1,"name":"Walnut","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0OWvZKp4NM-dAXGR_uJ_t-l9ASjrlk9042Xcm42geSmXa1UpX5F3Qe4Pu0Trl4K2Y-6z41GNgo9ExSXgznQek14KNvA","souvenir":true,"normal_prices":[2875,649,192,267,239],"normal_volume":[23,52,98,7,24]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":3,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0Pq7ZrBoMs-eAWOV0-BJvOhuRz39xk9_5mSAytqucX6RZwElDpF0QbMNtROwkIbmZuvltQbai4MRnCyoijQJsHiu0ebWIQ","normal_prices":[38333,4730,2035,2307,1907],"normal_volume":[1,8,14,8,2]},"166":{"index":166,"max":0.8,"min":0.06,"rarity":3,"name":"Blaze Orange","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0Pq7ZrBoMs-RAmaKxNF5ouBnSCyMmRQguynLz9v7In7CbFd2XpciRLUL4EHumoCyM-Lh5gXeiYtAzC-tiH8c6Ctu6_FCD_RtjAd6hA","normal_prices":[49964,4572,1954,2000,6400],"normal_volume":[4,8,14,1,5]},"170":{"index":170,"max":0.8,"min":0.06,"rarity":1,"name":"Predator","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0OirarZsI_GeMWuZxuZi_rE8Fy2xx0h25z-Eyt77eSnEbw8mXJEmQeMP5EXrx4ezN7jgtAKNjIlbjXKpxHjTAt0","souvenir":true,"normal_prices":[83,3,1,1,1],"normal_volume":[148,385,617,129,401]},"191":{"index":191,"max":0.22,"min":0.06,"rarity":3,"name":"Tempest","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OGrabdkJPWsDHWR1-FJvOhuRz39xUUk4jiHyt_9cXzGZwV2CJJyQbYN4Ua9wdPiZr6x4FTcjIhMzXmsjjQJsHjYOlWGdQ","stattrak":true,"normal_prices":[1489,496,551,0,0],"normal_volume":[10,69,17,0,0],"stattrak_prices":[3514,603,606,0,0],"stattrak_volume":[10,86,19,0,0]},"214":{"index":214,"max":0.12,"min":0,"rarity":4,"name":"Graphite","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PG8fal9LPWsAm6Xyfo4teA5TSjnx05ztjnRz4v6dX2UZg8hW5B1EbMLtxW-k9XhMLjjslHbiZUFk3velnlINA","stattrak":true,"normal_prices":[1080,1398,0,0,0],"normal_volume":[182,21,0,0,0],"stattrak_prices":[1861,1546,0,0,0],"stattrak_volume":[89,6,0,0,0]},"225":{"index":225,"max":0.4,"min":0,"rarity":3,"name":"Ghost Camo","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0PGvZatSN_-cCliSzftzj-1gSCGn2x9ytmXRzt36dH_EPw9yD5R1ROYCtBO_x4LhMO2wslfZiotMxX6viitXrnE8JeKdjD0","stattrak":true,"normal_prices":[470,327,273,494,0],"normal_volume":[65,17,73,9,0],"stattrak_prices":[367,331,289,452,0],"stattrak_volume":[85,57,87,8,0]},"248":{"index":248,"max":0.4,"min":0,"rarity":4,"name":"Red Quartz","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PG8cbd5IfyfB32VxdF6ueZhW2ewxEVy4j6GzI6rIHLFZlMlCZZ3RLZe50O4kNPmYuvgtVfd3o5CxSn6kGoXuWu5UcUF","normal_prices":[1744,703,758,1023,0],"normal_volume":[145,66,52,9,0]},"25":{"index":25,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Leaves","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0P6rabJoM8-fB2CY1aAjseU6Tn21xk934GzSw9mhcn2RbQB0X5d0R7JfuxPrxoK0Y7zi4QHXlcsbmmjVmTHk","normal_prices":[4515,920,408,396,303],"normal_volume":[7,25,8,4,15]},"263":{"index":263,"max":0.5,"min":0,"rarity":4,"name":"Rising Skull","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0OGlfahhH_6cGGavzedxuPUnSSy3wEV-4miHyt__eHKSOA4pA5JxE7UJ5kO9l4HmZuixtgHZgoMTyDK-0H1FVu2S0A","stattrak":true,"normal_prices":[1068,590,468,488,409],"normal_volume":[82,40,51,3,2],"stattrak_prices":[1368,855,880,878,825],"stattrak_volume":[74,11,84,11,7]},"286":{"index":286,"max":0.3,"min":0,"rarity":5,"name":"Antique","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSIf6HB3aFxNF6ueZhW2fmwRwl6jyHw96vIn2UbVVzXMdyRuYLt0O7ltPjZbu0tQTejo9Hyn2skGoXucYtjcOH","stattrak":true,"normal_prices":[1024,942,1115,0,0],"normal_volume":[110,102,25,0,0],"stattrak_prices":[1864,1370,1963,0,0],"stattrak_volume":[71,28,6,0,0]},"294":{"index":294,"max":0.3,"min":0,"rarity":2,"name":"Green Apple","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU0PW8baFjH_yaCW-Ej7xz5eNtTXHrw0l-4G3SnN78Jy-faQVxCZV3R7FesEHsm9S1Ybm07gXAy9USzA6LpwE","souvenir":true,"normal_prices":[1657,1161,1195,0,0],"normal_volume":[114,78,11,0,0]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PO8Zb1SM_iaAGKvzedxuPUnGXu1xEkktz-Dyd-oJH6ebwIpD5F5ReEJt0W-x4WxZOi0swCM34lNxDK-0H27DLwAVA","souvenir":true,"normal_prices":[120,99,132,0,0],"normal_volume":[654,94,133,0,0]},"299":{"index":299,"max":0.2,"min":0,"rarity":2,"name":"Caged Steel","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0P24aahSKPWLMWuZxuZi_rY_FiqyxER2smrRztuoeX_CagAkA8d0RLYC50W5moe2PuKztAXd2t9bjXKpf1PVBjs","normal_prices":[17,7,7,0,0],"normal_volume":[716,319,44,0,0]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU0OCrbJthKfebGinHxepysuU_HCy3zRsm6jyHyNetIn-XZlQiWJojQ-QIskHqm9eyZezr-UWA3PfdNWrU","souvenir":true,"normal_prices":[24,11,13,0,0],"normal_volume":[1019,382,255,0,0]},"323":{"index":323,"max":0.8,"min":0,"rarity":2,"name":"Rust Coat","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNK0OG6baFhH_yaCW-Ej7si4-I-Fy3rwE0h4mvVmd38IH7FaQIkWMB5ROEOtxTsxNXmNLzrtVDAy9USeAhvX4k","normal_prices":[902,682,490,411,374],"normal_volume":[56,89,64,11,30]},"324":{"index":324,"max":1,"min":0,"rarity":3,"name":"Yorkshire","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0OCneLRhJc-dAXGR_uJ_t-l9AXHqx0l0526Bwtz7IHzDaFJxDsAhRbQDuxPtltTiYe234g3fg4xEzH7gznQe4s_Y0gw","normal_prices":[317,71,35,32,30],"normal_volume":[789,824,926,231,289]},"356":{"index":356,"max":0.3,"min":0,"rarity":4,"name":"Koi","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSK_-aMWuZxuZi_rBqGCu3xEoksm_SzomhcHiQP1QjD8BxQuAN50TtlIK1Yri05lDeiY5bjXKpu6W3YF0","stattrak":true,"normal_prices":[271,188,185,0,0],"normal_volume":[317,292,66,0,0],"stattrak_prices":[317,235,245,0,0],"stattrak_volume":[170,199,74,0,0]},"450":{"index":450,"max":0.5,"min":0,"rarity":1,"name":"Moon in Libra","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OihbK1sI6GsAm6Xyfo4tLhoHy_rx0ol6z-Hw4v8Ii2VOgIgCcd0E-QCu0W9lNPiYu_rtVSPjpUFk3ueOYGM7w","normal_prices":[639,643,471,528,545],"normal_volume":[133,45,78,24,25]},"484":{"index":484,"max":1,"min":0,"rarity":3,"name":"Ranger","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSMvGdCWKC_uJ_t-l9ASvqxUhy6mWAy4v7dnuRZlJ0CpR2Q7Nbtxe7kNO1MOu37lSP2N1HzyXgznQe-r9EaTk","stattrak":true,"normal_prices":[225,52,51,37,43],"normal_volume":[121,31,77,36,38],"stattrak_prices":[266,72,36,36,42],"stattrak_volume":[60,39,43,46,60]},"537":{"index":537,"max":0.6,"min":0,"rarity":5,"name":"Hyper Beast","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSKOmDC3WSxO9lpN5lRi67gVMhsGrTmd2seH6XbA4pDZR1EbMCtES8m4fiNenl4FDcid1Az32ri3tM8G81tMCTwFwB","stattrak":true,"normal_prices":[3149,1563,1227,1371,1428],"normal_volume":[117,99,111,13,18],"stattrak_prices":[6500,4278,2906,2963,2981],"stattrak_volume":[62,52,55,4,5]},"590":{"index":590,"max":0.5,"min":0,"rarity":3,"name":"Exo","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNK0PyhfqVSM_OaMWGZ_uJ_t-l9AS3lxE8k4zuGz42qciiVPQIkDcF0TLNeuhmwxtfhYbzm4wfci95FnC_gznQeGrfN1lI","stattrak":true,"normal_prices":[60,32,29,27,30],"normal_volume":[219,120,111,29,46],"stattrak_prices":[74,41,26,36,44],"stattrak_volume":[76,65,85,46,44]},"62":{"index":62,"max":0.8,"min":0.06,"rarity":5,"name":"Bloomstick","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0OG-eq1jJ8-dAXGR_uJ_t-l9AXDrxU4msD_UzN2qIy6Va1chXJJxFu8OtBO5l9fjZLnh4wXd3olBmCzgznQeBg5SBVo","stattrak":true,"normal_prices":[9708,3365,1393,1537,1334],"normal_volume":[21,48,73,10,12],"stattrak_prices":[24707,5740,2335,2670,2798],"stattrak_volume":[10,27,29,1,12]},"634":{"index":634,"max":0.3,"min":0,"rarity":4,"name":"Gila","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PyhfqVSM_GdClicyOl-pK8wHnrrwU8hsW2DyoqgeSieblIkDJZwQu8Cs0TultLgP76051SPid9N02yg2S7-0Sao","stattrak":true,"normal_prices":[947,279,293,0,0],"normal_volume":[248,203,80,0,0],"stattrak_prices":[344,155,130,0,0],"stattrak_volume":[69,108,34,0,0]},"699":{"index":699,"max":0.8,"min":0,"rarity":4,"name":"Wild Six","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0PyhfqVSIf6QBmiCyPpzj-1gSCGn20t-4jnUzI7_IHifblIpDJJzF7UP5kPpxtHgMu62tAPZjY4Ryn72hnlXrnE8sT3rGLc","stattrak":true,"normal_prices":[246,62,33,33,31],"normal_volume":[244,272,315,55,68],"stattrak_prices":[288,106,53,57,55],"stattrak_volume":[96,113,143,40,46]},"716":{"index":716,"max":1,"min":0,"rarity":4,"name":"Toy Soldier","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSNP-KMXSfzep_tfNWQyC0nQlp42zVytutcCmTZgchW5omTbNc5ka8l9XvM77jtACL34lBm3__iShI6TErvbjr52W2-A","stattrak":true,"normal_prices":[1088,337,81,59,51],"normal_volume":[150,139,144,57,96],"stattrak_prices":[1210,342,141,123,124],"stattrak_volume":[56,67,82,40,94]},"746":{"index":746,"max":0.5,"min":0,"rarity":4,"name":"Baroque Orange","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0OSrZqF5L6KsAm6Xyfo4tbI6F3zhkB9ztj7XmYmocXjGagJ1XMEiE-FctBe8k9K1N7zmtgyNiJUFk3sHO4PBUg","normal_prices":[14156,9957,10823,24598,0],"normal_volume":[53,14,6,2,0]},"785":{"index":785,"max":0.5,"min":0,"rarity":1,"name":"Mandrel","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0Pa7a7B-H_eBC36vzedxuPUnS3DqzRsk4mvUwt2gcXLFPwZyDZZ0R-MM5xa4lNXvNurhsg2Kg94QxTK-0H0uEiuY9A","souvenir":true,"normal_prices":[5,1,1,1,2],"normal_volume":[1164,1315,1645,85,265]},"809":{"index":809,"max":0.75,"min":0,"rarity":3,"name":"Wood Fired","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0PyhfqVSKOWdGmKC_uxkpfVscCW6khUz_WiByIr8IyiXbQYlD5d1E-BftxW_lNbgMb7n7gyM3tkXnimr3C1O6n11o7FVLv86c40","stattrak":true,"normal_prices":[67,54,17,19,23],"normal_volume":[55,205,155,29,6],"stattrak_prices":[81,34,19,139,15],"stattrak_volume":[89,97,93,21,11]},"890":{"index":890,"max":0.8,"min":0,"rarity":3,"name":"Plume","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSJvWSGm-V0_1hue9ucCW6khUz_Tndmd6tdHKQbAMnCZAmQrVYtRW9moayNerq5FTdioJMmST7j35L7Sp1o7FVL01CQxQ","stattrak":true,"normal_prices":[390,273,96,111,75],"normal_volume":[48,44,130,37,46],"stattrak_prices":[347,195,68,157,93],"stattrak_volume":[26,35,67,5,34]},"929":{"index":929,"max":0.5,"min":0,"rarity":3,"name":"Quick Sand","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OaheqpSI_GeAViAwOd4pPJWQyC0nQlp5GSGwt-tJXvEblMlCpQmFuVc4ELqm9TiMuPr4Fbaj90Tnimohn5J7DErvbgkcpg0tA","souvenir":true,"normal_prices":[908,527,306,1100,575],"normal_volume":[76,60,65,9,7]},"987":{"index":987,"max":1,"min":0,"rarity":4,"name":"Clear Polymer","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSMP-fF2qV09F6ueZhW2exxkR-tmWEmIyoJXyWZw4iDsclROVftxm7wIe1NbizswPe2YlHmCuvkGoXuVU3K7Ec","stattrak":true,"normal_prices":[2211,1190,258,247,261],"normal_volume":[80,81,113,46,85],"stattrak_prices":[1578,887,429,412,337],"stattrak_volume":[33,40,65,37,72]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU0OGvZqBSLPmUBnPek75ysrZoHnnkw0V0tjndwo6tcnqSawEoWMQkR-Rf5hLul9S1M-vkthue1dyxC6rLqQ","souvenir":true,"normal_prices":[97,5,1,1,2],"normal_volume":[106,235,406,45,1451]}}},"36":{"name":"P250","sticker_amount":5,"type":"Weapons","paints":{"102":{"index":102,"max":0.8,"min":0.06,"rarity":3,"name":"Whiteout","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU0OWmYbBoL-WHMWuZxuZi_rJqTCq1wUUh6mSBntaqdHyTPFdzXJQjTeMLskTrk9zlN-7lsgyM34lbjXKp2HY6z6k","normal_prices":[42985,10464,4139,4283,5059],"normal_volume":[156,421,142,9,12]},"1030":{"index":1030,"max":0.8,"min":0.06,"rarity":3,"name":"Bengal Tiger","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0OL8PfRSNPmUC3WvzedxuPUnSX7llhghsGjQnNv7I36SZlAjDZMmE-VYskS_kYfkNO2w4QffiItNyjK-0H3QIgynUA","normal_prices":[5426,2190,1836,1962,2053],"normal_volume":[60,109,96,20,16]},"1044":{"index":1044,"max":0.85,"min":0,"rarity":4,"name":"Cyber Shell","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSI-mRC3WDyet6vN5lRi67gVMl6mzUm9n8IHzCaQUmA5Z3RLJb4xC9m4bhMbzn7lOL2Y5Am3j73HxI8G81tOdaiAQT","stattrak":true,"normal_prices":[662,71,36,36,31],"normal_volume":[226,339,475,57,86],"stattrak_prices":[391,141,55,86,52],"stattrak_volume":[118,123,150,24,42]},"1081":{"index":1081,"max":0.49,"min":0,"rarity":4,"name":"Digital Architect","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNa0OSrerBkJ_-UC2ivz-t5vt5lRi67gVMk4mXQntr7JC_GPQNxApFxF7NethXqktfvMuLktAaKjd9Cyy_9iH8f8G81tGeD0jsi","souvenir":true,"normal_prices":[5575,5451,4677,13267,11850],"normal_volume":[39,20,9,2,4]},"1153":{"index":1153,"max":0.7,"min":0,"rarity":5,"name":"Visions","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSNvmAB2ie0tF6ueZhW2fmzERx5jyHm4v_dXvGaQR2WJF2QrIMsxW_w9PvN-zhtgXXiokWn3_6kGoXuc_iGAKZ","stattrak":true,"normal_prices":[1151,433,315,342,309],"normal_volume":[599,679,1774,93,225],"stattrak_prices":[1289,661,395,393,384],"stattrak_volume":[192,223,266,31,65]},"1212":{"index":1212,"max":0.35,"min":0,"rarity":2,"name":"Constructivist","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiBJ-uavZK1-NM-SHGSYyPpzs_V8XSyMmRQguynLn974cXzGPAYgXpV4F-4NtRK6l4LkP7i35lSIgt1Nny6thnhA7SdtsPFCD_QCdWsc4g","souvenir":true,"normal_prices":[37,3,2,0,0],"normal_volume":[3829,521,196,0,0]},"1230":{"index":1230,"max":0.9,"min":0,"rarity":3,"name":"Re.built","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSMvWRG26c1dF6ueZhW2flkRh_sjjXmNb8cCnDPVUnW5ByQ-JZ5hG_xN3gZuPltAHegogWzH7-kGoXuSIylluX","stattrak":true,"normal_prices":[77,13,5,5,4],"normal_volume":[485,561,801,131,92],"stattrak_prices":[77,15,7,6,6],"stattrak_volume":[191,268,353,54,61]},"1248":{"index":1248,"max":1,"min":0,"rarity":5,"name":"Apep's Curse","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSIeCWHlicyOl-pK87HCjkxR9ztj-Dzdv8di2TPFchDptyTbEIthTsl9znY77r5Qzc2YwR02yg2XoGglyv","souvenir":true,"normal_prices":[14989,10799,5482,4897,4880],"normal_volume":[72,75,119,25,22]},"125":{"index":125,"max":0.3,"min":0,"rarity":4,"name":"X-Ray","collections":["set_xraymachine"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0Oq8ab1SMKLGXlicyOl-pK8_HSjjxx9wsmXQnIv6cH2TaAQoWZd4RuAKshe7wdS1NOvi5VCIi48Q02yg2fSIc8-4","stattrak":true,"normal_prices":[71,37,33,0,0],"normal_volume":[1005,1031,138,0,0],"stattrak_prices":[270,166,172,0,0],"stattrak_volume":[277,146,100,0,0]},"1273":{"index":1273,"max":0.6,"min":0,"rarity":1,"name":"Plum Netting","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0P6va6FSLPmUBnPembh05eA4H36ykBh3sGnRmN-hJyiQag4nDZB4RuQDtxLuw4fkYuK27xue1dzA89j_Xg","normal_prices":[5,1,1,1,1],"normal_volume":[2745,277,725,196,82]},"130":{"index":130,"max":0.8,"min":0,"rarity":5,"name":"Epicenter","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjIJuqKRYal9IfOHMWuZxuZi_rg5TnvmzB916m_dm92pdH6eOwJ2DpVyQ7JftUXtwIK2MLiz7wTXjYtbjXKpkd0OdLY","stattrak":true,"normal_prices":[2880,896,429,480,366],"normal_volume":[162,150,533,57,30],"stattrak_prices":[3970,1620,705,1066,678],"stattrak_volume":[81,127,141,13,29]},"1307":{"index":1307,"max":0.65,"min":0,"rarity":1,"name":"Copper Oxide","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU0PW8bb1vLOWWMXfClL5JvOhuRz39kEVx526GzYyudHLFbAYpXpZ0EbZeuxK4ktyxNOu3tQLX2o1DyCX7ijQJsHjyf3ICdA","normal_prices":[4,1,1,1,1],"normal_volume":[744,278,486,382,124]},"1315":{"index":1315,"max":0.75,"min":0,"rarity":3,"name":"Red Tide","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC6s2-YapmH_OcHGac_uJ_t-l9AXznkUV35WiGy4yhcX6ROgYnCcd3F-AJ4RG_wNXvZOjm7wXWj9lFnCrgznQexaJMRP4","normal_prices":[142,50,17,15,14],"normal_volume":[704,660,477,50,101]},"1317":{"index":1317,"max":0.68,"min":0,"rarity":2,"name":"Sedimentary","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU6s23bahhL-esHXCZ0-JJvOhuRz39xk9w62XRyNr9eCrDPwV0CpsiROAIsxC-kNyxNb7q71bcjY1GzXqsiTQJsHicAIc5kQ","normal_prices":[19,5,1,2,1],"normal_volume":[909,661,472,34,146]},"1345":{"index":1345,"max":1,"min":0,"rarity":3,"name":"Bullfrog","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjIJuqKRarFhLPaBAWCvzedxuPUnG3q1kEUl6mnRmYz6JXvBOlQgXsMiRe5ZtxnpmoLiZuO0sVbcjo8XyTK-0H1rEQ3j6Q","stattrak":true,"normal_prices":[86,20,8,7,6],"normal_volume":[557,470,43,79,86],"stattrak_prices":[133,44,25,18,12],"stattrak_volume":[76,339,161,64,91]},"1369":{"index":1369,"max":0.7,"min":0,"rarity":1,"name":"Sleet","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC6s2tabZSN-KSHljD_uJ_t-l9AXCwxhwi6j_Syoysc36TbAAhXpYiRuIPshLsk4bnYemw7wCKiNoUyC7gznQekhpLnpY","normal_prices":[6,1,1,1,1],"normal_volume":[664,232,1020,40,296]},"1420":{"index":1420,"max":1,"min":0,"rarity":5,"name":"Kintsugi","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjIJuqKRY61jNOOGCW6vzedxuPUnHXrikBkh4jjXzd76I36VPQF2CJV2FOYLthC5k9DiNuOwswKLj4JHxTK-0H3jhNNozg","stattrak":true,"normal_prices":[2350,1109,559,528,421],"normal_volume":[247,348,355,179,128],"stattrak_prices":[3517,1398,696,624,531],"stattrak_volume":[46,74,85,54,66]},"15":{"index":15,"max":0.8,"min":0.06,"rarity":2,"name":"Gunsmoke","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PWrZLRoLs-fB2CY1aB04LJsSy_rkUhy52qAyteoJS2XbVV2DJElR-cPtxjplNy0M7jg4weNlcsbmpJkoaMM","souvenir":true,"normal_prices":[3621,467,254,205,214],"normal_volume":[13,36,49,43,4]},"162":{"index":162,"max":0.18,"min":0.06,"rarity":4,"name":"Splash","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0OG-ZKV-KM-DXDLA_uJ_t-l9AXDrxh4i62vTzNyrc3zEP1MpWJN2EOMN5kTpl9K2Zb62slTdi4NMzC7gznQe9E-5MVM","stattrak":true,"normal_prices":[4765,2188,2250,0,0],"normal_volume":[24,143,7,0,0],"stattrak_prices":[9356,3548,4165,0,0],"stattrak_volume":[32,147,5,0,0]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":3,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Pq7ZrBoMs-eAWOV0-BJvOhuRz39lkV-5zuEmN6seX-QbgYpA8B0QLZbtRXpmofgM-Pj4FSI3tkXxCj8hzQJsHhBKeBm5Q","normal_prices":[32000,4551,3525,4492,5500],"normal_volume":[3,16,16,3,2]},"168":{"index":168,"max":0.8,"min":0.06,"rarity":4,"name":"Nuclear Threat","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0Py7Y6F-NOKaHmKvxvxzte9WQyC0nQlp5mrRztyuIy3GbQF1WMN2QbFetBfulNbnPruz7lGKit4UyS6vjn9K5jErvbiRPSOzZg","souvenir":true,"normal_prices":[46681,10830,3782,3659,3984],"normal_volume":[11,63,77,9,13]},"207":{"index":207,"max":0.8,"min":0.06,"rarity":2,"name":"Facets","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PG8fal9LPWsCmaCytF0ouB_QBa_nBovp3ODy9z8c3KQOg5zDJR3Te5e4RXpxoLuMbjl7wDdioJAzn_2jShJ6y9i_a9cBseVOER4","normal_prices":[4819,806,474,542,505],"normal_volume":[17,23,15,9,1]},"219":{"index":219,"max":0.3,"min":0,"rarity":3,"name":"Hive","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0OCrbKxoOM-fB2CY1aAu6LltFny1xRt2tjuAzoyoI33BOgQpX5ByTOVY5xXql4HvNbviswbelcsbmoYK4S35","stattrak":true,"normal_prices":[1840,251,360,0,0],"normal_volume":[165,105,31,0,0],"stattrak_prices":[531,418,446,0,0],"stattrak_volume":[128,142,43,0,0]},"230":{"index":230,"max":0.2,"min":0,"rarity":3,"name":"Steel Disruption","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0PaqeKV5JPWdHWKv0ud6puR7cCW6khUz_WmGzIqrc3mVOlN2CJF5Re4CskWwxoW0PuKzsVaL3o9Mn3762H5I53l1o7FVezFvgCM","stattrak":true,"normal_prices":[1564,329,294,0,0],"normal_volume":[108,118,1,0,0],"stattrak_prices":[569,421,457,0,0],"stattrak_volume":[174,211,26,0,0]},"258":{"index":258,"max":1,"min":0,"rarity":5,"name":"Mehndi","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSMvWVB2mVxdF6ueZhW2eykERysj-GnNv7eHuTbAYjCpN4Q-ILsxGxw4DjM-rn5QTciIIRn36rkGoXuU7_dDjp","stattrak":true,"normal_prices":[3939,1939,1719,1551,1656],"normal_volume":[51,161,84,21,25],"stattrak_prices":[7835,4329,3243,3002,2543],"stattrak_volume":[45,69,71,25,15]},"27":{"index":27,"max":0.8,"min":0.06,"rarity":1,"name":"Bone Mask","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0OaveKFSLPmUBnPekL0l47g9TXuylE916mrRy9-vdS6VZgQpWJJ5F-8OsRawl4DhNbix4Rue1dyhzdnPWw","souvenir":true,"normal_prices":[1733,360,290,362,249],"normal_volume":[12,3,56,9,31]},"271":{"index":271,"max":0.2,"min":0,"rarity":5,"name":"Undertow","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0OL8PfRSIvWSCmKU_v53ue99cCW6khUz_W3dzIuueSqWblJ0WMNwFuYK4xawk9S0Y-7n4Afag4JDzSz73XtK5nt1o7FVPKoITvg","stattrak":true,"normal_prices":[5260,2838,3375,0,0],"normal_volume":[223,92,23,0,0],"stattrak_prices":[4968,4073,4803,0,0],"stattrak_volume":[96,62,8,0,0]},"295":{"index":295,"max":0.4,"min":0,"rarity":5,"name":"Franklin","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0P-hZqF0H_yaCW-Ej70htLhtF3Dgx0Vz5WrWwtf4JCjEPA8oDZF4FrRZ5xnulNy1Zrvn5wHAy9USTWvgE_Q","normal_prices":[584,203,140,280,0],"normal_volume":[1004,529,436,79,0]},"34":{"index":34,"max":0.08,"min":0,"rarity":2,"name":"Metallic DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0Oe8aqVjH_yaCW-Ej-9ys7UxSiqyzB4jsGnQn9f6cX6UbQ4mDZRyE-AKsxHpmtPiZe7q5wPAy9USTykR2DM","souvenir":true,"normal_prices":[14,19,0,0,0],"normal_volume":[2096,25,0,0,0]},"358":{"index":358,"max":0.4,"min":0,"rarity":4,"name":"Supernova","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0PCnfLBoMuOEC2KE_uJ_t-l9AXzlwk5zsGnWz46uICjCPAZ2CZF0QO8LtBjtkNaxZrji7wbY2tkUySXgznQe4Iqu8Lg","stattrak":true,"normal_prices":[344,186,191,226,0],"normal_volume":[776,649,304,45,0],"stattrak_prices":[373,207,184,395,0],"stattrak_volume":[346,321,209,36,0]},"373":{"index":373,"max":0.83,"min":0,"rarity":2,"name":"Contamination","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Py7a6hoIeKsHWyFzeJl5N55HXzjqhEutDWR1NahIH6SaVUnDsB2Q-MIthHrxtTjMuLk7gXc2YlHyir93CtMuCdt4e8cEf1ykWaXO4g","souvenir":true,"normal_prices":[1776,809,354,299,311],"normal_volume":[96,54,83,4,46]},"388":{"index":388,"max":0.75,"min":0,"rarity":5,"name":"Cartel","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNK0OL8PfRSI_GBGmKc_uJ_t-l9AX2wlh906m7Uy4v_cXqWaA4gCpUmQLMNsBO_ltfiYuPltAHbgthGmyzgznQeqxXZ9kg","stattrak":true,"normal_prices":[4629,1057,854,994,989],"normal_volume":[92,125,120,13,21],"stattrak_prices":[7896,2628,1698,2587,1791],"stattrak_volume":[44,51,68,3,10]},"404":{"index":404,"max":0.6,"min":0,"rarity":5,"name":"Muertos","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSLfGdCmacwNF6ueZhW2e1lh51sm3UmN37cHuUbQQhXJtwQO4C4BXsxtHjM-624A3a2IoWySiskGoXuSIJMqiP","stattrak":true,"normal_prices":[2311,1224,1180,1322,1426],"normal_volume":[469,428,382,19,31],"stattrak_prices":[3146,1985,1843,2177,2139],"stattrak_volume":[120,146,153,21,15]},"426":{"index":426,"max":0.8,"min":0,"rarity":3,"name":"Valence","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNK0OL8PfRSI_-dGmiF09F6ueZhW2fiwUx14zmDnNagcC-WagUkApslQuBYsUW_ktexPry3swPfiogTyyiqkGoXuQius2mt","stattrak":true,"normal_prices":[202,57,26,28,24],"normal_volume":[337,361,589,71,100],"stattrak_prices":[396,119,51,110,36],"stattrak_volume":[159,422,521,70,93]},"466":{"index":466,"max":0.8,"min":0,"rarity":2,"name":"Crimson Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PmnZatjL8-XB2adzuByo957Si2MmRQguynLw9uvI3qVbld2XJF3ROMKtBTqxNO0P-Pj4lbXjt9HySv5hikf6y9s4PFCD_Tv7NBHeA","normal_prices":[4205,1871,1644,1767,1539],"normal_volume":[163,95,84,2,37]},"467":{"index":467,"max":0.8,"min":0,"rarity":1,"name":"Mint Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0PmnZatjL8-XB2adzuByo95lRi67gVNx4z_cn934JHvDOAEnCcZxTeZbsUTrxoGyMrzi4FHZiI0Uzyn-3HtM8G81tISNzIT_","normal_prices":[2288,1159,1094,1085,815],"normal_volume":[188,117,78,3,19]},"501":{"index":501,"max":0.9,"min":0,"rarity":4,"name":"Wingshot","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0OL8PfRSI-KSDWyDyeFij-1gSCGn205wtT7Xn4yuc3qQbQUkXJQmEeQCtkK7wdDgZO7n71Df2IkQxH7-hyhXrnE8AH9Qqg8","stattrak":true,"normal_prices":[1316,266,156,153,145],"normal_volume":[200,282,308,73,85],"stattrak_prices":[1441,527,290,293,257],"stattrak_volume":[98,112,185,41,92]},"551":{"index":551,"max":1,"min":0.1,"rarity":5,"name":"Asiimov","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSIeOaB2qf19F6ueZhW2fixx53tWqEm4ugeXuebQN0CZJyRrMJuxm4loCyPr_i51TfjtgXzi79kGoXuUXmUJzm","stattrak":true,"normal_prices":[0,4973,1029,1016,993],"normal_volume":[0,219,1331,131,240],"stattrak_prices":[0,7043,1255,1202,1150],"stattrak_volume":[0,78,203,46,90]},"592":{"index":592,"max":0.8,"min":0.05,"rarity":3,"name":"Iron Clad","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSLfWHD2uv0e94te16cCW6khUz_W2Hzd6heSjBbFd1CsFxF-8DsULulNLjZu6xtQDfitlCyiWt3HtNu3p1o7FVE3GEpAE","stattrak":true,"normal_prices":[1017,53,31,26,29],"normal_volume":[90,105,102,9,50],"stattrak_prices":[513,67,23,44,27],"stattrak_volume":[16,82,163,50,62]},"650":{"index":650,"max":0.5,"min":0,"rarity":3,"name":"Ripple","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0OL8PfRSM-CGGmmZytF6ueZhW2fnlht-5juGyY2vIC2SalQjX8Z1RbVesUG4m9XlN-_ntQPa3YNBn332kGoXubXJFvZo","stattrak":true,"normal_prices":[152,29,30,39,38],"normal_volume":[344,137,77,46,17],"stattrak_prices":[97,53,24,41,36],"stattrak_volume":[165,149,91,25,16]},"668":{"index":668,"max":1,"min":0,"rarity":4,"name":"Red Rock","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSIeiaAWqvzedxuPUnSizhkEh05zzQmIr8JX6UbAZ2DsMhTOEOthexl9e2NuLktAzaiIpGnjK-0H2BmRk7ww","stattrak":true,"normal_prices":[5266,3440,2429,2434,1916],"normal_volume":[33,22,46,27,46],"stattrak_prices":[3422,1686,2063,1336,1302],"stattrak_volume":[13,2,17,5,7]},"678":{"index":678,"max":0.7,"min":0,"rarity":6,"name":"See Ya Later","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSI-mRC3WT0-F1j-1gSCGn2x9ytmzWnN6pInjGOwMlDZp0EORe5BHsx93lP7zr5wzbiI5AyXr_jS9XrnE8gQrIgng","stattrak":true,"normal_prices":[10322,9090,8834,8855,8838],"normal_volume":[304,406,451,33,56],"stattrak_prices":[10288,9025,8483,9622,8691],"stattrak_volume":[63,80,115,10,15]},"741":{"index":741,"max":0.5,"min":0,"rarity":2,"name":"Dark Filigree","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0OCrZptpIeKYMWuZxuZi_uBrSS3iwBty4zvSntv7Jy_DZg90Xsd2Qudb5xG_kIfuZurm7wHbjtlbjXKpFkxeYNg","normal_prices":[1726,680,573,621,661],"normal_volume":[113,27,40,14,7]},"749":{"index":749,"max":1,"min":0,"rarity":4,"name":"Vino Primo","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSI_iWDWyV09F6ueZhW2eyxR9x6m3SydqqcinFPQN2CcF4F-5buhi9w9PgYem25AKNj40Wzy2rkGoXuZ9g813e","souvenir":true,"normal_prices":[3157,281,103,93,71],"normal_volume":[236,269,339,199,81]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PSheqF-NM-RAXWVwOJJvOhuRz39wEsm4WXRz4urcXvEZw8pXJp1RrEIuhC_lNfiYeLj51TXg4JAyyT_jTQJsHgo2RMlUQ","souvenir":true,"normal_prices":[515,5,1,2,2],"normal_volume":[156,274,622,908,1104]},"774":{"index":774,"max":0.7,"min":0,"rarity":3,"name":"Small Game","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU7PqRYLFjNPWBMWWcwPRzj_E7GnmMmRQguynLzdv4JCrGalRzCpZzQLUD5BG5wdPkZuqx51OLjt4Uyiv52CJL6ipssfFCD_QcHDx_gA","normal_prices":[132,48,32,31,32],"normal_volume":[330,933,864,51,125]},"777":{"index":777,"max":0.5,"min":0,"rarity":1,"name":"Facility Draft","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PCifaF9MvmdGliCxOpJvOhuRz39l05wt2XRzNr7dHjCalBxXschRucD4xnpwIfhN7ngtVTe2tlCyi_5hzQJsHgA1f7ZYg","souvenir":true,"normal_prices":[6,1,1,1,1],"normal_volume":[1256,616,1355,80,54]},"78":{"index":78,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Night","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PSheqF-NM-dB2CY1dF6ueZhW2fqkUpy5zzVyo76eC7DO1AnXJtzQuQMtkG_mtS1Y7zl41ffg91HyHmtkGoXueNjwZxk","normal_prices":[1119,108,84,87,82],"normal_volume":[64,333,631,63,90]},"786":{"index":786,"max":0.5,"min":0,"rarity":3,"name":"Exchanger","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Pa7a7B-H_KfG2KvzedxuPUnHnDkzRhz42rUnoqvcXyfPA4lDZVxEbReskS7lteyZLvq4FCKgo1DxTK-0H1XkoQg2Q","souvenir":true,"normal_prices":[193,26,11,13,12],"normal_volume":[266,214,251,19,39]},"813":{"index":813,"max":0.4,"min":0,"rarity":4,"name":"Nevermore","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNa0OL8PfRSJ-KSGGKUyOlxtfN6cCW6khUz_TjdmdeqdymfbVQlXpp0QuVYtBSwk9zmN-634gXd2tpCyH_2hipKunl1o7FVDpyoDiY","stattrak":true,"normal_prices":[628,123,92,123,0],"normal_volume":[538,399,239,18,0],"stattrak_prices":[422,239,184,406,0],"stattrak_volume":[289,228,165,18,0]},"825":{"index":825,"max":0.44,"min":0,"rarity":1,"name":"Drought","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0Pare6F_NM-ABXKczf1JtOB-QRa_nBovp3PVyd6tIijBOAQhXsAlE-ECsxC9x9flMuPn5wfZ2YNNnn32iy4d53pi_a9cBo6jFyfx","souvenir":true,"normal_prices":[98,38,29,40,0],"normal_volume":[310,435,391,40,0]},"848":{"index":848,"max":0.7,"min":0,"rarity":3,"name":"Verdigris","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNK0OL8PfRSNvWBCm6X0-dlj-1gSCGn20R35DnRn42udXiVOg91CpZ4ReACthC4wYexZuuw5VeIjdkUzyqq3CNXrnE8Cr6wnKw","stattrak":true,"normal_prices":[214,25,18,20,33],"normal_volume":[259,42,176,41,261],"stattrak_prices":[151,53,26,43,68],"stattrak_volume":[157,161,133,80,153]},"907":{"index":907,"max":0.68,"min":0,"rarity":4,"name":"Inferno","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSKf6VC3WeztF6ueZhW2e3wUgi6z7WmI6gc3LDPQAgXsB2E7Veshbpl4DiNL_htQDZ2NlHy3qvkGoXuXYeEedL","stattrak":true,"normal_prices":[2238,146,54,62,52],"normal_volume":[94,190,87,51,33],"stattrak_prices":[554,240,104,226,129],"stattrak_volume":[96,159,123,24,43]},"928":{"index":928,"max":0.5,"min":0,"rarity":3,"name":"Black \u0026 Tan","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Pare6F_NM-eG2uEyO13vd5lRi67gVMm5GrTyN-ueH6fO1MlDMd2RLQC50Trw4fvMuPns1eLj9hHzCn4j3lK8G81tJittFNq","souvenir":true,"normal_prices":[1076,559,307,572,572],"normal_volume":[90,57,82,4,3]},"968":{"index":968,"max":0.6,"min":0,"rarity":3,"name":"Cassette","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSI_GAHWKE1etJvOhuRz39lkwltT7Ww4ugc3PGOwd0DpQkQbUPshbpm93lMuy25QGIjIwUn3_72DQJsHjyHnRH0Q","stattrak":true,"normal_prices":[37,12,6,7,7],"normal_volume":[1107,76,1017,151,292],"stattrak_prices":[59,22,7,12,8],"stattrak_volume":[512,475,91,95,41]},"982":{"index":982,"max":0.7,"min":0,"rarity":3,"name":"Contaminant","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSKf6VC2SE_uJ_t-l9AXG3xUt-4jjcn4yqIHLGO1QkDsZ4TeNetUK4m9eyP-6xtVHcjd5DzSrgznQee4rYsVM","stattrak":true,"normal_prices":[580,109,74,106,66],"normal_volume":[131,141,112,8,53],"stattrak_prices":[255,129,86,132,71],"stattrak_volume":[66,57,94,34,30]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU0OGvZqBSLPmUBnPelesn5-RrSXDlwRhx5TjSwtmocCifPwQpDpshReBfsxPrk4DhNu3jshue1dy8VcXxuA","souvenir":true,"normal_prices":[147,5,1,1,1],"normal_volume":[225,549,582,109,119]}}},"38":{"name":"SCAR-20","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_P2Re7BiMv2VHGie1dF6ueZhW2fjxBgl5jyAntytc3ifO1AjXpslRLFft0PtxoXkMuKwslaPg49MmHj6kGoXuUn7n6Ef","souvenir":true,"normal_prices":[1977,446,271,255,254],"normal_volume":[18,31,42,25,18]},"1028":{"index":1028,"max":0.6,"min":0,"rarity":3,"name":"Magna Carta","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRabF5KP-BB3OJ_v5jovFlSha_nBovp3PVzdr8cHnBbAcnXsAmR-UOsRHsktTmYb_ns1CNg4JCzSX_iiNKvS0__a9cBnHoQ9ul","normal_prices":[2310,1759,1608,1622,1756],"normal_volume":[81,64,74,9,19]},"1139":{"index":1139,"max":0.57,"min":0,"rarity":3,"name":"Poultrygeist","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKRe6dsMs-QBm6Tyut4tuhuRz2MmRQguynLno2pdnnGOw9xWcFwEbMCtkHsmoXuNe23tVGNiINCyyv6iylJuyZi5_FCD_Tlwp1EIg","stattrak":true,"normal_prices":[31,12,5,5,5],"normal_volume":[1285,688,1156,185,90],"stattrak_prices":[32,12,6,8,8],"stattrak_volume":[609,390,348,104,145]},"116":{"index":116,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Mesh","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKRZaF-KM-AD2mU_uJ_t-l9AXHhwxwi5zyDmIqoeCmWaAUhXpUiRrFZsBHsxNXvM-jl5lTdgotDySzgznQefYC7ilk","souvenir":true,"normal_prices":[72,3,1,1,1],"normal_volume":[81,49,706,101,157]},"117":{"index":117,"max":0.702614,"min":0,"rarity":3,"name":"Trail Blazer","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_PGvevY9H_aGHH6v1eFmv95lRi67gVN_5D6Bzo38cXOVOA52DZolReBbt0K5k9DvM-Pr4VHXjI9Enn6sjHkb8G81tIsMy8R0","stattrak":true,"normal_prices":[97,22,20,14,11],"normal_volume":[246,134,87,21,28],"stattrak_prices":[116,59,22,29,25],"stattrak_volume":[34,119,191,30,29]},"1226":{"index":1226,"max":0.78,"min":0,"rarity":3,"name":"Fragments","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMs-VHGaXzOt4pPJWTSWylhYYvzSCkpu3dnmXbAZyX5pzQLQO4Ri_lIbgMOzktg2P3t8Uni32iHwc7i856r1UAL1lpPP6-FL_6g","stattrak":true,"normal_prices":[38,10,5,5,4],"normal_volume":[752,165,1379,40,102],"stattrak_prices":[47,14,6,8,6],"stattrak_volume":[261,247,576,60,75]},"1327":{"index":1327,"max":0.746575,"min":0,"rarity":1,"name":"Short Ochre","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_P2RZbF-NPGBCliDwu9k4rFWQyC0nQlp4znSyo39dHifa1ciD8EjF-QCshmwxtKxY7_qsQze2olFyS-shyocvDErvbjS8vcY3w","normal_prices":[4,1,1,2,1],"normal_volume":[786,677,575,1705,73]},"1343":{"index":1343,"max":1,"min":0,"rarity":3,"name":"Caged","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_PGvept_JfaBD2SEyOF4j_c9cCW6khUz_W_SmNirdSmVOFcmDJEjQrEPtROwxtGyYevqsgPcg98RxXishi1Bui91o7FVKL5cNSg","stattrak":true,"normal_prices":[86,18,9,6,5],"normal_volume":[569,360,329,105,85],"stattrak_prices":[145,42,21,19,13],"stattrak_volume":[113,423,214,66,82]},"1371":{"index":1371,"max":0.6,"min":0,"rarity":1,"name":"Zinc","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-urV6dlMv-eC1iCyP5mvORWQyC0nQlpsD7Qydr6dSjEO1MnD5RzRuUIskPpl9zmN-7i5FbYj49NmXj4jXhP6TErvbhHIJnnmg","normal_prices":[3,1,1,1,1],"normal_volume":[672,206,363,97,236]},"157":{"index":157,"max":0.8,"min":0.06,"rarity":2,"name":"Palm","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKReKVhLc-fB2CY1aAl6eM_GyuxlEh0tm6Eztj4dCiWbw92DppyTeYP4xDrkt3gZejn4ATZlcsbmiqh02Pr","normal_prices":[8578,1475,965,952,1144],"normal_volume":[6,10,26,3,4]},"159":{"index":159,"max":1,"min":0,"rarity":3,"name":"Brass","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7uORarZsM-OsAm6Xyfo457MwH3zlzEwh6mXWw9qpdniQO1MmCJZ5QeBe5xa5wdfvZO234lOI3pUFk3uBClMh1w","normal_prices":[17229,10330,8811,10751,12086],"normal_volume":[16,30,24,6,8]},"165":{"index":165,"max":0.8,"min":0.06,"rarity":5,"name":"Splash Jam","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRYLFjNPWBMWWcwPRzj_FgQSKMmRQguynLmYn6J3rCPVQiCMZ1EbQIsRHql4a2Y7iw4QbZg48QxXj-hixB7ntvt_FCD_SAL_dw1Q","normal_prices":[179259,5215,1496,2026,1549],"normal_volume":[4,34,72,11,12]},"196":{"index":196,"max":0.08,"min":0,"rarity":4,"name":"Emerald","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7vyRbaloMvGfCliS0-9gv95lRi67gVMh5WuDyY2qeH7CbQ8jDMR0RuQDuhOwxtCzZL_ksVTe3otByyz3inkY8G81tKuEs31W","normal_prices":[4032,6358,0,0,0],"normal_volume":[182,2,0,0,0]},"232":{"index":232,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRf6FvM8-XD3WbxPxJvOhuRz39lEwhsGqBz9moJHmXawQhDsQhEOUNsBSwkdXiM-3k5AbZjo1MmSiojDQJsHiHhrZ4wA","stattrak":true,"normal_prices":[3222,399,308,314,319],"normal_volume":[32,57,61,36,18],"stattrak_prices":[7369,695,445,404,425],"stattrak_volume":[20,66,98,4,36]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7v-RabZgOc-ABm6exNF6ueZhW2fhzU9-sGrRn9j_d3_DPwVzWMAiQrUI4RGwltGxNOmwtA3Z3Y1Dyyn3kGoXuRBHX853","normal_prices":[652,435,236,0,0],"normal_volume":[103,60,3,0,0]},"312":{"index":312,"max":0.5,"min":0,"rarity":5,"name":"Cyrex","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRe6dsMs-QF3WV2dF6ueZhW2fgzUR_52nUzYugICnCPVImApYkRO8NtkLtw4a1Nbzn7lSN2oITnCr5kGoXuXXxbesR","stattrak":true,"normal_prices":[3745,2873,2450,2703,2212],"normal_volume":[98,89,67,4,1],"stattrak_prices":[7242,5741,5217,4379,4943],"stattrak_volume":[48,28,15,1,3]},"391":{"index":391,"max":1,"min":0,"rarity":5,"name":"Cardiac","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRe6dsMqLDMW6e1etkpuRnWyC8myIrujqNjsH9cniTaFApD5R0F7EJsUG_k9bjM-3n4gLY3opBzCio3yxK5io55OdXT-N7rWZZlsYh","stattrak":true,"normal_prices":[2612,920,835,845,858],"normal_volume":[71,97,107,52,37],"stattrak_prices":[5987,1866,1179,1294,1236],"stattrak_volume":[29,18,16,22,3]},"406":{"index":406,"max":0.5,"min":0,"rarity":3,"name":"Grotto","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7uORe6dsMqLDMWuVwOVJvOhuRz39zRtx62uGm9z8JHnFaFR0AsAjRuQI40Sww9HvNunqtQTego5MmSX4izQJsHiOao_ijg","stattrak":true,"normal_prices":[102,53,39,44,57],"normal_volume":[248,101,77,68,15],"stattrak_prices":[141,76,46,68,67],"stattrak_volume":[126,114,102,45,15]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_P2ReKluH_yaCW-Ej7914-I_HHznx0lz4jmDwtaoJXOebgMlApt0EeJbt0W7xIG0Muzl5wTAy9USD_fgAo4","souvenir":true,"normal_prices":[82,3,1,1,2],"normal_volume":[156,421,1268,226,2193]},"502":{"index":502,"max":0.8,"min":0,"rarity":3,"name":"Green Marine","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMXeVwO1zveBiSjvjxiIrujqNjsH6IymVbQEmCZoiQ-MC5kbrwN3kPuy24lDa2YsQmy2t2iof7Hs56uxQT-N7rTkENKOY","stattrak":true,"normal_prices":[195,28,25,27,20],"normal_volume":[83,44,262,46,32],"stattrak_prices":[231,74,24,142,62],"stattrak_volume":[53,67,67,46,24]},"518":{"index":518,"max":0.5,"min":0,"rarity":3,"name":"Outbreak","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRe6dsMqLDMW2Fz-l6tfNWQyC0nQlp5znXy9-vcXiWaA5yCMZ0ROUL5hXuwNfmY-_lsgSP2d0UzH-v3CtB7jErvbiWj5__Rg","stattrak":true,"normal_prices":[79,27,18,17,22],"normal_volume":[184,164,125,38,47],"stattrak_prices":[110,52,30,33,42],"stattrak_volume":[101,120,101,6,34]},"597":{"index":597,"max":0.45,"min":0,"rarity":5,"name":"Bloodsport","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMWWczuFyo_FmXT2MmRQguynLnoqrcHPCaFdzDMF5F-8P4Bbum9fkYuvrsVffjI5AyS75inlL5ixjsvFCD_R20nqesQ","stattrak":true,"normal_prices":[2280,1003,985,1087,0],"normal_volume":[196,325,257,38,0],"stattrak_prices":[2325,1156,1012,958,0],"stattrak_volume":[69,56,47,8,0]},"612":{"index":612,"max":1,"min":0,"rarity":4,"name":"Powercore","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMXef1utks-57Sha_nBovp3OAzd2qIy_DPVMkXMEiE7UL5ES-l9yyP76wswWP3Y1Nyyn2i35L6S5s_a9cBj_cXeyl","stattrak":true,"normal_prices":[657,130,91,86,87],"normal_volume":[158,111,134,111,78],"stattrak_prices":[797,203,102,95,104],"stattrak_volume":[35,58,49,33,46]},"642":{"index":642,"max":0.75,"min":0,"rarity":3,"name":"Blueprint","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRaqh4JeCBB2mE_v11sfNWQyC0nQlp4jvQn92oJX-VaVIgW5QkQuYM5kLswNTnNL-w4QaK2YNFmXqqjSxJuzErvbi8Z0332w","stattrak":true,"normal_prices":[94,34,31,33,24],"normal_volume":[243,153,135,31,33],"stattrak_prices":[151,56,27,45,31],"stattrak_volume":[14,81,90,10,26]},"685":{"index":685,"max":0.5,"min":0,"rarity":3,"name":"Jungle Slipstream","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRe6dsMqLDMW2Fz-l6td56QyCjhgk1tjyIpYPwJiPTcFIgX5tyFOEJtxm_wdDkZOrq5gHcjIIRzyX_hiJP7io55O9WUKUgr_fJz1aWgsoiFrs","stattrak":true,"normal_prices":[65,17,19,18,21],"normal_volume":[323,110,119,24,30],"stattrak_prices":[82,21,13,18,23],"stattrak_volume":[150,63,71,37,3]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7v-Ra6V_Iv-dMWGZw-tkj-1gSCGn20xx4mXRyd79eHPBbgQiXJpyQrMLuhfqm4LkNu7htQWI2d9CzSX9jShXrnE8-xTDFeg","souvenir":true,"normal_prices":[12,8,0,0,0],"normal_volume":[1238,110,0,0,0]},"865":{"index":865,"max":0.5,"min":0.06,"rarity":1,"name":"Stone Mosaico","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRa6VjIfyAMXOZzetJvOhuRz39wk4m5TvWn474dyqWagcjCpZ2TeAPtxO8kYLnZezg5QbaitpGyyWrjTQJsHihs7k2tg","normal_prices":[1460,439,255,254,249],"normal_volume":[4,61,56,18,5]},"883":{"index":883,"max":0.65,"min":0,"rarity":3,"name":"Wild Berry","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRa6xoNuKcAFiDwu9k4rFWQyC0nQlpsmnTyNf8dy-fZlIoDZd1F7MI4xbuw4e0NLm0sgaP3tpNn37_h3gf6jErvbhxX_RFLw","normal_prices":[307,173,108,129,126],"normal_volume":[318,226,281,27,70]},"896":{"index":896,"max":0.45,"min":0,"rarity":3,"name":"Torn","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKRe6dsMqLDMXSE0-d9tfNWSzyggSIrujqNjsH6eHiSOwZ0XsdxFrEIthfpx9W0Yuux4QDe34pFni-s3SpK7Hs6570KT-N7re2tWema","stattrak":true,"normal_prices":[298,110,98,96,0],"normal_volume":[168,59,45,32,0],"stattrak_prices":[336,137,98,129,0],"stattrak_volume":[22,18,70,19,0]},"914":{"index":914,"max":0.62,"min":0,"rarity":3,"name":"Assault","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRe6dsMs-SHXSR1OJij-1gSCGn2xxw5GzWnNutdnKXagRxCMZ5TbYKtBbrl9WxPu7g5A2Ljt1HmXj5iSNXrnE819YWtjs","stattrak":true,"normal_prices":[77,26,28,26,26],"normal_volume":[97,79,90,50,49],"stattrak_prices":[78,32,15,34,22],"stattrak_volume":[54,66,47,49,36]},"954":{"index":954,"max":1,"min":0,"rarity":4,"name":"Enforcer","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMWKex-Fks-R7cCW6khUz_TmEn4qudiqVPVB0X5t3QbEN4ELqxNHlY-O27gCLg9oXmyqsjCtN73x1o7FVEvhkFhM","stattrak":true,"normal_prices":[438,103,56,43,46],"normal_volume":[179,337,501,56,142],"stattrak_prices":[686,163,96,85,83],"stattrak_volume":[90,101,206,77,70]}}},"39":{"name":"SG 553","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"101":{"index":101,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M26Z7ZjIfScMWuZxuZi_uU7Syuxlx505muBzN2sI3uUOA51C5AhR7UIsEKww9W0MO634APd2NhbjXKp4EWrMzw","normal_prices":[6615,1412,1059,1037,1089],"normal_volume":[15,27,35,2,20]},"1022":{"index":1022,"max":0.7,"min":0,"rarity":1,"name":"Lush Ruins","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a7s28fa1jM8-UHGKVz9F6ueZhW2fmkU4jtTzSw42pc3LEOgJ2ApZ4FORZ50XtxoXiPr-z5FDcit9ExXqvkGoXubXo--Tz","souvenir":true,"normal_prices":[636,142,108,167,142],"normal_volume":[77,64,224,76,96]},"1048":{"index":1048,"max":1,"min":0,"rarity":3,"name":"Heavy Metal","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-XC2aEyeNzpOBlcCW6khUz_W6Gw9aqcH3EOAUlCcR5Qu4J50O5ltbhMrnltgbdg4tDmSus3ClOuCp1o7FV59kcj5o","stattrak":true,"normal_prices":[147,25,25,17,14],"normal_volume":[115,243,331,298,68],"stattrak_prices":[218,57,33,28,26],"stattrak_volume":[172,144,182,173,89]},"1084":{"index":1084,"max":0.48,"min":0,"rarity":5,"name":"Hazard Pay","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QD3KEyOF4j-1gSCGn20Qj52vXw9z6c32RbAV2XpF1Q-UN4Ra7x4bkPuy0tFTciYpCxC37jC1XrnE8Zorh1bo","souvenir":true,"normal_prices":[22707,21948,21703,73751,0],"normal_volume":[51,6,3,1,0]},"1151":{"index":1151,"max":0.7,"min":0,"rarity":4,"name":"Dragon Tech","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QF2WV09FyouBuQCeMmRQguynLw9ygIHnGbgYlDpciEeBYsEPux9ThMuOz4ACLjY1FmX-viitMvCZp5_FCD_QeAJd5TA","stattrak":true,"normal_prices":[165,59,37,34,32],"normal_volume":[1496,1063,2216,50,145],"stattrak_prices":[287,114,51,57,55],"stattrak_volume":[230,342,301,32,144]},"1234":{"index":1234,"max":0.9,"min":0,"rarity":3,"name":"Cyberforce","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QF2WV0-h5ouJscCW6khUz_Wjdntr6Iy6WbgEjA5MlRedctxG5kNKyNbi3sgTfi9oUnyj9234b5n51o7FVairOMAY","stattrak":true,"normal_prices":[75,13,5,5,5],"normal_volume":[535,783,971,103,146],"stattrak_prices":[92,15,7,7,6],"stattrak_volume":[226,28,336,22,75]},"1270":{"index":1270,"max":0.795222,"min":0,"rarity":1,"name":"Night Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4P2Raqh4JeOsAm6Xyfo46eMxTi_qwEUmtTjUz9etJCnBaVJ0XMd3F-QIuxbtk9GzNe3n5FSP2pUFk3tLrFywMQ","normal_prices":[8,1,1,1,1],"normal_volume":[312,533,807,225,452]},"1320":{"index":1320,"max":0.6,"min":0,"rarity":2,"name":"Basket Halftone","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1T-82heqVjJ_WsDGaDyutij-1gSCGn2xxy6mndyNj6cnLCPAIlC5YkF-4Ku0W_ltDhPr6z5lfb2IJBniT7iy9XrnE8euhCJNg","normal_prices":[15,3,1,1,1],"normal_volume":[647,593,477,148,61]},"136":{"index":136,"max":0.8,"min":0.06,"rarity":1,"name":"Waves Perforated","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_826abRoH_ScGnSv1u9gtfJWQyC0nQlp4TyDnNr4c3yVPQcpX8FxQORZ5he5lYG1Mr-07wOMjt1Hyyv-3H5O5jErvbhvnntidg","souvenir":true,"normal_prices":[145,3,2,2,2],"normal_volume":[72,181,7036,1054,1438]},"1394":{"index":1394,"max":0.7,"min":0,"rarity":1,"name":"Safari Print","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1T9veRaapkLfGfMXeCyOBij-1qcCW6khUz_T_Rn9qoIn-Sb1MkX5B3RecL4EXsltXmP-u0tgbbj4tEyHn7334a6Ch1o7FVNpTVjWQ","normal_prices":[3,1,1,1,1],"normal_volume":[351,214,942,58,65]},"186":{"index":186,"max":0.8,"min":0.06,"rarity":3,"name":"Wave Spray","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_829eLZsOc-ED3GV0tF0ouB_QBa_nBovp3PcwoqtdC3BOwQkCZB3QOIIsxm_kNyyZuzg7w3f2YNEnn6qjS0Y6Clq_a9cBmkkHSs4","stattrak":true,"normal_prices":[2574,681,513,410,488],"normal_volume":[18,26,27,4,2],"stattrak_prices":[4786,765,542,617,554],"stattrak_volume":[4,41,99,24,5]},"243":{"index":243,"max":0.6,"min":0,"rarity":2,"name":"Gator Mesh","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82jbbdlH-CKGm-fz9F6ueZhW2e2zER_5j-ByIz_d3nCOgMiC5Z0Ru8DsBSxkN3mYrzjtFHd2I9DxH77kGoXubNdaEwA","souvenir":true,"normal_prices":[2539,1938,1656,2206,1873],"normal_volume":[56,12,77,1,2]},"247":{"index":247,"max":1,"min":0,"rarity":3,"name":"Damascus Steel","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a_s2qaalsM_OGHViDxrsj495lRi67gVMj4miGzteseXjBbAJxXsEjEOQK50axk9C1ZuPi4wbX39gRnC33iipJ8G81tD-xNff9","souvenir":true,"normal_prices":[213,43,12,8,8],"normal_volume":[196,290,611,189,87]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a4c2gabJ0H_yaCW-Ej7ons-AwG37hzUQj5z_Tw9esIHnCZ1UiW5ojQuYJtBO6kNzgNrjitQXAy9USYrEgg8s","souvenir":true,"normal_prices":[72,79,0,0,0],"normal_volume":[2046,38,0,0,0]},"287":{"index":287,"max":0.6,"min":0.1,"rarity":4,"name":"Pulse","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-DG2uDxNF6ueZhW2eykUh24jjczYqscH7GblIpCJBxF-AD4BHtxIKzM-nq5ACK3t1GyySskGoXuRyAaawM","stattrak":true,"normal_prices":[0,669,239,292,247],"normal_volume":[0,321,822,32,55],"stattrak_prices":[0,1085,424,413,392],"stattrak_volume":[0,180,483,44,59]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a4s2veql0H-ObB2mV_uJ_t-l9AS3qxBgh4jnTyNr4eHKRbwEoWZd0F-RZtkG-lN3gMeix41Tdi98RyXrgznQeaSRFZ6A","normal_prices":[5,2,2,0,0],"normal_volume":[708,1370,201,0,0]},"363":{"index":363,"max":1,"min":0,"rarity":2,"name":"Traveler","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s2ifaNqIfeWMXSXlLslj-1gSCGn20905myGzIn6cyqePQUpA8FxRLVetRK_lYbkMrmx7wbWjIkXzi2t2HtXrnE8Nea-0H8","normal_prices":[2107,1033,704,778,681],"normal_volume":[19,6,17,12,14]},"378":{"index":378,"max":0.8,"min":0,"rarity":2,"name":"Fallout Warning","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82gfa9oM-SBB3eV_uN3ou5mQRagkkhy4AKJk4jxNWWSZlAhA5QjFLJYukLpwdLjZe60sgzYjtpCxC2oi3tB6C5ot-pQWaJ35OSJ2GFfvLbQ","souvenir":true,"normal_prices":[1158,636,343,290,321],"normal_volume":[124,89,85,20,32]},"39":{"index":39,"max":0.8,"min":0.06,"rarity":4,"name":"Bulldozer","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M23bahhL-esAm6Xyfo44rZsF3jmwU53tmyDzYv6cHnCalQhXMckEe9Y5kXplIC0NrzrtAfcipUFk3th3T45rw","normal_prices":[27928,27369,24446,0,48263],"normal_volume":[34,38,6,0,3]},"487":{"index":487,"max":1,"min":0,"rarity":5,"name":"Cyrex","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QF3WV2dF6ueZhW2frlhl14W7Xzt6geXqQP1N0CMRyQuFY5kHsx9HmZejq7wPei91AzCT_kGoXueC0Dzdv","stattrak":true,"normal_prices":[3721,734,426,490,508],"normal_volume":[159,244,236,87,51],"stattrak_prices":[5207,1501,941,986,994],"stattrak_volume":[79,61,115,21,9]},"519":{"index":519,"max":1,"min":0,"rarity":4,"name":"Tiger Moth","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-HB2CV09F7v_VhcCW6khUz_TnWn9n7cyqRPQ52DpN3QLEPshjrw9zlY-jjs1bWioMQxSj8hyxJu3l1o7FVwqXqqnE","stattrak":true,"normal_prices":[671,204,101,91,86],"normal_volume":[183,230,212,40,43],"stattrak_prices":[937,341,203,186,183],"stattrak_volume":[91,98,160,39,51]},"553":{"index":553,"max":0.81,"min":0,"rarity":3,"name":"Atlas","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-SGmuR0tF6ueZhW2fgkxt_tTndn46rJX6QOAEoC5QhEe5f5hHqltfgMeO0tQHY2IsTyyyokGoXuYh0VG-5","stattrak":true,"normal_prices":[149,33,29,27,26],"normal_volume":[48,31,280,33,45],"stattrak_prices":[116,38,15,29,16],"stattrak_volume":[48,71,145,35,30]},"598":{"index":598,"max":0.6,"min":0,"rarity":3,"name":"Aerial","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-SC3WZwOJJvOhuRz39wkQj4TzXw9igJXrEbAJ1C5VyQeVZ5hHslIXjMOyz41begt9Myiiq3zQJsHi7xfgn5g","stattrak":true,"normal_prices":[65,31,30,24,22],"normal_volume":[288,129,138,27,43],"stattrak_prices":[92,40,23,36,26],"stattrak_volume":[159,217,192,64,75]},"61":{"index":61,"max":0.08,"min":0,"rarity":4,"name":"Hypnotic","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a7s24bbZ5KfecMWuZxuZi_rJrF3DlkEUl5GTdy4yudHyRZgYnWZskFucO4RO_kIK0PuOxtVPb2d5bjXKpAmuHKUk","normal_prices":[6519,8850,0,0,0],"normal_volume":[130,3,0,0,0]},"613":{"index":613,"max":1,"min":0,"rarity":4,"name":"Triarch","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4ds-HHG6R0-1-j-1gSCGn20Qk6m3UmY77IHOeOlNxCJQmQbYMuhC6mtaxP-K0sQLYi94RzC_8iH5XrnE8WPSRipg","stattrak":true,"normal_prices":[563,117,94,87,87],"normal_volume":[241,162,212,60,80],"stattrak_prices":[649,152,95,93,93],"stattrak_volume":[98,111,153,52,53]},"686":{"index":686,"max":0.6,"min":0,"rarity":4,"name":"Phantom","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-DBmae1eF7j-1gSCGn204k5WXSz4ysJSnDPQ5xDsZ0Ru4PtUKxw9XhMO-0tAON3YpMyS-v23lXrnE80YpLcJc","stattrak":true,"normal_prices":[392,93,84,89,92],"normal_volume":[110,413,418,43,76],"stattrak_prices":[342,147,126,135,121],"stattrak_volume":[170,165,274,34,19]},"702":{"index":702,"max":0.55,"min":0,"rarity":3,"name":"Aloha","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_829b_E-c8-SAmiYwNF6ueZhW2fjxE5x5W_SnNz8eXmQaVN2WJUmF7RZuhS8wYbiZeO04VPa3YlCmHr7kGoXuWs6bs2V","stattrak":true,"normal_prices":[40,16,15,14,12],"normal_volume":[678,289,372,67,57],"stattrak_prices":[54,21,11,15,13],"stattrak_volume":[439,307,312,18,71]},"750":{"index":750,"max":1,"min":0,"rarity":5,"name":"Integrale","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-BD2uc2NF6ueZhW2e2wkV14m2DzditcnmQOA4gWcYlQOcDs0a7moLvZLiw5geP3dgRnnj2kGoXuQPBQAH6","souvenir":true,"normal_prices":[7269,2009,720,382,382],"normal_volume":[610,695,820,275,228]},"765":{"index":765,"max":0.49,"min":0,"rarity":3,"name":"Desert Blossom","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a7s2qbbdoMuSsDGufzuNJsvNgSCGnqhEutDWR1N_8JXPBagZ0WZUiRu4PukaxxNDjNb_mtQCPiYwRyymt2yhIuyc46-kcEf1yx7sEwjI","souvenir":true,"normal_prices":[754,288,288,630,1358],"normal_volume":[124,35,115,8,11]},"815":{"index":815,"max":0.8,"min":0.02,"rarity":3,"name":"Danger Close","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-cGGKC_uZzsfVsSxa_nBovp3PSn4z_eH7Fb1V2DpckQeUJsRe8wNflMui0tVTX34MUyH2sjX8b7Xxu_a9cBmrf7Gwc","stattrak":true,"normal_prices":[179,21,17,21,16],"normal_volume":[76,252,254,46,170],"stattrak_prices":[110,26,13,20,12],"stattrak_volume":[78,170,269,18,64]},"861":{"index":861,"max":0.65,"min":0,"rarity":1,"name":"Barricade","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82ve6NsMvSsGWaczdF6ueZhW2e1xxwlsTyHn9r_ICmQPAd2CJZyQ7IC5hiwltzuY-u34wyLjYtFni6vkGoXubfBxhfQ","normal_prices":[1389,1152,1009,1084,1052],"normal_volume":[164,52,79,19,25]},"864":{"index":864,"max":0.7,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M28baBSM_fGWzSvzedxuPUnF3vgx0kmtznSyoyreSqea1UoD5Z0RrZetBm-lt3nPu_r5waP2d9FnDK-0H3tyRypkA","normal_prices":[1511,584,540,537,537],"normal_volume":[324,159,104,7,27]},"897":{"index":897,"max":1,"min":0,"rarity":5,"name":"Colony IV","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-BC2aT1eFkj-1gSCGn20Qit2yAn9n8IHKealB2DZIjTO8JsBW7ktDlYu_m5ADWit4Rznn63XtXrnE82sW2soE","stattrak":true,"normal_prices":[7670,1865,1051,1089,1082],"normal_volume":[39,118,168,45,28],"stattrak_prices":[11308,3596,1493,1576,1523],"stattrak_volume":[27,49,76,14,9]},"901":{"index":901,"max":0.8,"min":0,"rarity":3,"name":"Berry Gel Coat","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M2mabR9Oc-BC2Ov0ukj5bdWQyC0nQlp42vXn4mrIy2VagRzXJJxFOYJsxG4koLgP-zktVbf3oJMmSX43SIf6jErvbj113ptXQ","normal_prices":[482,201,129,136,114],"normal_volume":[295,216,490,25,188]},"934":{"index":934,"max":0.5,"min":0,"rarity":1,"name":"Bleached","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82qbbdoMuSsHWyFzeJlj-1gSCGn20Uk5WTSytmqJH6XbwMoA8RyRuBY4Ea6kNC2Y-Oz7gbc3o9HxS2r2n5XrnE8gS50bog","souvenir":true,"normal_prices":[67,74,44,60,25],"normal_volume":[193,319,236,89,60]},"955":{"index":955,"max":1,"min":0,"rarity":4,"name":"Darkwing","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-XD3Wb1ud4t95lRi67gVN24D7WmN2sdSqSalAmDpR2F-IDtxTpkYKyZrmzsQffgtgXzSmqjSNA8G81tFvCRYkS","stattrak":true,"normal_prices":[446,124,64,55,61],"normal_volume":[320,406,323,183,139],"stattrak_prices":[904,197,96,85,83],"stattrak_volume":[104,176,214,107,116]},"966":{"index":966,"max":0.7,"min":0,"rarity":3,"name":"Ol' Rusty","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-BG3SE2NF6ueZhW2e3xxt35GzSw9_8J3yePFIpCMEiRrJZukO7x4exZLiw4AGLiNgRy32rkGoXuZqsEgp2","stattrak":true,"normal_prices":[33,12,5,6,7],"normal_volume":[1009,418,521,53,440],"stattrak_prices":[49,15,7,11,7],"stattrak_volume":[293,533,259,98,67]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M2-fbZ9LPWsAm6Xyfo44bQ-Tn7gwRt-t2uAw96tIn7FOAF1CsckQLUJ4xXskdO2NLzrtAyIi5UFk3tU_MwgmA","stattrak":true,"normal_prices":[5551,1996,1598,1711,1710],"normal_volume":[51,112,126,26,24],"stattrak_prices":[13269,2299,2038,1877,2057],"stattrak_volume":[30,97,146,14,27]}}},"4":{"name":"Glock-18","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1016":{"index":1016,"max":0.4,"min":0,"rarity":4,"name":"Franklin","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2jZ6poOc-UAmiTytF6ueZhW2eww0wmtz6Hz92hd3iUPwIhWZtzQ7UP5ha7kd22N-7j4gTZ345BnH_5kGoXuXiKVoel","normal_prices":[16805,11658,11403,13062,0],"normal_volume":[165,45,27,10,0]},"1039":{"index":1039,"max":1,"min":0,"rarity":3,"name":"Clear Polymer","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK8-DAWuJzOtkj-1gSCGn200h4TnQwtqoci_CPQYlDsAiRuZc5hK7kd2zZbm37lGK2o5HnH2v2ixXrnE85Jt4rDY","stattrak":true,"normal_prices":[336,49,27,19,19],"normal_volume":[393,445,675,304,239],"stattrak_prices":[480,141,57,38,38],"stattrak_volume":[166,248,35,38,113]},"1079":{"index":1079,"max":0.55,"min":0,"rarity":2,"name":"Red Tire","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I_826YbZoH-SBC2aU_vxztN5lRi67gVN15WzSmY36cn6RagEnD8MjTbIJ50W5m9OyN-rmtQGIgo9Fnimrhngd8G81tCm_mA6x","souvenir":true,"normal_prices":[2714,395,324,445,626],"normal_volume":[118,22,21,24,13]},"1100":{"index":1100,"max":1,"min":0,"rarity":5,"name":"Snack Attack","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-AAGaTyu9ipOBqRBa_nBovp3PQyomrcHKSaQYkCcRwQe8LukHswYHhN-Kz7lOM3YoUni6tjn5K7C5u_a9cBhxPlKk2","stattrak":true,"normal_prices":[12918,2483,1368,1198,1127],"normal_volume":[98,304,353,137,130],"stattrak_prices":[10854,3136,1745,1722,1829],"stattrak_volume":[38,85,114,38,31]},"1119":{"index":1119,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Emerald)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2rZaF_IfyXMWqR0-x6tehzSi2MkhEosDa6lob-KT-JPwZzA5J4F-8Mt0a-ktTvNeyws1PfjIsQyiX9h3gYvSpr5bwFWash-7qX0V9IgS2WPw","normal_prices":[61890,32327,22555,20880,22614],"normal_volume":[106,124,96,8,3]},"1120":{"index":1120,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 1)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2xCIgvzKGkbD1KCzPKhhzD5d3QORbuxjrk4C1NLzm5Abcj44Uyi342HlI6ixi5edRAKp0-KGBkUifZrIv8MDM","normal_prices":[15958,10227,8441,9084,8634],"normal_volume":[104,116,85,6,3]},"1121":{"index":1121,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 2)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2xyIgvzKGkbD1KCzPKhgnC5pwTLNYsRLrlNXlMe-05gDZ3toWyCmqhyhP5y9r6udQWKIk__XUkUifZoShMfFw","normal_prices":[16681,11123,8704,8843,9085],"normal_volume":[150,142,100,5,2]},"1122":{"index":1122,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 3)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2xiIgvzKGkbD1KCzPKhgmWcN0FLJYtUK7k4DgMuOx7g3ajNhAyH37iygc6ypt5-pQUassqaCFkUifZvBAXI_s","normal_prices":[16105,9616,8264,9379,8064],"normal_volume":[117,117,95,6,3]},"1123":{"index":1123,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 4)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2wSIgvzKGkbD1KCzPKhhxC5FyRbII4Ua_ltDhY-Ln41fW2I1Ayn_9ii5P7Xpr5ekHV6Mg__HekUifZpA8glcU","normal_prices":[15567,9350,8284,8790,9066],"normal_volume":[100,109,97,5,4]},"1158":{"index":1158,"max":1,"min":0,"rarity":3,"name":"Winterized","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK8-WAm6ExNF1sexmcCW6khUz_W6Azdn6eCrBalcjXJpzE7EO5xa_l4DuNu6ws1Hb2IgUn32si39B5y11o7FVC5qcAFg","stattrak":true,"normal_prices":[170,18,7,5,5],"normal_volume":[508,736,648,593,239],"stattrak_prices":[166,22,10,9,10],"stattrak_volume":[236,829,371,169,182]},"1167":{"index":1167,"max":0.671875,"min":0,"rarity":4,"name":"Block-18","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tvMvmQBVidzuByouhoQRa_nBovp3PXzov9cyjDbwckXMMkF7IIthOwwNDmY-rq4AzfjItMyH_9iC0YuC04_a9cBk5_kH3q","stattrak":true,"normal_prices":[195,89,46,44,42],"normal_volume":[2410,2235,3468,39,198],"stattrak_prices":[516,264,135,148,137],"stattrak_volume":[425,494,976,21,121]},"1200":{"index":1200,"max":1,"min":0,"rarity":3,"name":"Green Line","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5t5MvGaAFiX0-tzvt5lRi67gVNw5TjSy4mseXqXagEpW8FyQu5cu0Hpw4ayNLjntFeNgoJEnyWqjCNN8G81tF3dwatE","souvenir":true,"normal_prices":[1746,138,30,22,16],"normal_volume":[864,1022,825,230,221]},"1208":{"index":1208,"max":1,"min":0,"rarity":5,"name":"Shinobu","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5t-KPmdAWWF_uJ_t-l9AX6ylh5w4mTcwtahdS2VOgRzWJsjEOQL5EWxwNblZeK2tVPXitlDmyvgznQeC7fvQL8","stattrak":true,"normal_prices":[2712,835,443,375,362],"normal_volume":[672,1482,2218,430,736],"stattrak_prices":[4872,1795,874,733,701],"stattrak_volume":[206,285,465,126,322]},"1227":{"index":1227,"max":0.75,"min":0,"rarity":4,"name":"Umbral Rabbit","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-eAWie_vx3suNgWxa_nBovp3PXyo76Ii_FPAQmDMYiTLYDthm_kdbmZry2slCLjoMQzC7_3y1J7nts_a9cBi_qumx0","stattrak":true,"normal_prices":[215,65,32,32,30],"normal_volume":[1654,1237,2384,172,232],"stattrak_prices":[394,166,69,130,59],"stattrak_volume":[284,349,420,158,98]},"1240":{"index":1240,"max":1,"min":0,"rarity":4,"name":"Ramese's Reach","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-BD2qKxP1JvOhuRz39kUkk42TcztmuIHOVb1cpCcZ1EeBY5BLtkIDgNOqwtALXjI0Un3r4jDQJsHidobtL7w","souvenir":true,"normal_prices":[6294,1709,909,822,839],"normal_volume":[122,278,390,82,159]},"1265":{"index":1265,"max":0.6,"min":0,"rarity":2,"name":"Ocean Topo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9veRfKt9L8-fB2CY1aAj57loSirrwEpy4mjSztyqdiiQbFRyCcd2RLFetEG5wdbuMbu35Azflcsbmny2FqpB","normal_prices":[41,14,4,6,4],"normal_volume":[1708,987,1135,110,82]},"1282":{"index":1282,"max":0.67,"min":0,"rarity":4,"name":"Glockingbird","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I__eRZa1-M_mfC1icyOl-pK89GCy3xUh-sW3Vntn_eHOTPw9xA5R2F-Fb4EG4k9LiNu2x7leNiY8W02yg2c2Pc93z","normal_prices":[575,199,94,85,71],"normal_volume":[797,1340,1133,91,287]},"129":{"index":129,"max":0.730496,"min":0,"rarity":6,"name":"Gold Toof","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tuKP-eHmKC_uJ_t-l9ASvik00m5TmEzd-geSiQPARxX5IiTLIMtBW4l9zmNuPr4VbbjItHxC_gznQeqLQCTjk","stattrak":true,"normal_prices":[17683,4385,2722,3085,3009],"normal_volume":[160,335,519,40,44],"stattrak_prices":[15093,7319,4084,6679,4248],"stattrak_volume":[82,75,95,4,23]},"1312":{"index":1312,"max":0.752941,"min":0,"rarity":3,"name":"Coral Bloom","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4PeReqt-JeOsAm6Xyfo45edtFiyywExztjjdzNegIHuRaVImDpZ3RuJcshDpxtLhNOKw7gbci5UFk3s8sl0gEQ","normal_prices":[231,68,20,29,15],"normal_volume":[874,700,844,70,107]},"1348":{"index":1348,"max":1,"min":0,"rarity":5,"name":"Mirror Mosaic","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tgKeKBAXWvzO9std5_HRajkBw1vwKJk4jxNWXFP1UhDsYkRbUMsxC6lNSzNO7lsQaK2dpCyH2rjS5J5i054exUVqQi5OSJ2C0RseXl","stattrak":true,"normal_prices":[2622,1050,575,470,388],"normal_volume":[400,804,589,281,294],"stattrak_prices":[5570,2520,1220,915,857],"stattrak_volume":[98,158,147,72,55]},"1357":{"index":1357,"max":0.7,"min":0,"rarity":4,"name":"Trace Lock","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T-825YK15Jc-WCmCV0tF6ueZhW2fiw0Ujt2yGy4ysIHzEaQUlWJJyE-dbsBK5x4XjM7ix7gDeiYkUmy6okGoXubB2-hmv","normal_prices":[712,246,143,138,136],"normal_volume":[218,292,861,28,127]},"1421":{"index":1421,"max":1,"min":0,"rarity":6,"name":"Fully Tuned","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tnJOCWC2yvzedxuPUnS3HqzR9152_UyNigeSqWa1BxW8ElRLJfshfpkNHuZO_n4ADd2IxBxDK-0H3ID5Y8zA","stattrak":true,"normal_prices":[21609,11741,5898,5399,3901],"normal_volume":[119,246,299,185,138],"stattrak_prices":[32132,12907,6662,4292,4363],"stattrak_volume":[27,61,65,26,33]},"152":{"index":152,"max":0.5,"min":0,"rarity":3,"name":"Teal Graf","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2hfqF_MPGAHViEwOlxteVWWyyymSIrujqNjsGueXyfaVN0X5N5Ru4O5he_k9XkM-7ltlPe2YJExX2tiXlN5yo6474LT-N7rZcNkc7T","souvenir":true,"normal_prices":[108,29,18,17,25],"normal_volume":[1750,744,665,63,59]},"159":{"index":159,"max":1,"min":0,"rarity":4,"name":"Brass","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2seqV-M8-fB2CY1aAu5-c_HirjzExxtTnSntb_JSnBaVIpCJojFLUMs0GwwIDjMeOztVeIlcsbmrw2c4EA","normal_prices":[23748,7013,2860,3741,3407],"normal_volume":[67,99,63,46,38]},"2":{"index":2,"max":0.8,"min":0.06,"rarity":2,"name":"Groundwater","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M2hZK17Jc-fB2CY1aBzseQ4GXG1lEwk4mWHmd39dC7BOwImD8F2QedeshjrkYKyML-z4Q3flcsbmqxtqryL","souvenir":true,"normal_prices":[10322,1722,1760,2364,2649],"normal_volume":[27,43,73,14,28]},"208":{"index":208,"max":0.8,"min":0.06,"rarity":2,"name":"Sand Dune","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M29aappH_KBD3Gf_uJ_t-l9AS_gwE4i4GTdyIn6IinEalUhC5t5FOMN5BK7xobiPung7wbWiolNzS_gznQeDKgSRyc","normal_prices":[31972,3723,734,930,786],"normal_volume":[15,72,61,8,11]},"230":{"index":230,"max":0.2,"min":0,"rarity":4,"name":"Steel Disruption","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2qbLRsNPSWAHSV_v1_vPdsXRa_nBovp3PWmYuhdnyebAdyWJUjE7ResBC6xoXhZe_j7w3Zid1Aziio3SlI5iw__a9cBqG4HP4O","stattrak":true,"normal_prices":[6863,2678,2271,0,0],"normal_volume":[146,99,16,0,0],"stattrak_prices":[1549,1368,1749,0,0],"stattrak_volume":[150,113,24,0,0]},"278":{"index":278,"max":0.58,"min":0.06,"rarity":3,"name":"Blue Fissure","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2teqV8NfWfG3WV_uJ_t-l9ASzixkp15W2Bntn4cnPGaFMkC8R1EeIL5hKxl9a0ZOLntQbd2IhBnijgznQeP57NAAc","stattrak":true,"normal_prices":[4869,597,245,249,280],"normal_volume":[63,465,565,70,95],"stattrak_prices":[9408,870,401,543,443],"stattrak_volume":[33,172,268,41,53]},"293":{"index":293,"max":0.5,"min":0.08,"rarity":2,"name":"Death Rattle","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2gbbZiJPmSMWuZxuZi_rc8Hny3zBsm5GuDnNeoeS3Da1cgWcRwFLQL5hbux4biZenm4gXbjY5bjXKpYXhaJyA","normal_prices":[0,24,7,8,11],"normal_volume":[0,608,1080,54,55]},"3":{"index":3,"max":0.3,"min":0,"rarity":3,"name":"Candy Apple","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M28baBSLPmUBnPelb93teA-FivjzB5wsjzTyI2pIn_CPAMoW8N3ROJZshm5w9zgNbnk5xue1dyMA9ZU_Q","souvenir":true,"normal_prices":[217,122,101,0,0],"normal_volume":[4415,1752,503,0,0]},"353":{"index":353,"max":0.7,"min":0,"rarity":5,"name":"Water Elemental","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK72fB3aFxP11te99cCW6khUz_TjVyompc3-QOFR2DJQkFOMJtBbqk9LlY-7n5QLZjtkTxCWqhixPv311o7FVIf8eASQ","stattrak":true,"normal_prices":[5214,1778,1638,1787,1735],"normal_volume":[525,1384,1364,56,100],"stattrak_prices":[6442,3388,2300,2579,2466],"stattrak_volume":[245,254,292,12,48]},"367":{"index":367,"max":1,"min":0,"rarity":3,"name":"Reactor","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2gfadhJfGBMXeR1fpzou84cC6_mh4sjDGMnYftb3yTbAQjA5NxR-4MtRjumtzkM-yzsVDegtkWyyX43ytBvC9tsrpRAKE7uvqAUKOQcp4","souvenir":true,"normal_prices":[12328,2537,1745,2120,1642],"normal_volume":[124,209,171,38,21]},"38":{"index":38,"max":0.08,"min":0,"rarity":4,"name":"Fade","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a7s2oaaBoH_yaCW-Ej-8u5bZvHnq1w0Vz62TUzNj4eCiVblMmXMAkROJeskLpkdXjMrzksVTAy9US8PY25So","normal_prices":[168448,219399,0,0,0],"normal_volume":[327,1,0,0,0]},"381":{"index":381,"max":0.25,"min":0.02,"rarity":4,"name":"Grinder","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2pZKtuK8-QAW6cxOpJvOhuRz39w00lsG-BnNj7cniROgd1WZRzReIDsBewk9G0YeOw5gWPi40Xnnr4hzQJsHiNyVoujA","stattrak":true,"normal_prices":[1030,255,248,0,0],"normal_volume":[780,544,146,0,0],"stattrak_prices":[731,621,665,0,0],"stattrak_volume":[322,353,98,0,0]},"399":{"index":399,"max":0.5,"min":0,"rarity":3,"name":"Catacombs","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-XC2aEyfp5vO1WQyC0nQlptWWDzIz8dy6QalMgXsMiQbEJtRjskdW2M7nn71Dcj49Fm3qsiClB7jErvbhnnfwjgw","stattrak":true,"normal_prices":[348,129,69,94,83],"normal_volume":[534,221,230,30,36],"stattrak_prices":[290,212,141,163,150],"stattrak_volume":[225,171,271,16,30]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":2,"name":"Night","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M2gYaNlNM-fB2CY1aAmtOU-S33jwEwhtWvdzIr4cHvCPwR1DZdxQrFZt0bsloLjP7jg4VGMlcsbmvNarNNc","souvenir":true,"normal_prices":[8488,1394,245,152,251],"normal_volume":[72,300,187,106,55]},"437":{"index":437,"max":0.2,"min":0,"rarity":5,"name":"Twilight Galaxy","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2vebFsH_afC2Sb0tF6ueZhW2e3zR9-5mjcztv8cnjBbQMiA8ZzFLUKtBbsl4LuY77q4AHdj4pNmCz-kGoXudhVSAZp","normal_prices":[90552,26159,32897,0,0],"normal_volume":[164,131,17,0,0]},"479":{"index":479,"max":0.8,"min":0,"rarity":3,"name":"Bunsen Burner","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2pZKtuK6HLMWGcwONzo95rQzy2qhEutDWR1Nb7IC-TOw4hCZF5FOJe40W5lILlZLvktAHXiIJMyST_3XlIv3k94escEf1yWue1sjU","stattrak":true,"normal_prices":[485,103,83,86,59],"normal_volume":[416,515,614,88,174],"stattrak_prices":[735,264,120,272,113],"stattrak_volume":[153,281,501,25,177]},"48":{"index":48,"max":0.08,"min":0,"rarity":4,"name":"Dragon Tattoo","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2qeqVqL_6sCWufwuVJvOhuRz39xUl-6miDzI37dHyXOlIkA8MmROVfshO9w9G1Ye-ztgPX34tEyi74jjQJsHi_DRfxVg","stattrak":true,"normal_prices":[12004,11616,0,0,0],"normal_volume":[593,23,0,0,0],"stattrak_prices":[23204,29208,0,0,0],"stattrak_volume":[241,15,0,0,0]},"495":{"index":495,"max":0.8,"min":0,"rarity":3,"name":"Wraiths","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK6HLMXCCwPp-qfJWQyC0nQlp4T_Xnoz8dCmfZlUgXsd5RbMC40WxkdXnP7nl4wHXi9oUyH_9jilIuzErvbjBKaM58A","stattrak":true,"normal_prices":[876,97,38,59,33],"normal_volume":[224,190,234,35,88],"stattrak_prices":[741,204,91,224,82],"stattrak_volume":[129,162,293,44,50]},"532":{"index":532,"max":1,"min":0,"rarity":4,"name":"Royal Legion","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK6HLMWaHwPxyj-1gSCGn20gksm_Uyo7_JSmeOARyXsEhFLQMsUW_wIXuP-rj71CIiotAzCqoinhXrnE8DvG09t0","stattrak":true,"normal_prices":[6422,574,285,278,284],"normal_volume":[114,243,199,88,63],"stattrak_prices":[4169,1084,522,468,485],"stattrak_volume":[81,87,141,35,65]},"586":{"index":586,"max":0.54,"min":0,"rarity":6,"name":"Wasteland Rebel","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-ED3SExOJ3vuVWXSyxkBEYvzSCkpu3Iy7GPFUnC5t3EO4I4Bm6w4DmNu3k4lCN3YNNniz23HsY6Xxv5rwCU71lpPMpvj9PCw","stattrak":true,"normal_prices":[10684,9378,9068,10249,9408],"normal_volume":[244,291,232,13,30],"stattrak_prices":[10910,9728,9514,9293,12330],"stattrak_volume":[77,79,56,2,11]},"607":{"index":607,"max":1,"min":0,"rarity":4,"name":"Weasel","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK6HLMXCVwP1zvN5lRi67gVN_4j7Qzdj8dimQblQkX8YkTeNe5Bmxkd2zNr_j5QbdjthCzX-qjylI8G81tDMJpR5Y","stattrak":true,"normal_prices":[2706,153,92,93,92],"normal_volume":[168,386,750,141,116],"stattrak_prices":[1325,293,164,150,153],"stattrak_volume":[98,127,202,185,68]},"623":{"index":623,"max":1,"min":0,"rarity":3,"name":"Ironwork","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2pZKtuK8-XD3WbjOh3vO1WQyC0nQlp5jmEmNaodH6VbwMnApshEOcPskOww4e0N-qz5lPZ2YlGyCSviika6zErvbhhWFzqpw","stattrak":true,"normal_prices":[2621,193,66,41,39],"normal_volume":[216,149,217,50,179],"stattrak_prices":[883,193,95,62,56],"stattrak_volume":[73,142,160,127,177]},"680":{"index":680,"max":1,"min":0,"rarity":3,"name":"Off World","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-aAGOZxuFJvOhuRz39xRly4WSDm4z9dHvCOg8iC5pxQrZethbsk4C1MbnnsQTag4pFyy_9hzQJsHjSW_TM0g","stattrak":true,"normal_prices":[624,40,22,18,15],"normal_volume":[320,495,574,491,217],"stattrak_prices":[443,93,43,35,38],"stattrak_volume":[148,229,356,104,204]},"694":{"index":694,"max":0.65,"min":0,"rarity":4,"name":"Moonrise","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a7s2pZKtuK8_CVliF0-x3vt5kQCa9qhsipTiXpYPwJiPTcANzXJNyFOEMthXsktHhMLzl4FaK3toWn3iqhi9BvHw9su5UU6Zw-_bJz1aWcX-Jd_0","stattrak":true,"normal_prices":[285,130,75,80,69],"normal_volume":[1694,1269,1602,53,125],"stattrak_prices":[543,269,150,237,169],"stattrak_volume":[593,612,773,126,109]},"713":{"index":713,"max":1,"min":0,"rarity":3,"name":"Warhawk","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK8-HBnKexetkj-V8XD2MmRQguynLwo34eXjBbgQnCMB1Q-QN5EXrkdfkNu7m5Ffd2YoTzyr52H5B7nk-5PFCD_Q2xs5K0Q","stattrak":true,"normal_prices":[1088,65,35,26,26],"normal_volume":[162,308,98,70,73],"stattrak_prices":[526,102,51,37,38],"stattrak_volume":[94,124,133,101,104]},"732":{"index":732,"max":0.7,"min":0,"rarity":4,"name":"Synth Leaf","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2ibaVrH_KfG2KvzedxuPUnGnuywx4h52nQzomsInmVbw8mCZAhR-UP4BHpldXhZevn7wXc2dkUnjK-0H1CafWWiA","normal_prices":[41075,34681,35904,0,38000],"normal_volume":[85,5,14,0,2]},"789":{"index":789,"max":0.7,"min":0,"rarity":4,"name":"Nuclear Garden","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2gfadhJfGBMXSb1OJ6o95uXSy2myIrujqNjsGpd3LCagQiWJVzEOdfu0PrkYe1MLnqtQzW34xDmH2oiiIc7i5p4u5RT-N7rQEHvAcX","souvenir":true,"normal_prices":[7229,601,211,198,172],"normal_volume":[258,660,945,63,45]},"799":{"index":799,"max":0.08,"min":0,"rarity":2,"name":"High Beam","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a7s24bbZ5KfecMWWc1OtJvOhuRz39zU5yt2vQntn9dC3Dbw8iDJQhF-IJ5xDqkdSxMr6251aMiI5BynqtiTQJsHhqpMNExQ","souvenir":true,"normal_prices":[16,17,0,0,0],"normal_volume":[11725,608,0,0,0]},"808":{"index":808,"max":0.85,"min":0,"rarity":3,"name":"Oxide Blaze","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK6HLMWSf0_x5tORncCW6khUz_T_Xn9f6dnvDb1UkDsdwF7IItES6kYK1M-7k7wSI3YwQm3_63XlAvH51o7FVwJirs7M","stattrak":true,"normal_prices":[322,31,19,26,18],"normal_volume":[309,246,1031,85,139],"stattrak_prices":[290,61,26,47,28],"stattrak_volume":[141,266,655,54,210]},"832":{"index":832,"max":0.7,"min":0,"rarity":5,"name":"AXIA","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_PGmV6V1KfGsCWufwuVJvOhuRz39lh93sDmDytj6InjCaQ52ApF1EeIMuxC9wNPmNe3k7wLfjIJGm32o2zQJsHgd3ZW3tg","normal_prices":[9295,3591,2971,3221,3006],"normal_volume":[595,662,1229,61,65]},"84":{"index":84,"max":0.8,"min":0.06,"rarity":4,"name":"Pink DDPAT","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2qbLRsNM-DB2mb_uJ_t-l9ASi2lBgjsmjSm4ugeX6WO1AoCsElFuEIuhC6xta2Zbmw5gCMjtlAni3gznQeU26CORw","souvenir":true,"normal_prices":[11524,6594,2364,2118,5609],"normal_volume":[28,39,98,15,26]},"918":{"index":918,"max":1,"min":0,"rarity":3,"name":"Sacrifice","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-bC3Wf_uJ_t-l9AXHixRlytW7Ty4queH_DZlMlX5UjF-dZsUPqk9LhY-Lk5waMjdlCmSzgznQeEFBQhB0","stattrak":true,"normal_prices":[993,50,37,26,25],"normal_volume":[182,235,280,199,168],"stattrak_prices":[593,108,59,38,29],"stattrak_volume":[106,123,177,67,85]},"957":{"index":957,"max":1,"min":0,"rarity":6,"name":"Bullet Queen","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK6HLMXCR0-N3ueVsQRa_nBovp3PQydf4dXuSalUgCJZwRrILthi9kYDlMe_m4g2Ij90Um3moiXkc6SZj_a9cBgLxwlYC","stattrak":true,"normal_prices":[12861,5637,5015,4833,4918],"normal_volume":[147,310,452,133,103],"stattrak_prices":[14414,6978,5452,5198,5371],"stattrak_volume":[55,95,81,33,29]},"963":{"index":963,"max":0.75,"min":0,"rarity":5,"name":"Vogue","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-WF2KTzuBiseJ9cCW6khUz_T-GyNavdCqRawN1CMFwTOcO5hO7loXiY-zmsQKPi44QzHj22ikcvy11o7FVfFOBmfY","stattrak":true,"normal_prices":[1171,536,338,335,335],"normal_volume":[938,853,2261,100,215],"stattrak_prices":[2175,1087,618,648,609],"stattrak_volume":[235,322,398,25,60]},"988":{"index":988,"max":1,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-dAW6C_uJ_t-l9AXznwh9zsjjSn9j9dH-eb1V0CsF3QrNZ4xW8ltPlM-7h4QbYit5NzyzgznQecekkTuo","stattrak":true,"normal_prices":[21768,5053,3447,3468,3422],"normal_volume":[146,455,389,102,46],"stattrak_prices":[19555,8850,4619,4560,4366],"stattrak_volume":[46,79,103,17,13]}}},"40":{"name":"SSG 08","sticker_amount":5,"type":"Weapons","paints":{"1052":{"index":1052,"max":0.8,"min":0,"rarity":5,"name":"Death Strike","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-ADWiC0ed5vt5lRi67gVMh6jjTn9ygJSieaAEiAsB2F7Jfshe-xtHkPuvisQLXgt8UmCz523lM8G81tFON4mQ2","souvenir":true,"normal_prices":[48178,51365,29201,23305,20650],"normal_volume":[60,10,21,1,1]},"1060":{"index":1060,"max":0.55,"min":0,"rarity":3,"name":"Spring Twilly","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s26eqVkLvGBDW-Z1et1pN5uXSy2myIrujqNjsGpeCjCOlMgWJZ0E7JfthfuktPmY-Pk7lON2Y5AyCr-iCtOuitr5O1RT-N7rXhDFbfv","normal_prices":[1163,277,183,140,118],"normal_volume":[339,100,252,16,23]},"1101":{"index":1101,"max":0.6,"min":0,"rarity":5,"name":"Turbo Peek","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6NSL-aWHHORyutJvOhuRz39k01z62jTmIv6dC6WPQdzWJYiQLYL40K4koG1Ze-35wze3dpMnyz63TQJsHim_V6lkw","stattrak":true,"normal_prices":[5431,2115,1478,1572,1586],"normal_volume":[236,262,372,26,40],"stattrak_prices":[10112,4930,2588,2905,3081],"stattrak_volume":[64,67,57,1,12]},"1161":{"index":1161,"max":1,"min":0,"rarity":3,"name":"Dezastre","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_PX-MJtpJeqSHXOCxNF6ueZhW2exwEp2tmmEw9epdCjCalQhX5ImQOZbtRixxNTgN-u24AHb2okTmX2vkGoXuacR7BX3","stattrak":true,"normal_prices":[80,14,5,4,5],"normal_volume":[535,888,470,114,62],"stattrak_prices":[131,18,10,6,8],"stattrak_volume":[219,95,643,253,231]},"1187":{"index":1187,"max":1,"min":0,"rarity":3,"name":"Memorial","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_PX-MJtvMuWHD2uZ0vpJvOhuRz39x0UlsWmEnt37IHyfaFAkWZR5RuALtRKxlYKxMLnn4leL3t5FmSv9ijQJsHj6GwByAQ","stattrak":true,"normal_prices":[110,17,6,5,5],"normal_volume":[569,1172,440,34,235],"stattrak_prices":[278,51,14,10,8],"stattrak_volume":[199,246,1037,324,183]},"1251":{"index":1251,"max":0.99,"min":0.01,"rarity":2,"name":"Azure Glyph","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_M29e6M9eM-SAHKSyP1JvOhuRz39xERwsT_Sn4r6eHmeOAAlCZBxFrEP4BbpxtyxYbji7g3dg4lAnH372jQJsHi7hX5I-w","souvenir":true,"normal_prices":[381,110,22,15,18],"normal_volume":[209,239,443,88,84]},"1271":{"index":1271,"max":0.6,"min":0,"rarity":1,"name":"Grey Smoke","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4PGmV6ZhL-KRMWWH_uJ_t-l9ASu1kBt_sD_dzN-pcX6ROlMgD5d5FuQP5hC4m4XlY-PkswbdjN8Xn3_gznQeOZ1jkG0","normal_prices":[3,1,1,1,1],"normal_volume":[647,274,416,83,323]},"128":{"index":128,"max":0.75,"min":0,"rarity":4,"name":"Rapid Transit","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_PX-MJt5MvGdHW6E_vl-ufVscCW6khUz_WTSw479d3vDalIkCJNzFuIN4RHqw9K2P7nktQHf340Wyn-vh3wY7Sd1o7FV_lj0Yvg","stattrak":true,"normal_prices":[792,336,83,109,81],"normal_volume":[432,321,565,48,76],"stattrak_prices":[1967,848,232,364,210],"stattrak_volume":[142,142,168,36,57]},"1289":{"index":1289,"max":0.55,"min":0,"rarity":2,"name":"Tiger Tear","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9veRfK1qJeLBMWuZxuZi_uVqFn3hzRsjt27Xz9z6dirEZgN0D5p4R-Jf4UPrl9XnMrzm7wCLjohbjXKpscqbOIY","normal_prices":[17,6,2,2,2],"normal_volume":[465,312,394,33,47]},"1304":{"index":1304,"max":0.75,"min":0,"rarity":1,"name":"Green Ceramic","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M2tbbZsLfmQMWCCxOt4j_J6SHnrqhEutDWR1Ir9cnvCZwN2X5IiEOQKtxDsxofnYu7k5ATeg4xCny-o2yNKuy0_5r4cEf1ysR10Fgo","normal_prices":[3,1,1,1,1],"normal_volume":[322,406,421,71,146]},"1316":{"index":1316,"max":0.678431,"min":0,"rarity":3,"name":"Blush Pour","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4P2Raad_OfyaDViWzeFhj_FgQSKMmRQguynLyY2rdHqWaAYgWJFyR-dZuxC-loLjMeixsgzXi4hGyyT4j3hOvHxu4fFCD_TyynIDEA","normal_prices":[102,45,17,17,12],"normal_volume":[573,923,447,97,139]},"1372":{"index":1372,"max":0.5,"min":0,"rarity":1,"name":"Sans Comic","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9veRa6tgKfOsHW-R0etlj-1gSCGn20wl5W3VmImqcCmWOlAjXpolR-MP50Wwl9DmMOix5QXZ2d5EzSWqi3tXrnE8nx7Jn58","normal_prices":[2,1,1,1,1],"normal_volume":[1143,475,773,160,68]},"1379":{"index":1379,"max":1,"min":0,"rarity":2,"name":"Calligrafaux","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T-828baBSJfSUC3Svx-d4te1gQSyMmRQguynLwov6JHmRagd0WcBxQuYItxWxlYLgM--z4gDXjthGnnmqjXxAvSpqtfFCD_S8UR_TMg","normal_prices":[147,17,5,2,2],"normal_volume":[213,693,555,71,98]},"147":{"index":147,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle Dashed","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_826abRoH-ObAXWE_uRjvuZlSha_nBovp3PUz9-pcnuXPQMpCMZwQ-UM5xixmtGxN-7n4wWKiN5DySivhyxJ5ixj_a9cBvFEfbOR","souvenir":true,"normal_prices":[1376,121,115,197,135],"normal_volume":[26,40,234,24,113]},"200":{"index":200,"max":0.8,"min":0.06,"rarity":2,"name":"Mayan Dreams","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s2jab1sLs-XHGKRzP1JsvNoWSaMmRQguynLytmqd3yQP1coCJR0QecK40TqkdHgMuvi5gDa3owRz3_72ilA6X1jsvFCD_TXuxrUgQ","normal_prices":[9120,800,446,689,532],"normal_volume":[12,14,44,10,7]},"222":{"index":222,"max":0.2,"min":0.06,"rarity":6,"name":"Blood in the Water","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29YKV_K8-fB2CY1aAmsbFtFnDilkUl5j7UzoqsInmVaFd0XMMlELYDshbuxNPvP-yxtlCMlcsbmlWiixNl","stattrak":true,"normal_prices":[20896,9044,9862,0,0],"normal_volume":[111,274,26,0,0],"stattrak_prices":[51230,23972,21369,0,0],"stattrak_volume":[31,53,5,0,0]},"233":{"index":233,"max":0.8,"min":0.06,"rarity":2,"name":"Tropical Storm","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_82-aahgH-ObD2Of1tF6ueZhW2fhxU1ysDjWmdqvcHrGaw5xA8AkELUL5xa7ktLgZrjj5VPc2YsTxC3-kGoXuZdbLCna","souvenir":true,"normal_prices":[9819,2206,1910,2108,1885],"normal_volume":[23,67,42,10,19]},"253":{"index":253,"max":0.03,"min":0,"rarity":3,"name":"Acid Fade","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a7s2oaaBoH_eBD3SDze94tN5lRi67gVN05G3QzI6pIn2UOAYhDJMjEeANsBbtlYC2ZbvltA2P2I5FyHmq2Hka8G81tCngBDgW","souvenir":true,"normal_prices":[84,0,0,0,0],"normal_volume":[5298,0,0,0,0]},"26":{"index":26,"max":0.8,"min":0.06,"rarity":1,"name":"Lichen Dashed","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_829YKt_NM-HD3eV_uJ_t-l9AX3lkBh1smSAmNf7eH6VbVQoAsN1TbQC5xa-koXgM-zjswHf341EznrgznQepO2zZeE","normal_prices":[6472,1000,355,362,378],"normal_volume":[17,48,90,27,77]},"304":{"index":304,"max":0.8,"min":0.15,"rarity":3,"name":"Slashed","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-aA2qf0_p3vN5kSi26gBBp62XXyon_eHKXagYoC5ZwFLQNska7lIfiY-rgtVCN2IxExX_9h34buDErvbiGjEi-fQ","stattrak":true,"normal_prices":[0,0,183,118,116],"normal_volume":[0,0,244,128,59],"stattrak_prices":[0,0,167,135,129],"stattrak_volume":[0,0,348,127,87]},"319":{"index":319,"max":0.43,"min":0,"rarity":3,"name":"Detour","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s29e6M9eM-eD3WbxPxJvOhuRz39lxsm6m_XmdugcnOXaFMlD5ImEbQP5kW4kICyM-vj5wXc2dkUzHqoiDQJsHjAk3eMVA","souvenir":true,"normal_prices":[4570,1477,1403,1554,0],"normal_volume":[125,82,25,6,0]},"361":{"index":361,"max":1,"min":0,"rarity":3,"name":"Abyss","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a_s2ibbJkIeSbD2mvzedxuPUnH3_jzE1y4TvQyIr9JyieZlckCsRxF-8K50bsxN3gZOzktAzc2IJEzDK-0H1XlSI8xg","stattrak":true,"normal_prices":[440,95,40,27,25],"normal_volume":[1071,3170,1896,738,1036],"stattrak_prices":[1195,251,86,51,42],"stattrak_volume":[360,1210,902,399,588]},"503":{"index":503,"max":0.64,"min":0,"rarity":5,"name":"Big Iron","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-HC2SYz-d1se1gWzCMmRQguynLyYqqJSqQbAIiDMclTbYDtUKwlIfvP7jr4Fbcj4xGzir6jilJ6ils4PFCD_SOjD5UKQ","stattrak":true,"normal_prices":[5630,1449,855,1002,968],"normal_volume":[116,122,115,13,20],"stattrak_prices":[7154,3772,2305,2491,2269],"stattrak_volume":[38,57,34,6,4]},"513":{"index":513,"max":0.7,"min":0,"rarity":3,"name":"Zeno","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_PGmV75oLv-sHXSXkbZJvOhuRz39xhkitW-Hzduvc3zEPQJxWZMhR7NZ4xOwm9DjN7mx41GM2IoUzSmsijQJsHibvaeasA","normal_prices":[164,65,34,32,33],"normal_volume":[1306,1505,1159,82,152]},"538":{"index":538,"max":1,"min":0,"rarity":3,"name":"Necropos","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-dC2SCzv55o95lRi67gVN26m_VnomsdiqTZwB0W5R5E7UCuxe6lICyMO3i7lDWjt4XyHj_iypB8G81tA-y21Aw","stattrak":true,"normal_prices":[475,138,81,40,48],"normal_volume":[117,205,288,89,104],"stattrak_prices":[764,150,71,56,53],"stattrak_volume":[77,79,129,109,89]},"554":{"index":554,"max":1,"min":0,"rarity":4,"name":"Ghost Crusader","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_M29e6M9eM-SHGqRwuFktd5lRi67gVN_6jnQzYmhc3jFbgUoA5J3ReYIsRO8ktGyM-iz4AaMi4hDzyqsiSJJ8G81tKe_wmAg","stattrak":true,"normal_prices":[1956,213,105,110,107],"normal_volume":[226,375,440,174,172],"stattrak_prices":[2073,508,227,205,197],"stattrak_volume":[105,91,200,61,56]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":3,"name":"Dark Water","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a4s20baZ_Ic-XD3Wb_uJ_t-l9AXriwk1y6mqDyov9eXyTaAFzD5R4RrFYsRC4k9fhML7itQGPio9EyX_gznQeRZeU19w","stattrak":true,"normal_prices":[0,1279,307,0,0],"normal_volume":[0,99,61,0,0],"stattrak_prices":[0,537,301,0,0],"stattrak_volume":[0,119,83,0,0]},"624":{"index":624,"max":0.5,"min":0,"rarity":6,"name":"Dragonfire","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-XHGaXzuBwufNscDqwmg0ijDGMnYftbyrFPVAoWcQjELQOuxO4k4e1N-nnsQfW2I5Mz3ivi3wb7Stj5ukAUKY7uvqAqS55_Pw","stattrak":true,"normal_prices":[35905,25232,23693,21667,22316],"normal_volume":[530,533,320,31,34],"stattrak_prices":[17638,11931,9381,8855,9458],"stattrak_volume":[107,84,92,12,3]},"670":{"index":670,"max":0.51,"min":0,"rarity":4,"name":"Death's Head","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-XC2aEyf1-teBtcCW6khUz_WTXyNipeX-QOlQhXpJwFuYO4xLqxobuN7vn4QaNgthBnHn7iSJPv351o7FVSPuLyfc","stattrak":true,"normal_prices":[3721,2580,2075,1811,1799],"normal_volume":[122,78,48,15,29],"stattrak_prices":[2906,2374,1837,1808,1574],"stattrak_volume":[23,19,21,13,2]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a4s2tabZvL_6sCG6SxPxJvOhuRz39kU9y4GvVyYygdniXaVd0DMckQ-dZtRK-moe0Murl5lHZgosUzSuv2DQJsHj4wzVBbg","souvenir":true,"normal_prices":[832,1034,0,0,0],"normal_volume":[202,42,0,0,0]},"743":{"index":743,"max":0.5,"min":0,"rarity":3,"name":"Orange Filigree","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s28bapSL-KSAGCV_uJ_t-l9AXy3l093sjnSn9_6cnjBPAEhDMNwR-FbtEKwldzkM--05Afej4JGmSzgznQeBdxl634","normal_prices":[3831,3077,3194,4248,3606],"normal_volume":[18,21,24,2,2]},"751":{"index":751,"max":1,"min":0,"rarity":3,"name":"Hand Brake","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_M29e6M9eM-QBmKTyutkj-1gSCGn2xtwtzzWmNagIH3CP1V2C5dxR7QLsES_m9PvY7nj4QPd2ohHy3r4hypXrnE8MesmkS4","souvenir":true,"normal_prices":[385,172,105,99,71],"normal_volume":[407,166,414,237,113]},"762":{"index":762,"max":0.5,"min":0.06,"rarity":1,"name":"Red Stone","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M28fapoH-OHAWmV_uJ_t-l9AX_gkxl25W6AzIupcyqVagcjCJp4EeBctRHrx9KxMb6x5FONiotAnyXgznQeYtQapjc","normal_prices":[2849,1043,1034,1142,1051],"normal_volume":[60,114,100,9,19]},"868":{"index":868,"max":0.5,"min":0,"rarity":4,"name":"Sea Calico","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s2oZKt6JeKAMXSEzO9ks95lRi67gVMl5DuEm9ereCmVawImWZMhRLIDu0a7ktKzN7nq5lePi41Bn3r83H8b8G81tNArbz2X","normal_prices":[38461,43190,44626,141945,114201],"normal_volume":[56,5,8,2,3]},"877":{"index":877,"max":0.5,"min":0,"rarity":2,"name":"Halftone Whorl","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T-829f61_LM-AHWDAmdF6ueZhW2e1lxxwsW3SnN-gIC6ea1cgDZdwQ7Fft0G5xoK2NOq241bfj9lCxX2tkGoXuc4PJZth","normal_prices":[75,22,16,19,18],"normal_volume":[696,206,545,105,83]},"899":{"index":899,"max":0.6,"min":0.14,"rarity":5,"name":"Bloodshot","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-HB2Sbzetkj-1gSCGn201wsjnUm9qrI3OXaAQnDsZwTbIDtxnpl9W0P7i35FfW3toTzC6q2ixXrnE8w4eIHZQ","stattrak":true,"normal_prices":[0,13116,1756,1655,1801],"normal_volume":[0,41,332,21,27],"stattrak_prices":[0,40546,3425,3571,3644],"stattrak_volume":[0,10,132,5,18]},"935":{"index":935,"max":0.48,"min":0,"rarity":1,"name":"Prey","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_820baZ_IfOSA1iCxOpJvOhuRz39zBwmt2mAyI6rInrGaVd1X5N0Re8OshO5mtbvMr7q5wGIg95BmSX5ijQJsHiun1hzCg","souvenir":true,"normal_prices":[120,54,29,46,48],"normal_volume":[423,353,324,170,88]},"956":{"index":956,"max":0.72,"min":0,"rarity":4,"name":"Fever Dream","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-VC3GV09FyouRoQha_nBovp3PTmYmqJHmeb1N1CpJyFOZftkO8x9ezNOOztg2MjYwRyyWsjn4d7n1q_a9cBq7gpQcW","stattrak":true,"normal_prices":[434,178,79,138,78],"normal_volume":[483,372,593,99,118],"stattrak_prices":[875,456,219,412,204],"stattrak_volume":[96,131,266,26,46]},"96":{"index":96,"max":0.8,"min":0.06,"rarity":1,"name":"Blue Spruce","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M2jZ7d-H_yaCW-Ej7sl6OVsHXHizUQksGyDyNn7dH-WZgEgXJshFOdZskO6xoC1Y-LjtVDAy9US2YFh0PQ","souvenir":true,"normal_prices":[116,4,1,1,1],"normal_volume":[306,1124,807,250,234]},"967":{"index":967,"max":1,"min":0,"rarity":3,"name":"Mainframe 001","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-eD26ex_x3veRWQyC0nQlptzjSntqgJS6Wbg5xDZVwTbUN5EO5ldWxYem04waP2IsUyX_5in4c6zErvbh54g-58w","stattrak":true,"normal_prices":[84,15,6,5,5],"normal_volume":[463,885,755,179,131],"stattrak_prices":[128,20,9,7,8],"stattrak_volume":[256,77,853,317,375]},"989":{"index":989,"max":1,"min":0,"rarity":4,"name":"Parallax","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-QBnWfzO9iueJWQyC0nQlp5G6AnNuhJXmeOAd2CsMjQOUMuxC-moHgNOzh5VPXjogRmyn_iSNI5zErvbhpsYYNZg","stattrak":true,"normal_prices":[2108,1256,371,380,355],"normal_volume":[190,125,142,43,24],"stattrak_prices":[2049,803,396,358,389],"stattrak_volume":[76,62,40,26,41]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M29aappH_yaCW-Ej7wvsuJrHivilER-6j-EwtipIC-fald1DMcmEOYI4EW-lNOxY-u251bAy9US9tunUnw","normal_prices":[17849,1427,561,580,519],"normal_volume":[9,27,35,11,25]},"996":{"index":996,"max":0.65,"min":0,"rarity":3,"name":"Threat Detected","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a4s2nZrBoLPyaCWKewutJv_NoQS62qhEutDWR1ImuJy_BagUgDMR1ROVbthK6xofvNrnk5lHditpByCz3iC9M7Cdv4ekcEf1ytraGvsY","normal_prices":[4426,1968,1855,1740,1799],"normal_volume":[106,64,50,11,28]}}},"4725":{"name":"Broken Fang Gloves","sticker_amount":0,"type":"Gloves","paints":{"10085":{"index":10085,"max":0.8,"min":0.06,"rarity":6,"name":"Jade","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YvjiRm4PwIhTALFN1VP0sHLBS9g65w9exM-Pl5gaKidkRziX22yNIv306571QA6pwrKGDiluTZLxs5ZdXOr_5GlzOqAIa","normal_prices":[54004,13823,8706,9486,8850],"normal_volume":[20,142,315,57,67]},"10086":{"index":10086,"max":0.8,"min":0.06,"rarity":6,"name":"Yellow-banded","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YozKMiYD3Hi3VMVFPWM4hFrxl-0XkzougWLa7sF2alYpAyX__iClA5ntstuoEUqUirKeG2w3IYrZo4JRSLa2vRRvdWhwJsa98BNe077TKBCc","normal_prices":[30729,8882,5647,5494,5107],"normal_volume":[24,111,342,33,51]},"10087":{"index":10087,"max":0.8,"min":0.06,"rarity":6,"name":"Needle Point","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YtTGKiI71HifOOV5kFJQlQbUL4RHukofjY-227wDaidpHnCqs3H5K6So95ekLVKck__bW3Q_fcepqSI673wM","normal_prices":[23997,7184,5020,5389,4929],"normal_volume":[25,112,206,24,27]},"10088":{"index":10088,"max":0.8,"min":0.06,"rarity":6,"name":"Unhinged","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YoDOEkYrqKiLJAVR8W8ErKrtT5Uj8jNfuN-2wtgeNioNDxS7_jS4av31j5L4CVqV0rvLTigzCNeE5tZkCJqm5DUPZGadTirc","normal_prices":[29757,9386,6300,5821,5970],"normal_volume":[24,139,381,27,64]}}},"500":{"name":"Bayonet","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKni_DtU4fe6Jv07IfTDDT_JkL4htLI7HCvmwE9z42_Vzov4ci2Wa1IgWMN3R7IMuxCm0oqwYUAZNBA","stattrak":true,"normal_prices":[22752,22752,22752,22752,22752],"normal_volume":[139,139,139,139,139],"stattrak_prices":[28576,28576,28576,28576,28576],"stattrak_volume":[40,40,40,40,40]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V7NoIuOsAm6Xyfo4tLBsGXi3kEQhtWjVntyvdniSOwEiDMZ2QOFfsUSxx9axZOvm5Q2IjZUFk3uvkAKPDA","stattrak":true,"normal_prices":[186965,32048,19108,19894,19726],"normal_volume":[9,82,110,14,32],"stattrak_prices":[0,30736,25564,30748,28000],"stattrak_volume":[0,8,21,3,2]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OG-V7BsMPWsG3WSwOBJvOhuRz39xUol5GiDwomvc3mSPAMjW5t4R-cNtka7lNzgN7-z5Vbc2o5Eni_2jzQJsHj-7ZpB7A","stattrak":true,"normal_prices":[50535,15932,12915,13204,12842],"normal_volume":[2,23,67,12,23],"stattrak_prices":[80664,22435,16205,15945,18619],"stattrak_volume":[3,2,12,1,3]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OG-V6BsMOCfC1icyOl-pK86HS_gwEx3sT_Ryon7c3ySO1UkCpt3Q7EL4BGxwd3lNeq24QTYiI1H02yg2fqRNo8T","stattrak":true,"normal_prices":[24291,15418,12841,12911,12477],"normal_volume":[1,31,58,16,20],"stattrak_prices":[0,21128,15745,15779,14543],"stattrak_volume":[0,6,10,2,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POvV6JsJPWsAm6Xyfo45-BrHniwzUh24jjVm4qgInnCOA4mDscmEeVcsBXtkN22P-yx5waNg5UFk3tAoG85FQ","stattrak":true,"normal_prices":[33978,45587,0,0,0],"normal_volume":[298,6,0,0,0],"stattrak_prices":[47870,73822,0,0,0],"stattrak_volume":[43,1,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OGhV6pkJ_iHMWuZxuZi_rQ4Snzhxkkj4m3Tm4uqcS2fagNxDZJ0QOMNuha6kIfhYumx4gDeidlbjXKpXW1AuvM","stattrak":true,"normal_prices":[91446,19060,13293,13664,13413],"normal_volume":[5,41,61,16,33],"stattrak_prices":[0,27060,16760,17250,18834],"stattrak_volume":[0,4,10,1,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POgV7BkJ_WBMWiCwOBxtd5lRi67gVMhsGrTntn4ci-ROAYlXMBwE7YL5BaxxIHjY-vq7w3X398RxS78iylK8G81tBow9RWL","stattrak":true,"normal_prices":[28803,33799,0,0,0],"normal_volume":[264,8,0,0,0],"stattrak_prices":[34806,51091,0,0,0],"stattrak_volume":[46,1,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6BsLfGADXKD_uJ_t-l9ASu2zE904DnQyY34JSrGPQAmDsdxQ7MKsRK7k9CxNLnnswDY2tpNmCzgznQe52NAd0k","stattrak":true,"normal_prices":[19243,17231,16338,18103,19387],"normal_volume":[97,85,96,6,9],"stattrak_prices":[26916,19538,21062,30000,51497],"stattrak_volume":[9,4,12,2,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6lsMvKfC1iWwOpzj-1gSCGn2xhysWrTn42rdH2SawQnDccjE-ELsxa-mtTjMejr7wXZgoxFn3n2hnhXrnE8oMvxYMA","stattrak":true,"normal_prices":[32842,49041,0,0,0],"normal_volume":[520,18,0,0,0],"stattrak_prices":[41481,64500,0,0,0],"stattrak_volume":[62,1,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V7d5JfWfMWyeyOhzj-xsSyCmmFN0tWzXntuhJHyROw8jWMAhQeFf4ELrlYC1Me_r4QCN3d1HyX38hn8b8G81tKs8v05y","stattrak":true,"normal_prices":[0,0,0,17175,12380],"normal_volume":[0,0,0,22,193],"stattrak_prices":[0,0,0,22896,14415],"stattrak_volume":[0,0,0,2,30]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV7Z4IumsA2aCw-JzuftsSxa_nBovp3PWnomsdn2QPVN0D5UiEOUP50LtltTvY-Ll4g3YjItFmSv-2i9A6X4-_a9cBu2YVmHc","stattrak":true,"normal_prices":[196040,204751,0,0,0],"normal_volume":[47,2,0,0,0],"stattrak_prices":[236029,200000,0,0,0],"stattrak_volume":[7,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV7dsMOCbB3WV_uN3ouNlSiCpkBkYvzSCkpu3d3_FaFUnXpRwEO4O50G5xoW1Y7zn5wLe3oxBxHn6jiwf7XposO8LBb1lpPPeBvHrwA","stattrak":true,"normal_prices":[130873,155950,0,0,0],"normal_volume":[39,2,0,0,0],"stattrak_prices":[128541,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6ZhIfOYHmKR0-JJveB7TSW2nAcitwKJk4jxNWWVZ1AmDJIlQuZcu0btx9e0Y-205gOL3dhGzS333CpBvHxi6ucEBfcg5OSJ2MqXuBCE","stattrak":true,"normal_prices":[196642,0,0,0,0],"normal_volume":[14,0,0,0,0],"stattrak_prices":[194699,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q4cCW6khUz_TvWmIygcnnGaVIlC5N5QOINt0S8lYDkMOu2sgTWgoxExCmqi3hN7i11o7FV2n5aQD4","stattrak":true,"normal_prices":[40167,48689,0,0,0],"normal_volume":[220,4,0,0,0],"stattrak_prices":[44736,78900,0,0,0],"stattrak_volume":[13,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q7cCW6khUz_TjRnNesInvCZ1chXsZ0FLZfsEKxltOyZOzitQLdj40WnCSq3SpO5yt1o7FVDNJZV5E","stattrak":true,"normal_prices":[48468,50561,0,0,0],"normal_volume":[260,8,0,0,0],"stattrak_prices":[51825,71800,0,0,0],"stattrak_volume":[14,5,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6ZhNfWXMWuZxuZi_rgwTH21kxt24TvXwo6vdXmfbgdyDpV5RORYuxS5m4KzY7605FPejohbjXKpq_wJOWQ","stattrak":true,"normal_prices":[41871,24663,21190,21644,19590],"normal_volume":[11,38,56,30,32],"stattrak_prices":[85000,29900,26679,24821,28098],"stattrak_volume":[1,3,9,6,4]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q6cCW6khUz_T_TydyheXmVZwYoXpR5R-YIsRe6lIazP-7h4Qzbj4hEzSyq3HgY7ix1o7FVS1Hc8lA","stattrak":true,"normal_prices":[39061,41762,0,0,0],"normal_volume":[220,6,0,0,0],"stattrak_prices":[43626,73688,0,0,0],"stattrak_volume":[12,2,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q9cCW6khUz_WvQmNaqcHvDPVUpC8B5E7ICtkW-wYK0NO204FbW2t1NxC_72y4d53l1o7FVWhjV62M","stattrak":true,"normal_prices":[41006,42359,0,0,0],"normal_volume":[282,8,0,0,0],"stattrak_prices":[46945,150000,0,0,0],"stattrak_volume":[13,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6JiMvOWClicyOl-pK88SSq1xEV35muBm9qvcSrDbgZzDZVwROAM5EOwldflZbu27wWN2IhM02yg2UseboeH","stattrak":true,"normal_prices":[25919,17251,16784,16761,17084],"normal_volume":[7,45,32,17,11],"stattrak_prices":[0,23016,17926,18133,21753],"stattrak_volume":[0,3,4,3,6]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6tkLPWXMWuZxuZi_uRrSXDlzUtw4WTRwtj4eX6XPAd0XsEiROcNthm-w4HhP-Pq7waKiItbjXKppDMdu0I","stattrak":true,"normal_prices":[51968,28952,23381,22834,23662],"normal_volume":[34,92,127,57,49],"stattrak_prices":[82423,40454,33386,32479,33589],"stattrak_volume":[3,5,13,4,3]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V6BpMPGHMWuZxuZi_rZrTSu3kxt_t2vSnN-rcn-SOA51WJN3Q7YMuxa9kdHlM77q4wKI2o5bjXKpkgWK6yM","stattrak":true,"normal_prices":[32466,14108,12161,12102,12033],"normal_volume":[5,33,55,12,17],"stattrak_prices":[156647,18020,15477,15999,15000],"stattrak_volume":[1,10,12,2,1]},"558":{"index":558,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PG7V6ZsOf-dC3OvzeFktd5lRi67gVMj5GnXzt__JH-SawdyDJF1ROcCu0K5xNOxZeqx5AOI2oNGnnn23ylJ8G81tNZRAs3w","stattrak":true,"normal_prices":[43354,30242,22439,21904,20980],"normal_volume":[73,141,241,17,32],"stattrak_prices":[58986,40861,26669,28750,34282],"stattrak_volume":[6,10,26,4,4]},"563":{"index":563,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PG7V6ZsOf-dC3Ov0vp5vuR-Tjq7qhEutDWR1Nr6IHuXOgMkWcQiQ7YK5hG7wYfgYuOx5gSN2YNCyHn-2Cof5i5isL0cEf1yJefVwLI","stattrak":true,"normal_prices":[25637,18189,15555,14892,14893],"normal_volume":[15,77,125,61,65],"stattrak_prices":[53152,22644,16548,19237,17500],"stattrak_volume":[1,16,4,8,6]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6FgJeKSAmOvzO9ksu1sRjO2kSIrujqNjsGsJCnFaVUpDpt4EeQLtxjrl9PhMujjtAXf3YNFxSuoii1K7ihi5LwGT-N7rXo8KYhp","stattrak":true,"normal_prices":[178556,248067,0,0,0],"normal_volume":[42,2,0,0,0],"stattrak_prices":[299500,975000,0,0,0],"stattrak_volume":[1,1,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhh2jDGMnYftb3KfOlVxDpt5RbRf5ES8kdfhZenq7lPc3tgQySj5hyNL53k9troLUvI7uvqAwkE80cI","stattrak":true,"normal_prices":[51319,58923,0,0,0],"normal_volume":[95,3,0,0,0],"stattrak_prices":[60522,98220,0,0,0],"stattrak_volume":[6,2,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhh1jDGMnYftby7FbARxDZUkF7NfsUK5lYbmZO3ktAWKj40Qznn_intPvX1i5e4DVfI7uvqAz_bVj6c","stattrak":true,"normal_prices":[61354,75736,0,0,0],"normal_volume":[118,3,0,0,0],"stattrak_prices":[69343,0,0,0,0],"stattrak_volume":[10,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhh0jDGMnYftb3ifPQd2ApZ3Redb5xG-mtzkNuPr5ADXg4tGm33_23hLvCZrt-9XV_Y7uvqA1Mz9WrE","stattrak":true,"normal_prices":[49629,58388,0,0,0],"normal_volume":[89,5,0,0,0],"stattrak_prices":[52803,74513,0,0,0],"stattrak_volume":[7,2,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhhzjDGMnYftb3_CO1ciCJYhEOID4UW_kNayPuPktVbZg9pBmC_8jC5PvStp5L1QWPY7uvqA1BNTDgI","stattrak":true,"normal_prices":[48797,54237,0,0,0],"normal_volume":[86,2,0,0,0],"stattrak_prices":[57506,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"573":{"index":573,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PW9V6ZsOf-dC3OvwPtiv_V7QCe6liIrujqNjsGodirBZlckD5B1FLMDtka7m9DuZL7i4ADf39lNxSqqjXgc5ihstrkAT-N7rfe3-Xhk","stattrak":true,"normal_prices":[58579,30190,25235,26344,25463],"normal_volume":[34,107,201,17,42],"stattrak_prices":[64000,41340,27389,26255,29764],"stattrak_volume":[1,17,25,2,2]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V6tuJfGdMWyeyOhzj-1gSCGn20hz5DuAyIquJXmWaAMoW5QmE7YI4UG5xNOxN-3m4AHb3tlDmyiojHlXrnE80X-NDyA","stattrak":true,"normal_prices":[19804,16392,13869,16122,20427],"normal_volume":[92,113,122,15,9],"stattrak_prices":[21954,20654,15503,18839,31860],"stattrak_volume":[20,20,35,4,2]},"580":{"index":580,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6lsMvuWCliF0dF6ueZhW2e1zUh36zuEnteqeSqTOlUnXMYhFOcDuxfpkIblM-zj4gSLi45EniSqkGoXuTHKXCgo","stattrak":true,"normal_prices":[19876,16959,15934,19504,17475],"normal_volume":[103,106,120,14,8],"stattrak_prices":[27308,21511,18012,19797,26745],"stattrak_volume":[15,16,16,6,1]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV75oIuKSMWuZxuZi_uU7HyjhwUh-tm_Xydmuc3nGbwN2ApAmQeNfsUXtktOzYuLm5FPajN9bjXKpLQ8HVlE","stattrak":true,"normal_prices":[38173,30434,27996,0,0],"normal_volume":[116,91,16,0,0],"stattrak_prices":[49127,44399,40269,0,0],"stattrak_volume":[6,14,1,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OG-V6loM_isGmae_uJ_t-l9AXnqkUwj62-DzIqsIC6WbVciA8QiQbIIsBC-xNG2Yuy0tQ2Pio9HxC7gznQewV0_CpM","stattrak":true,"normal_prices":[39454,13219,12059,12388,12167],"normal_volume":[4,34,50,20,22],"stattrak_prices":[79999,14836,14363,13789,13152],"stattrak_volume":[1,10,10,3,2]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V6JiMvWAGliSzvxzse1WQyC0nQlp5m2BmdireXiQaAMnW5F1EOBZskO-x9ayZOKx5FeNiYgRyC2tii1LvTErvbgrMI0f4g","stattrak":true,"normal_prices":[31100,14604,12092,12831,12483],"normal_volume":[1,35,57,14,27],"stattrak_prices":[209012,17919,16370,15609,15713],"stattrak_volume":[1,6,9,2,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OGhV7R4MuCfC1icyOl-pK9rGy-1kEtx5miHmN79c3qSOgAkX5dzEbZbsBXtwIe1YeLg5QPZ2ogR02yg2Ups3adF","stattrak":true,"normal_prices":[49169,20094,13133,13399,13344],"normal_volume":[8,58,178,23,44],"stattrak_prices":[988100,28387,16885,17000,19636],"stattrak_volume":[1,8,16,5,9]}}},"5027":{"name":"Bloodhound Gloves","sticker_amount":0,"type":"Gloves","paints":{"10006":{"index":10006,"max":0.8,"min":0.06,"rarity":6,"name":"Charred","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSIlvzyGkbDqKCfRO0RPVssnHaMUsES-k9HjNrixsgbd3YIRni7-inlO5i5t6-pRAqIs_aOFjg_JZbU5sI5Deqh-Veq-pA","normal_prices":[61833,32049,23697,14955,14434],"normal_volume":[6,46,68,15,34]},"10007":{"index":10007,"max":0.8,"min":0.06,"rarity":6,"name":"Snakebite","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSI0vTyOn5zyKCX4PERxSdEfGb5d6lSmxIfuMezmtFfb39lAxCivh3hI6Chi4eYGWfAt8vXTiw_EM7Q_t5NWIeHnE0qrynbE1A","normal_prices":[54365,24546,19124,10610,9490],"normal_volume":[6,34,61,20,25]},"10008":{"index":10008,"max":0.8,"min":0.06,"rarity":6,"name":"Bronzed","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSIqtimEloPwIhTLN1F4Tox2Q7UJ4RLrltDkMuyz4ASIg4kUxCr5jy8fvC46sLtWWaojqKze2giTL_Rjtvi23tdj","normal_prices":[65702,22512,18408,10373,8164],"normal_volume":[2,44,57,16,15]},"10039":{"index":10039,"max":0.8,"min":0.06,"rarity":6,"name":"Guerrilla","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSIgpjiXiIb1LSr4Ml93UtZuR7QKthCwl4fkNuqw4lPXgosRzi78inwdvyk45e5UUqQkq_aDi1rEZap9v8fy7GQdug","normal_prices":[51285,23491,21130,10143,8828],"normal_volume":[10,39,58,11,19]}}},"503":{"name":"Classic Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2te7cjd6HHXmHBxep157VtTi_rzUR-5WiHnt39c3_EZg4pW5UjQOZbsBCxw8qnab32FBG7RA","stattrak":true,"normal_prices":[18371,18371,18371,18371,18371],"normal_volume":[114,114,114,114,114],"stattrak_prices":[27732,27732,27732,27732,27732],"stattrak_volume":[16,16,16,16,16]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRYL1SN_WRHVicyOl-pK8-HnHlwUkh62SGyd_6IHrCP1IlXJt1FuQPshXuk4fiMO2w5VGI34IU02yg2SQnu4I0","stattrak":true,"normal_prices":[118227,17834,14099,18992,14242],"normal_volume":[3,90,274,51,53],"stattrak_prices":[1421534,24361,17976,38494,22146],"stattrak_volume":[2,8,44,6,9]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSNPGDC1iF0-x3vt5lRi67gVNxsWWAytqqIHLBP1MlXMckQrMI50O4wIexM7u25gLcjN8UmCX22Cgd8G81tNnT-P6o","stattrak":true,"normal_prices":[35423,10067,7771,8435,7642],"normal_volume":[3,32,74,22,21],"stattrak_prices":[0,12187,10631,10335,8878],"stattrak_volume":[0,8,15,4,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSJPGDHmuV_uJ_t-l9AXrhxR4h5mvdzoyhJS2VbAQoC5ZwTOYL5xmxxtXvZOmxtFTZg45FmC7gznQeWPC0gg0","stattrak":true,"normal_prices":[30980,9412,7836,8792,7523],"normal_volume":[4,39,88,27,29],"stattrak_prices":[71759,12763,10593,9808,10873],"stattrak_volume":[1,10,17,2,9]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRaaVSJvGXC1icyOl-pK9tHn-yxhkltmTVnon4IHqUbgInWcN1ELIK5hS9xIbkZumx4wONjd9H02yg2Yau6XG6","stattrak":true,"normal_prices":[26809,31540,0,0,0],"normal_volume":[406,25,0,0,0],"stattrak_prices":[31643,32304,0,0,0],"stattrak_volume":[58,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRabVSIvyGC2OvzedxuPUnGiuyw0x34jyDz9-tcX-XblVxCsElEeQLtxa_ltLnN-LhtVfd2d9MyDK-0H3ReQavbA","stattrak":true,"normal_prices":[22944,12766,11490,10840,10875],"normal_volume":[14,39,65,46,44],"stattrak_prices":[36297,20400,15118,13474,12700],"stattrak_volume":[3,7,14,2,2]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRabVSJv-BDWKU_uJ_t-l9AXziwkV362nUzNj7dS2Sawd1A5p3TLQC5Bfrlt3nP-rh4wWPjYwXmy_gznQeaAH0jRU","stattrak":true,"normal_prices":[13496,10043,9381,8905,8797],"normal_volume":[14,51,52,25,23],"stattrak_prices":[26576,12963,11679,14343,11200],"stattrak_volume":[1,9,4,4,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRabVSL_mfC2OvzedxuPUnSSjlxxsi627cyNevdnOWbAFyAsEmRbZesRSxlNXlNOm051aK34JAmDK-0H1p4FgDwA","stattrak":true,"normal_prices":[30536,16048,12313,12113,12257],"normal_volume":[41,136,214,110,69],"stattrak_prices":[110000,19046,17734,21394,24497],"stattrak_volume":[4,15,15,20,4]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRYL1SJPSDD3OvzedxuPUnHyjhwx505T7Vwoyhc37BPQ8hXpd4RLQItBTukdPlZrmxtgaP3oNExDK-0H1P5hZEjg","stattrak":true,"normal_prices":[27316,8349,6814,7004,6791],"normal_volume":[2,31,54,21,18],"stattrak_prices":[79184,9381,8899,10537,9113],"stattrak_volume":[1,11,15,2,6]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRaalSOvWRHGavzedxuPUnGiy1xxkk6z_Tn4mucH2UOAUmCZZ1RLQJuhbrx9O0M-ji71OK34oTzDK-0H1Px6MwvA","stattrak":true,"normal_prices":[18704,17266,17217,0,0],"normal_volume":[90,117,60,0,0],"stattrak_prices":[28672,21806,21875,0,0],"stattrak_volume":[13,17,7,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSLfWABliEwOBJvOhuRz39kUx0tmWHno6geHLEbld1W5skFOII4RO6mtPiPr_i4wbfjI9Dyyn53DQJsHgORFidlg","stattrak":true,"normal_prices":[19555,8368,6601,7349,6895],"normal_volume":[3,23,81,24,28],"stattrak_prices":[62000,8709,7463,9149,8120],"stattrak_volume":[1,10,25,4,6]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSLvmUBnOD1fx_oORWQyC0nQlp52TVyIv7Ii_Cb1ckCsR0EOVf5xm7xIWxNr6x5QWL2dpDnniojntKuDErvbhtcklsTw","stattrak":true,"normal_prices":[39383,9761,9842,10308,9626],"normal_volume":[2,35,125,37,34],"stattrak_prices":[0,10634,11859,12564,12747],"stattrak_volume":[0,17,14,9,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRYL1SJv-BC3SE_ux5ouRoQxa_nBovp3OHytj4IH7FOldyXMAmFuRftxG6xIWxZOux7lOLjoJBzCj92i5N6H5s_a9cBvSJSM6F","stattrak":true,"normal_prices":[23608,8323,6826,6599,7225],"normal_volume":[3,29,55,15,20],"stattrak_prices":[67533,10118,9768,9589,9267],"stattrak_volume":[1,10,12,2,7]}}},"5030":{"name":"Sport Gloves","sticker_amount":0,"type":"Gloves","paints":{"10018":{"index":10018,"max":0.8,"min":0.06,"rarity":6,"name":"Superconductor","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_yaCW-E_ux6peRWQyC0nQlp4jjRyt-vJX6QblMgApt0R-5c5hLsktO2Nu_h4QaLg4MXyCmr2ClP7jErvbiwB_ADaw","normal_prices":[1030247,297923,204152,139245,84382],"normal_volume":[13,154,281,57,136]},"10019":{"index":10019,"max":0.8,"min":0.06,"rarity":6,"name":"Arid","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_2aAm6EwPxvj-1gSCGn20h3sTvVyoqheX2TbA9zDcFwQOQLtBnpw4bvM-rm4ACMiY5Cnn_63CNXrnE8hMDc76M","normal_prices":[455559,156336,120423,49165,30565],"normal_volume":[12,61,86,45,74]},"10037":{"index":10037,"max":0.8,"min":0.06,"rarity":6,"name":"Pandora's Box","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-CGHHecxNF6ueZhW2exk01w4j7cmYn4eHPCbAMhApdwTOIN5BPsx9yyYu605FTeid0Uy3j3kGoXueKyz5wo","normal_prices":[3092441,543042,356227,290622,190454],"normal_volume":[3,229,468,73,111]},"10038":{"index":10038,"max":0.8,"min":0.06,"rarity":6,"name":"Hedge Maze","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_eBC2Ke_uJ_t-l9AX21whwi4Gndnov9JH_FblMlCJYjRbFZtkWww4HnNbjr7wWN39gUmH7gznQeohQBtY8","normal_prices":[3164303,704302,457460,287756,214749],"normal_volume":[16,175,455,66,100]},"10045":{"index":10045,"max":0.8,"min":0.06,"rarity":6,"name":"Amphibious","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-CcB3Sfz9Fwou5ucCu_gBgYpDWMjorGLSLANkI-W5R4E7JZtxbskNWxZeLi4QPejdgTmSn62iwbvyw957kDAqog_fXWjBaBb-Pahe96zA","normal_prices":[229068,65522,31609,25933,22785],"normal_volume":[59,666,1583,148,272]},"10046":{"index":10046,"max":0.8,"min":0.06,"rarity":6,"name":"Bronze Morph","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-CcB3Sfz9Fwou5ucDu2kSIgoTiAlLD1KCzPKhghDJBzTLMCukW6kNblNe-2tlGKj45GyCWrii8f73k95e4HA_AjrvbSkUifZkDjXxpJ","normal_prices":[47842,14722,10695,10432,9982],"normal_volume":[47,220,586,66,90]},"10047":{"index":10047,"max":0.8,"min":0.06,"rarity":6,"name":"Omega","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_KfD2Sb_vlzsuNgQS6MjBgrvzKSpYPwJiPTcFAkC5UiRrRZ5BO9ktDnM-q37wCMjN5GxCqvhngb6Chj6u0CVvAj-6fJz1aW3nluLgw","normal_prices":[147153,46479,20176,17154,13900],"normal_volume":[43,420,1360,134,225]},"10048":{"index":10048,"max":0.8,"min":0.06,"rarity":6,"name":"Vice","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_KfG2Kv0ed4u95lRi67gVNx4T-Bw434IHyVb1QlAsd1FOUDthG4xNznMu3m4QXXg90Wzn_33C1I8G81tLaDi_rK","normal_prices":[678985,133681,44791,36514,27146],"normal_volume":[65,1306,2384,188,324]},"10073":{"index":10073,"max":0.8,"min":0.06,"rarity":6,"name":"Slingshot","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-OfB2mX0uZ5pN5lRi67gVN24DzSw479dnuTbAckWcElRbJctkW9ktPlNu2w51Dc2oNAmCWo2ioa8G81tMaI-Tzs","normal_prices":[302248,90365,35761,26645,18890],"normal_volume":[48,380,1270,140,241]},"10074":{"index":10074,"max":0.8,"min":0.06,"rarity":6,"name":"Big Game","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_iGAHOV09F6ueZhW2fil0tx4T7RnouodXjCaAMjWJshQOAOsEG8l9bgMrvr5QfXjotHyyWtkGoXucEGPk8i","normal_prices":[83275,21514,14255,13242,12193],"normal_volume":[32,274,1070,123,181]},"10075":{"index":10075,"max":0.8,"min":0.06,"rarity":6,"name":"Scarlet Shamagh","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_icG2mU0vp5v_VhcDu2kSIrujqNjsGqIC-SalIhW8B2Q7MNs0G9x4W0NeKwtALa3ohEyi2oiCpI5yZo4OcFT-N7rZxgqiT0","normal_prices":[91554,33946,19031,17204,14942],"normal_volume":[20,263,738,90,172]},"10076":{"index":10076,"max":0.8,"min":0.06,"rarity":6,"name":"Nocts","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_qSCXKR09F6ueZhW2fqlBly4GWGm9ivcXjFPFImWJQhEeRc5EXqkNGyMOzm51fY3dlAxCr9kGoXuaq1SOh9","normal_prices":[253368,83031,51884,48002,39943],"normal_volume":[40,518,1681,190,302]},"1405":{"index":1405,"max":0.8,"min":0.06,"rarity":6,"name":"Violet Beadwork","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOvw-t3tPZmXSKMkRQmvjKLnpzGMT7VLlp1Zc4pEr9OrBWxxofvNOLitQKPid5Hznr-3C9JvHtu4uxTVKMlqaPQilrAM7Fr6cQdZKHwBJ-GjQo","normal_prices":[218689,75860,28374,23890,17891],"normal_volume":[9,67,221,33,43]},"1406":{"index":1406,"max":0.8,"min":0.06,"rarity":6,"name":"Frosty","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOvwu97v95-RienkA8YvzSCkpu3dXqfbA5zW5N0F-dcu0K8ldDnMuPk4wHdjN9EniWthn4av31v4eoHWL1lpPOyBkNpPQ","normal_prices":[151671,45005,21974,19114,16218],"normal_volume":[7,68,203,34,47]},"1407":{"index":1407,"max":0.8,"min":0.06,"rarity":6,"name":"Blaze","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOvx-J3veR6cCahlBMgtgKJk4jxNWWXblAgDJUiTeJZtBHpktDuY7m2sQPf2YNAxXn5iysf6Cc_67oGA6Ah5OSJ2AmILwG6","normal_prices":[131847,35192,16305,15345,13356],"normal_volume":[11,58,151,28,34]},"1408":{"index":1408,"max":0.8,"min":0.06,"rarity":6,"name":"Creme Pinstripe","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv0ed4o_V7Rjm2qh8rsj6OpYPwJiPTcAdzW5V2E-4IsBnswNHuZbznsQfXg4NCny_4hnhOvS04suoDVvZx86zJz1aWnYsnB-o","normal_prices":[102993,26397,12287,10985,10460],"normal_volume":[6,52,162,27,37]},"1409":{"index":1409,"max":0.8,"min":0.06,"rarity":6,"name":"Red Racer","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv0-91tfNWXSy3qhEutDWR1I77dC7GbQ4kWZNwEOJY5xLtwYHuN7yz7lPe2YgTniz2jn5Nv3lj5O0cEf1yHxfMKhM","normal_prices":[167700,42930,18690,15928,13536],"normal_volume":[5,46,171,36,40]},"1410":{"index":1410,"max":0.8,"min":0.06,"rarity":6,"name":"Ultra Violent","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv1et1uN5uXSi3nBgppwKHiIb-KT_4Ml93UtZuTOcLtUW8lNDvZL634FfYi4pCyiX5iXka6Htr4uhQVqt3_vfRiAzDZap9v8fuC2Vr0A","normal_prices":[852571,202185,97882,78792,57708],"normal_volume":[14,212,507,80,92]},"1417":{"index":1417,"max":0.8,"min":0.06,"rarity":6,"name":"Occult","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv1-t6puR9cDu2kSIrujqNjsGody2XPQVzWZslEe5euxS_lYC0Yu7l4wLfj99MmCv4jXka6Slp6-4ET-N7rUuG7GIq","normal_prices":[340833,116697,59080,52220,35477],"normal_volume":[8,132,339,45,59]}}},"5031":{"name":"Driver Gloves","sticker_amount":0,"type":"Gloves","paints":{"10013":{"index":10013,"max":0.8,"min":0.06,"rarity":6,"name":"Lunar Weave","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tvLPGQBVicyOl-pK8xTizrzER1t2rczNj9JSqRZg92CZZ2RrRetBi7kYDhZeLl7wDajo9C02yg2YX5gL0s","normal_prices":[156912,113248,90144,16977,11251],"normal_volume":[10,38,39,34,39]},"10015":{"index":10015,"max":0.8,"min":0.06,"rarity":6,"name":"Convoy","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tgKfyaGmaC2NF6ueZhW2e1wER0smuGyd__dn6VOwd1A5JwQOFY5hi8ktKzNryx5wyPiYwTxX74kGoXue1G57tl","normal_prices":[98429,65435,54864,9749,7949],"normal_volume":[2,27,32,25,19]},"10016":{"index":10016,"max":0.8,"min":0.06,"rarity":6,"name":"Crimson Weave","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t_JfSsAm6Xyfo4trVoSnGxlh9x5DmEzt6rJS2RagYiA5siQ-MLthW9xtDlM7uxtFCNgpUFk3thcTnRAg","normal_prices":[357465,185003,147145,32795,17796],"normal_volume":[8,44,40,31,65]},"10040":{"index":10040,"max":0.8,"min":0.06,"rarity":6,"name":"Diamondback","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-LvGYC3SbyOBJqeRlQyakqhEutDWR1N77ICqXZw4iApJ1ReRb5Bi-k4fjYb7mtgPdgooXyyusiS9A7Shv674cEf1yI93CpRI","normal_prices":[122510,69905,60708,16102,11884],"normal_volume":[7,36,47,34,25]},"10041":{"index":10041,"max":0.8,"min":0.06,"rarity":6,"name":"King Snake","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-LvGYC3SbyOBJp-lgWyyMmRQguynLz4r6Iy7EbFchApNyR-dbtEbuw4XkN7jq7gHdjtoQzi37hiwYvytvt_FCD_Ql24JgJg","normal_prices":[250821,43983,14459,13111,10873],"normal_volume":[66,1123,2209,139,207]},"10042":{"index":10042,"max":0.8,"min":0.06,"rarity":6,"name":"Imperial Plaid","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t9LPGaCliA1PxmvORWQyC0nQlp4W-Hw9-ocy2fbwB2X8YkFucCtRe4xNzhYrjl4Fff39lMyn78iiJLuzErvbgqDAMwGQ","normal_prices":[102828,32348,16879,15551,13455],"normal_volume":[33,321,1024,90,136]},"10043":{"index":10043,"max":0.8,"min":0.06,"rarity":6,"name":"Overtake","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-NPmHDW-VxdF0vOBqRBa8hxwptDi6lob-KT-JOwYkXppzQO4OsRbqltfiMOvm41TYi44XySqqj35OvS4_57oKA6cl_LqX0V9d-bhOMA","normal_prices":[37671,10501,5615,5318,5282],"normal_volume":[25,206,650,58,103]},"10044":{"index":10044,"max":0.8,"min":0.06,"rarity":6,"name":"Racing Green","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-NPmHDW-VxdFxouRsQRa0hxg-jDGMnYftb3mXblQnWJclRuNYtETux9DlYr-wtVaK2IsTmCT-jC4Y6ihjtr0FUaA7uvqAQikoKDk","normal_prices":[26155,6206,3669,3577,3675],"normal_volume":[28,156,451,23,65]},"10069":{"index":10069,"max":0.8,"min":0.06,"rarity":6,"name":"Rezan the Red","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t_JeqSAFicyOl-pK9sHnrhxx5wsm2Ezo39cXufbVdzD8ZzReILtRfqm9OyMbzjtlfdio5A02yg2fWAU4q4","normal_prices":[70456,15341,7231,8181,7128],"normal_volume":[25,199,533,57,68]},"10070":{"index":10070,"max":0.8,"min":0.06,"rarity":6,"name":"Snow Leopard","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tnIfeGD3Wv1uZ_pORWQyC0nQlp4TnUw9f6J3PCOw4oW8ZxRuEOshK8l9fgZbnqswHX3owXmSisjCIfuzErvbiEoDwfJQ","normal_prices":[208896,52337,26656,23844,20729],"normal_volume":[43,421,1228,123,158]},"10071":{"index":10071,"max":0.8,"min":0.06,"rarity":6,"name":"Queen Jaguar","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tnIfeGD3Wv2Ot6vO5-cCW6khUz_WSHm4qteC2XOg4jDcN0EOZbthDsxoDnN7m24laI3d8QnCv6hn5PvHx1o7FVsUpsiR4","normal_prices":[52880,11442,5450,5675,5693],"normal_volume":[24,230,575,49,75]},"10072":{"index":10072,"max":0.8,"min":0.06,"rarity":6,"name":"Black Tie","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-NPmHDW-VxdF0vOBqRBaknRQztgKJk4jxNWXBbwdxDcZwFrFY40XrktLgNr7q4AKM2owQmX6ojSpMuCo_tulQB6ss5OSJ2E_SKQx-","normal_prices":[128627,29284,12458,12031,11529],"normal_volume":[32,414,1137,89,134]},"1398":{"index":1398,"max":0.8,"min":0.06,"rarity":6,"name":"Wave Chaser","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wv0ud6u95tXSi0mhMYpDWMjorGLSLANkI-ApsmQrFbtkPux4bgMuvg7gzWjI0Xnyz-23lI6i5s4bpWUqMl-6PQ2xaBb-Mdlpgj5g","normal_prices":[218226,56352,18914,16907,16778],"normal_volume":[9,90,204,11,32]},"1399":{"index":1399,"max":0.8,"min":0.06,"rarity":6,"name":"Brocade Crane","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvw_x5s-BtShawhxwptgKXn4vGLSLANkI-XMN2Qu4OsEG6lYK2M-OwtgPf2IMRzXio3yMY7yhptbxRAKIkq_bVhhaBb-OYO4AFQA","normal_prices":[197709,49020,20559,18952,16565],"normal_volume":[3,45,149,18,30]},"1400":{"index":1400,"max":0.8,"min":0.06,"rarity":6,"name":"Brocade Flowers","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvw_x5s-BtSha1mRIwti-6iIr9HifOOV5kFJJ5TeMK5xTsltSyM-m07wLW2Y4Uy32ohiJKuy9r4L1UWKAj-qGF3gzfcepq2gO2jDs","normal_prices":[222059,53363,16630,16042,14715],"normal_volume":[8,70,146,33,26]},"1401":{"index":1401,"max":0.8,"min":0.06,"rarity":6,"name":"Dragon Fists","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvxfx3t-5ncDqwlBEijC-AnrD1KCzPKhgkCZdwTeIL4ES5wdXjPrm251Pdi98QzST3jy0d6nxp4e5QAKsk_q3RkUifZohUdPsK","normal_prices":[111414,27590,12902,11940,10611],"normal_volume":[6,53,196,28,37]},"1402":{"index":1402,"max":0.8,"min":0.06,"rarity":6,"name":"Garden","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3WvxON0ou5gSyyhkBkYtTGKjYrrMhTTO1d8Zc4pEr9OrES-w9exZuzrsgyLi4lEzij2in9KvHpj6u9XU6J2_aGDjwzCY709t8YdZKHwRXCqB8U","normal_prices":[216637,70269,27462,24338,17572],"normal_volume":[10,50,107,16,38]},"1404":{"index":1404,"max":0.8,"min":0.06,"rarity":6,"name":"Seigaiha","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wv0u13vO1mXxa-kAkmvzGMmbD7LT7CAVp5Xco0W-dZuhe6wNDuP-q05g2NiYlFmSn5iS1N7yxj4LxUWPJx-6yCiFqUNOIjoc5UtEcI9GU","normal_prices":[115958,20392,9986,10104,9032],"normal_volume":[7,55,130,29,29]},"1412":{"index":1412,"max":0.8,"min":0.06,"rarity":6,"name":"Plum Quill","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvzv1iouhqRxajgA83vzi6lob-KT-JawEjXMZyQuQMs0Xpl4fvMrvn4FOI2N5Dnn78jnxI5yZj5-tXWfEs8rqX0V_DSgKUxA","normal_prices":[121276,22204,12046,11890,10842],"normal_volume":[3,27,97,7,29]},"1439":{"index":1439,"max":0.8,"min":0.06,"rarity":6,"name":"Hand Sweaters","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3WvyuB_pN5oXS6qmRgYtC-An4HGLSLANkI-CZJzROEM4xa7lYbgM7i07lOP3okXmCn4iypM7idt4udXU6p0rqHS3haBb-PCGCVNWw","normal_prices":[213087,30835,13693,13361,12007],"normal_volume":[5,41,131,28,34]}}},"5032":{"name":"Hand Wraps","sticker_amount":0,"type":"Gloves","paints":{"10009":{"index":10009,"max":0.8,"min":0.06,"rarity":6,"name":"Leather","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhEutDWR1NiodnmUPFNxX5B3TOFcuhfqktPvYe_h4AHWjolNnHn3iC1Puiw-sL0cEf1y0Sy-Ca0","normal_prices":[117329,78224,55447,22422,20143],"normal_volume":[10,30,80,32,26]},"10010":{"index":10010,"max":0.8,"min":0.06,"rarity":6,"name":"Spruce DDPAT","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_u13ve5WSDu2jCIrujqNjsH_InuUaQQmDJd2Fu4NshO7kIGyYeu24Affg98UxCX_iXhJ5i465bwHT-N7rXbV3WG0","normal_prices":[103138,49404,40381,12537,11867],"normal_volume":[9,45,58,26,27]},"10021":{"index":10021,"max":0.8,"min":0.06,"rarity":6,"name":"Slaughter","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_vxztN56QyimkhUzti-6lob-KT-Jb1UjX5t0ROIN5xW9l9e2ZOmw5QWLi41Fmy6r3Sgb7C1o5etUBfcgqbqX0V-0bsdMFQ","normal_prices":[135878,70496,57609,26878,19408],"normal_volume":[12,49,88,33,34]},"10036":{"index":10036,"max":0.8,"min":0.06,"rarity":6,"name":"Badlands","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uh3svNgTBa8hxwptDi6mY70LhTLN1F4ToxyQuIK5EPqkobkZrjm5lGI2NoTni-vhnwd5iZp4-YHAqJxq6DRhlzIL_Rjthe3KNwq","normal_prices":[71563,56072,41069,13870,11423],"normal_volume":[11,34,54,20,38]},"10053":{"index":10053,"max":0.8,"min":0.06,"rarity":6,"name":"Cobalt Skulls","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD7LT7CAUV7T84sBohW60fg1srnZb6zsw2Ng41MmST43C1L7is9574CBKIh_q2Big_IMOdutcNRd_iuU13QD7PQAmaY","normal_prices":[132385,38220,20352,18631,17953],"normal_volume":[39,392,1077,114,158]},"10054":{"index":10054,"max":0.8,"min":0.06,"rarity":6,"name":"Overprint","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD-JCTKO0JiU8EfF7tP53_ky4O_c_Ti4wTe3t4Uy3j6jSxM5ic-4usBA6Mj-qTejAzJMbc14MRWd_v0SE-PRlxR734mHNkv","normal_prices":[51983,14950,10849,9489,8070],"normal_volume":[47,379,1275,120,129]},"10055":{"index":10055,"max":0.8,"min":0.06,"rarity":6,"name":"Duct Tape","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhkysCmRm5_8HifOOV5kFJF5R7IIskW_kIXnNriz7w3eg4hMzCX-2nxP6SZo4u0LBKAi-aXV2V7fcepqgxTHW6A","normal_prices":[203748,8389,4900,5090,5193],"normal_volume":[2,128,376,33,80]},"10056":{"index":10056,"max":0.8,"min":0.06,"rarity":6,"name":"Arboreal","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD-My7CMGlzW88vKrtT5Uj8jIblMbnksQfb2IlAzXqojCpP6ylp67kLAKBz_6aFjFnCN-I66ZQHdv-5DUPZjQpqjqQ","normal_prices":[21598,10132,4646,4567,4610],"normal_volume":[37,148,476,53,86]},"10081":{"index":10081,"max":0.8,"min":0.06,"rarity":6,"name":"Desert Shamagh","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uh3svNgTBa7mggpty6RlYDtKRTILFd-XccfGb5d6lSmwdS1Zrzr4Q3Ygo5Ayiur23lL5idr5eZQBapzqPDRignHY-U058QHLOHnE0oCUw1MCg","normal_prices":[43370,8669,4538,4586,4483],"normal_volume":[11,104,450,44,79]},"10082":{"index":10082,"max":0.8,"min":0.06,"rarity":6,"name":"Giraffe","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD-KDnGOFB1Zc4pEr9OrBm6w9bgM-Pi4wLe34tNnCT3jCxJ53s_6rsBUqQkq63V2wnBZOJo55YdZKHw2FL19Wg","normal_prices":[33058,10994,4562,4756,4620],"normal_volume":[21,133,381,54,53]},"10083":{"index":10083,"max":0.8,"min":0.06,"rarity":6,"name":"Constrictor","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqg4psjaAiYTwLxTILFd-XccfGb5d6lSmlYDiY-_r7gzc2IJGmX6t3CMb6iY5te0BBKt0-qDVhwyXYrU_6MQDIuHnE0r2o5Rb7g","normal_prices":[29350,11138,5257,4917,5029],"normal_volume":[18,104,431,62,90]},"10084":{"index":10084,"max":0.8,"min":0.06,"rarity":6,"name":"CAUTION!","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqh4mpimMlYHGLSLANkI-CcBxQeIMtEHsl4CyNOjm4QDa3dgTniWvjnhJ7Hk54bsEV_Ak-KWE3BaBb-Pt8HWajg","normal_prices":[58987,20849,12486,11718,11374],"normal_volume":[26,206,789,90,99]}}},"5033":{"name":"Moto Gloves","sticker_amount":0,"type":"Gloves","paints":{"10024":{"index":10024,"max":0.8,"min":0.06,"rarity":6,"name":"Eclipse","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJsuB6RiqMlxEmsDa6lob-KT-JaQMpDpFzFOdY4EO8lIDnMLjr5ALZjN1Dnyj7iyhAvXo55ucKWadx87qX0V_LSR8vSA","normal_prices":[101522,55423,47590,13124,10216],"normal_volume":[9,43,74,24,16]},"10026":{"index":10026,"max":0.8,"min":0.06,"rarity":6,"name":"Spearmint","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJvehnWxanhxQmvTqJn7D1KCzPKhgnW5UmRO4DsxXrlYbhPurmtAXai98UzS73in5I6S5p4OsAU_Zx-KHWkUifZsxBQgc2","normal_prices":[768473,326917,227327,99575,35748],"normal_volume":[22,136,226,62,129]},"10027":{"index":10027,"max":0.8,"min":0.06,"rarity":6,"name":"Boom!","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJve5nQBaxmhIqjDGMnYftb3ufaQNxA5MiEeVb5kW5ldPiZuPj5lOKjt9BxCutiSlO5ys5sL1UUPU7uvqAf72SBgc","normal_prices":[91667,72432,55231,20244,12099],"normal_volume":[10,65,82,25,23]},"10028":{"index":10028,"max":0.8,"min":0.06,"rarity":6,"name":"Cool Mint","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJpPNgTie0mRgYsTGQn7D1KCzPKhgiXMZwRuNe5xS5wYLvY-K3s1GN344Wz3ioiypK6X1p4e1WUKZ0q6WCkUifZln3nIr8","normal_prices":[309259,166397,146755,37667,16959],"normal_volume":[10,29,83,41,80]},"10049":{"index":10049,"max":0.8,"min":0.06,"rarity":6,"name":"POW!","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-lmTCaMlxIovgKJk4jxNWXBPAZ2CpYmTOAO4UWwltOxP-3qswPdgopMzXiviSwavytpsO4FUvEh5OSJ2LE4Jnt4","normal_prices":[59684,18264,10369,8237,6107],"normal_volume":[39,392,1151,66,155]},"10050":{"index":10050,"max":0.8,"min":0.06,"rarity":6,"name":"Turtle","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJsuB6RiqMkg8itjO6lZ34LyzCAVp5Xco0W7VftBjqxILkZbvi4FfYitpEynj6jSgc5i4_tegLV_F0q6SFhwDJMuUjoc5UdYAe6j0","normal_prices":[53901,13676,7210,7260,6569],"normal_volume":[21,218,636,64,85]},"10051":{"index":10051,"max":0.8,"min":0.06,"rarity":6,"name":"Transport","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJqeRlQyakqh4mvjK6lob-KT-JbwZzCsR0RrYK4ETrwIbkYe_l4gSM2YNEniv73XxKvyhj4u0DVKMi_rqX0V9cNOIfoA","normal_prices":[32034,7309,4168,4302,4190],"normal_volume":[19,146,591,63,58]},"10052":{"index":10052,"max":0.8,"min":0.06,"rarity":6,"name":"Polygon","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJpPNgSDu6kSIlvyiApYPwJiPTcA92A5QlFu4N4ES4ktblMrvg5lSN34hEmHitinhLvHo64uhUUvVwqPDJz1aWhdr_Brk","normal_prices":[58857,18823,11574,10232,9789],"normal_volume":[33,207,767,72,97]},"10077":{"index":10077,"max":0.8,"min":0.06,"rarity":6,"name":"Finish Line","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-lsTCK2hyIhvzyCpY31NC74OUR1X8wfGb5d6lSmkNW1Y-m0sgTciIxCz376i3lN63lu67wHV6Fx-qaCi1nAZbJr4MQBIeHnE0rhxc4-zg","normal_prices":[49772,17712,10768,9023,7962],"normal_volume":[24,204,649,70,66]},"10078":{"index":10078,"max":0.8,"min":0.06,"rarity":6,"name":"Smoke Out","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJo-xmRCyMmRQguynLztircXjCaAAkDZp0TO4OsRW8xtznP-7mswXYj4wTnyysiHkc5n5p5PFCD_SXL_AlqA","normal_prices":[72745,21284,11543,10109,8815],"normal_volume":[15,186,649,48,67]},"10079":{"index":10079,"max":0.8,"min":0.06,"rarity":6,"name":"Blood Pressure","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-B7TSa9kxQlti-6iIr9HifOOV5kFJp2TeYOsxWxm9OyM7zl5AKIio0XyyiojiJA6C866-YFV6oi_6GBhwHfcepqnQk3Qfo","normal_prices":[74844,22229,12438,12535,9456],"normal_volume":[24,174,480,62,65]},"10080":{"index":10080,"max":0.8,"min":0.06,"rarity":6,"name":"3rd Commando Company","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-5kQii9kRIYuC6OpYPwJiPTcAZyDMd2F-YIu0a4ktTjP--35Vfb3oMTyy_-iCtM7Hpq5elTBaYirKTJz1aWk_tQEIo","normal_prices":[35412,9340,4475,4638,4343],"normal_volume":[12,116,428,55,65]}}},"5034":{"name":"Specialist Gloves","sticker_amount":0,"type":"Gloves","paints":{"10030":{"index":10030,"max":0.8,"min":0.06,"rarity":6,"name":"Forest DDPAT","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtOV5Tj2Mkg8itjO6mY70LhTLN1F4TowkQrFYshHsxNKyPu_ntQfYid9By3j-ii9I6StqsOlUV6Aj-aCF2guTL_RjtifunYRS","normal_prices":[84746,40654,28740,12989,13076],"normal_volume":[15,46,61,15,22]},"10033":{"index":10033,"max":0.8,"min":0.06,"rarity":6,"name":"Crimson Kimono","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJu-hkQCe8qhkusjCKlIvqHjnCOml8U8UoAfkItBLswdbuNbjr5FHdjNkUzSv73C1K5y46tu4EUvAg-6bU3FrBMOE4_9BdcyhkRns5","normal_prices":[992899,244633,158991,134640,110845],"normal_volume":[18,422,1027,122,178]},"10034":{"index":10034,"max":0.8,"min":0.06,"rarity":6,"name":"Emerald Web","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtexsXSi_kSIwtj-6lob-KT-Jbw4kA8d4QOBb5hnqmoHuMLmx4AWK341Bnyr93CxN6itjsb1XUfAgqLqX0V92--w69A","normal_prices":[458371,191529,139338,58356,35850],"normal_volume":[14,144,138,59,86]},"10035":{"index":10035,"max":0.8,"min":0.06,"rarity":6,"name":"Foundation","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJv_NoQS62qgovuimApYPwJiPTcFMgWJVwFLIPthDpkt3vN7ux5QTWitkTm3r5iiMc7nw6sukBBfV38vDJz1aWnrr9eTA","normal_prices":[214222,108168,97390,23764,17191],"normal_volume":[12,38,48,48,46]},"10061":{"index":10061,"max":0.8,"min":0.06,"rarity":6,"name":"Crimson Web","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJp-RrXBahkBkYvzSCkpu3JyiSbAQkC8d1E7YJtEXtkIazMruz4lOP3dpGmCyt23hA731v4LkKAL1lpPOyoS0Ibw","normal_prices":[117123,30382,12738,11990,11108],"normal_volume":[40,379,1086,118,147]},"10062":{"index":10062,"max":0.8,"min":0.06,"rarity":6,"name":"Buckshot","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtu57Sjqnqh81vCqLpYPwJiPTcFQhAsd5TOcDsxLqwN22ZrjqslDZg4gXnCj2jnlA7Sg54udWB_dz-qbJz1aWpqUo0Nk","normal_prices":[26301,9880,5171,5136,5285],"normal_volume":[22,168,583,43,61]},"10063":{"index":10063,"max":0.8,"min":0.06,"rarity":6,"name":"Fade","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtuBtSha_nBovp3PQy42sdX6eagIjW5AlQOVetBXuk92xNLvg4gOMjd5AmC2ointB53w__a9cBqntWBk3","normal_prices":[179584,48390,18004,15732,12176],"normal_volume":[43,764,1688,127,151]},"10064":{"index":10064,"max":0.8,"min":0.06,"rarity":6,"name":"Mogul","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJp-hnWyyhnRg_jDGMnYftb3qWagQlX8EjF7YIuhK9m9XiNO2x7gOPjY5HzHj7iiwcv3xi4-pQAPc7uvqAbB4ER4o","normal_prices":[57776,16475,10720,9785,9922],"normal_volume":[32,263,753,62,102]},"10065":{"index":10065,"max":0.8,"min":0.06,"rarity":6,"name":"Marble Fade","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJveB7TSW2qhsmtzi6lob-KT-JOlUhC8Z2QOUDsxa6xIe0N7nk5ALWjolMm3793SxAvX0_5-sBUaNz-rqX0V-xn3he8w","normal_prices":[171618,39845,14424,13360,11577],"normal_volume":[32,254,749,78,89]},"10066":{"index":10066,"max":0.8,"min":0.06,"rarity":6,"name":"Lt. Commander","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJouhqRDqygiIksjCKpYPwJiPTcFJzApV0F-cL5kHuk9CxP7u3sgDYgo1BzX76jixM7Cw-selXBacn-PHJz1aWiwi0X-Y","normal_prices":[68177,19995,11223,10047,9666],"normal_volume":[32,255,870,75,92]},"10067":{"index":10067,"max":0.8,"min":0.06,"rarity":6,"name":"Tiger Strike","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJpOhuSjuMmg8mvTqApYPwJiPTcAYkDMZ3EOUJ4Ra9w4W2NOyx4wGNjYtDy3763H4bvCY6t-sFUap3_KDJz1aW0GG4fIQ","normal_prices":[106511,36223,16481,13116,10641],"normal_volume":[31,355,1178,126,191]},"10068":{"index":10068,"max":0.8,"min":0.06,"rarity":6,"name":"Field Agent","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtuNgcCW6khUz_TiHydigcXyXawRxX5QmQLQIsxC9kYfgN--w5QCLi4IRzyz42yofvCZ1o7FVbJfAqIA","normal_prices":[96046,28987,12684,11747,10173],"normal_volume":[30,335,1047,80,121]},"1413":{"index":1413,"max":0.8,"min":0.06,"rarity":6,"name":"Lime Polycam","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MlB80py-EmZvGJjnCO1hPVssnHaMUtRTqwNK2Nrzr71aLi4sUzS_8iCJMuic54eoFVvVw-fGGiwySY7Q1t45DeqjW0uKN1w","normal_prices":[206745,65041,34587,28998,18740],"normal_volume":[12,70,190,33,41]},"1414":{"index":1414,"max":0.8,"min":0.06,"rarity":6,"name":"Blackbook","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2Mkg8mtTuMjobGIyfGPV1PVssnHaMUthC9l9e2Mei25wTajN5EziT_2CodvSxs5ugBWKp2rvDX2Q6QMOc8tI5DeqjzpbB7FA","normal_prices":[182488,59662,29647,25322,20982],"normal_volume":[7,82,248,37,40]},"1415":{"index":1415,"max":0.8,"min":0.06,"rarity":6,"name":"Chocolate Chesterfield","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MhAguvymAnrD7LSrENWl8U8UoAfkNu0Ttx4CxP-zr4wDbjN4XmX79j3xM7SdisbkLBPB0q6LWiwnHM7Zs_9Bdc2KEwswI","normal_prices":[117082,24586,11568,10153,9697],"normal_volume":[9,68,170,39,30]},"1416":{"index":1416,"max":0.8,"min":0.06,"rarity":6,"name":"Sunburst","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MhggpsSiXiZvGMy7DAVp5Xco0W-VesRKwxtLvMbm07gLbiI1GmX33hywd7Hk45ewEAPIiqfXW2Q7FMLIjoc5U0NHpGGE","normal_prices":[158353,39754,19165,16525,15691],"normal_volume":[6,61,189,40,48]},"1437":{"index":1437,"max":0.8,"min":0.06,"rarity":6,"name":"Big Swell","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MghwxtgKHlpr8HifOOV5kFJJyFOVZuhC8l9XjNL-3tgHcg41HzHr4hntBuntpse0LUvZwr_bX3QjfcepqIIhMOUI","normal_prices":[206636,47083,21339,19859,15752],"normal_volume":[15,86,202,39,45]},"1438":{"index":1438,"max":0.8,"min":0.06,"rarity":6,"name":"Pillow Punchers","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MhAguvymAnrDuKSLTO2l8U8UoAfkK5BKxkNyyZu7r4VGP3Y8UzSX_iC4av3trtbtWV_Vxq6SEh1mVN7c9_9Bdc6ulT-fJ","normal_prices":[530666,134604,43176,33214,25254],"normal_volume":[14,96,274,26,38]},"1440":{"index":1440,"max":0.8,"min":0.06,"rarity":6,"name":"Cloud Chaser","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MkQ8mtDKLpY31NC74Ml93UtZuQe4L40bsl9HgM-Lr5lffgtgWnCT63H5O6XxqtehUVaIl-vCDjwiXMKp9v8dT8uAEag","normal_prices":[250734,93705,51101,44774,32968],"normal_volume":[16,105,271,47,67]}}},"5035":{"name":"Hydra Gloves","sticker_amount":0,"type":"Gloves","paints":{"10057":{"index":10057,"max":0.8,"min":0.06,"rarity":6,"name":"Emerald","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYsTGEmYTGJjnCO1hPVssnHaMU4EG6ktGyPryz5A3fiIwUyin3h3lJ5nlq5-xQVPIk-6HWjVmQOeFptI5DeqjsQUewWg","normal_prices":[19799,5247,3903,4321,4092],"normal_volume":[9,124,292,33,59]},"10058":{"index":10058,"max":0.8,"min":0.06,"rarity":6,"name":"Mangrove","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYtC-An4HGLS7GKl51SP0tEKRS3UL6w5ekWLa7sF2alY9MzyX92ixAvCs-sutWWKd08qDRh17CZOI86JcBcffyH0iGUR9asfh8BNe0yN2QCJM","normal_prices":[16026,4006,3538,3679,3567],"normal_volume":[11,119,299,45,74]},"10059":{"index":10059,"max":0.8,"min":0.06,"rarity":6,"name":"Rattler","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYoDOEkYrqKiLJAVRiW9EzKrtT5Uj8jNOyZb_i5QHcg40Unyz-ji5LvX1v6-kEV_Ek8vCFjguUYOU_tJVWd6y5DUPZHBGjgbE","normal_prices":[14459,4119,3548,3642,3568],"normal_volume":[24,120,310,28,49]},"10060":{"index":10060,"max":0.8,"min":0.06,"rarity":6,"name":"Case Hardened","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYsDyWn7DxIDnDO1h1Xv0sHLBS9g7ul9zmMbi35FHYgolMmSj9jS8fvC5jte9RAqctqKCC2QHBYrU64MMCOr_5GlPhveuZ","normal_prices":[37948,9820,6527,6888,6357],"normal_volume":[28,341,955,100,162]}}},"505":{"name":"Flip Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2oZK19bqjKVjbDkbtwtbU4S3jhwElw4DvVzomhd3_CblV1CZd2TO5f4RG4lID5d7S15Y9TpQQ","stattrak":true,"normal_prices":[19415,19415,19415,19415,19415],"normal_volume":[116,116,116,116,116],"stattrak_prices":[19403,19403,19403,19403,19403],"stattrak_volume":[24,24,24,24,24]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H-eWDHSvzedxuPUnTn6wkEgksm7Rzon4JXOXOwYnD5oiELMP4EWww9LuN-zq5wKLgtoUzTK-0H1-4rT4QQ","stattrak":true,"normal_prices":[124486,28206,18368,20098,18414],"normal_volume":[2,74,99,11,16],"stattrak_prices":[0,42379,20649,19300,23146],"stattrak_volume":[0,4,13,2,3]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7d9H-SSHmKv1Px0se9WQyC0nQlp5DnWw46pIy2SOwBxW5VwFOcP5hC4x92zM-6ztVbYjtoTmST_iSNA6DErvbgg2ar9PQ","stattrak":true,"normal_prices":[35727,13761,12104,12092,11799],"normal_volume":[2,13,32,12,11],"stattrak_prices":[105510,16147,14646,14187,13329],"stattrak_volume":[1,5,8,1,3]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7d9H_SSHnecxNF6ueZhW2eywRl3sGzQm46pIy-TPAIpXsEiEO5c40S_kdDlPr6xslCPiYMRniuskGoXuRzTMIE6","stattrak":true,"normal_prices":[26673,12421,12011,11873,11536],"normal_volume":[2,18,42,13,13],"stattrak_prices":[0,17556,12001,12777,12394],"stattrak_volume":[0,4,12,4,3]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VsH_aSCmKvzedxuPUnTXywzR9-427Qyd34d3iUb1RyDJMlQbQL5xTtw920Zby05FeNjohDzDK-0H3GjMwqlg","stattrak":true,"normal_prices":[31022,39765,0,0,0],"normal_volume":[275,14,0,0,0],"stattrak_prices":[36335,46504,0,0,0],"stattrak_volume":[36,2,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7diH_6aCW-E_uJ_t-l9ASzgk09_tW_Qy9mocXLCbgQgWJQiReEI50SxldbiMuzn4gDd3oJCyi7gznQeD7v_WUw","stattrak":true,"normal_prices":[56436,15477,12285,12098,12069],"normal_volume":[6,29,59,13,12],"stattrak_prices":[0,16905,14064,18883,14967],"stattrak_volume":[0,3,8,1,1]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VjH-SaCWKC_uFkse9uSha_nBovp3OBztqpI3yTbAIgDZslQbFbtUbuw9y2Y7y37gDcjooQxH__h39B5yxt_a9cBoXwL4KP","stattrak":true,"normal_prices":[20991,27205,0,0,0],"normal_volume":[233,16,0,0,0],"stattrak_prices":[23127,46464,0,0,0],"stattrak_volume":[38,2,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_SSA2aDwvtlj-1gSCGn20lx52ncwtn_eXyQb1JzXJR3FOEPsRO5xoDmM77n7gHeiIpCyC6tjyhXrnE8njKBWnQ","stattrak":true,"normal_prices":[13907,13072,12810,12933,12478],"normal_volume":[78,82,71,9,6],"stattrak_prices":[18124,15782,14514,0,0],"stattrak_volume":[16,16,14,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_2SHGWcxNFwseVscCW6khUz_WqBnt2qIyrBPwMoCcN1R7YCtRa7kofhY7nk4gzajNhEzyT43HhK6CZ1o7FVaZCrJoQ","stattrak":true,"normal_prices":[25637,33843,0,0,0],"normal_volume":[454,19,0,0,0],"stattrak_prices":[29804,52665,0,0,0],"stattrak_volume":[68,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H-OHC2Kc_uV4uedscCS2kRQyvnPXmImsIC3DawJxWcN4RuQPuka7xNHhZuzqtgTcjN1FmH36jShL6S9r_a9cBvssjBEP","stattrak":true,"normal_prices":[0,0,0,12340,12168],"normal_volume":[0,0,0,13,123],"stattrak_prices":[0,0,0,16861,11888],"stattrak_volume":[0,0,0,1,30]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH-KGDH6vzO9ksu1sRjO2kSIrujqNjsGhcinBZ1dzD5AlE7Nb4ES4wdTvMem37gDb2IlMmXj43HxK6yxt4L0FT-N7rWpcwuJP","stattrak":true,"normal_prices":[155064,147793,0,0,0],"normal_volume":[41,2,0,0,0],"stattrak_prices":[149191,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH-OSHneYyPxzj-xoXSu_kBQ9tjm6lob-KT-JOgYjXJEmR7Jbs0S8mtSzZezg5wSMit5BzyX7ii9L63455ewFUvAg-LqX0V_ipKFLBg","stattrak":true,"normal_prices":[93721,88419,0,0,0],"normal_volume":[41,2,0,0,0],"stattrak_prices":[106000,106845,0,0,0],"stattrak_volume":[6,1,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpovbSsLQJf1f_BYQJD4eO0mIGInOfxMqndqWZQ-sd9j-Db8IjKhF2zowdyN2nyLNWQegBsYQyGrFPsyevs18Dvu53MySZnuyFztC3ZnBK10x9Fa_sv26L7s0YfCA","stattrak":true,"normal_prices":[149522,189875,0,0,0],"normal_volume":[10,2,0,0,0],"stattrak_prices":[280550,0,0,0,0],"stattrak_volume":[1,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCziqhEutDWR1Nf6JHmfPw4kDsQkEeBbtRTsw9CyMu_nslPeg4wRmH2qhy9K7nxp4ukcEf1yIYwwFPU","stattrak":true,"normal_prices":[30660,36111,0,0,0],"normal_volume":[202,5,0,0,0],"stattrak_prices":[31512,49000,0,0,0],"stattrak_volume":[8,2,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCzhqhEutDWR1NesJX_BPQV0CsckQeMLtRbrlNOzY-3i41DbitlEzyv2jiob6CZt5ekcEf1ySivHiG0","stattrak":true,"normal_prices":[38826,40236,0,0,0],"normal_volume":[212,7,0,0,0],"stattrak_prices":[37414,47288,0,0,0],"stattrak_volume":[18,3,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_KfG2KU_uJ_t-l9ASqyzBl14jnXwoyuJCmeZwAiDpolRrFf4EXswN3iNrmw4FPZg9hMmSjgznQe7J0ACeg","stattrak":true,"normal_prices":[28078,17732,15863,15127,14709],"normal_volume":[10,32,32,16,33],"stattrak_prices":[41665,24964,18699,18426,16979],"stattrak_volume":[2,5,4,9,3]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCzgqhEutDWR1N79dy2RbgUhCZZ4Q-ALukS4m9PlNbi25wLfjo5GnyT7jSNJ7Cc4suYcEf1yV0vEDxY","stattrak":true,"normal_prices":[30260,34651,0,0,0],"normal_volume":[156,4,0,0,0],"stattrak_prices":[31047,0,0,0,0],"stattrak_volume":[12,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCznqhEutDWR1IuudniQZgMiApAlFLJftRjqkYfuNOKx4lfejtoUzCSvjH5PvSo56rwcEf1y_87DeTE","stattrak":true,"normal_prices":[31908,34226,0,0,0],"normal_volume":[238,5,0,0,0],"stattrak_prices":[31487,45000,0,0,0],"stattrak_volume":[15,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_acHGSVxdF6ueZhW2fjkUUk4GzRmNuvcSnFO1MlW5RxR7MItUbskIHnZurl5ALf341Gmy-rkGoXuTDvkImE","stattrak":true,"normal_prices":[17260,12982,12251,11978,12161],"normal_volume":[8,26,27,16,19],"stattrak_prices":[46808,14616,14622,15228,17989],"stattrak_volume":[6,5,5,5,1]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_-aAmKU_uJ_t-l9ASu2l0Qj4m7cnNf6JSqSZgAhA5NzFOALsBbrkILuPu625AXcjdpGz33gznQe1ZCqub0","stattrak":true,"normal_prices":[33397,18287,15320,16066,15359],"normal_volume":[17,99,156,74,50],"stattrak_prices":[48074,24681,19990,18257,30801],"stattrak_volume":[4,13,11,8,23]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H_SXHmaE_uJ_t-l9AXmxx01xt2rRnI2uc3uRPVAkW5R0FrIIsha6wdbjZrjh4wOP3t0Ry3_gznQeDR4sxYY","stattrak":true,"normal_prices":[21000,12293,11649,11774,11455],"normal_volume":[2,12,25,10,13],"stattrak_prices":[0,13553,11637,12254,15926],"stattrak_volume":[0,2,13,1,2]},"559":{"index":559,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6d4H_afB3evzeFktd5lRi67gVMi4jjSy937In2fbA4gXptyROJetBK9ldLjPuPi5gyKjINMyCX23Soa8G81tMSuH9C0","stattrak":true,"normal_prices":[27362,20417,15859,15981,15875],"normal_volume":[85,114,177,7,12],"stattrak_prices":[37306,22042,18548,21800,21518],"stattrak_volume":[4,19,25,3,2]},"564":{"index":564,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6d4H_afB3ev0vp5vuR-Tjq7qhEutDWR1NqheHqUOAMlXpR0FOVZ4Ba8wIW2P7u35VPX2Y9Azn6s2ihB7S5v5uccEf1yNTyJJU8","stattrak":true,"normal_prices":[19121,13763,12934,12218,12104],"normal_volume":[23,56,62,58,59],"stattrak_prices":[26951,15593,12827,14606,13215],"stattrak_volume":[4,13,20,8,14]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_WeC3WRzepJveB7TSW2nAcitwKJk4jxNWWWPVdzA5pyQeQCsEG9wNXiYey3sQbcjIhMzi73jy4duCprt-5QWKoh5OSJ2FqzBf3_","stattrak":true,"normal_prices":[135364,141375,0,0,0],"normal_volume":[44,2,0,0,0],"stattrak_prices":[128546,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_eSA2qR_up5oPFlSjuMhRUmoDjUpYPwJiPTcAQmD5YkQbVf4US-kIaxNO7ktAGMiooWnn-v3CxOv3pv5r5QUKMn_6HJz1aWfAqhZnY","stattrak":true,"normal_prices":[42405,0,0,0,0],"normal_volume":[157,0,0,0,0],"stattrak_prices":[46712,80057,0,0,0],"stattrak_volume":[12,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_eSA2qR_up5oPFlSjuMhRUmoDjXpYPwJiPTcAB2DZclFOMLtRm5xt3kZOu35wDa3Y9Bynn8jX5Auydttu5RB6t3qa3Jz1aWbPfUfuc","stattrak":true,"normal_prices":[46590,48313,0,0,0],"normal_volume":[97,2,0,0,0],"stattrak_prices":[47697,82165,0,0,0],"stattrak_volume":[10,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_eSA2qR_up5oPFlSjuMhRUmoDjWpYPwJiPTcAUjCcQhFuRcuhawlIC0ZujqtAKL3oxCmyj723tAv3pr4u5TUfUnrq3Jz1aWLj9dSwc","stattrak":true,"normal_prices":[38609,42153,0,0,0],"normal_volume":[77,1,0,0,0],"stattrak_prices":[41621,109533,0,0,0],"stattrak_volume":[4,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpovbSsLQJf1f_BYQJD4eOxlY2GlsjwPKvBmm5D19V5i_rEobP5gVO8v105NT_6ddCUJw46ZwnX_VS_krzugsS96J2dyCFi7CR253aOyxW_iBpIcKUx0t91Ee8V","stattrak":true,"normal_prices":[38701,40690,0,0,0],"normal_volume":[69,2,0,0,0],"stattrak_prices":[54300,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"574":{"index":574,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6N-H_afB3evwPtiv_V7QCe6liIrujqNjsGrdn-faFMpXJd0TO4ItEKxm92xNurrsQCNiI9Fzy_43y0f63s5t-gCT-N7rYkKXYid","stattrak":true,"normal_prices":[31165,20969,17314,17463,15783],"normal_volume":[33,92,144,9,23],"stattrak_prices":[46575,23733,18812,42415,18308],"stattrak_volume":[5,16,18,1,2]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H_-QC2ae_uV4uedscCW6khUz_WyHy4usJS7EOlJxWMMlFrMMsxKxmobnZr_i4leNgohCxCT_iHwfuH11o7FV6J7t-P8","stattrak":true,"normal_prices":[13522,12769,12191,12104,12974],"normal_volume":[61,84,77,10,8],"stattrak_prices":[17078,15640,14032,16993,12919],"stattrak_volume":[19,5,18,3,1]},"580":{"index":580,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_2SHGyVxdFjoN5lRi67gVMk4Wzdm4r7cCiWPwUjXpt2QrZZ5ESxktLiNbmx4VPdiogTyi_42CxO8G81tO8hlF8A","stattrak":true,"normal_prices":[13927,13095,12625,12758,15482],"normal_volume":[92,75,71,10,2],"stattrak_prices":[16637,14695,14320,21899,23623],"stattrak_volume":[23,8,11,4,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH-qWDHWR_uJ_t-l9AXrrl0905Gjcm4uqcSmWblNzD8Z2QrZbtkK5ldTmY-rqtAba399BzyjgznQejSHMqZo","stattrak":true,"normal_prices":[29141,26053,25905,0,0],"normal_volume":[75,88,16,0,0],"stattrak_prices":[35026,33019,31004,0,0],"stattrak_volume":[13,3,5,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7d9H_2WHW-v1e94j-1gSCGn20Vz4G3Wztn9JHufO1UhWMclQ-AJ4BTqxIfgM7mzs1OLiosWmXr_hytXrnE8XsE6vh0","stattrak":true,"normal_prices":[17734,11916,11229,11472,11578],"normal_volume":[5,21,34,17,20],"stattrak_prices":[59995,13311,12062,12350,12659],"stattrak_volume":[2,4,19,4,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H_acHGKD1dF0v_NsTiWMmRQguynLnIuoJXmfb1ciDsR5R-ZfthOwkN3nMryxsw2PiYoUySr63CNLvSts5fFCD_TIli8aVg","stattrak":true,"normal_prices":[26437,12021,11493,11472,11494],"normal_volume":[4,25,48,10,17],"stattrak_prices":[46126,12969,11744,12218,67670],"stattrak_volume":[1,3,8,4,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7diH-CGHHecxNF6ueZhW2fqkxghsDmBydb8JXKXO1QgA8F0RO4KshDrkYblZumz5VGLgt9MxSr2kGoXufZKGhe-","stattrak":true,"normal_prices":[37170,16131,12925,12626,12947],"normal_volume":[4,58,116,25,11],"stattrak_prices":[142376,16720,14614,14999,13201],"stattrak_volume":[2,1,12,3,5]}}},"506":{"name":"Gut Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2pfbAjd6TAXDSSkeh3trdtTCy1zUV2t2vTyoyrIHzDalAgCsN1ROcO40O6wMqnab0rKy1qHw","stattrak":true,"normal_prices":[6298,6298,6298,6298,6298],"normal_volume":[84,84,84,84,84],"stattrak_prices":[9115,9115,9115,9115,9115],"stattrak_volume":[15,15,15,15,15]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SN_WRHVicyOl-pK9tG3-1w0ohsWvQn9iucSiTbgFyCpN5Q-dZ4RK4koa0P7m2tgHcj45A02yg2VxV6Ecz","stattrak":true,"normal_prices":[103488,10558,7994,8952,9692],"normal_volume":[3,33,38,6,12],"stattrak_prices":[0,18463,11142,14261,12754],"stattrak_volume":[0,9,5,7,6]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe7RSNPGDC1iF0-x3vt5lRi67gVN0t2WGz9z8cHufa1IpX5skQbJbuxHtl9KxZu7ntgWM3o8Uziishi5J8G81tIA_RSBn","stattrak":true,"normal_prices":[11663,6206,5490,6327,5947],"normal_volume":[3,3,38,5,7],"stattrak_prices":[78910,9689,8841,9797,35000],"stattrak_volume":[1,7,3,4,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe7RSJPGDHmuV_uJ_t-l9AX-yl0Uj6jvQnoyrcy-TPQd1ApB2E7UIuxWwkoHkMOzjsgXei4pAyXngznQeOP3RS-8","stattrak":true,"normal_prices":[40000,6218,5422,5948,5178],"normal_volume":[1,11,41,14,19],"stattrak_prices":[61126,10421,9865,8951,8633],"stattrak_volume":[1,7,5,2,2]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaaVSJvGXC1icyOl-pK88HyjikUR_6z_UmIyudy-WPVByCpRzQ7UDukbtmofmM-3r4gaKjINH02yg2St2xdPu","stattrak":true,"normal_prices":[12878,19003,0,0,0],"normal_volume":[188,10,0,0,0],"stattrak_prices":[17799,0,0,0,0],"stattrak_volume":[23,0,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe6tSLvmUBnOvzedxuPUnF3C3l0p25mvQz4r7c3ueag91DpclRrFc5kaxk4e2Y7zi4VOIg4hFmTK-0H3lwmjDRw","stattrak":true,"normal_prices":[53416,6258,5775,5637,5902],"normal_volume":[4,13,38,5,6],"stattrak_prices":[0,11979,7529,10000,7885],"stattrak_volume":[0,3,8,2,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaapSNPmUC3Wvzvx3vuZscCW6khUz_WyGyIv7I3nBOlchDZV3RO8JsEa7wYXnNr_n4AeI39pNyX_22yxO6id1o7FVdgPDjag","stattrak":true,"normal_prices":[10860,13825,0,0,0],"normal_volume":[152,5,0,0,0],"stattrak_prices":[13385,19264,0,0,0],"stattrak_volume":[20,3,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSJPGeD3ST1P1JvOhuRz39xhl06zvWmYn9dnuePVVzXJYlQeFZ4Bfpk4XuY-PnsgfcitpDyi_4iTQJsHiloP4S4w","stattrak":true,"normal_prices":[8558,6702,6505,7605,8203],"normal_volume":[47,36,45,7,1],"stattrak_prices":[12627,9174,9805,16500,31412],"stattrak_volume":[13,3,4,2,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSLfGBDGuV_uh3tORWQyC0nQlp4TzTnNz_cHifawAiW8QjTe8Lu0K9w9HjY77m4lTXjI1FyCz9hnxBvDErvbgdMZDtHA","stattrak":true,"normal_prices":[11872,17815,0,0,0],"normal_volume":[234,9,0,0,0],"stattrak_prices":[16088,25136,0,0,0],"stattrak_volume":[30,3,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSM-SWC2uvyuB_tuRWQiy3nAgq_WvTnNr4cnqfPQEpDZB1ReBftEG_kde2P-zl4gzciYsXzC2o2Hgd7n11o7FVh370TBM","stattrak":true,"normal_prices":[0,0,0,7019,4853],"normal_volume":[0,0,0,14,121],"stattrak_prices":[0,0,0,14866,7463],"stattrak_volume":[0,0,0,4,16]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSMuWRF1idwPx0vORgVSy3qhEutDWR1I2pcC2WaQclWZAlQrVe5ES5k9XgMOzm4wXXiokRmC6v2ypNu3pr5-kcEf1yqhk6dhc","stattrak":true,"normal_prices":[47031,56859,0,0,0],"normal_volume":[48,1,0,0,0],"stattrak_prices":[51510,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSM_GDHm-Z0-tJveB7TSW2nAcitwKJk4jxNWWQO1IjW5d4RLUOsEG_lYCxZbjq5QDejYlBnn6o2y9LvCti4OtRUfUl5OSJ2CIbbpiB","stattrak":true,"normal_prices":[32725,42659,0,0,0],"normal_volume":[43,2,0,0,0],"stattrak_prices":[43674,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpovbSsLQJf1ObcTjxP0966lYOAh_L1Ibfum2pD6sl0g_PE8bP5gVO8v11tZzqhLYGRIw86aQ2G81i3k-bog8XptcjIynFi7CB3sH6Jzh2_1BlFcKUx0ncN5NuB","stattrak":true,"normal_prices":[53878,1800000,0,0,0],"normal_volume":[11,1,0,0,0],"stattrak_prices":[70000,0,0,0,0],"stattrak_volume":[1,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6SniMmRQguynLmYmpeCjEPwYhDJF4R-AMsEO-l9exPrjm5gzWjowWmSz323lNuCY65_FCD_QON0IPhg","stattrak":true,"normal_prices":[12938,15238,0,0,0],"normal_volume":[143,4,0,0,0],"stattrak_prices":[15691,22449,0,0,0],"stattrak_volume":[14,3,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6SnuMmRQguynLzYqtd3uXawNxAsAmReINt0S9kNW1N-Pk5lOIiNlNnCio2yNN6Hs-sfFCD_S11dClsg","stattrak":true,"normal_prices":[15730,15415,0,0,0],"normal_volume":[202,6,0,0,0],"stattrak_prices":[17160,26788,0,0,0],"stattrak_volume":[15,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSIvyGC2OvzedxuPUnSyjrw0VztW3Wn4z4d33EPFUiDppyF-JZuhSxlobkP-jl4VHai4NHyzK-0H3cWj3rrw","stattrak":true,"normal_prices":[15325,9356,7135,7022,7466],"normal_volume":[1,27,18,9,7],"stattrak_prices":[39064,12154,10812,10397,10850],"stattrak_volume":[3,9,7,4,6]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6SnqMmRQguynLw96hIC2VagV0W5dzQ7VYsBiwldyyZO3m5VaLiN8WxXmt33sd5y5j4vFCD_RERtuZEw","stattrak":true,"normal_prices":[12642,15725,0,0,0],"normal_volume":[129,4,0,0,0],"stattrak_prices":[15169,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6Sn2MmRQguynLzo74JX_EbgIlW5YjEeAKsRntkdbhNe_jtFTXgo0RxS-rj38cuHo95fFCD_S45FzBKg","stattrak":true,"normal_prices":[13049,15573,0,0,0],"normal_volume":[192,4,0,0,0],"stattrak_prices":[15446,20302,0,0,0],"stattrak_volume":[11,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSJv-BDWKU_uJ_t-l9ASqwzUp152vXnoqrcXmfagYgCJF2Q-MD5hTqlN2zMu7m5VDYgt5Nn3jgznQeBu0Fnbw","stattrak":true,"normal_prices":[14367,7188,6434,6648,6480],"normal_volume":[6,31,35,15,5],"stattrak_prices":[45231,8572,10233,11907,9247],"stattrak_volume":[1,2,4,1,5]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSL_mfC2OvzedxuPUnGSvklk535GrRm9arInnEbg8nW8AjRucC4UK-kNDjZO_rtQDWjY1FnDK-0H0tccFB2g","stattrak":true,"normal_prices":[24780,12350,10826,9933,10458],"normal_volume":[12,31,54,31,24],"stattrak_prices":[27692,14764,16689,13186,15717],"stattrak_volume":[3,1,1,3,3]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SJPSDD3OvzedxuPUnS3njl00j5W3cnIqqcnOTaAZzDcF2RuYJtEK9wNTkZL_gsQyNjYwXyDK-0H1ch3290w","stattrak":true,"normal_prices":[0,5861,5393,5605,4973],"normal_volume":[0,19,31,3,15],"stattrak_prices":[103275,9272,7251,8900,10606],"stattrak_volume":[1,1,9,1,3]},"560":{"index":560,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRa7FSJ-WHMWuf0-tJvOhuRz39zU5-4mzUyI2ud32RaQ8lXJB2FuUI40S4kofgM-7hslaPgtpBnHj-iDQJsHjij6hzng","stattrak":true,"normal_prices":[13303,10467,8358,10207,8643],"normal_volume":[54,58,97,8,7],"stattrak_prices":[22909,15389,11649,13982,13358],"stattrak_volume":[9,18,31,3,2]},"565":{"index":565,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRa7FSJ-WHMXSEzuBzp-B6Rxa_nBovp3PRn96tIynBPFJxA5RzROYOtxHpwIWzP7zitQXe2owWySWojisa7S46_a9cBlypMIP0","stattrak":true,"normal_prices":[10935,6798,5932,5566,5769],"normal_volume":[10,57,72,26,32],"stattrak_prices":[19131,9624,8673,8004,7845],"stattrak_volume":[2,10,10,8,11]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJf2WHGacxdF7sfNrQyy6jxgjjDGMnYftby-ROwEmXMciQeUDt0Prkt3hMeKwsQKP2ogRzyWqiy4b6So_5-YBU6Q7uvqAIJUtHr4","stattrak":true,"normal_prices":[44750,51021,0,0,0],"normal_volume":[44,6,0,0,0],"stattrak_prices":[47916,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tmy6lob-KT-JbwN0WZR2Re5fuxXswdKxP-Kx5Qzdj9hCnn6qiyIb5yc45-1QA6Ut_LqX0V-_N17M0A","stattrak":true,"normal_prices":[16638,25500,0,0,0],"normal_volume":[78,4,0,0,0],"stattrak_prices":[20467,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tm-6lob-KT-JOwEgDcN2EOEDsBnumtG1N-nr7wHc2ItAySStiC8auC9p5-1XVKUk87qX0V8XtbYmPA","stattrak":true,"normal_prices":[18374,26800,0,0,0],"normal_volume":[79,1,0,0,0],"stattrak_prices":[22868,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tm66lob-KT-JOAIiWZRwR-NZ5hO5lde2NOrl4QyM3YtDySSoi39J6iZrtrpRAvYm-bqX0V-vZngSFg","stattrak":true,"normal_prices":[15956,24698,0,0,0],"normal_volume":[53,2,0,0,0],"stattrak_prices":[18680,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tmm6lob-KT-JbANxW5okTLMPuhmwmtO2N7-z71bdjNpMm3-s23wb7Cc-4OtRB_Ug_LqX0V_Ys9LWqg","stattrak":true,"normal_prices":[16258,25244,0,0,0],"normal_volume":[68,1,0,0,0],"stattrak_prices":[19286,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"575":{"index":575,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRb7dSJ-WHMWaF1eFiou5nRiqMmRQguynLy46odXPFZw9xD5dyFOUDuhPslNXkNOLj71Db3o4Rn3j7hy8YvCZu4_FCD_SSdjZ6vg","stattrak":true,"normal_prices":[21726,11831,10222,10847,10786],"normal_volume":[15,68,107,7,22],"stattrak_prices":[35257,15673,11390,13000,11307],"stattrak_volume":[3,6,18,2,10]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SL_OWD2mvyuB_tuRWQyC0nQlp4TiDntmtIiqeblAmDsB2QLMNukSxwNDkZOrg4wbajItNzXn4in9LvDErvbi4dh8COQ","stattrak":true,"normal_prices":[6885,6039,5702,6226,7442],"normal_volume":[67,41,39,3,4],"stattrak_prices":[9604,9169,8571,10537,9129],"stattrak_volume":[14,5,7,2,1]},"580":{"index":580,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSLfGBBWKU_vtmj-1gSCGn20tw6jndyNmoIn3FbAQoCMEkTOYJsRTql4fkPriw5gyIjoxAyCj9hy1XrnE8qMFnbCI","stattrak":true,"normal_prices":[8228,6699,6083,7350,7979],"normal_volume":[62,37,52,5,5],"stattrak_prices":[11511,9758,7739,9414,14764],"stattrak_volume":[12,9,9,4,1]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSOvWRHGavzedxuPUnGH7hxk8jtWyByt-peC6RPQAoXJF0FO9Zt0bpw9zuMrjg5QLXjo1BnDK-0H35txVa0w","stattrak":true,"normal_prices":[11893,11032,12531,0,0],"normal_volume":[37,53,9,0,0],"stattrak_prices":[14723,17025,13894,0,0],"stattrak_volume":[13,7,4,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe7RSLfWABliEwOBJvOhuRz39wU12sWnczIyuI3mQbFAnD8RyTLVc4BHukIfmZbjq4Vba2IlMzyT43DQJsHjApBIhpw","stattrak":true,"normal_prices":[50000,5466,4854,4933,5336],"normal_volume":[2,19,46,2,5],"stattrak_prices":[90000,8844,6061,6259,8900],"stattrak_volume":[2,3,4,6,2]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SJv-BC3SE_ux5ouRoQxa_nBovp3PSmYqhJX6UPw9yD5N1FOEO4UPqwdLmNruz5lePjd9Dmy6q3SkYvCg5_a9cBkQf8e9t","stattrak":true,"normal_prices":[26576,5615,4910,5197,5562],"normal_volume":[1,14,33,4,21],"stattrak_prices":[93275,12387,7073,6699,7458],"stattrak_volume":[1,4,1,1,5]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe6tSMOWBHmuV_uJ_t-l9ASvhkRhw4GiDnN2hcXrGOAYgDZFwQrVYs0XtxtDgZu3ktVDXiYgRyy3gznQex8McCSA","stattrak":true,"normal_prices":[19484,8256,5801,6244,5643],"normal_volume":[1,28,78,5,19],"stattrak_prices":[72649,12540,7647,7819,9204],"stattrak_volume":[2,5,8,4,9]}}},"507":{"name":"Karambit","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2labZsLfKaGinEx-0u5LhqGHrjlElz52jRmN2sd3yfb1NzWZVwRbNeu0S5k9WxMuvh-UWA3ObnwJvj","stattrak":true,"normal_prices":[96969,96969,96969,96969,96969],"normal_volume":[221,221,221,221,221],"stattrak_prices":[102823,102823,102823,102823,102823],"stattrak_volume":[46,46,46,46,46]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1iHxOxlj-1gSCGn20wi4mTcyoyoeS_Dbwd2Cpd0RrMK4RbqxNTvZLyw7lff3Y5GxX6oiiNXrnE86bQY1_c","stattrak":true,"normal_prices":[648383,93008,58812,56325,51655],"normal_volume":[1,82,215,30,54],"stattrak_prices":[3375000,108262,64619,65658,61429],"stattrak_volume":[2,19,33,4,5]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AHliEwP5zj_R7TSi9qhEutDWR1N2qeXnGPQN2CcdxRucP5xK6kd3mP7jn4gyNiN1HxSiojHtN6Cc_t7wcEf1yQHicti4","stattrak":true,"normal_prices":[89286,43539,39482,38969,37603],"normal_volume":[4,31,104,27,53],"stattrak_prices":[0,52973,39672,38387,39863],"stattrak_volume":[0,8,23,2,8]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AHliUwP5mvORWQyC0nQlptmzcntmody-fbAYlDpElTLZf50W_ltS2NrywsgWMidlFyS2riS0Y7DErvbjAAm1c_A","stattrak":true,"normal_prices":[82955,44345,40297,38695,38414],"normal_volume":[3,48,103,34,27],"stattrak_prices":[412150,54628,42923,43415,39863],"stattrak_volume":[1,7,18,6,9]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SD1iWwOpzj-1gSCGn20tztm_UyIn_JHKUbgYlWMcmQ-ZcskSwldS0MOnntAfd3YlMzH35jntXrnE8SOGRGG8","stattrak":true,"normal_prices":[167048,184409,0,0,0],"normal_volume":[536,18,0,0,0],"stattrak_prices":[191870,0,0,0,0],"stattrak_volume":[61,0,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AAVieyOl-pN5lRi67gVNxsmzXyd2tJ3-QPwB2W8MkFu5YshG8lN3jYbnm5wTc34NNzS_423wd8G81tLSi0nj9","stattrak":true,"normal_prices":[173260,57308,44889,45125,43115],"normal_volume":[6,65,155,30,50],"stattrak_prices":[925157,65613,48992,52064,46189],"stattrak_volume":[1,7,24,7,10]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SAFiEyOlzot5mXSi9khgYvzSCkpu3eC3BbwUmCcMlQbMD4xG_w9zkPu7gsQXe2YJFzHqqjixL5ylr4ukAWb1lpPNV9oeSnQ","stattrak":true,"normal_prices":[81796,90656,0,0,0],"normal_volume":[389,27,0,0,0],"stattrak_prices":[94218,93300,0,0,0],"stattrak_volume":[47,2,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iUwON3o-J8XBa_nBovp3PUmdetJHyUblInCZF5TeID40bum9znMeKwtleKi4pCyC-q2CofuCxq_a9cBl9itWvl","stattrak":true,"normal_prices":[64205,58434,54842,54281,58477],"normal_volume":[107,127,171,21,30],"stattrak_prices":[73533,61877,56109,55303,62000],"stattrak_volume":[17,16,28,3,1]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1idwPx0vORWSSi3kCIrujqNjsGveH2RaVRxX5ohEe4Juhawm4fiM-ji4APf2YMXmSz_hyoduytv4uhWT-N7rfLHGBJ4","stattrak":true,"normal_prices":[96586,108203,0,0,0],"normal_volume":[987,35,0,0,0],"stattrak_prices":[107354,223061,0,0,0],"stattrak_volume":[96,6,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iD1etzvN5iQSC1kCIqtjmMj4K3cC2TZgQgWJUjR7QIukK7lNO0Prjk41PXjdgXySj4iCJMvH5p4rlRUL1lpPMtop-Pnw","stattrak":true,"normal_prices":[0,0,0,45966,43773],"normal_volume":[0,0,0,18,365],"stattrak_prices":[0,0,0,60000,44337],"stattrak_volume":[0,0,0,2,71]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JbgMoW8Z5Ee8Isha9k9K1YeLr7wXci4wQzyqsjCxBuytssrkLV6Ek-LqX0V8zRrFpiQ","stattrak":true,"normal_prices":[733695,702503,0,0,0],"normal_volume":[46,2,0,0,0],"stattrak_prices":[814375,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMRxFuEM5hi_xNXhMbmx5VCMjd9MyCv6jigc6n064ucLAvZ3_6bViV3fcepqpLtspE0","stattrak":true,"normal_prices":[457258,402132,0,0,0],"normal_volume":[39,1,0,0,0],"stattrak_prices":[458056,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuRLQPsBawkNfiMbnl5AKMiopCnin7iCJBv31j4rkBBKEg-6zUjV3GY6p9v8dpLWT3Fg","stattrak":true,"normal_prices":[856918,979999,0,0,0],"normal_volume":[7,2,0,0,0],"stattrak_prices":[1150000,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXFb1cpDJR2FOFbsBTql9bjYbzq7gPZiN1MxH7_2ytNuCdpte1UB_Ui5OSJ2GbkVqni","stattrak":true,"normal_prices":[125211,125939,0,0,0],"normal_volume":[320,6,0,0,0],"stattrak_prices":[127134,155483,0,0,0],"stattrak_volume":[24,2,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWWXawUgA8dxRLEO40KwkobnMbnj5QKL348Qmy-sji5K7i466uxUUKQn5OSJ2KBZjkQR","stattrak":true,"normal_prices":[184168,183302,0,0,0],"normal_volume":[260,8,0,0,0],"stattrak_prices":[177443,183857,0,0,0],"stattrak_volume":[39,2,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iSzftztN5lRi67gVNw4D_WytioJX2WO1AmCpJ5Qu9Z4EK-wYLjMOzm4gKMjt9BnC732i9M8G81tP_ecAuH","stattrak":true,"normal_prices":[118035,76934,70009,65436,61930],"normal_volume":[25,81,122,64,63],"stattrak_prices":[191937,85844,74044,69746,72345],"stattrak_volume":[1,4,11,11,9]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWWebgAlA8dwQLMOshmwm9y0Puni5Qba3ohEni-r33xA7X5o4uZTV6ch5OSJ2C8W7sST","stattrak":true,"normal_prices":[121082,128710,0,0,0],"normal_volume":[232,5,0,0,0],"stattrak_prices":[127686,136287,0,0,0],"stattrak_volume":[16,2,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWXCaQQnA5B5Q-8O4xnpltazNri37gGPgtlDzin7iXhN6y44tb0GUaYg5OSJ2A0QBM1-","stattrak":true,"normal_prices":[129910,127698,0,0,0],"normal_volume":[265,4,0,0,0],"stattrak_prices":[131427,169186,0,0,0],"stattrak_volume":[23,2,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iWzvx1teVWQyC0nQlp5zmEyI6rcC7DZg8pXpRyQOMOsBG-xNaxZbzl4wPdit5Azij3239MvDErvbgAJOXq8Q","stattrak":true,"normal_prices":[78532,55889,50988,48461,47393],"normal_volume":[19,67,96,36,39],"stattrak_prices":[383875,60668,56028,51901,49460],"stattrak_volume":[1,15,13,12,5]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1ifyOJztN5lRi67gVNz5DvUmdj4eXuWOFAhAsF4RLFc5BC4xtbuY7yx7wDbgo9CzSj2h3xK8G81tB_XeHWq","stattrak":true,"normal_prices":[174540,82046,67511,64877,64852],"normal_volume":[41,209,329,150,122],"stattrak_prices":[246063,111217,80656,83805,78670],"stattrak_volume":[3,25,28,13,10]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1iUxf53pN5lRi67gVN25WuBmNqpeC-RbgdxCZAkRucN4xC8w4axY-O07wfW3YkTzCn6jC9N8G81tIWhen7s","stattrak":true,"normal_prices":[66343,41152,37808,36855,36372],"normal_volume":[4,31,107,26,43],"stattrak_prices":[0,44735,37644,45428,37744],"stattrak_volume":[0,10,29,8,13]},"561":{"index":561,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-QG1ibwPx3vd5lQDu2qhEutDWR1IqrIHLCZlUmDJYlTLFb50HuwdyxPu2w4lCKjI5HniT2jS1PuCxj5e0cEf1y9ZCADXU","stattrak":true,"normal_prices":[103464,76082,53320,55218,46689],"normal_volume":[111,192,301,16,39],"stattrak_prices":[115286,82694,59642,58237,93083],"stattrak_volume":[17,31,46,10,4]},"566":{"index":566,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-QG1ibwPx3vd56Wya9kAomoDW6lob-KT-JbwIlWcYmQ-UM40LrldXkZO6wslONiN0UmCT52iIdui8-5LlUAqUn-LqX0V8xd7EU5Q","stattrak":true,"normal_prices":[92036,67211,62071,57809,55837],"normal_volume":[31,124,181,100,118],"stattrak_prices":[135216,80595,70407,58153,58773],"stattrak_volume":[9,24,25,32,18]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iVzOtkse1tcCSyhx8rtjSfn4vGLSLANkI-X8MjTLFYskTsw9bnZOuwsgSIj4sTniz-2i5A7yY6tbwGV6Nx-qGEjxaBb-MuPavopw","stattrak":true,"normal_prices":[769267,699900,0,0,0],"normal_volume":[30,1,0,0,0],"stattrak_prices":[794851,1326500,0,0,0],"stattrak_volume":[5,1,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cBTLN1F4TowkROZctEXqxNO2Nevn4QzZ2I9Mz3r62C9L634_5uhTWKEh_fKD2w7HL_RjthCBcAWy","stattrak":true,"normal_prices":[205339,239105,0,0,0],"normal_volume":[180,6,0,0,0],"stattrak_prices":[218779,191274,0,0,0],"stattrak_volume":[20,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cxTLN1F4ToxzRbQMukK6k4HnZe3k4gPW34hFmCWrjCgd5yk55-1RBfB0rq2D2w7FL_RjtjtuH2jv","stattrak":true,"normal_prices":[242921,197408,0,0,0],"normal_volume":[93,6,0,0,0],"stattrak_prices":[241714,0,0,0,0],"stattrak_volume":[17,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8chTLN1F4Tox2FOJfsxWxw9LgNOPh5FHY3dpHmC762y1BvClssOoLUqp3_fbX3ADGL_RjtmmTgPB9","stattrak":true,"normal_prices":[171035,168475,0,0,0],"normal_volume":[116,4,0,0,0],"stattrak_prices":[187619,228014,0,0,0],"stattrak_volume":[8,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8dRTLN1F4ToxwQLNZ5xa-xNDuNu_ktgCN2YtNn36thypAuidrsb4BUqMj_qPfiwCTL_Rjtpd8Mt3S","stattrak":true,"normal_prices":[163777,165456,0,0,0],"normal_volume":[89,3,0,0,0],"stattrak_prices":[174666,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"576":{"index":576,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-UHVibwPx3vd5oWj28gQ8ovTSGpYPwJiPTcAMkCJt3QuVY4xXrloHhP-nlsw2Ljo1NzS6ohitJvCc4sOcHAqInqKfJz1aWliaAF_M","stattrak":true,"normal_prices":[163035,100794,80796,72861,65005],"normal_volume":[49,156,343,42,83],"stattrak_prices":[217608,100385,81298,81863,80790],"stattrak_volume":[8,33,51,4,10]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1ifwut3vt5iQSC1kCIrujqNjsGteH6ebFR1XJp3E-MNtxK7lYbiM-rg5wLZgoNGyyX62Hsb7ixq5e9RT-N7reSUYiY6","stattrak":true,"normal_prices":[51513,46438,43627,42549,43478],"normal_volume":[112,141,179,24,26],"stattrak_prices":[59568,50252,43848,47246,41379],"stattrak_volume":[23,25,39,6,2]},"582":{"index":582,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1idwPx9teVWWjmMkxQptgKJk4jxNWXCOlJ2CZpyEeBbuxbrltXkMbzlsgTXit1NyST9hiJBu3ptsesLAPJ35OSJ2AmQpzvF","stattrak":true,"normal_prices":[55546,50189,46629,46168,48042],"normal_volume":[129,151,187,24,13],"stattrak_prices":[62378,55792,47690,78760,53137],"stattrak_volume":[27,23,42,5,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iKxOxksd5lRi67gVNx5GzQztqrdH-ea1AjApImFuEJ5EO5wYHmP-2w7gGLgowTz3r5jCwY8G81tFw9kDjw","stattrak":true,"normal_prices":[104741,84883,85493,0,0],"normal_volume":[140,153,43,0,0],"stattrak_prices":[124262,96850,99610,0,0],"stattrak_volume":[17,14,8,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AHlidxP1-j_VoQRa_nBovp3PRw9yhcHyTawJ1X8N4ELVb5BXqw9OxZu-x5wSKit1Mmyj83C9M7Ss__a9cBidCCPpT","stattrak":true,"normal_prices":[60000,37013,35513,36362,37047],"normal_volume":[5,41,59,31,35],"stattrak_prices":[0,41232,37541,43500,38058],"stattrak_volume":[0,10,26,1,15]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1iWzvxzo_VWTSahkBwrjDGMnYftbyifZgQlA8EhRrRfuhm7lIa2MerjtlaKi4NGnius3SMc6Slv574AUPA7uvqA0RoB8ZE","stattrak":true,"normal_prices":[83809,43686,37960,36601,36447],"normal_volume":[3,25,97,28,38],"stattrak_prices":[402149,51748,43908,55751,45000],"stattrak_volume":[2,9,13,4,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AAViA1PxmvORWQyC0nQlpt2uHwtqvdS6WZlUjXJt2RrFbuhC5wYG0MOKz41Hc2IIRm36sjnwf7jErvbiyCF9_ug","stattrak":true,"normal_prices":[172679,57596,44701,43360,42373],"normal_volume":[7,96,271,51,77],"stattrak_prices":[0,68880,45639,45925,43998],"stattrak_volume":[0,9,57,8,7]}}},"508":{"name":"M9 Bayonet","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2jMZtvIemcAGKEj7ojtOIwSnrrkEt25WiEw438cXuUaQB0WcBxFrUItxa6lNezMOKzsVPAy9USYWigJ8Q","stattrak":true,"normal_prices":[73109,73109,73109,73109,73109],"normal_volume":[215,215,215,215,215],"stattrak_prices":[73608,73608,73608,73608,73608],"stattrak_volume":[36,36,36,36,36]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_vlzsvJWQyC0nQlp4GrWzYuqeHjDZlN1XJohTecO5xawwdDvNuLm5wPcjY0QzyX83Xsd7zErvbgxKe4lfw","stattrak":true,"normal_prices":[454930,73647,41442,40721,40799],"normal_volume":[14,117,227,19,87],"stattrak_prices":[1225095,92255,49882,53794,64481],"stattrak_volume":[1,19,35,4,16]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSA_vp3oORWWjuxlBMYvzSCkpu3dnmQagEhApJwTeENsRW-l4LkZLjh4FbWg91ByiT-jSJB5nk96uwFWL1lpPPSsWRCMw","stattrak":true,"normal_prices":[65778,32299,28823,28980,31347],"normal_volume":[9,49,98,19,78],"stattrak_prices":[0,37427,30463,30360,34000],"stattrak_volume":[0,7,11,7,14]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSA_up3oPFlSha_nBovp3PSnNj6dnnEbA4oDZB0TbIP5BTulYG2NO3q4lTWjYpAyi79jHtNvHo6_a9cBpN31nKp","stattrak":true,"normal_prices":[81095,32012,28294,28253,28729],"normal_volume":[1,52,92,26,59],"stattrak_prices":[350000,40602,29454,35094,32220],"stattrak_volume":[1,10,17,2,10]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaR_uh3tORWQyC0nQlp4znQytr6cnjFbg8oC8BzRrQK50S-lNDgP-_r5wWP3t5CyX37jCIb7DErvbiJu9Hv_g","stattrak":true,"normal_prices":[88676,96996,0,0,0],"normal_volume":[424,18,0,0,0],"stattrak_prices":[97567,103348,0,0,0],"stattrak_volume":[64,4,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSf_uB_t-l9cCW6khUz_WSAnIyrIy6ValInCJNyQeIPtxLtk9DuZr7rsQaI3YkRmyyrh3gc6Cl1o7FVxcznlCA","stattrak":true,"normal_prices":[105764,43830,31910,30985,31142],"normal_volume":[3,50,132,36,67],"stattrak_prices":[1642454,57314,33404,33500,42974],"stattrak_volume":[1,7,22,4,10]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWae_vp_t-R7cCahlBMgtgKJk4jxNWWTa1QhDMMmQOMJ5BPtkYHuM-KwsVTYjIoQy3n-iStL7yxj57wDB_cs5OSJ2H8uCzPz","stattrak":true,"normal_prices":[61667,63984,0,0,0],"normal_volume":[389,21,0,0,0],"stattrak_prices":[63152,105337,0,0,0],"stattrak_volume":[56,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_up3veB6TDygqkR3jDGMnYftb3-ePQEjCMQkQuUDsUW7lN22Ze_mtADa3o0RyH3_hyMY6CY94b0GAPU7uvqAmF9xxno","stattrak":true,"normal_prices":[45752,42097,40161,39892,42841],"normal_volume":[127,144,197,18,14],"stattrak_prices":[52802,49400,41117,42374,51097],"stattrak_volume":[27,21,32,1,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_uN3ouNlSha1lBkijDGMnYftb3OTbVRyD8Z1RrNctkS6kobkZLzi7gTW2NpFxH33hi9Nuno65uxXAqs7uvqA7lyFHH4","stattrak":true,"normal_prices":[73107,83422,0,0,0],"normal_volume":[528,25,0,0,0],"stattrak_prices":[76050,87791,0,0,0],"stattrak_volume":[82,6,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_v1iteRlcCK9nBsijDCAnobsLGXCPVV1XpB4ELYIsEbqktbjN-_k71GKjotAyS6sjn8d63pj4ewGUaci5OSJ2GrdBJ84","stattrak":true,"normal_prices":[0,0,0,33806,32401],"normal_volume":[0,0,0,30,334],"stattrak_prices":[0,0,0,35729,32200],"stattrak_volume":[0,0,0,3,77]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_vxjsvhWQiihlxEiuieAnrD1KCzPKhhyX5sjE7MLtRnuxNbjYb-x7gDWiYMTmCms2HlI7H065bsCUPF0-afUkUifZqukeTAH","stattrak":true,"normal_prices":[780119,764499,0,0,0],"normal_volume":[34,3,0,0,0],"stattrak_prices":[716933,889900,0,0,0],"stattrak_volume":[6,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_v13oPFhRju2qhAmoT-Jn4bjJC_4Ml93UtZuQrZfuhi5lYC1Pujr7lDd2YNAmy2siHlJ6Htu5r5TUqcm-6De2wiUOap9v8cDcIwcZw","stattrak":true,"normal_prices":[439599,404994,0,0,0],"normal_volume":[37,3,0,0,0],"stattrak_prices":[464519,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ux6seJiXyyyhxEYvjyXmIP8KDHCOml8U8UoAfkItRCwl9XnNe207lCN2t1EzXr93ClN5yc_5L5UVaRxr6HSjQGXYrc9_9BdcwX6MBne","stattrak":true,"normal_prices":[832325,0,0,0,0],"normal_volume":[14,0,0,0,0],"stattrak_prices":[1779999,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjUpYPwJiPTcA8nCcZ1EOcDu0Lum9CzZO6w4Fbeg4wQxX392ykb6yc4troKAPIm-6fJz1aWPFsIQnE","stattrak":true,"normal_prices":[91830,104458,0,0,0],"normal_volume":[267,5,0,0,0],"stattrak_prices":[95865,129808,0,0,0],"stattrak_volume":[15,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjXpYPwJiPTcFR0D8Z3F-Nb4xS6x4DjNe2x5A3eiNpMzyr6jCpPvHk95O0GAKpz-fbJz1aWGfxjapk","stattrak":true,"normal_prices":[126290,127534,0,0,0],"normal_volume":[302,9,0,0,0],"stattrak_prices":[120626,100897,0,0,0],"stattrak_volume":[22,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_ux6peRtcCW6khUz_TyGnt6sdnLBPQ4mX5ImTeBesRC7k4WxZO7gtVCPjo9Dznj5h3lLuip1o7FVNy-moo8","stattrak":true,"normal_prices":[79262,50464,45604,43657,43806],"normal_volume":[27,71,110,61,90],"stattrak_prices":[97287,53192,48977,46399,43835],"stattrak_volume":[5,14,17,14,8]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjWpYPwJiPTcFBzDcQhFuJf4BiwmtzmP7iw5QXc3YsUzn6oiikauCg44uoEAqQl_6bJz1aWfAW50lg","stattrak":true,"normal_prices":[91244,99500,0,0,0],"normal_volume":[230,2,0,0,0],"stattrak_prices":[92740,125000,0,0,0],"stattrak_volume":[15,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjRpYPwJiPTcAAnC8R2FLQD4BG6w4LuZunhswLXjIpGzS7333xPv3ls5e9RUPYkrPbJz1aWcLZcvps","stattrak":true,"normal_prices":[105176,102455,0,0,0],"normal_volume":[272,3,0,0,0],"stattrak_prices":[98040,156161,0,0,0],"stattrak_volume":[26,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_uh5ouJsSxa_nBovp3PQzYuoIH7BaA51CMZ3FO9cskKxk4DjP-7l4VPW3d1Nm3-s3HhPuH4-_a9cBjoiw1dT","stattrak":true,"normal_prices":[48577,40169,37101,35165,34391],"normal_volume":[14,68,90,64,55],"stattrak_prices":[0,49971,39817,35965,38961],"stattrak_volume":[0,10,17,12,11]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_uF_vORtcCW6khUz_WvXnNqteHKQZlV0CpolFLZZthDpxIKyNLmx4ADYiNpHmXqvjSJA5iZ1o7FVI83_8yo","stattrak":true,"normal_prices":[115766,53059,44174,43275,43314],"normal_volume":[21,143,206,116,68],"stattrak_prices":[141465,82265,52105,60150,49005],"stattrak_volume":[1,18,21,14,7]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_upyoOB9cCW6khUz_WrSzdv4d3KXZgAmW5ZxRuMJskS4wNHjM-rktgfagoxEziX5iC1I53x1o7FVgsvyhlU","stattrak":true,"normal_prices":[75690,29477,27356,28399,27312],"normal_volume":[2,37,92,23,57],"stattrak_prices":[0,34448,29433,32258,31964],"stattrak_volume":[0,11,23,4,8]},"562":{"index":562,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWSF_uMvj-NoVha_mg8ijDGMnYftbyrBOw52D5R0FOYPtkG6ltOxNrjl4FPdiN0WzC723SxP6ypp6u8LVKY7uvqAFpeI3XY","stattrak":true,"normal_prices":[112293,74889,44940,41551,36056],"normal_volume":[111,209,428,19,31],"stattrak_prices":[148464,74019,46725,46372,44323],"stattrak_volume":[16,34,56,8,4]},"567":{"index":567,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWSF_uMvj-NoVhaggRIptiqEiYfGLSLANkI-WJZxE-Fct0a6l4bjM-zgtQ2Lio1MnyitiClL7ig44eoLWKB3r_eD3BaBb-N1KCFKnQ","stattrak":true,"normal_prices":[70464,48548,44836,43281,43160],"normal_volume":[39,102,176,93,118],"stattrak_prices":[132880,49773,45586,43586,48772],"stattrak_volume":[1,30,35,30,13]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ut7tfNoQy2MmBw1sTGAk5X8JRTLN1F4Tox1QedZ50O5ktbhNuLrsgLb349FniiviH4b7S0-6-kHVfAjqayCjQrHL_Rjti0DtNMm","stattrak":true,"normal_prices":[690545,660000,0,0,0],"normal_volume":[31,1,0,0,0],"stattrak_prices":[627863,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6WAVp5Xco0W7IMsxGwkdDuYbm0sVHeg49Fziz_h3lP6y5o4-dTUfYh8qXW2wCUYrwjoc5UyoohxGw","stattrak":true,"normal_prices":[122899,128189,0,0,0],"normal_volume":[120,3,0,0,0],"stattrak_prices":[126283,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6VAVp5Xco0W7ZbshTuxoLnM-mxtgaP3t1EmXr4jCoa6ChqsuxQAKQnqaeFigvDM7Ejoc5UDoFmlio","stattrak":true,"normal_prices":[156918,167291,0,0,0],"normal_volume":[111,6,0,0,0],"stattrak_prices":[166904,163300,0,0,0],"stattrak_volume":[10,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6UAVp5Xco0W7MK5xHuwdOxM-KwslDX2Y0Wm3moinwd7CZtsO4GUqUiq_XfiwyTOecjoc5UkA0n2GE","stattrak":true,"normal_prices":[119946,123734,0,0,0],"normal_volume":[75,3,0,0,0],"stattrak_prices":[125455,187000,0,0,0],"stattrak_volume":[5,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6TAVp5Xco0W-UPsBDuwdfgN-jn5FHXjdpNzn322CpP5i064-oBVaEm_PWGjFmXMrAjoc5UYR0MRG0","stattrak":true,"normal_prices":[117527,118446,0,0,0],"normal_volume":[85,5,0,0,0],"stattrak_prices":[126388,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"577":{"index":577,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWCD_uMvj-NoVhaygAkopy-KlIb6HifOOV5kFJRxF-RZtxLqlIXvPr63tA2NithGmHj_iiwc6i5qsOwEA_Jxq_CD2grfcepqx0gUsCA","stattrak":true,"normal_prices":[117924,75852,61788,58377,54314],"normal_volume":[57,171,352,38,91],"stattrak_prices":[189263,84958,63525,63042,60132],"stattrak_volume":[7,24,61,2,18]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_uF1teBncCK9nBsijGTVpYPwJiPTcFUmC5p3FO5YsRO_lIG2Me3rsVOM3tpAmSv_33ka5i5r5upWV6Qsq_HJz1aWbk46ROo","stattrak":true,"normal_prices":[37714,35177,32088,31746,33633],"normal_volume":[131,133,156,16,22],"stattrak_prices":[44210,35375,32081,33810,35111],"stattrak_volume":[15,21,30,2,8]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_uN3oupsSxamhSJ-4wKJk4jxNWWSbVd2D8R1TbYKtxCww4DvZL7j71OI340Qnyqo2isbu3ps4ecHAqtz5OSJ2C2JEBJP","stattrak":true,"normal_prices":[39981,36893,33943,32695,33997],"normal_volume":[142,145,162,23,10],"stattrak_prices":[44293,42504,36600,35825,38911],"stattrak_volume":[16,31,34,4,4]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_vRzsvNocCW6khUz_WXQyN6uIH-fbFd1XJcjFuEJ50W6xofhYuu05AHdiYxNn3-viXlM7C91o7FVpU-ja-I","stattrak":true,"normal_prices":[79938,64923,63224,0,0],"normal_volume":[128,116,41,0,0],"stattrak_prices":[105090,73613,68500,0,0],"stattrak_volume":[18,23,2,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSA_uNzo-lWWyi9qhEutDWR1Nv8dXqWPVUpXpp5TLFbsxLtxNDkM-zi51CM34NFm3n_i3tNvXs44u0cEf1yDs3UNjs","stattrak":true,"normal_prices":[74161,28383,27129,26933,27748],"normal_volume":[2,41,81,26,70],"stattrak_prices":[0,31403,27260,30306,31743],"stattrak_volume":[0,4,26,3,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_uh5ouR6Wxaxmg8isjG6lob-KT-JZwMlApdxTOQMtBTtk4CzZezktgLW34pBz3r-in9JvC4-5ucEB_Bzq7qX0V9JeuCeUw","stattrak":true,"normal_prices":[131226,29899,27780,28030,28225],"normal_volume":[1,37,79,29,68],"stattrak_prices":[0,34472,28188,38059,30267],"stattrak_volume":[0,9,15,5,9]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSf_v5jovFlSha_nBovp3OAzd6qcX6ROFd1X5QkF7MDuxDpxIDgNb_msVTbiI4XzCit2iMfvH1v_a9cBqI-pjxG","stattrak":true,"normal_prices":[161304,44940,32572,31555,31193],"normal_volume":[7,107,255,50,95],"stattrak_prices":[0,50596,34407,60709,33220],"stattrak_volume":[0,11,43,5,19]}}},"509":{"name":"Huntsman Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s26aad5KfOSAimVlugu47U5HSrmzEp14zncz4ygICiealIiAsF2EOdYtkTpwNXuYbjk-UWA3JpY_ZDP","stattrak":true,"normal_prices":[13539,13539,13539,13539,13539],"normal_volume":[70,70,70,70,70],"stattrak_prices":[22104,22104,22104,22104,22104],"stattrak_volume":[12,12,12,12,12]},"1107":{"index":1107,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-QG1iY1OBio-xoQRa_mg8ijDGMnYftb3qfPQZyWJtyFuNe4BG5ktDuY-ritleIid1Hynir3H9KvH055btRV6s7uvqAU_ahZxI","stattrak":true,"normal_prices":[15299,11549,9870,9437,9432],"normal_volume":[125,188,238,16,25],"stattrak_prices":[20122,16527,10512,11990,12285],"stattrak_volume":[8,16,32,5,6]},"1112":{"index":1112,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-UHViY1OBio-xoQRaxmRwkuAKJm4LwLyrTO2l8U8UoAfkJ5kTsmtfvNe7mswOL3YNByX_9338Y7ig44-cEV_Yk_PGBjgnCZeY7_9Bdc4dD_RHM","stattrak":true,"normal_prices":[12497,8074,6704,6583,6620],"normal_volume":[40,99,133,61,68],"stattrak_prices":[16182,10502,8622,8843,8143],"stattrak_volume":[6,19,22,19,5]},"1117":{"index":1117,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-UHViY1OBio-xoQRaygAkopy-KlIb6HifOOV5kFMF1QrMNu0Puw4DvYbnk5Qfc2d5Azyv_3C1O7Hlq4ulRAvcn_qKBiFvfcepq3JPpPWw","stattrak":true,"normal_prices":[19382,11590,10220,10013,9275],"normal_volume":[54,149,316,27,59],"stattrak_prices":[22123,15406,11601,12669,11365],"stattrak_volume":[5,28,42,8,5]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1iHxOxlj-1gSCGn20V24znRw4v7JXPEaVUnW8AkQbUP5xW4wYKzMeu3sgPbio4WzXr_3HxXrnE84qvZFNo","stattrak":true,"normal_prices":[84067,23390,11075,12000,11330],"normal_volume":[12,32,74,4,9],"stattrak_prices":[700000,47384,18033,27957,18278],"stattrak_volume":[1,4,5,3,4]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AHliEwP5zj_R7TSi9qhEutDWR1Nb4IH_GZw8lW8QiRu4M40Htl9W0NeK3tQKLjt9Cm3j4iypO6309suYcEf1yAgdvvhk","stattrak":true,"normal_prices":[20996,9911,7008,7311,7241],"normal_volume":[1,9,26,6,10],"stattrak_prices":[0,17346,9453,0,17000],"stattrak_volume":[0,3,8,0,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AHliUwP5mvORWQyC0nQlp5GiDnIqseHPGalMnXJMhQ-cDtkPrm93jZe7l5wbb2YsTyy352CpP7TErvbiCPrzwVA","stattrak":true,"normal_prices":[35000,9490,6770,7739,6128],"normal_volume":[1,17,38,3,5],"stattrak_prices":[96164,13567,9857,10478,11811],"stattrak_volume":[1,3,6,3,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SD1iWwOpzj-1gSCGn2x8hsW6DmIqpcXjBZgYkCZt5F7VcthS8ldS2Nr7m5VCMi4gRyyuqjHtXrnE8oar8MtU","stattrak":true,"normal_prices":[22998,34700,0,0,0],"normal_volume":[209,7,0,0,0],"stattrak_prices":[33874,64500,0,0,0],"stattrak_volume":[16,3,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AAVieyOl-pN5lRi67gVMktj_XzNapIi6QPwYjCcd1FOIJsBPsm9TvM7-ztFfXjIgXnyX7jCxA8G81tHpNPllX","stattrak":true,"normal_prices":[129481,14517,7802,8500,8608],"normal_volume":[1,13,37,4,11],"stattrak_prices":[175123,24500,13651,20753,12805],"stattrak_volume":[1,4,1,3,1]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SAFiEyOlzot5mXSi9khgYvzSCkpu3JHmWZwFzWZB1R-RbtxC_kofvMLzg51SLj41Nmyuqjyoc5nxi5ekLUr1lpPOee5ognQ","stattrak":true,"normal_prices":[15526,16324,0,0,0],"normal_volume":[256,8,0,0,0],"stattrak_prices":[19843,29900,0,0,0],"stattrak_volume":[24,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iUwON3o-J8XBbqxSIrujqNjsGpIn_GbA8pA5J5Q7Jesxm5w9flZezi5FHXgo9Fzy_2iX8c7yhu47oCT-N7rcl4-qvl","stattrak":true,"normal_prices":[11029,9432,9040,9268,11208],"normal_volume":[60,64,78,10,9],"stattrak_prices":[16715,17243,12691,15138,13879],"stattrak_volume":[4,5,10,4,1]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1idwPx0vORWSSi3kCIrujqNjsH8JXvCZgEiDZVwEeUK40W6ldaxZOnn7g3Zj4gUmySoi39A7SxqsrsET-N7rT4plPHN","stattrak":true,"normal_prices":[18638,26689,0,0,0],"normal_volume":[243,7,0,0,0],"stattrak_prices":[27601,35625,0,0,0],"stattrak_volume":[31,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iD1etzvN5iQSC1kCIqtjmMj4K3cXiUbFd1ApZwQ-Bb5Ba5kYfjMu3hslSI2oNDyi6shy4bvy1i5-hWU71lpPPSsstkpw","stattrak":true,"normal_prices":[0,0,0,7293,5544],"normal_volume":[0,0,0,14,178],"stattrak_prices":[0,0,0,17072,7341],"stattrak_volume":[0,0,0,8,27]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JaAV1W8ZzEecL4RXtwYHkZry25lSMj95GxCj_3CMc6is5sb4GAPBx-rqX0V9XRKLfoA","stattrak":true,"normal_prices":[89777,93309,0,0,0],"normal_volume":[60,2,0,0,0],"stattrak_prices":[101225,225486,0,0,0],"stattrak_volume":[7,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMN5Qe8CshbrltLlNOqxsgLc2t8Uzyv9jSNLuC9r4-oEVfB2r_GFjg3fcepqRzB392E","stattrak":true,"normal_prices":[63345,66900,0,0,0],"normal_volume":[55,5,0,0,0],"stattrak_prices":[73852,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuE7UDuhC-mtbnNb-xtFfZ3YtGzSv6hisauns-5b5WVqIgqKDfjwjEYKp9v8eb6jzRvA","stattrak":true,"normal_prices":[119913,144216,0,0,0],"normal_volume":[16,1,0,0,0],"stattrak_prices":[275000,0,0,0,0],"stattrak_volume":[1,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXEa1V1CpR1FOQD4xK4xNzhN-6w5AXX3opCn3ivjy1N6C9t67xUU_Jw5OSJ2AqihnPi","stattrak":true,"normal_prices":[29273,57000,0,0,0],"normal_volume":[82,3,0,0,0],"stattrak_prices":[36942,45670,0,0,0],"stattrak_volume":[8,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWXBag91D5JxRu8N5hC_mtflP-6x7gSMio5Nnius2i1Avypisr0CVadx5OSJ2A8DtsQk","stattrak":true,"normal_prices":[37008,61780,0,0,0],"normal_volume":[89,2,0,0,0],"stattrak_prices":[38283,1578980,0,0,0],"stattrak_volume":[7,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iSzftztN5lRi67gVN1tW3UzousdnrBbFB0WZt0QbVctEawxoGxN-ywtgGNjtgUySz-hiIa8G81tLF2CaOG","stattrak":true,"normal_prices":[48750,17202,12153,12089,10507],"normal_volume":[1,20,21,15,19],"stattrak_prices":[136645,25045,19246,18863,21086],"stattrak_volume":[1,8,10,1,4]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWWROAEmX5omROIPskTtmobkZrvjtgzajIwRmSn723xK6Shr4LpXV6Yh5OSJ2Po9oSed","stattrak":true,"normal_prices":[28722,43075,0,0,0],"normal_volume":[66,2,0,0,0],"stattrak_prices":[35976,60470,0,0,0],"stattrak_volume":[4,2,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWXBOFcmWMN0QLJbuxXrwNTiMejm7weKiIhEzCqo2i5JuClt5u0EBKZw5OSJ2Df-bXry","stattrak":true,"normal_prices":[31670,48876,0,0,0],"normal_volume":[102,2,0,0,0],"stattrak_prices":[37136,71100,0,0,0],"stattrak_volume":[8,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iWzvx1teVWQyC0nQlpsjyHnIyvI3-UbgImApJxTLYJsUa9m4fkY7y25lbe3o8UzCn5j39BuzErvbgKxgW_zw","stattrak":true,"normal_prices":[23384,11132,9280,8827,8935],"normal_volume":[7,23,29,16,8],"stattrak_prices":[0,16585,11770,14636,14381],"stattrak_volume":[0,2,1,6,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1ifyOJztN5lRi67gVN_4W-Byt-hIi2UbVV2W5p2Fu4PuxmxkdO0Zejj7wff3okWzCT3ji4f8G81tJdWCOsa","stattrak":true,"normal_prices":[39113,20734,17664,16626,16846],"normal_volume":[7,30,75,37,17],"stattrak_prices":[0,34580,31419,26877,30000],"stattrak_volume":[0,3,4,6,4]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1iUxf53pN5lRi67gVN-6mqBz4msIHnDPAd1X5YiQuBe5Ba5ltG2NOvj7wTcjo1Eyn79inwd8G81tJCD569m","stattrak":true,"normal_prices":[29752,8228,6537,6594,6621],"normal_volume":[1,21,14,5,8],"stattrak_prices":[0,11925,9438,14019,11789],"stattrak_volume":[0,5,5,2,1]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iVzOtkse1tcCSyhx8rtjSfn4vGLSLANkI-A5d0Q7EI4BPqwdHlNe3m4Q3Zj4IQnn6s2ilJ6y5i5r4AU_cg-qaBiBaBb-MAj17m6g","stattrak":true,"normal_prices":[63575,69977,0,0,0],"normal_volume":[119,4,0,0,0],"stattrak_prices":[73038,138142,0,0,0],"stattrak_volume":[13,3,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cBTLN1F4Tox4R7JZs0bsldLnMurg5VfWg4wUyyn72yhIuiY6tu1UBaAlrKDT2Q3HL_Rjtkcw7QQm","stattrak":true,"normal_prices":[22239,25688,0,0,0],"normal_volume":[169,6,0,0,0],"stattrak_prices":[23285,38745,0,0,0],"stattrak_volume":[16,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cxTLN1F4TowiQ-MD5xe_moa1P-7ltA2IjIlNz3_7jiwd5yw44-YLB6Zzr6LWjQ6VL_RjttkcOtMw","stattrak":true,"normal_prices":[24895,25664,0,0,0],"normal_volume":[230,7,0,0,0],"stattrak_prices":[26709,40000,0,0,0],"stattrak_volume":[14,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8chTLN1F4ToxwTLFe5EO5x4LhYuvi5w3eiIwRyi2qjXgYvyZj4ugCWKssr6XRhwiTL_RjthxPDqn6","stattrak":true,"normal_prices":[21993,26399,0,0,0],"normal_volume":[169,4,0,0,0],"stattrak_prices":[25625,53846,0,0,0],"stattrak_volume":[12,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8dRTLN1F4TowjF-ULthGxkdDhZuqw4A3diYwTyiX33S8f5yto4rkKUKsirqzTigySL_RjtsSe7bgM","stattrak":true,"normal_prices":[22086,26748,0,0,0],"normal_volume":[185,6,0,0,0],"stattrak_prices":[22952,42500,0,0,0],"stattrak_volume":[10,2,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1ifwut3vt5iQSC1kCJ-4wKJk4jxNWWVOA4hA5MjQONbtRGwkYHlP77l5FaLj9gTxS76hn4avXo-t-tTV_Uk5OSJ2DtQY32N","stattrak":true,"normal_prices":[7550,6524,5875,5761,6581],"normal_volume":[123,124,162,22,19],"stattrak_prices":[10083,8739,6891,8000,7999],"stattrak_volume":[24,17,28,7,4]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1idwPx9teVWWjmMzE0YvzSCkpu3cC-Wald2A5tyFu9esxDpktO2Nrzq4wzaiYlGzXmo3SxIuHw65bsLU71lpPPkJkZySA","stattrak":true,"normal_prices":[9157,8024,6690,7716,8208],"normal_volume":[124,126,164,19,14],"stattrak_prices":[11939,9501,8335,9038,200974],"stattrak_volume":[27,24,23,6,22]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iKxOxksd5lRi67gVN_42jTnourc3OSbA4iCJV5F7UCsEXpx93jYrnn7gfago4QyH6ri3tL8G81tAzA6RBm","stattrak":true,"normal_prices":[28948,20096,20439,0,0],"normal_volume":[64,51,12,0,0],"stattrak_prices":[32982,26033,87205,0,0],"stattrak_volume":[1,8,1,0,0]},"620":{"index":620,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-QG1iA1PxmvORWRzy9gQ4qsjO6lob-KT-JbFQlC5YhFrQN4xe4m4ezNL7g4QyLiItFyS772C5I7ilq6rpWUaYh-rqX0V82KISxGQ","stattrak":true,"normal_prices":[33078,10976,6363,7154,6114],"normal_volume":[5,56,141,16,32],"stattrak_prices":[68123,16221,9119,8828,9296],"stattrak_volume":[1,8,15,1,4]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AHlidxP1-j_VoQRa_nBovp3OEzd7_dn_FOAVxCpp2QuQC4xW9kYaxNOLqtA3dgowWyyn7jnxAuCxj_a9cBvBQQTn3","stattrak":true,"normal_prices":[0,6562,5927,7140,5819],"normal_volume":[0,18,31,5,4],"stattrak_prices":[0,8689,7509,8842,8427],"stattrak_volume":[0,3,6,1,5]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1iWzvxzo_VWTSahkBwrjDGMnYftb3qRaFMmCpokE-YOsRW5xNbjY-ri7gTb2YpDz36o3XtL7H1psecLUfI7uvqAW2HsimI","stattrak":true,"normal_prices":[30502,8100,6660,7674,7271],"normal_volume":[1,7,15,2,7],"stattrak_prices":[0,9497,12131,9305,10816],"stattrak_volume":[0,5,6,2,8]}}},"512":{"name":"Falchion Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2oaahuKPmcACmSlL4u5uVqG37klhh24DnUytaqJXKQbgcmX5RyF-4Puha8xofmZejg-UWA3FLkEz9H","stattrak":true,"normal_prices":[11269,11269,11269,11269,11269],"normal_volume":[89,89,89,89,89],"stattrak_prices":[15958,15958,15958,15958,15958],"stattrak_volume":[20,20,20,20,20]},"1106":{"index":1106,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-QG1iWwOJ1uOhmQRa_mg8ijDGMnYftby-SalJ1AsQiEecC4xiwlobjMLnjsQffjtkQzSj2iS9I63xj4OwDVqo7uvqAGhE4d3k","stattrak":true,"normal_prices":[15834,12016,10367,10007,10104],"normal_volume":[100,148,219,20,23],"stattrak_prices":[20708,14992,11245,13832,12273],"stattrak_volume":[18,17,32,4,4]},"1111":{"index":1111,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-UHViWwOJ1uOhmQRaxmRwkuAKJm4LwLyrTO2l8U8UoAfkMtkKxwdTkY-m34ADfjoJNyiWs3ypN6ylp5bsAWaUi-KTWjQ-TNOI8_9BdcxUxepgb","stattrak":true,"normal_prices":[11455,7891,6561,6223,6286],"normal_volume":[33,77,146,50,68],"stattrak_prices":[17485,9642,7885,7832,8673],"stattrak_volume":[5,13,19,6,15]},"1116":{"index":1116,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-UHViWwOJ1uOhmQRaygAkopy-KlIb6HifOOV5kFJAkRO5esxC-w4LjNezg5ASIgtkTyn76jHkc7XxisOcFWaUg8_LQi1nfcepqdp_zzW8","stattrak":true,"normal_prices":[17258,11822,10201,10855,10383],"normal_volume":[57,150,260,27,38],"stattrak_prices":[23863,14874,11891,16694,12890],"stattrak_volume":[19,23,24,5,6]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1iHxOxlj-1gSCGn20t242-Eno34cC6SOgYoCZZzE-JesxawkIG0Pry24lCKj4IRzn-th3xXrnE8QWIt39g","stattrak":true,"normal_prices":[118479,17834,12452,13153,11763],"normal_volume":[5,52,87,8,19],"stattrak_prices":[672626,23028,19203,19641,0],"stattrak_volume":[2,5,15,2,0]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AHliEwP5zj_R7TSi9qhEutDWR1IqtI3_EOgYpC5EmQe5esha7kdHnPu3m4gTdg4MRxC6q2yxO6ik-67scEf1yx78TVSg","stattrak":true,"normal_prices":[24156,9775,7447,6644,7320],"normal_volume":[4,20,44,4,13],"stattrak_prices":[75545,11458,9211,13701,11756],"stattrak_volume":[1,2,6,4,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AHliUwP5mvORWQyC0nQlpsG2Bmdv_cS7DOwIoDJB4F7MPsBHtkoDmZri25APZjYpNni_3higbvDErvbjw_sgWtw","stattrak":true,"normal_prices":[14764,8313,6666,7530,6562],"normal_volume":[2,17,37,9,16],"stattrak_prices":[58261,11510,10749,9000,10679],"stattrak_volume":[1,2,6,2,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SD1iWwOpzj-1gSCGn20l-tmjVmIqhdHmWa1AkCJRyFuUItBW9wNTmY7jh5ADa3o5Fy3-sinhXrnE8OtZmGks","stattrak":true,"normal_prices":[20298,25997,0,0,0],"normal_volume":[242,18,0,0,0],"stattrak_prices":[30240,38867,0,0,0],"stattrak_volume":[33,3,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AAVieyOl-pN5lRi67gVN35jjcmNmqcSrDPAR2ApMhQ7UDsBmwwNfvZL_r5wHcgoNFynj-2y9B8G81tDvvgv8m","stattrak":true,"normal_prices":[34197,10532,8498,8662,8961],"normal_volume":[9,21,44,5,16],"stattrak_prices":[176735,19718,13159,12990,10996],"stattrak_volume":[1,6,8,2,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SAFiEyOlzot5mXSi9khgYvzSCkpu3cCiRZwIiDcZ2ReEO4EW5xtXlMuO05weKjYNBxS-tjytOvC495u0BWb1lpPPh4hsqrQ","stattrak":true,"normal_prices":[14427,20161,0,0,0],"normal_volume":[233,11,0,0,0],"stattrak_prices":[20539,24301,0,0,0],"stattrak_volume":[22,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iUwON3o-J8XBbqxSIrujqNjsH7eXjGPwAkXJR2QLMJtRe5kN2xYu7k5QHcio0XyX-o3S4duH5u4eYFT-N7rR0fzt1P","stattrak":true,"normal_prices":[11499,10136,9269,9542,12462],"normal_volume":[61,61,75,8,11],"stattrak_prices":[15152,13722,12500,13674,14469],"stattrak_volume":[7,9,7,3,1]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1idwPx0vORWSSi3kCIrujqNjsGqdXrFbFIlA8QjTO8Lu0O7m921ZLy05gfXj99Aziz_2nscuic6sr4AT-N7rSTjmXt5","stattrak":true,"normal_prices":[18510,22203,0,0,0],"normal_volume":[283,6,0,0,0],"stattrak_prices":[23340,28431,0,0,0],"stattrak_volume":[29,1,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iD1etzvN5iQSC1kCIqtjmMj4K3Ii3DbgAnCMBwQbRZtEG9wILlZu_nswyI345FxCSvjyMc6XxvtrxTUr1lpPMD9UqAWA","stattrak":true,"normal_prices":[0,0,0,7379,5943],"normal_volume":[0,0,0,14,184],"stattrak_prices":[0,0,0,10000,8071],"stattrak_volume":[0,0,0,3,33]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JagN2CZV4QbYPtBe9ktDvYeLrsgLaiYtCmyT2j38aunpq47sEUfVx-LqX0V96C3cwag","stattrak":true,"normal_prices":[69659,89995,0,0,0],"normal_volume":[51,4,0,0,0],"stattrak_prices":[84477,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMB1TeAIsxi5w4K0Y7_jtVTc3d1MzX_3iSxAuy85seYDA6Bxq6eCjV7fcepqbrrX6Yc","stattrak":true,"normal_prices":[49258,81326,0,0,0],"normal_volume":[49,2,0,0,0],"stattrak_prices":[73955,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuQLECtxDrkIHlMem041aP2ohHmymsjSkaun49te9UAKp3-PWBjg-QNqp9v8frwaFCRg","stattrak":true,"normal_prices":[105220,135000,0,0,0],"normal_volume":[11,2,0,0,0],"stattrak_prices":[166615,2472065,0,0,0],"stattrak_volume":[2,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXBaQMpDZMjRu4ItxTsmoa0PrjrtQHWj4NNnH38hi1A7Xpt5-kBB_Zw5OSJ2M_vVPun","stattrak":true,"normal_prices":[30018,0,0,0,0],"normal_volume":[56,0,0,0,0],"stattrak_prices":[36615,45173,0,0,0],"stattrak_volume":[6,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWXBaAEnX5R0ELJb5EK5moa1MOyw7gSNj4tBnyT4hi4d5idr4O4GA6px5OSJ2IVStUtw","stattrak":true,"normal_prices":[35651,39679,0,0,0],"normal_volume":[65,2,0,0,0],"stattrak_prices":[36798,55222,0,0,0],"stattrak_volume":[4,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iSzftztN5lRi67gVNxsT7Tntmpdi-XPQAmWJJ5QuRYsBa7loe2P-7lsVTZjtkUnyz_inhK8G81tNS01icZ","stattrak":true,"normal_prices":[25104,16151,13921,11925,11610],"normal_volume":[9,26,29,11,28],"stattrak_prices":[31400,22875,17000,20715,17709],"stattrak_volume":[3,3,3,1,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWXDPFV2CMckRLRc5BG5xIa1Ne3qtFfe2doTnC743yxL7Sxv6rtWVqst5OSJ2F-BiodS","stattrak":true,"normal_prices":[29106,39978,0,0,0],"normal_volume":[57,2,0,0,0],"stattrak_prices":[35723,60000,0,0,0],"stattrak_volume":[5,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWWWPFRyWZF0QbII5hDpl9fiNerh5gKKgt8Wyy6riC5Ov3tjsrsHBKR25OSJ2EkYY4Ju","stattrak":true,"normal_prices":[31055,39400,0,0,0],"normal_volume":[72,5,0,0,0],"stattrak_prices":[35247,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iWzvx1teVWQyC0nQlp4G-BnNeqc3KVaAAlDJomEOEI4BC4w4W2NLm0tlHWio0XnH332ilM6DErvbhTfwMZNQ","stattrak":true,"normal_prices":[14898,10264,8654,8211,8310],"normal_volume":[10,27,26,19,24],"stattrak_prices":[23339,11036,11460,11848,11685],"stattrak_volume":[2,1,5,2,10]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1ifyOJztN5lRi67gVMi4z-Hz96tcSiUblcoA5tyTONZsxG4wdPjZLvg4Q3ej99Ezyr2jS1L8G81tJVww3hv","stattrak":true,"normal_prices":[30052,19026,16825,14998,14385],"normal_volume":[19,81,108,57,34],"stattrak_prices":[60858,29797,22758,20313,25865],"stattrak_volume":[2,12,9,3,11]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1iUxf53pN5lRi67gVMksWuHntutdi_Cb1IlCZFwROYMuxmxloGyY77msQCNiNhNm3j-2CIa8G81tBGTV0lI","stattrak":true,"normal_prices":[17642,7143,6422,6498,6776],"normal_volume":[2,15,38,4,16],"stattrak_prices":[0,10335,8172,10222,9602],"stattrak_volume":[0,6,7,5,4]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iVzOtkse1tcCSyhx8rtjSfn4vGLSLANkI-WZEiR-cOu0Hrm9S1Nunm41PejopGny_-iStBuys5sukBVvYjrqTV2RaBb-OVFNXjzg","stattrak":true,"normal_prices":[53840,55067,0,0,0],"normal_volume":[83,3,0,0,0],"stattrak_prices":[60640,70000,0,0,0],"stattrak_volume":[6,2,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cBTLN1F4TowmFu4P4xaxkIHjMOrhs1CLjo5FxCj83XxN6Cs_6upWUKJ3_PLShg6SL_RjttqUSV6v","stattrak":true,"normal_prices":[22452,25840,0,0,0],"normal_volume":[140,4,0,0,0],"stattrak_prices":[26178,46000,0,0,0],"stattrak_volume":[17,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cxTLN1F4ToxxF-4P4BTtl4DvZem04wbejY5AyyqsjS0a6Xw4tuYFVvcmrvfRhw2TL_RjttGzwP08","stattrak":true,"normal_prices":[24587,27882,0,0,0],"normal_volume":[198,7,0,0,0],"stattrak_prices":[27567,0,0,0,0],"stattrak_volume":[15,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8chTLN1F4Tox2EecPuha9m4bhZuLhtQTZid4UxCT8h39PvCo54egAVqF2-PaF3QGSL_RjtnjgxS7B","stattrak":true,"normal_prices":[21602,27331,0,0,0],"normal_volume":[147,5,0,0,0],"stattrak_prices":[25742,46506,0,0,0],"stattrak_volume":[12,2,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8dRTLN1F4Tox2RO8NtxG9kYCxYbvisw3bj9lByCyo3ylKuy9stboEUqcn_a3RiFuVL_Rjtvg0XKwV","stattrak":true,"normal_prices":[21403,25373,0,0,0],"normal_volume":[145,4,0,0,0],"stattrak_prices":[26594,52500,0,0,0],"stattrak_volume":[12,1,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1ifwut3vt5iQSC1kCJ-4wKJk4jxNWXCPA4kAsBxReFbt0S9xtCyNuq35lTfio8XxHmqh39O6S5rsL1QV_Uh5OSJ2JvTxrZB","stattrak":true,"normal_prices":[9376,7363,6767,7395,8224],"normal_volume":[111,111,145,23,19],"stattrak_prices":[10402,9468,8764,9000,9977],"stattrak_volume":[27,24,27,5,1]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1idwPx9teVWWjmMzE0YvzSCkpu3eX6RbVN0D5t5F-MCtRjpl9DgYerq7lHb2t1Nynj_3C5I6ik5tr5TB71lpPOmEPqDwA","stattrak":true,"normal_prices":[10250,8507,7930,9459,9261],"normal_volume":[143,128,116,7,4],"stattrak_prices":[12754,11598,10022,9849,13848],"stattrak_volume":[34,24,18,9,3]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iKxOxksd5lRi67gVMhsWvXnIurc36UP1RzWJB4QbYCsBC-xoC0N-3gtVHY2N8XmCT_2isb8G81tLxG9DyC","stattrak":true,"normal_prices":[23779,20047,19545,0,0],"normal_volume":[79,68,19,0,0],"stattrak_prices":[34000,23556,28289,0,0],"stattrak_volume":[4,7,1,0,0]},"621":{"index":621,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AAViA1PxmvORWSSi_lhUuvDO6lob-KT-JOAQiCpJyRu4PsxPsk4fkNerjs1bXjtpCyCqri39BuH094OgKWfUn-LqX0V-hhcTrMg","stattrak":true,"normal_prices":[29281,12361,7775,7903,8192],"normal_volume":[9,42,111,15,20],"stattrak_prices":[131023,12441,10813,11855,22131],"stattrak_volume":[1,7,22,4,4]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AHlidxP1-j_VoQRa_nBovp3Pcwtv7dyqUPw5yDZN5FOAIu0Pqw4fmPuu07gSIiI5Fzy323Xga7C9u_a9cBhYueYQh","stattrak":true,"normal_prices":[0,6837,6173,6516,6329],"normal_volume":[0,25,49,14,17],"stattrak_prices":[85739,10594,7139,11811,8300],"stattrak_volume":[1,9,3,1,2]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1iWzvxzo_VWTSahkBwrjDGMnYftbyjDPVQgCJEhELMOtRG9mtfkP-jr7wyMjoMWny2vjSxMvCc9suxWAqU7uvqAOEaxeJw","stattrak":true,"normal_prices":[22229,9428,6752,8188,7213],"normal_volume":[4,16,40,10,11],"stattrak_prices":[0,11870,10260,12762,9977],"stattrak_volume":[0,1,16,7,8]}}},"514":{"name":"Bowie Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s29fbZ7KeaSAliSzvl_ta88TX61xExyt2nTz9eveHjEPQRzXMcjFuYIuhHtkIKyNLnmtACLg4sX02yg2XbF4Kcv","stattrak":true,"normal_prices":[9608,9608,9608,9608,9608],"normal_volume":[72,72,72,72,72],"stattrak_prices":[11752,11752,11752,11752,11752],"stattrak_volume":[4,4,4,4,4]},"1104":{"index":1104,"max":1,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF1pd5rQD66kCIrvC-ApYPwJiPTcAJyAsZ3FrINuhK-l9O2Yei35wTago9NyCj4iHtP5n5itbsGA6FwqaTJz1aWiYxmw3g","stattrak":true,"normal_prices":[18966,10938,9239,8599,8321],"normal_volume":[58,127,173,62,67],"stattrak_prices":[29499,14976,11156,10802,9758],"stattrak_volume":[6,26,26,14,1]},"1109":{"index":1109,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFxo95rQD66kCIlvzyGkbD1ICbOMFdkX_0sHLBS9g7qx9HhMuyxtA3b3o0Tyij92H4fuy5q675XAPBxrvHVh1nBOeFo5ZYAOr_5Gl4TXifL","stattrak":true,"normal_prices":[10767,6007,5767,5646,5650],"normal_volume":[31,85,166,54,50],"stattrak_prices":[16455,8641,7311,7668,7276],"stattrak_volume":[12,15,27,14,12]},"1114":{"index":1114,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFxo95rQD66kCImpimKjp32LyLEAVp5Xco0W-cIsEW9xty1Zb-z7gHd3o8UzSv3hypNvX0-tu5QWKMk-6XUjAiUYLAjoc5UIuuJ8AY","stattrak":true,"normal_prices":[15444,10328,8527,9457,8495],"normal_volume":[55,153,211,25,57],"stattrak_prices":[26350,13257,9272,11400,10620],"stattrak_volume":[14,24,23,8,14]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5-SiugqhEutDWR1Nb6eHLCOlR0C8Z3TeEPtEHsw4KyY-Lh5gLZ2d9BnCiv2itI7Hps5-scEf1yekXUy9I","stattrak":true,"normal_prices":[221466,17922,11938,12349,21500],"normal_volume":[1,53,75,5,28],"stattrak_prices":[300000,28453,19668,0,30051],"stattrak_volume":[2,2,9,0,1]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFloN59Tjm2qgg1sTyLpYPwJiPTcFUkDMFxRecO50LpxNazY7vgtAHcioNExSr4iH4Y6nk-57pRWaIlqPXJz1aWG3uFyDs","stattrak":true,"normal_prices":[19600,7628,5915,7093,9017],"normal_volume":[1,23,33,14,8],"stattrak_prices":[117550,17665,8100,9298,10499],"stattrak_volume":[1,1,1,2,8]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFloN5tTjmjmRgYvzSCkpu3d3yWbFIoDJYiE-cLshHtkoHlYbyw7gzX2Y8WziysjH9I7n4_5L5RU71lpPPWuYfcpQ","stattrak":true,"normal_prices":[17913,7047,6022,6216,6858],"normal_volume":[1,12,29,2,9],"stattrak_prices":[104177,20077,7799,11349,8966],"stattrak_volume":[1,1,2,3,3]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3sd5vTi22qhEutDWR1NiocCqeZwYoC5pxRuMM5BPqxtTgY-20sgXZ2NpHnyqqiCpA5nk56u8cEf1y_UmCvro","stattrak":true,"normal_prices":[20819,26755,0,0,0],"normal_volume":[214,6,0,0,0],"stattrak_prices":[27216,45826,0,0,0],"stattrak_volume":[22,3,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFlv95nRi67gSIrujqNjsGtdSqTagJ0CsF5RbMK5BC_lofjMLy0sQPcj90Tn3r7iC8cvShv5eZWT-N7rdA_agun","stattrak":true,"normal_prices":[38400,8708,6864,7260,7614],"normal_volume":[3,20,37,11,20],"stattrak_prices":[129755,23000,11640,13000,13051],"stattrak_volume":[2,5,3,1,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vt59Ri62hyIooTyLnYrGLSLANkI-XJJ0FLNY5BOxw4XjNu-zsQDd2IpFyy32jS0b7Ss95L5RVaIk_qyE3RaBb-Pz4OFuTg","stattrak":true,"normal_prices":[13382,17824,0,0,0],"normal_volume":[221,12,0,0,0],"stattrak_prices":[18539,18790,0,0,0],"stattrak_volume":[38,5,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5tTiSyhh4yoALcyrD1KCzPKhhxX5RxTeYN4BnuxtPgMurg5Qbbjt4UxC2sjS1N7ntv5-lRB_YsqPHekUifZkcTPu2g","stattrak":true,"normal_prices":[10515,9027,8247,8299,11392],"normal_volume":[60,62,74,6,11],"stattrak_prices":[15432,12689,12814,14152,44293],"stattrak_volume":[20,15,6,4,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5kTjuxmRgYtTyBn7D1KCzPKhgpXMdyTeBb5BPuktPvZOi2sgWM2d9HmSr-i3xAuidssO8HBKcsrvLXkUifZhxP_T8X","stattrak":true,"normal_prices":[16753,23282,0,0,0],"normal_volume":[253,14,0,0,0],"stattrak_prices":[21393,40824,0,0,0],"stattrak_volume":[36,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od56Wyy2mSIsvTSDn7D0JC_OK1s-C5F1RO4Ktka_kofuMevjtgWMjI8QmSj7iStM7itv6-hXUfEnqKHQ2xaBb-ObX0d6iA","stattrak":true,"normal_prices":[0,0,0,7260,5129],"normal_volume":[0,0,0,11,178],"stattrak_prices":[0,0,0,13968,6990],"stattrak_volume":[0,0,0,5,29]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd57WiuqqhAmoT-Jn4bjJC_4Ml93UtZuQe5Y50O-wNzhMuji5w3e344Rny-q3H5K7iZtsekLU6El-6eBi1vHY6p9v8dqQrLELQ","stattrak":true,"normal_prices":[72202,83000,0,0,0],"normal_volume":[51,3,0,0,0],"stattrak_prices":[91274,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd56TjmjnRQ1tgKIm537LS7OJFN0Zc4pEr9OrBaxl4KxNr7r5VHZiYtBzH-qiShJ7y1v4roHAvZ2qfLTjlvDOLw_sMIdZKHwjx9VvzI","stattrak":true,"normal_prices":[48534,55369,0,0,0],"normal_volume":[45,3,0,0,0],"stattrak_prices":[57355,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5rQyiwng0isi-JpYL4MynLO19qX8YfGb5d6lSmxt2yZeLq5QeI2dgWzSmsjiMauyxr5O4LB6Ej-6PXjVyQZLc54pZRJOHnE0pg4-kgmA","stattrak":true,"normal_prices":[99484,100000,0,0,0],"normal_volume":[12,1,0,0,0],"stattrak_prices":[164000,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8cBTLN1F4TowmEeFct0WxkIayNe7ksQOKiIwXyH35jCIb63xo47kAB6Vz8qPR2lmQL_Rjti6PPai2","stattrak":true,"normal_prices":[26163,32203,0,0,0],"normal_volume":[55,2,0,0,0],"stattrak_prices":[31009,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8cxTLN1F4TowiELQMtkG_ldDvNOri4VDXioMTxC6s2CJN7C1osOtXAqMk__eCiV2UL_RjtoCtKbyV","stattrak":true,"normal_prices":[28950,40030,0,0,0],"normal_volume":[91,2,0,0,0],"stattrak_prices":[37133,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5rQzy2kSIrujqNjsGrI3mTbQR1DpNxE7YK50O4wYfnMe207gLc2ohDyC7-jiobvy445L0GT-N7rT12_gEU","stattrak":true,"normal_prices":[25084,14333,10022,11030,9888],"normal_volume":[2,24,18,13,24],"stattrak_prices":[37389,17810,17652,20594,23569],"stattrak_volume":[3,2,1,4,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8chTLN1F4ToxwQ7FbtxXuldSyZuuztVHWiYlCxC75hnlO6ic_secAV6dxqaPQjQ3FL_RjtlsVJsRA","stattrak":true,"normal_prices":[25098,39925,0,0,0],"normal_volume":[57,2,0,0,0],"stattrak_prices":[32440,166078,0,0,0],"stattrak_volume":[5,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8dRTLN1F4Tox3E-cOukLuk9W0NLjr7g2Pj4lAzy782ytO6Sdv5e4GVKQl8qTRiQGSL_Rjtvx55ayw","stattrak":true,"normal_prices":[30157,35629,0,0,0],"normal_volume":[62,2,0,0,0],"stattrak_prices":[36304,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5vQDuwkBkYvzSCkpu3dy-QPAcoDJYjRbYI5xjrxNKyN77itFPaiN9Fmy-t2C5Jun5ptrsLUL1lpPMuQwpi3w","stattrak":true,"normal_prices":[13700,8755,8409,7926,8131],"normal_volume":[11,18,24,16,12],"stattrak_prices":[27360,17500,14144,12157,11719],"stattrak_volume":[2,2,1,4,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5mRiW2kSIrujqNjsH_eHrFOAdzA8B2TeQLtBm6x4flNejislbb2tlHxCyti3tK53xq6uhTT-N7rR3UNjRY","stattrak":true,"normal_prices":[53409,16550,15208,14626,15777],"normal_volume":[7,54,75,67,39],"stattrak_prices":[248160,36600,20500,20500,20663],"stattrak_volume":[1,6,2,4,3]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5tSzmygSIrujqNjsGhIymfbFB1D5siE-RY5kK_xtTmPri0sVaIjtpCxCn53Hgf6XlotecLT-N7rWlxTPbP","stattrak":true,"normal_prices":[16256,7794,5683,5886,6425],"normal_volume":[1,16,28,13,8],"stattrak_prices":[0,10252,8237,9742,10608],"stattrak_volume":[0,5,1,2,3]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5sQiyhlBEjjDCEiI31JCLdO1JPVssnHaMU4EG-ltyyPuLq5gHYj9lMzyz7hyxNuCs-5OoDVKImrKTe21mXZ-Zu5I5Deqhh5Zn_hA","stattrak":true,"normal_prices":[49893,67475,0,0,0],"normal_volume":[90,3,0,0,0],"stattrak_prices":[57370,0,0,0,0],"stattrak_volume":[10,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1C_0sHLBS9g67l9G0Mu_q5ATZ3t1BxSn6in5B6yc9t7kHBaFw_aPQ3QiTNLQ_ssICOr_5Gko8dFgH","stattrak":true,"normal_prices":[19846,26767,0,0,0],"normal_volume":[127,4,0,0,0],"stattrak_prices":[23400,39500,0,0,0],"stattrak_volume":[15,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1CP0sHLBS9g7tl4fgPujh71CNg91En36si3kY6ns-4OlQWfclqPbQ21zHZbVp4ZdWOr_5GrvoSFRK","stattrak":true,"normal_prices":[20794,26212,0,0,0],"normal_volume":[157,4,0,0,0],"stattrak_prices":[22859,40000,0,0,0],"stattrak_volume":[19,3,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1Cf0sHLBS9g7sl9WzN-q27gLWiYxDxH3_2y4avyxp575WAvck_aGGjADAYrU6s8EBOr_5Gs3270vO","stattrak":true,"normal_prices":[19543,25534,0,0,0],"normal_volume":[141,2,0,0,0],"stattrak_prices":[23266,41100,0,0,0],"stattrak_volume":[10,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1Dv0sHLBS9g6-xoXnNr6xsQze2IxFy377iX4d7itr4ehWA_V0_aPT2VyTMudrs8YLOr_5GgyA1D52","stattrak":true,"normal_prices":[19110,26079,0,0,0],"normal_volume":[145,4,0,0,0],"stattrak_prices":[22106,41169,0,0,0],"stattrak_volume":[15,2,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5mTCyymyIsvTSDn7CgcRTLN1F4Tox3E7RY4BW8l4CyMLvq5gSL2oMXzCyqin5I5nttsrsGA_Ihq6LX2lnAL_Rjtv1VSd_s","stattrak":true,"normal_prices":[6941,6067,5621,5923,6700],"normal_volume":[92,132,161,14,16],"stattrak_prices":[9859,7219,7017,8248,37801],"stattrak_volume":[32,24,21,4,1]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5kTju4kBkYpi26w9_GLSLANkI-CcFyQbResEbuxIa0Nunr7wSMj95GxH77i39N6Hlitu4LB6oj8vHfjxaBb-PSbjYTRA","stattrak":true,"normal_prices":[8754,7340,6500,8027,9385],"normal_volume":[111,92,144,22,6],"stattrak_prices":[11008,9035,8109,10205,20601],"stattrak_volume":[29,22,28,1,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5zSiuhlCIrujqNjsGscnueZwYoDJUmFO8Nsxfpx9buMeLm5Afe3Y8RxHivjS8bu34-4rsHT-N7rRZowTHv","stattrak":true,"normal_prices":[22228,18863,18567,0,0],"normal_volume":[59,43,11,0,0],"stattrak_prices":[29610,24000,23876,0,0],"stattrak_volume":[4,4,2,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFloN5kSjq7qgkmvQKJk4jxNWWfZgMnD5ZyF7ICs0awxoHkZuyw7wHYi9kUn3qvh3hI7no-5elXUKot5OSJ2DhCNq62","stattrak":true,"normal_prices":[0,5592,5241,6207,6112],"normal_volume":[0,14,41,6,20],"stattrak_prices":[0,8800,7367,7500,7600],"stattrak_volume":[0,6,3,1,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5vQDu2hgkYsTKXn471HifOOV5kFJJzE-IJs0K7mtfgN--0tATegt1MmX332nkcvS8557sDB6Bx86XejQ7fcepqCHZuB98","stattrak":true,"normal_prices":[12332,7220,5847,6260,6362],"normal_volume":[1,20,37,11,20],"stattrak_prices":[38999,13043,10472,9660,8906],"stattrak_volume":[2,6,5,2,3]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFlv955WjujmRgYvzSCkpu3dHKePw8oW8N5QOYLshW-wdC1N--0tAHajoNCmCj7iStI6Hw-tegBU71lpPP9HYRDsQ","stattrak":true,"normal_prices":[29400,10088,6383,7105,6789],"normal_volume":[2,58,117,12,25],"stattrak_prices":[71153,17702,9373,9429,10823],"stattrak_volume":[1,8,17,1,6]}}},"515":{"name":"Butterfly Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2sfbB5JeKVAn7elO8l6LRoF3_hzBsmtWSDzt-rcy3BP1AnXsR4FOJZskG6xtDkM7627xue1dy94mNpNQ","stattrak":true,"normal_prices":[119467,119467,119467,119467,119467],"normal_volume":[549,549,549,549,549],"stattrak_prices":[117806,117806,117806,117806,117806],"stattrak_volume":[102,102,102,102,102]},"1105":{"index":1105,"max":1,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsDXKvw_tipOR7SSWqqhEooTi6lob-KT-JZw90XJMiTO8PukW4wIXmN-zq5gXf2tpBm37_2y4auylv5exUAKAi_7qX0V8Ly4BE2w","stattrak":true,"normal_prices":[207514,91751,60312,53000,48431],"normal_volume":[81,374,617,246,233],"stattrak_prices":[275500,95774,65062,58246,55399],"stattrak_volume":[6,58,80,41,25]},"1110":{"index":1110,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsCXSvw_tipOR7SSWqqh8rsj6OpYP4LCLJP0J1Zc4pEr9OrBC7xtOyN-vjtFDZjYNAnH6qiS9J73s56u4BWPJxqK3U2gDDYLU-t5YdZKHw7iAX8js","stattrak":true,"normal_prices":[81441,65288,60021,56436,55005],"normal_volume":[57,253,428,200,236],"stattrak_prices":[100260,65185,59128,56645,54847],"stattrak_volume":[12,51,73,37,62]},"1115":{"index":1115,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsCXSvw_tipOR7SSWqqhwypzKRiID3KCj4Ml93UtZuROIDtUawltG1N-Pj4gaMg98Xyy2q2CxN63k54uwHBfd0-_GEhwHBOap9v8dVISN0PQ","stattrak":true,"normal_prices":[131858,96492,77751,72100,64037],"normal_volume":[105,341,750,76,190],"stattrak_prices":[164229,90017,75915,78356,69268],"stattrak_volume":[14,27,135,13,31]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6v1ut0o95lRi67gVN04WmDzNz_cX_CalAiW8FxR7MI4xKxmtPlYe7ksgzeiN5BziT83y4f8G81tOxPsLb-","stattrak":true,"normal_prices":[513660,98825,61918,61049,51579],"normal_volume":[15,245,489,66,88],"stattrak_prices":[1849999,119552,67740,71948,64005],"stattrak_volume":[2,32,63,13,16]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHXev1e9mtd58XSuymyIrujqNjsH_JCmUalNzCJJ2EOZb4RC_mtPiZLyz4laPg9lGyX-v2itI7i1r6-ZQT-N7rSOfJ1lh","stattrak":true,"normal_prices":[110322,49303,42632,42729,42606],"normal_volume":[12,96,253,44,105],"stattrak_prices":[187559,60583,44904,45477,45066],"stattrak_volume":[2,17,31,7,17]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHXevxe9moO1scCW6khUz_WTVzdurInyVbVdzXsB5TLZc50XuwdW1Yeu05Fbd3osXzXj_iy9N7H11o7FVf664M8c","stattrak":true,"normal_prices":[93001,47163,43593,42542,41476],"normal_volume":[5,97,253,48,87],"stattrak_prices":[181566,54164,42754,45734,44291],"stattrak_volume":[1,19,49,9,12]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2avx-9ytd5lRi67gVNwsDvSwtqqc3iXZg4kCZYjReYLtRbum9XgYuvm5wbWjtgUzCn3iSsf8G81tFEeH9rw","stattrak":true,"normal_prices":[208186,188915,0,0,0],"normal_volume":[1092,44,0,0,0],"stattrak_prices":[201631,261226,0,0,0],"stattrak_volume":[153,5,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHWivz-dxuPVWQyC0nQlp4T_QnNarcXzBPQN1CZcjFuEC40a4ktzuNeLgslGL2t5GmS733Cwc6jErvbgctlCLOw","stattrak":true,"normal_prices":[153127,59896,50169,48119,45267],"normal_volume":[11,124,358,54,103],"stattrak_prices":[559800,63848,53683,55806,51469],"stattrak_volume":[2,19,50,9,15]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2mv1edxtfNWQDuymxoijDGMnYftb3mfOg8hAsFzRrYCtxKxxtPlZOnl5gaM3ogQmX_7jnkdvHppseoGVvI7uvqAJhUGkWs","stattrak":true,"normal_prices":[105358,106782,0,0,0],"normal_volume":[522,36,0,0,0],"stattrak_prices":[110499,103351,0,0,0],"stattrak_volume":[66,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avxe97sfJqWjqMzE0YvzSCkpu3J32VZgF1CZN1QLULsUWwkNTjNrnhtALYjo1Cnn762H4f5io9t-gBBL1lpPNt-MvFbw","stattrak":true,"normal_prices":[81253,71059,65501,62591,61854],"normal_volume":[180,185,220,40,29],"stattrak_prices":[97841,81532,69938,73450,92023],"stattrak_volume":[25,21,38,7,5]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvzO9ksu1scC-ykRgYvzSCkpu3JCrBPVMkCZIiFLUC40S-l9DkZerg4Qfc3Y9DzCuo3SlK6ydv5e9UA71lpPNwsjHPzA","stattrak":true,"normal_prices":[125252,140272,0,0,0],"normal_volume":[874,36,0,0,0],"stattrak_prices":[136835,166420,0,0,0],"stattrak_volume":[90,9,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3av0vpzte1WRCe6kxgYvjiBk5r0by7EbQMjDcdwF-UC4BG4l9C1ZO7q4VbYj49AySmt339LvH1ptupXUKA7uvqA1J4Dodk","stattrak":true,"normal_prices":[0,0,0,53002,49843],"normal_volume":[0,0,0,26,476],"stattrak_prices":[0,0,0,64070,51176],"stattrak_volume":[0,0,0,9,88]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qv0_t0qd5kTjuxmRguqTiBpYPwJiPTcAcnCsF0FLFcsRHtwNy0Neji41aKiNhAzyqsjyxK7X5o4u8GB_UmrPDJz1aWz8iftUI","stattrak":true,"normal_prices":[979688,0,0,0,0],"normal_volume":[51,0,0,0,0],"stattrak_prices":[927615,1386190,0,0,0],"stattrak_volume":[7,2,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tmy6lob-KT-JOgRzAsZ3RuNfs0a5x9HhYuLj4gbbg99NySr6iy4d6C9t4r0EUqF0qLqX0V8wFp5G5A","stattrak":true,"normal_prices":[215959,218796,0,0,0],"normal_volume":[125,3,0,0,0],"stattrak_prices":[232145,582498,0,0,0],"stattrak_volume":[5,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avw-JjteVWQyC0nQlpsmyBwo2tcS-eaFB2XpUjE7Jeuhi_kdfvYerj4FCMgtgUm3732ipM6jErvbi_vJM0jA","stattrak":true,"normal_prices":[115568,79595,71729,67870,65500],"normal_volume":[44,174,283,147,158],"stattrak_prices":[174220,95807,80411,72475,73095],"stattrak_volume":[2,27,31,21,24]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tm66lob-KT-JaAJzD5FxELELtRa4lIe2M7mw7wLfjY9DzSj6jXxA6X0-5-wDAqst_bqX0V_xuMbXZA","stattrak":true,"normal_prices":[195155,234500,0,0,0],"normal_volume":[119,3,0,0,0],"stattrak_prices":[203803,187731,0,0,0],"stattrak_volume":[9,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tmm6lob-KT-JPVQpA5d3Q7IM4Ra_ltLgN7jn4wKPi41Nyyir3CpK6H1vt7xWAKt0qLqX0V-7tNsN5g","stattrak":true,"normal_prices":[266295,273097,0,0,0],"normal_volume":[100,2,0,0,0],"stattrak_prices":[270176,269900,0,0,0],"stattrak_volume":[12,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avx-Fks-RtcCW6khUz_TnXmImvIHuQaw8gC5AhRe4ItUTqw9a1NOyw7wTYiYgRzi__jHsbvCZ1o7FVCIQMXZk","stattrak":true,"normal_prices":[80105,59874,53994,50813,50013],"normal_volume":[35,147,219,91,101],"stattrak_prices":[130256,63398,59249,52718,55056],"stattrak_volume":[4,22,30,18,22]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avzud6teVWQyC0nQlp5z6AyN_7I3mfOFQnApUlFrMN5BbpwdbhP-vgs1Pd3dpBmXr9jnwf6DErvbim1G57Bg","stattrak":true,"normal_prices":[129035,82019,65026,62328,60507],"normal_volume":[59,339,577,223,173],"stattrak_prices":[228848,114487,80535,85343,80434],"stattrak_volume":[3,33,49,26,19]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6vxepmsfVWQyC0nQlp4W3Xw4v4di6fOFMkDpF5EeUL4UXqxtS2Zry0sVHdj4JBxCr32y5JvDErvbh_aZ0FHw","stattrak":true,"normal_prices":[68779,43966,41218,41122,40207],"normal_volume":[14,104,230,54,95],"stattrak_prices":[232519,47181,42358,45768,44503],"stattrak_volume":[2,21,40,6,13]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxONzouBlSxa-lA8lvziMgIr9HifOOV5kFJp2Ee9b4Rntm4GxY7_ntQHc2o1DmH6r3Hgcv3w4t-pXU6ZzrPHQjQnfcepq0dwfRJw","stattrak":true,"normal_prices":[784607,724388,0,0,0],"normal_volume":[82,5,0,0,0],"stattrak_prices":[702939,794979,0,0,0],"stattrak_volume":[11,2,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJHr4Ml93UtZuF7EMshHumoXnY76w4wLe2IxAn3r3iXhO6Sxj6rkBAvZ3-KOBjV2TNqp9v8eAgEBjpg","stattrak":true,"normal_prices":[187417,197959,0,0,0],"normal_volume":[235,5,0,0,0],"stattrak_prices":[180707,210000,0,0,0],"stattrak_volume":[23,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJHn4Ml93UtZuF-AK4USwmtS2Nei05w2NjNoQzCX9iXwavHo-57oKVfFw__GFjVvGNKp9v8f8XHnkNg","stattrak":true,"normal_prices":[228794,222066,0,0,0],"normal_volume":[213,8,0,0,0],"stattrak_prices":[218020,200000,0,0,0],"stattrak_volume":[33,3,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJHj4Ml93UtZuTbULtxfsxNDjZejqtFbajIMUyy36iytOvS1u5-ZXVPAt_PbejgiSZap9v8cjE0cexQ","stattrak":true,"normal_prices":[181183,180852,0,0,0],"normal_volume":[213,9,0,0,0],"stattrak_prices":[180910,204745,0,0,0],"stattrak_volume":[23,2,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJH_4Ml93UtZuQrVe4EOxkNHvYryx5g2L39oXyS6q2ixM5i9s474GUast_6PU3AuXY6p9v8diATcRqA","stattrak":true,"normal_prices":[176525,181971,0,0,0],"normal_volume":[196,9,0,0,0],"stattrak_prices":[177691,327347,0,0,0],"stattrak_volume":[28,1,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6vzu1zse9WRCe6kxgY6m26lob-KT-JbgckDsR5TeRftkKwxN3mY7nq7wbci4hBzy783X5P7iZp67sEWaV0qbqX0V8sk0fSOA","stattrak":true,"normal_prices":[59147,53236,49730,47702,45837],"normal_volume":[259,294,494,52,47],"stattrak_prices":[65164,55580,50644,52108,52777],"stattrak_volume":[53,42,76,15,7]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvzO9ku-RtcDyjqkR3jDGMnYftbyqSZlcgCMd5RLEItBe9koXhZbzi4AyK34tNmXn4i3hO6SxttuoBAKI7uvqA0_B7rlE","stattrak":true,"normal_prices":[65719,58848,54517,52015,51935],"normal_volume":[316,401,477,48,25],"stattrak_prices":[70500,61156,57726,60109,94625],"stattrak_volume":[50,45,82,9,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qv2-t0ouBWQyC0nQlp4G_dmdauIC_DPQBzDpclRLINsEXsx92yP7jq7gXd2t1NzCT3iCwc6TErvbhfNpboFw","stattrak":true,"normal_prices":[130875,112665,102868,0,0],"normal_volume":[263,301,97,0,0],"stattrak_prices":[156953,124223,128376,0,0],"stattrak_volume":[39,27,20,0,0]},"617":{"index":617,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvw-J3s-p5SiihmSIqsi-HlorwOy7DAVRPVssnHaMUuhe9xIHlMuvqtgPf2IoTyC383Sod7CY-sr4DVfZ2qKPU3g-TNuE-545DeqjFvb87vg","stattrak":true,"normal_prices":[1103928,1018500,0,0,0],"normal_volume":[15,2,0,0,0],"stattrak_prices":[1474944,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"618":{"index":618,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tm-6mLD1KCzPKhh2DMckEeYNshC6koe1Munq5AbbitgTyyX6jixL7i5qteYLA6Mh-vWGkUifZkSF3e67","stattrak":true,"normal_prices":[403875,435323,0,0,0],"normal_volume":[84,3,0,0,0],"stattrak_prices":[386758,814723,0,0,0],"stattrak_volume":[13,2,0,0,0]},"619":{"index":619,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qv0u9moOlgXSyMmBw1sTGAk5X8JRTFAVp5Xco0W-ENtRXswYC1Mu_ks1fdjN9EyiqthiMbvHtv5btQBPck-KbT2gnHM-Ajoc5Ufn65u8U","stattrak":true,"normal_prices":[621107,633778,0,0,0],"normal_volume":[46,2,0,0,0],"stattrak_prices":[613250,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHXevzOtluN59TieMmRQguynLmY2rdyqUOFNyC5N0QeQNuhC6kYe2M7nl7gTait1Hy3n52ipMvytj4_FCD_SLIWJ_mw","stattrak":true,"normal_prices":[74974,42507,40806,40114,40182],"normal_volume":[7,108,169,38,73],"stattrak_prices":[191843,51133,42061,41288,45462],"stattrak_volume":[1,14,48,10,10]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6vx-FktfJ9cCu8hxgmvwKJk4jxNWWfOlMoWMByQ7QCskGwx9WzMr60tVHfj41EyyX3jXxM5ypu5e5TA_Vx5OSJ2NuQJF0J","stattrak":true,"normal_prices":[96571,46701,41662,41750,40222],"normal_volume":[18,101,220,37,74],"stattrak_prices":[0,48707,43325,42828,44097],"stattrak_volume":[0,14,47,11,12]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHWiv0ftkoO1scCW6khUz_WuHyor4cnLEPAMjD5F2FOcLt0O-ktLgMLvg7wbYjIJNmH-viX9A6351o7FVdgPZdkU","stattrak":true,"normal_prices":[200972,70153,54204,50981,45536],"normal_volume":[8,142,393,50,116],"stattrak_prices":[580000,75987,54887,59103,47516],"stattrak_volume":[1,26,72,8,28]}}},"516":{"name":"Shadow Daggers","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2-fbdlbvXKWWXIlbh15bdrTnvmwkt34z_Qz46hdnjFbAIkCJdzR-Zctxi5kNb5d7S1mgn3amY","stattrak":true,"normal_prices":[7462,7462,7462,7462,7462],"normal_volume":[72,72,72,72,72],"stattrak_prices":[11089,11089,11089,11089,11089],"stattrak_volume":[15,15,15,15,15]},"1108":{"index":1108,"max":1,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6d4H-CGHW-vzeFktd5lRi67gVMksWXQz96sIy2UP1B2D8dwRe5b4Be9moDkN7nl4QLYg94UmX-vjHhM8G81tMoT8OiD","stattrak":true,"normal_prices":[12951,6980,5814,5575,5605],"normal_volume":[35,85,141,42,49],"stattrak_prices":[24264,11399,8814,9077,7803],"stattrak_volume":[6,13,19,10,7]},"1113":{"index":1113,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6N-H-CGHW-vw-J3s-pWQyi-nBMmpzi6lob-KT-JbQ9zDsMhEO8L4xS7k93mMbu35wOPitpBzij9hngY5ypitexXB_BxqbqX0V9R9Pjb9Q","stattrak":true,"normal_prices":[7096,4550,4303,4400,4330],"normal_volume":[32,86,95,40,44],"stattrak_prices":[17700,5822,5466,6311,5905],"stattrak_volume":[5,11,15,6,10]},"1118":{"index":1118,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6N-H-CGHW-vwPtiv_V7QCe6liIrujqNjsGrIH2fOFJxX5F1TeICsRe8x4ezY-vj7gHc2N9HxHir3HhK7Cds5L4AT-N7rU0zpOnr","stattrak":true,"normal_prices":[9133,5605,4896,6066,4984],"normal_volume":[40,80,120,14,34],"stattrak_prices":[12307,8242,6742,7972,6979],"stattrak_volume":[7,17,31,5,7]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H-eWDHSvzedxuPUnHi3mkRx24j_cn4qgIHnGbwF0A5p1R7UI5xm-k9XnMrjq5gOPj95BxDK-0H2triMq-g","stattrak":true,"normal_prices":[35434,11341,6849,6865,8717],"normal_volume":[2,17,58,2,25],"stattrak_prices":[0,16874,9984,14000,13094],"stattrak_volume":[0,10,5,1,1]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7d9H-SSHmKv1Px0se9WQyC0nQlp5GTdz4mqcniVPQAkCZYiFrQMs0TslYXmM-7i5wfb3dpEn32viShL7DErvbjmz8a0gQ","stattrak":true,"normal_prices":[15592,5410,4982,5950,5776],"normal_volume":[3,17,31,8,10],"stattrak_prices":[89611,9820,9444,0,9490],"stattrak_volume":[1,3,6,0,2]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7d9H_SSHnecxNF6ueZhW2fkkxlx5W3Wz4mtJHySag8iDJcjFuIM50S9x92yPuOz5ADaj9oTm3r-kGoXueH6PD3x","stattrak":true,"normal_prices":[15000,5678,4901,5250,4539],"normal_volume":[1,21,28,4,5],"stattrak_prices":[83822,10717,7562,6680,8243],"stattrak_volume":[1,7,11,1,4]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VsH_aSCmKvzedxuPUnFy-3l0tz5DmGzNmhdnmVblB0CcMjTbQJsBe6k9zlMuLl4gHYjoIRmDK-0H3ZqbeWvA","stattrak":true,"normal_prices":[14098,23517,0,0,0],"normal_volume":[210,5,0,0,0],"stattrak_prices":[24287,52700,0,0,0],"stattrak_volume":[23,1,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7diH_6aCW-E_uJ_t-l9AX3llBlwsGiAy47_cSiWagdzDpMjF-8MsRHrloXhP-_r4FOP2o1NyyzgznQeozLE8WY","stattrak":true,"normal_prices":[30125,6639,5022,4610,4753],"normal_volume":[2,21,31,5,6],"stattrak_prices":[290295,12453,8204,6749,7334],"stattrak_volume":[1,6,4,3,2]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VjH-SaCWKC_uFkse9uSha_nBovp3PUwt-uJHjFOgYlXpt4EbQJshS8loCxP7vr7gDZiItMnir-iC1O7X1s_a9cBp8PQ5hi","stattrak":true,"normal_prices":[8061,12350,0,0,0],"normal_volume":[114,6,0,0,0],"stattrak_prices":[10754,13000,0,0,0],"stattrak_volume":[27,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_SSA2aDwvtlj7g5cCW6khUz_WvXz9j8JHjBaAZ2ApMhRLVZtUK4w9ziNerr4QDYjotBynmqjSlM7Ct1o7FVMY__Aoc","stattrak":true,"normal_prices":[6310,5274,5130,5856,7197],"normal_volume":[48,70,56,9,7],"stattrak_prices":[11382,7513,7825,9100,0],"stattrak_volume":[14,4,7,1,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_2SHGWcxNFwseVscCW6khUz_T_dyI2tJXrFbQN2X5MjTLUCtEa5kYXnYuPh5QGLjowUxXitjixA7nl1o7FVu7_YRqU","stattrak":true,"normal_prices":[10641,15805,0,0,0],"normal_volume":[173,5,0,0,0],"stattrak_prices":[14263,15500,0,0,0],"stattrak_volume":[26,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H-OHC2Kc_uV4uedscCS2kRQyvnPQzdn6dSiUbw4jX8MmROdbskHpwde2Yu-x4VGKiYtBni__hisf63ti_a9cBjfCVlsL","stattrak":true,"normal_prices":[0,0,0,5762,4320],"normal_volume":[0,0,0,13,91],"stattrak_prices":[0,0,0,9168,5958],"stattrak_volume":[0,0,0,3,26]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH-KGDH6vzO9ksu1sRjO2kSIrujqNjsGgJXPFaA4kC8RxE7MPshO6lda0M-Kw7lPaiooWmX6sj35N7y495OdRT-N7remj_pWP","stattrak":true,"normal_prices":[33372,42927,0,0,0],"normal_volume":[48,3,0,0,0],"stattrak_prices":[56475,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCziqhEutDWR1Nmgd3yUZwMgCZQmRuVfthW8x9WxNOi05g2Ij48UnC323SxPu3s5t-ocEf1yJR6gz8E","stattrak":true,"normal_prices":[13589,19886,0,0,0],"normal_volume":[32,3,0,0,0],"stattrak_prices":[17265,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_KfG2KU_uJ_t-l9AS21w0smtm-HmIz8JHyVbgMmDJYjQeNf40G9moXiYrnqsgGNjIoUxSzgznQe0gLV55c","stattrak":true,"normal_prices":[26238,7865,6231,6146,7430],"normal_volume":[15,31,24,13,16],"stattrak_prices":[22239,16802,7376,8500,10000],"stattrak_volume":[4,5,4,3,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCzgqhEutDWR1N6vJ3yeOw91Dpp1TeMItRK7kYe0Yuyx7gDegtoQzXr43H8Y6Cdt4-ccEf1ysB-0XEk","stattrak":true,"normal_prices":[14081,20253,0,0,0],"normal_volume":[44,4,0,0,0],"stattrak_prices":[17087,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCznqhEutDWR1Nv9J3PDOFN1X5AmTO8NsRO4x9fuYe-07gLWgopDzH3_jnsYuilt4rscEf1y5zaZlV8","stattrak":true,"normal_prices":[15290,24187,0,0,0],"normal_volume":[71,3,0,0,0],"stattrak_prices":[19098,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_acHGSVxdF6ueZhW2fkx0t_4D_WntapICjCbgMkD8NzR7ZeskK4lNDvN7_k4wTZiotFzi35kGoXuV1xPlgw","stattrak":true,"normal_prices":[13726,6207,5888,5893,5637],"normal_volume":[5,22,15,15,13],"stattrak_prices":[0,9688,9049,9886,9613],"stattrak_volume":[0,3,1,1,4]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_-aAmKU_uJ_t-l9AX3kkEx1tz7Vw437dXmUbQ9zCpF2RrUDsRe4wNXuZuzm7lHW2I0TzC_gznQe3C7aMsc","stattrak":true,"normal_prices":[25698,11464,11216,10198,10988],"normal_volume":[8,49,56,40,16],"stattrak_prices":[33255,13522,13049,17150,15753],"stattrak_volume":[3,7,8,3,2]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H_SXHmaE_uJ_t-l9AX_jkU925m_UnN-qcXOfa1UjWcN5E-AOshi7xNe1ZOjhs1fWiYJGzX_gznQeild8Gek","stattrak":true,"normal_prices":[10905,5082,4707,5747,4919],"normal_volume":[6,14,27,9,15],"stattrak_prices":[48853,5934,7700,12500,7526],"stattrak_volume":[2,3,9,3,5]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_WeC3WRzepJveB7TSW2nAcitwKJk4jxNWWXaAYgXMBwEe5btxKwx9O1Pu-0tg3ZjN1Bzi782iwa6i1otroAVqAh5OSJ2JW4jdt1","stattrak":true,"normal_prices":[21884,25305,0,0,0],"normal_volume":[95,4,0,0,0],"stattrak_prices":[22846,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjUpYPwJiPTcAIhApZzQ7EN5BexxobmYbmw7lDb2d9FyiT6iSgcvC9ssb4KVqJ0qPHJz1aWdVHoWzY","stattrak":true,"normal_prices":[10848,12880,0,0,0],"normal_volume":[105,3,0,0,0],"stattrak_prices":[12658,18992,0,0,0],"stattrak_volume":[9,4,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjXpYPwJiPTcAQnD8YhTbML50btkobnNu7m5ACL2owRzHj62igYvy1q5-tRUaEt-KbJz1aWfS6Wzvg","stattrak":true,"normal_prices":[10656,12984,0,0,0],"normal_volume":[116,3,0,0,0],"stattrak_prices":[11848,21200,0,0,0],"stattrak_volume":[13,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjWpYPwJiPTcFV2W5p3TeUDtUS4lIaxY7zgsgGLiIkUzHj83ChJuyZjt7lWB_cmqaDJz1aW8z9pbLE","stattrak":true,"normal_prices":[10951,13655,0,0,0],"normal_volume":[101,4,0,0,0],"stattrak_prices":[12442,21324,0,0,0],"stattrak_volume":[13,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjRpYPwJiPTcFB2DJB3F-4LsBG_kd21Ne23tVPait9HmX6t2n5P6i1q5uoHAKJwq6TJz1aWm5wQ7fM","stattrak":true,"normal_prices":[10664,13665,0,0,0],"normal_volume":[104,3,0,0,0],"stattrak_prices":[12440,21172,0,0,0],"stattrak_volume":[5,1,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H_-QC2ae_uV4uedscHDjqhEutDWR1NapdiiWblJxCpdyROVftBS9lNa1Meng5wXd3oJEyy_7ji1J6ilu6-0cEf1yYi7ebTk","stattrak":true,"normal_prices":[4931,4486,4281,4463,5116],"normal_volume":[118,81,118,14,15],"stattrak_prices":[6783,5370,5083,6501,7000],"stattrak_volume":[28,15,20,11,2]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_2SHGyVxdFjoN4wHxa_nBovp3OHzomhdC3BbwIiDZV2Ru9ZukK4ld2zYerg4AGNjItExCT52C0c7H0__a9cBh2VpMK4","stattrak":true,"normal_prices":[6263,5226,5063,6457,5505],"normal_volume":[98,94,102,15,8],"stattrak_prices":[10428,8149,6963,8950,8177],"stattrak_volume":[19,22,19,4,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH-qWDHWR_uJ_t-l9AXHqx0V_tWzRn4v7Iy7Ea1QlDsEiF7UP5xWxkIexZuPjsgLWi91MyC3gznQen1baSVU","stattrak":true,"normal_prices":[11262,10146,11186,0,0],"normal_volume":[60,49,8,0,0],"stattrak_prices":[16082,19157,23415,0,0],"stattrak_volume":[4,7,3,0,0]},"617":{"index":617,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_KfD2Sb0et3ou1WQiihlxEiuieAnrD7HifOOV5kFJZ2TbMNtES-xobhY-rj4lTd39gRny_2jiIf6C5u67oHBasm-PXRjADfcepqXuISEy4","stattrak":true,"normal_prices":[62734,0,0,0,0],"normal_volume":[11,0,0,0,0],"stattrak_prices":[64915,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"618":{"index":618,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCzhqh8YvzSCkpu3I37BOAAiCZR1RbUO5BLtwNzhZOy04VeKg44WmCWq3CJB73xp4rkFVr1lpPNoRdm_rA","stattrak":true,"normal_prices":[19156,23716,0,0,0],"normal_volume":[69,4,0,0,0],"stattrak_prices":[27277,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"619":{"index":619,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH-OSHneYyPxzj-xoXSu_kBQ9tjm6mLD1KCzPKhghX5N4EOBfthfsw4LnYuvh5AbfioNHmyms3Cgf6Sk54e4CVvIl_qOEkUifZuDD3SRj","stattrak":true,"normal_prices":[23109,26219,0,0,0],"normal_volume":[50,3,0,0,0],"stattrak_prices":[31509,47220,0,0,0],"stattrak_volume":[5,2,0,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7d9H_2WHW-v1e94j-1gSCGn201xtj7dn96hJCmTOlcjCMclELUMtEW5lYDkNum351aLjo5Gynj62ytXrnE8619lrZ4","stattrak":true,"normal_prices":[10581,5174,4355,4618,4813],"normal_volume":[1,29,36,11,13],"stattrak_prices":[106750,7914,6765,10421,14391],"stattrak_volume":[1,6,4,1,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H_acHGKD1dF0v_NsTiWMmRQguynLnI2uIi3DaQd0XpNwTLNctES-lILgM-_j5gfcjNlAxXj83S5N73tssPFCD_REhu3w7w","stattrak":true,"normal_prices":[12000,6141,4421,5126,4930],"normal_volume":[1,21,47,10,15],"stattrak_prices":[82453,8860,5761,8800,6603],"stattrak_volume":[1,6,2,3,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7diH-CGHHecxNF6ueZhW2e2wk9y4jiBntn7cy2XPwMgD8BxF7MN4BK5l9KzZu3kswTaj4kTxST6kGoXuU3Nl_sm","stattrak":true,"normal_prices":[22167,6428,5183,6851,5220],"normal_volume":[5,33,73,14,25],"stattrak_prices":[40530,10269,7312,7762,9724],"stattrak_volume":[3,4,11,3,6]}}},"517":{"name":"Paracord Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2tZ7ZpbqWRXmWTmbsm5bU5TXu3lkR_5j_Swor8JC_BPFVxWJd1FuID4RW7w9b5d7S1z-U4Rao","stattrak":true,"normal_prices":[5766,5766,5766,5766,5766],"normal_volume":[362,362,362,362,362],"stattrak_prices":[6703,6703,6703,6703,6703],"stattrak_volume":[76,76,76,76,76]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6x0H-eWDHSvzedxuPUnGH_gx0pxtT-Dm9uvdXrGbAFzCsZ5Ee9YtkTpx9LgYuPjtA3djotByDK-0H0Jjl4AqA","stattrak":true,"normal_prices":[109930,11517,9027,9700,8822],"normal_volume":[2,105,205,50,34],"stattrak_prices":[379352,16210,13246,12488,18185],"stattrak_volume":[2,16,29,8,4]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H-SSHmKv1Px0se9WQyC0nQlptm3Tw9aseHKeagAgDcMjEOIPtBSxwNHmMerlsQLYgoIRxHmv3ygcvzErvbijdLAgow","stattrak":true,"normal_prices":[18292,6178,5146,5552,5693],"normal_volume":[8,42,71,20,27],"stattrak_prices":[34152,9353,6859,7583,7590],"stattrak_volume":[4,5,14,9,4]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H_SSHnecxNF6ueZhW2fqzEl_sT7QwtegdCnEa1QnXsckEbIIt0TpxIWzZr7g5QPag4sXzXr8kGoXuabkrFHY","stattrak":true,"normal_prices":[13377,5983,4991,5203,4741],"normal_volume":[9,32,98,27,20],"stattrak_prices":[46951,8457,6971,7382,7971],"stattrak_volume":[2,10,22,1,3]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VsH_aSCmKvzedxuPUnHSixkUl-4mqEnNj8IH3BOgUjX5RzFOMDthewlN3iYu-27gHcio1DmTK-0H2HlTMq_Q","stattrak":true,"normal_prices":[14898,23638,0,0,0],"normal_volume":[580,33,0,0,0],"stattrak_prices":[17675,41033,0,0,0],"stattrak_volume":[74,2,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VjH-SaCWKC_uFkse9uSha_nBovp3OGnon7dXufZwcnC5cjEO8M5BDrw4LlNuvq5ADWid4XnCX63yxM5i8-_a9cBvWv3FY7","stattrak":true,"normal_prices":[11571,13106,0,0,0],"normal_volume":[215,10,0,0,0],"stattrak_prices":[14971,19162,0,0,0],"stattrak_volume":[49,9,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_SSA2aDwvtlj-1gSCGn2xh0sG_VmNz9cS7CaAcgW8MkTOdftxS4wNexPu3n4QPbj9hHyH72jy5XrnE819bSoUk","stattrak":true,"normal_prices":[7902,6707,6033,6500,6370],"normal_volume":[63,54,72,7,6],"stattrak_prices":[11291,8634,8623,9113,7211],"stattrak_volume":[13,8,13,1,4]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_2SHGWcxNFwseVscCW6khUz_TnXw9-qdyiWbQEiA8FxROQMtxPqlILjM7vk4waIjoxNmSr9iyxK6yh1o7FVj-pHDZk","stattrak":true,"normal_prices":[12992,17300,0,0,0],"normal_volume":[234,14,0,0,0],"stattrak_prices":[17539,25043,0,0,0],"stattrak_volume":[37,3,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H-OHC2Kc_uV4uedscCS2kRQyvnPUzo2qIHjEaFQhC5dyF-ZbsxPpx9C1Y-nq4ACPiIJFzn_-hntJ6yxr_a9cBo1AYhy6","stattrak":true,"normal_prices":[0,0,0,5522,4677],"normal_volume":[0,0,0,20,211],"stattrak_prices":[0,0,0,6496,6272],"stattrak_volume":[0,0,0,7,28]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH-KGDH6vzO9ksu1sRjO2kSIrujqNjsH6cnzCagN0DsciELRf4Be-x9OxZbjmtAOKgt8Uny_7jCoavy4-474FT-N7rYiv01su","stattrak":true,"normal_prices":[57862,65082,0,0,0],"normal_volume":[70,3,0,0,0],"stattrak_prices":[60340,72847,0,0,0],"stattrak_volume":[11,2,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH-OSHneYyPxzj-xoXSu_kBQ9tjm6lob-KT-JbQEkC8dxFLFYthK-x9TgMeyx5Q2Pjo1DzC6r3ClNuCc94OhWVKoiqbqX0V_9YbYNGA","stattrak":true,"normal_prices":[41157,41475,0,0,0],"normal_volume":[67,2,0,0,0],"stattrak_prices":[45376,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_KfD2Sb0et3ou1WQiihlxEiuieAnrD1KCzPKhh1WcB3F-IPu0O4x9HnMO62tA3bj9gWmCz6i3lNui5i67kHWKYmq_CCkUifZiWg2J7C","stattrak":true,"normal_prices":[68136,65518,0,0,0],"normal_volume":[20,3,0,0,0],"stattrak_prices":[97083,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCziqhEutDWR1Nv6JHuXbQUpCpIkQe8KsBjsxNLgYevltlTe3olHyHiv3StK73pqtugcEf1yeFJGil8","stattrak":true,"normal_prices":[20508,25848,0,0,0],"normal_volume":[98,4,0,0,0],"stattrak_prices":[24584,29500,0,0,0],"stattrak_volume":[10,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCzhqhEutDWR1In_cimXOAMpAsRyROdethi7xtbmPuu0sgDW2N4UxS2v3S9OuC9t5bkcEf1y7nwgVpQ","stattrak":true,"normal_prices":[24763,27201,0,0,0],"normal_volume":[103,5,0,0,0],"stattrak_prices":[25983,35901,0,0,0],"stattrak_volume":[8,3,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_KfG2KU_uJ_t-l9ASu2zEkjsm6HytytcHnBPQ90XMNxE-VYsUK_m9TlN7nl7gHag48WmyngznQeOvn5VbM","stattrak":true,"normal_prices":[16767,9702,7933,7763,7332],"normal_volume":[21,56,86,36,34],"stattrak_prices":[25463,13184,11143,9993,12674],"stattrak_volume":[5,9,15,11,12]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCzgqhEutDWR1N38IiqfZwd1CMF5EeEOskaxlNWxNeLq5gCPjIJNyn322ykduH054-ccEf1ylmda9Aw","stattrak":true,"normal_prices":[20335,26985,0,0,0],"normal_volume":[87,3,0,0,0],"stattrak_prices":[24759,31900,0,0,0],"stattrak_volume":[9,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCznqhEutDWR1Nz7eSnCOwEpA5twQu4CsRe8ltyzMOrntAaM3dpMzS2siypK7CY54-4cEf1yr5PbGSk","stattrak":true,"normal_prices":[21805,27776,0,0,0],"normal_volume":[88,5,0,0,0],"stattrak_prices":[23757,36847,0,0,0],"stattrak_volume":[11,3,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_acHGSVxdF6ueZhW2ewxU9wsDjXm9yrJXvCbAUiCsByF-RY4xfrk4CxZr605VTbj49GyC_3kGoXuZB2l8Tw","stattrak":true,"normal_prices":[11165,6149,6102,6074,6201],"normal_volume":[33,46,51,25,35],"stattrak_prices":[53152,7867,6916,7985,7851],"stattrak_volume":[1,3,13,7,4]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_-aAmKU_uJ_t-l9ASrglh8l5DjWz479d3iTOwYlX5UhFrYMsRnrltWxNrzl5QHYjYJCyX_gznQeOO_KAyk","stattrak":true,"normal_prices":[22132,12289,9875,9718,9678],"normal_volume":[40,225,301,139,91],"stattrak_prices":[29556,18732,15801,13677,13852],"stattrak_volume":[5,21,20,13,10]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6x0H_SXHmaE_uJ_t-l9AS3gkB4m5myGyo6sciifPQdzD8RzR-JctBjsl9bvMOzjslPYgopAyi_gznQexg-GN_M","stattrak":true,"normal_prices":[10335,5084,4699,5510,4788],"normal_volume":[2,45,81,16,33],"stattrak_prices":[0,6496,6097,8500,7910],"stattrak_volume":[0,10,14,1,11]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH-qWDHWR_uJ_t-l9AXjik0x362yDyIr8eHKUPQQnD5B4F-MKtxjrlNfnMu-04gDY2IlFnH7gznQeNL2G-UI","stattrak":true,"normal_prices":[14333,13133,13567,0,0],"normal_volume":[152,130,51,0,0],"stattrak_prices":[22284,16044,16509,0,0],"stattrak_volume":[21,12,4,0,0]},"621":{"index":621,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7diH-CGHHecxNFwse1qRyC8myIrujqNjsGrJXjEPwAiC5pwEeAC40brkNzvPuLgsgHY2oMWyiv9jCxIvChr4egHT-N7rbYjcxXs","stattrak":true,"normal_prices":[31689,9813,6673,7463,6942],"normal_volume":[8,52,90,22,22],"stattrak_prices":[49413,12849,9499,8449,9051],"stattrak_volume":[2,18,9,2,6]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H_2WHW-v1e94j-1gSCGn20t35z6HzdagcnmQPAMmD5V5Q7Rf5hLtwIK0MO-24wSM2YkXnnr_iiNXrnE8Zdgcdss","stattrak":true,"normal_prices":[10037,4900,4469,4552,5143],"normal_volume":[11,47,93,17,25],"stattrak_prices":[79536,7946,5500,5906,7012],"stattrak_volume":[3,7,7,3,11]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H_6aCW-E0vpkufFscCW6khUz_WvQm9v4cy-XaAIiXpshQ7QDsBLpktO2Nbnn4gfY2oxGmSmr3SwdvC91o7FVXhfCwdw","stattrak":true,"normal_prices":[24042,6248,5369,5071,4960],"normal_volume":[8,55,104,11,19],"stattrak_prices":[0,11230,7343,8470,7897],"stattrak_volume":[0,10,13,1,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6x0H_acHGKD1dF0v_NsTiWMmRQguynLztutd3qfaFMlDcZwQbYIsUGwlILlYuzi4wGMi4MWyyusjnxJ7nk-5vFCD_TajkSe4A","stattrak":true,"normal_prices":[15303,5901,4871,5451,5258],"normal_volume":[2,37,86,32,31],"stattrak_prices":[42640,9661,6304,8202,6949],"stattrak_volume":[1,3,19,2,8]}}},"518":{"name":"Survival Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2taapkM77CDzbIlrsms-NsHHGxzUwj5G6En4yuIy_BbQAjC5VxQLRc5hm8x4HvKaq8sEukLuHu","stattrak":true,"normal_prices":[5621,5621,5621,5621,5621],"normal_volume":[478,478,478,478,478],"stattrak_prices":[6346,6346,6346,6346,6346],"stattrak_volume":[77,77,77,77,77]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tlOc-EC2WD_uJ_t-l9AXqxlEtytzzXwo2pJSnBb1InC5dzQrVYsRK5ktOzNenn7gXdi95FzX3gznQeN2X8HrE","stattrak":true,"normal_prices":[69020,11318,9151,9708,8476],"normal_volume":[23,100,187,24,26],"stattrak_prices":[165000,14680,11586,11447,14540],"stattrak_volume":[3,13,23,3,6]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-HD3eV_vtksuBncCW6khUz_WnTwo2vIHrEO1UpCcRwTe4MtEO-wNXnZOm2sw2Pgo5GxHr7j35I6y11o7FVtOoVFFs","stattrak":true,"normal_prices":[12941,6092,5176,6082,4970],"normal_volume":[1,30,64,25,24],"stattrak_prices":[33567,9006,7335,6800,7488],"stattrak_volume":[2,8,19,1,8]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-XD3eAzetJvOhuRz39k09w5WnVyI34cnqUb1R2AsN5FuAPtha-m4CyMejitlfYiYpNmH392jQJsHiJvqHvqQ","stattrak":true,"normal_prices":[15724,5422,4840,5604,5288],"normal_volume":[7,41,85,18,21],"stattrak_prices":[34999,8712,7320,6943,6549],"stattrak_volume":[3,7,14,3,4]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsIc-VD2OV_uJ_t-l9AXuwwBh0sT-BydarInPGPQUpCMcjELJY5xm4xIG0NLy241Dag9hNzirgznQeOQeAleU","stattrak":true,"normal_prices":[13889,19221,0,0,0],"normal_volume":[514,15,0,0,0],"stattrak_prices":[17775,28592,0,0,0],"stattrak_volume":[68,2,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLs-HB2CV09F5ouBnSCyMmRQguynLy42tdSnBOFcgC8EjF-ECtBi6x9fuY-3n4w2P2YsWyiX42iMd7Clp4vFCD_R6ZwboAg","stattrak":true,"normal_prices":[11133,13866,0,0,0],"normal_volume":[246,16,0,0,0],"stattrak_prices":[13502,21372,0,0,0],"stattrak_volume":[33,3,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-XD2qR0u1jo95lRi67gVNw6myGnN6teHyTbFV1DMQhTeFYsBa7xtHhZb-z5gfejN4Un3-si3wf8G81tKX6O3VS","stattrak":true,"normal_prices":[7867,6943,6222,6738,7867],"normal_volume":[72,52,62,11,3],"stattrak_prices":[9238,8589,9292,9274,15500],"stattrak_volume":[17,10,10,3,3]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-eD3WSzetJtuBtSha_nBovp3OGztqtIH-RbwV1X5Z5QuEPshGwl9TuY-vrsQPd3d0QmSz72nwY5ilo_a9cBrKGUnAZ","stattrak":true,"normal_prices":[13043,17175,0,0,0],"normal_volume":[243,4,0,0,0],"stattrak_prices":[17167,19766,0,0,0],"stattrak_volume":[37,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-AGmKVzdF9vuhvSha-kBkupjDLn9ytc36QZwByCJpwE-4I4UW9kNy0NO3mtQHdj4xFxSr6j35Lu35s6vFCD_SeoZUIGw","stattrak":true,"normal_prices":[0,0,0,5517,4558],"normal_volume":[0,0,0,13,190],"stattrak_prices":[0,0,0,8510,5851],"stattrak_volume":[0,0,0,5,31]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-BG2WJ_uN3ouNlSiCpkBkYvzSCkpu3dnLGOFMmXJJ5FLMC5Ba-w4CzP763tFHZ3Y8Xnir73yJB6So4sOtUU71lpPMvbRQrHg","stattrak":true,"normal_prices":[51594,54064,0,0,0],"normal_volume":[69,5,0,0,0],"stattrak_prices":[58800,104350,0,0,0],"stattrak_volume":[3,2,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-AD3eAyedktd5kTjuxmRguqTiBpYPwJiPTcAUjCpohTOYPtES7ldzvYrjl5laLi4JBnC_6iS1PvHtst7wDV_Ui-fLJz1aWWu-XwP8","stattrak":true,"normal_prices":[35150,44358,0,0,0],"normal_volume":[63,3,0,0,0],"stattrak_prices":[35959,118260,0,0,0],"stattrak_volume":[9,1,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-RAmaTyv5zsfNlcCSyhx8rtjSfn4vGLSLANkI-CJQjFrQJsxHrktfjMu6z5gbYi49FyS-rh3lJuHxst7oLAvci-PDehxaBb-MyRwuVrw","stattrak":true,"normal_prices":[54543,70484,0,0,0],"normal_volume":[22,1,0,0,0],"stattrak_prices":[57447,73299,0,0,0],"stattrak_volume":[4,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2xCIrujqNjsH8eX-TbAYpCZElTeFcs0a8x9eyP7uxsVOM2o8RziuojC4c5i9u4u8BT-N7rRTkBvdt","stattrak":true,"normal_prices":[19240,25573,0,0,0],"normal_volume":[77,3,0,0,0],"stattrak_prices":[24897,23500,0,0,0],"stattrak_volume":[4,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2xyIrujqNjsH8dy6SbgFyXMAlQLIMtELuxNTuY77j51Hc3YJGyCX_insa6C5ot-5QT-N7rXTHzhfD","stattrak":true,"normal_prices":[22232,23537,0,0,0],"normal_volume":[89,3,0,0,0],"stattrak_prices":[23491,34661,0,0,0],"stattrak_volume":[8,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-RAnKVxdF6ueZhW2fqxBh1tWXVm4v9c3iTawUnDpsjQeMMshW6ld2xP-_q5w3bjoNCyHn2kGoXucNZoqIn","stattrak":true,"normal_prices":[13881,8639,7016,7162,7026],"normal_volume":[14,82,63,34,55],"stattrak_prices":[36572,11049,9290,9662,9112],"stattrak_volume":[5,7,2,5,11]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2xiIrujqNjsH_IHmVbw4gDpIlF7Nb5kO4k9CzZr_q5FbaiopNyyqoii0cvSZjsOcKT-N7rcPcFrXZ","stattrak":true,"normal_prices":[18967,24506,0,0,0],"normal_volume":[82,3,0,0,0],"stattrak_prices":[20322,28957,0,0,0],"stattrak_volume":[9,3,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2wSIrujqNjsH_J3jDZlV1AsAmE-QNtxG6koCxY-mx41bcjo9CnC35inkb6C06tb5QT-N7rTRepqpg","stattrak":true,"normal_prices":[19991,22800,0,0,0],"normal_volume":[102,1,0,0,0],"stattrak_prices":[24201,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-VAXWTxOpJvOhuRz39kEkjtjmGydmhdi-TbVNyDJNwTbRf4BjpwILhNe7k4wzW2otCyn72jzQJsHhv3Am88A","stattrak":true,"normal_prices":[11026,6782,6851,6659,6662],"normal_volume":[27,44,46,21,21],"stattrak_prices":[15221,9517,8465,9473,9104],"stattrak_volume":[4,14,11,6,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-cB2uVxdF6ueZhW2fmx0gi4jzQm9qhdSqSPVRzDJR2FOEKsha4xtbgPuy04QON3YJEyyr_kGoXuQK6HIuK","stattrak":true,"normal_prices":[18492,10143,9018,9795,9090],"normal_volume":[48,210,255,140,108],"stattrak_prices":[42232,14680,14248,13787,12487],"stattrak_volume":[6,19,27,28,1]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tlOc-XCneR1dF6ueZhW2frxE106zzQztb6Jy2TaQYoCpQiEO5Y4xOwldfjZurg5QTdid5GxCj-kGoXucz3RTaX","stattrak":true,"normal_prices":[14615,5399,4645,5064,4690],"normal_volume":[8,25,77,19,33],"stattrak_prices":[51066,6801,6585,7027,6004],"stattrak_volume":[1,3,17,2,8]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-JC2WCwNF6ueZhW2fglEt-5jmDytn_InKRPwQkAsQhE-UJu0a4lYflNO7k41bc34sTyH76kGoXuTxGW3zC","stattrak":true,"normal_prices":[12822,11782,12050,0,0],"normal_volume":[123,118,42,0,0],"stattrak_prices":[17077,16683,17779,0,0],"stattrak_volume":[23,16,5,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-eC3SY_vp3vt5lRi67gVNztTmBydj4I32fZ1UpDMAiEecMuxXqxN2zN7zi5Abdg4hDxSj5iywf8G81tEchNhm2","stattrak":true,"normal_prices":[10339,4547,4459,4590,4800],"normal_volume":[11,45,84,27,28],"stattrak_prices":[62191,8560,6271,6325,6303],"stattrak_volume":[2,5,6,3,10]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-dB2CY1f1iouh5Sha_nBovp3PVnN6uIn2VPQEiA5ZzR-BfuhS5loCxNO7gtFTa34hEyS75iS4duHk6_a9cBmI-JI41","stattrak":true,"normal_prices":[12626,5808,5350,5831,5489],"normal_volume":[6,41,86,17,13],"stattrak_prices":[69999,9585,7442,6416,8293],"stattrak_volume":[1,7,14,4,13]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tlOc-VAXWV0vpJsu57Sii_qhEutDWR1Ir9d3KSbgFxDJQiRe8O4ESxm9HiZu_k4lCP2NhBz3-tji1N6Hlv470cEf1yxrD6pCc","stattrak":true,"normal_prices":[13447,4807,4622,4774,4420],"normal_volume":[3,30,70,14,29],"stattrak_prices":[64097,6644,5679,5893,6785],"stattrak_volume":[2,4,12,1,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-L8-DG3WAzetJvOhuRz39k0104GnVzor_InqfPQ9xDZJ0E7JfuxDql4XhPryxtg2MiI5An3-r2zQJsHhQRDEjrg","stattrak":true,"normal_prices":[23014,8015,6464,7187,6522],"normal_volume":[8,53,100,18,17],"stattrak_prices":[180000,9832,8190,8259,8000],"stattrak_volume":[3,4,25,6,2]}}},"519":{"name":"Ursus Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s27erd4M77AXWWWx7h3tOA5SyvilEkj5WuGw42qc3zEOg4iDJEjQu9b4xa6w4DgKaq8sDVgNcPY","stattrak":true,"normal_prices":[10382,10382,10382,10382,10382],"normal_volume":[321,321,321,321,321],"stattrak_prices":[10353,10353,10353,10353,10353],"stattrak_volume":[123,123,123,123,123]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tlOc-EC2WD_uJ_t-l9ASzrwRt14WXTmNqrIy-eaAIoCpdyQuYJtxHuwNyyZe_m5wHb39lCmSTgznQedPIzvI4","stattrak":true,"normal_prices":[98571,16697,11977,11562,11537],"normal_volume":[5,119,187,24,34],"stattrak_prices":[885006,23916,18074,18900,18113],"stattrak_volume":[1,11,35,1,3]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-HD3eV_vtksuBncCW6khUz_W7Rw9ihcHqTaFUnDMYiEeEOtRe9kNXjM7vhswbZ3Y1BnCv6jSgbuix1o7FV-Na7K10","stattrak":true,"normal_prices":[25900,8814,6834,7415,7104],"normal_volume":[2,46,69,17,25],"stattrak_prices":[49999,13649,9067,9656,11390],"stattrak_volume":[2,2,13,1,3]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-XD3eAzetJvOhuRz39zUgjtTvQyYz8ci6TPARzCZtyELILuhbsltazMOm04AHXiYJMziytjjQJsHj5P22EGw","stattrak":true,"normal_prices":[16436,7637,6306,6334,6918],"normal_volume":[5,40,62,13,15],"stattrak_prices":[130000,9795,8882,8249,8983],"stattrak_volume":[1,15,18,4,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsIc-VD2OV_uJ_t-l9AXzml00i527XzouseH7GblAjX5N3R-NbuhLswYfjY-zj7laKjdkRyX_gznQeK-1-7hY","stattrak":true,"normal_prices":[19722,30149,0,0,0],"normal_volume":[440,20,0,0,0],"stattrak_prices":[25745,44230,0,0,0],"stattrak_volume":[55,4,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLs-HB2CV09F5ouBnSCyMmRQguynLnNypeXqeZ1coC5tyE-9fuxbpw4e1Yuvj5Qza344TzyuqjyoY6n1v4fFCD_RAjV1-VA","stattrak":true,"normal_prices":[13413,16028,0,0,0],"normal_volume":[434,23,0,0,0],"stattrak_prices":[17755,28000,0,0,0],"stattrak_volume":[55,2,0,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-eD3WSzetJtuBtSha_nBovp3OEw92gdH_DPFcnWMB2EO9f5EPsktzhNO_n5gCIjdhHxH3_hnwauiht_a9cBmW6TNz5","stattrak":true,"normal_prices":[15784,19775,0,0,0],"normal_volume":[458,19,0,0,0],"stattrak_prices":[19693,27465,0,0,0],"stattrak_volume":[77,7,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-AGmKVzdF9vuhvSha-kBkupjDLy9-hcymePwV0XpN1E7MPshfrl9HkMO7q5QyI2Y9MnC353ClLvCdu5PFCD_SZq2fGzA","stattrak":true,"normal_prices":[0,0,0,6809,5703],"normal_volume":[0,0,0,22,297],"stattrak_prices":[0,0,0,10388,6722],"stattrak_volume":[0,0,0,4,44]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-BG2WJ_uN3ouNlSiCpkBkYvzSCkpu3I3-eOFJxCJJ0Re8PsELuxoW2ZOzlslPfj98QxSyqintBuCY66-hTVr1lpPOXbk3ZOw","stattrak":true,"normal_prices":[75281,106988,0,0,0],"normal_volume":[51,2,0,0,0],"stattrak_prices":[83434,220234,0,0,0],"stattrak_volume":[4,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-AD3eAyedktd5kTjuxmRguqTiBpYPwJiPTcAB2DpUkRrYK50awk9LhZrjg4lPZ2I1Dzyr_3X8Y6n1j4roFUKcl_qPJz1aWr6Afqe0","stattrak":true,"normal_prices":[50732,89995,0,0,0],"normal_volume":[44,3,0,0,0],"stattrak_prices":[67793,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-RAmaTyv5zsfNlcCSyhx8rtjSfn4vGLSLANkI-C5IiRrQN5BaxktbgNOrksVOPj9gRnin-jS8fvX4_6-kAAqNx8vLQiRaBb-PCt4gg5w","stattrak":true,"normal_prices":[83239,126230,0,0,0],"normal_volume":[15,2,0,0,0],"stattrak_prices":[104643,105000,0,0,0],"stattrak_volume":[3,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2xCIrujqNjsGrcnKTbgQjWZRyFuEL4EO4xoXuY-7n71bY2YtGxH35jSga6Cs4sboLT-N7rSrR5rr3","stattrak":true,"normal_prices":[23994,39552,0,0,0],"normal_volume":[68,3,0,0,0],"stattrak_prices":[27589,60000,0,0,0],"stattrak_volume":[4,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2xyIrujqNjsH6dHORbFMiW5QlQ7EMtEK-m9fjZurh5QGMjdgXm3j43y1OuCY_57tUT-N7rRKbF8ni","stattrak":true,"normal_prices":[27629,36829,0,0,0],"normal_volume":[73,3,0,0,0],"stattrak_prices":[31854,50000,0,0,0],"stattrak_volume":[8,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-RAnKVxdF6ueZhW2e1kx8ksTnVzdz9Jy7FawNyX8NzQLNc4xK4xIflYb7n7gbcjI1Fzi_3kGoXuVwKdqHm","stattrak":true,"normal_prices":[19076,10300,9650,8966,8848],"normal_volume":[15,45,43,44,50],"stattrak_prices":[88171,16178,11161,10477,12357],"stattrak_volume":[3,20,13,4,8]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2xiIrujqNjsH8dSrDOgZxCsdwQbIKshHqlYa2Y-i35wzW2ItEn3mtjysdvS9s4ekET-N7rUzmvdlV","stattrak":true,"normal_prices":[23578,31871,0,0,0],"normal_volume":[67,2,0,0,0],"stattrak_prices":[27362,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2wSIrujqNjsGvdiqQZ1clCJIhQLUCtkGxx4G1Ye7m7gSPjY5Nzn_6hipJv304t-hQT-N7rW2UnqIg","stattrak":true,"normal_prices":[24851,33033,0,0,0],"normal_volume":[77,2,0,0,0],"stattrak_prices":[27036,32153,0,0,0],"stattrak_volume":[7,2,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-VAXWTxOpJvOhuRz39lBsk5m2Dz4mrdX6SZg92CsEhRrIO4USwmtHkZe3rsgTXjd9AniyrhjQJsHhzJIw6OA","stattrak":true,"normal_prices":[11548,9505,8334,7888,8199],"normal_volume":[18,62,55,30,21],"stattrak_prices":[20077,9962,10325,9970,9840],"stattrak_volume":[1,9,7,8,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-cB2uVxdF6ueZhW2fmxBx-427Xntr_c3rBaFIkDZAhRLVYtxXql9LjMe_itQKL2d0UzXmskGoXueV9R1qR","stattrak":true,"normal_prices":[23504,13494,11556,11428,11471],"normal_volume":[28,171,189,98,56],"stattrak_prices":[43488,21166,14727,15134,16600],"stattrak_volume":[3,22,19,10,5]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tlOc-XCneR1dF6ueZhW2fqxU0ktmTTytugdi_CZ1ckDZYiRO8Muka-kYXiZuri4wTdjIJDyHr9kGoXuTEenuE-","stattrak":true,"normal_prices":[18781,6455,5872,6648,5949],"normal_volume":[6,41,47,11,24],"stattrak_prices":[0,9725,9228,9120,8164],"stattrak_volume":[0,8,16,2,9]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-JC2WCwNF6ueZhW2fhkU9wtTjWytepcHueblR2ApslReYM4xS6kYDlZrnjtAzb3dpBzi2skGoXufPjJEMh","stattrak":true,"normal_prices":[16894,16168,17029,0,0],"normal_volume":[112,90,39,0,0],"stattrak_prices":[22690,20786,32642,0,0],"stattrak_volume":[15,18,2,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-eC3SY_vp3vt5lRi67gVNzsW-Bn9-qIniRbgAhCMAkR-ZfsxPtmoDvPuzr7lHa3YhBzCr-3Xwf8G81tFy8vCpc","stattrak":true,"normal_prices":[14214,6010,5604,6048,5818],"normal_volume":[7,36,72,5,22],"stattrak_prices":[43375,11021,8184,7525,6916],"stattrak_volume":[1,10,9,8,4]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-dB2CY1f1iouh5Sha_nBovp3Pdmd-qJ3rFZwclA5AlEbINsUS9ltbhM-6xtQHfit4UnC__hylB6Xpp_a9cBpOKr6LC","stattrak":true,"normal_prices":[23159,9066,7429,7531,7582],"normal_volume":[1,33,75,20,16],"stattrak_prices":[0,10980,9009,10217,10391],"stattrak_volume":[0,14,15,5,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tlOc-VAXWV0vpJsu57Sii_qhEutDWR1I2uJS-QZ1IhCJB2TOcOt0PuwNPvM-3k4VSMi4sQzCysiSxP73xi6-0cEf1y17OWkH8","stattrak":true,"normal_prices":[13673,6067,5728,6223,5856],"normal_volume":[5,42,72,12,15],"stattrak_prices":[0,9058,8266,8112,7709],"stattrak_volume":[0,8,11,1,2]},"857":{"index":857,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-XD2qR0u1jo955XSCgmBwYvzSCkpu3IHqeOwImXMFxEbULtUPqx9XmZO_iswTcg41Gzy743CxL7ntusLpTWb1lpPNKGasTBw","stattrak":true,"normal_prices":[10512,8642,7856,8853,9367],"normal_volume":[78,76,115,22,15],"stattrak_prices":[13130,10565,10447,10175,8916],"stattrak_volume":[28,21,19,5,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-L8-DG3WAzetJvOhuRz39k0Rw4jiHw4r4I3nEZ1UiWZJ3F7Jb4xPul9HnNejgtADWjNoUmC76iDQJsHhIUD-ATQ","stattrak":true,"normal_prices":[46448,11714,8332,8574,8217],"normal_volume":[4,88,198,48,40],"stattrak_prices":[75000,13618,11156,9800,12299],"stattrak_volume":[2,13,30,6,8]}}},"520":{"name":"Navaja Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2pcbR-Oc-ZD2SbyuB_tuQnGXu1kBxw62_dwtird3qXZwQgXJV0E-4PtESxl4ezYr6x4FaMjI4UyzK-0H1iy36efQ","stattrak":true,"normal_prices":[4457,4457,4457,4457,4457],"normal_volume":[297,297,297,297,297],"stattrak_prices":[5664,5664,5664,5664,5664],"stattrak_volume":[49,49,49,49,49]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJuPhWWCyxhiIrujqNjsGtJS-eag4iCpN4QrZYsEK_m9K0ZLzl4gOLiYgQxSj2in9Buis_5OZRT-N7rdEUHJYn","stattrak":true,"normal_prices":[33159,9187,6618,7959,6717],"normal_volume":[4,36,52,7,12],"stattrak_prices":[408641,17533,10586,10833,10771],"stattrak_volume":[2,7,14,5,2]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWWyijkCIyoT-ElLD1KCzPKhggC5p4EeIPtkTtkdy2Y-7mtAOMg9pEnCr8iyIf6C8-sL5TWfYh_aCGkUifZi7Rx6Sa","stattrak":true,"normal_prices":[18357,5462,4679,4814,4758],"normal_volume":[3,36,40,9,12],"stattrak_prices":[35123,7707,6969,7334,7000],"stattrak_volume":[3,10,2,8,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWSyijhREijDGMnYftb3qQPwNzXJIjELQLsxiwkdWxZOLntAHX2Y5Gm3_6i34a5n0-4OwBVqM7uvqAVQbj3nE","stattrak":true,"normal_prices":[12616,4656,4459,5260,4665],"normal_volume":[8,30,41,5,10],"stattrak_prices":[52561,8277,7085,7204,7299],"stattrak_volume":[1,1,8,3,2]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJseBWSSi3kCIrujqNjsH7c3qVOwV2DcZyQbQOukG5m4CyMeqz4laIgoxAnH_93Ckbvyw5troCT-N7rT3KN2DN","stattrak":true,"normal_prices":[11042,14206,0,0,0],"normal_volume":[268,11,0,0,0],"stattrak_prices":[17059,22000,0,0,0],"stattrak_volume":[34,1,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJse9WWyC0kA8YvC-ElIj8HifOOV5kFMMlRLJf4BK4k9LlZuy35QTYg95NzXmri3tB6yk4sO5XBaoh_PDRhgHfcepqTt5nFFY","stattrak":true,"normal_prices":[7462,9308,0,0,0],"normal_volume":[197,8,0,0,0],"stattrak_prices":[10392,9254,0,0,0],"stattrak_volume":[42,2,0,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWQiihlxEijDuEnorGLSLANkI-DpolR7Vf5hK5kdTlNbiwsg3YiNlCm3mq3Cgd6iZusetRUPJx-qTT2xaBb-MDauzVhA","stattrak":true,"normal_prices":[10134,12391,0,0,0],"normal_volume":[189,11,0,0,0],"stattrak_prices":[12856,20329,0,0,0],"stattrak_volume":[31,7,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWXD22kBEYuDOMnIrGLC7DN0N9FMF2E7NbsEWwkYXjMe3r51OKid1MmXr42i0cvSdttb0KAKpz86WCjgDfcepqQnV13Fs","stattrak":true,"normal_prices":[0,0,0,5122,4268],"normal_volume":[0,0,0,11,205],"stattrak_prices":[0,0,0,9967,5690],"stattrak_volume":[0,0,0,2,16]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWXTyxjCIqsi-HlorwOy7DAVp5Xco0W-cMsRO5x92yMe3r51Pd3d5Nn3isiy9LvSli5OZRAqYmq6OEiAuQZeIjoc5Uu2hkHeU","stattrak":true,"normal_prices":[28075,32000,0,0,0],"normal_volume":[51,5,0,0,0],"stattrak_prices":[33500,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWXCijhRUuoTi6l47rIyfCN0x1Xv0sHLBS9g6_m4GzMr-xsgOIidhMyC743C1O53ti5ecCWPAmrqeCjg2QNbU06ZBROr_5GjZZEpGb","stattrak":true,"normal_prices":[20001,24713,0,0,0],"normal_volume":[44,2,0,0,0],"stattrak_prices":[26127,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWTSWylhY3tjyXlrD0IDnFMlN5QMckKrtT5Uj8jILvNu7r4VfZj4gTySX_33gc6i5r475RBPAh_vKBjQrIZ7Q45sEHJ_y5DUPZghIomjw","stattrak":true,"normal_prices":[42304,37005,0,0,0],"normal_volume":[21,3,0,0,0],"stattrak_prices":[63960,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJHr4Ml93UtZuQ-ALs0O_koWzN-vr5wzaioNNzCyt2i5P6y856-9RUadzrKDS2wzEZKp9v8dpzTWWrA","stattrak":true,"normal_prices":[12120,0,0,0,0],"normal_volume":[38,0,0,0,0],"stattrak_prices":[17885,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJHn4Ml93UtZuFOFcthixx9PnNLvr4FeKid0QxCn82i4cuCo94OdTWPcgq6TVhgDIZap9v8c93PrlJQ","stattrak":true,"normal_prices":[13485,18100,0,0,0],"normal_volume":[62,3,0,0,0],"stattrak_prices":[17440,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWTSWmkBkYvzSCkpu3JCqUaFIjCpV4ReAD50S9w4bgZO7h4Vba399DmC36jHlI6yo_tr0LB71lpPNA0Lycxg","stattrak":true,"normal_prices":[13548,5740,5229,5386,5129],"normal_volume":[6,19,38,20,22],"stattrak_prices":[2227270,10168,9054,9155,7605],"stattrak_volume":[1,7,9,3,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJHj4Ml93UtZuFuJZ5BTuxNTlNLvm5ADejYIUmSysi3wY63lo4e0GAKsn8_CCig2SZap9v8fr59Kpfw","stattrak":true,"normal_prices":[11590,29859,0,0,0],"normal_volume":[40,2,0,0,0],"stattrak_prices":[18413,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJH_4Ml93UtZuTORYsxm-w9K2ZLyztlTcioNAxHn2j3sauis_5b0DAKR0_vbX2QDFNKp9v8ccuootUQ","stattrak":true,"normal_prices":[11707,15882,0,0,0],"normal_volume":[55,1,0,0,0],"stattrak_prices":[18631,30000,0,0,0],"stattrak_volume":[3,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWSSahlhgjjDGMnYftbyiSaQUnX5BzELJY4Bi5w4DuMLvl4lSNiY1NmSj223wY7yo64b5TWKQ7uvqAVA9om-4","stattrak":true,"normal_prices":[10187,5018,4828,4693,4863],"normal_volume":[8,21,27,12,11],"stattrak_prices":[14764,8168,8689,8743,9442],"stattrak_volume":[2,9,7,1,7]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWQCC_kBkYvzSCkpu3eHKWaQ8jXpQkReZZtxa_x4HvYujh41HZg9pNzX2ojCJA7itpteYHBb1lpPM10bWGng","stattrak":true,"normal_prices":[15088,10068,8044,7859,7858],"normal_volume":[18,104,151,85,56],"stattrak_prices":[59057,14826,13915,13918,11638],"stattrak_volume":[1,15,8,10,2]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJuPhWSy2jlAkYvzSCkpu3eSjBPVcoCZQiEbZYtRawwYXjM7nktgXW3YkXyH-qiiJL7Hpr6-hRAL1lpPMoI6wPcw","stattrak":true,"normal_prices":[8671,4575,4270,4284,4842],"normal_volume":[3,25,49,15,19],"stattrak_prices":[60012,10158,6120,8125,8903],"stattrak_volume":[2,2,13,2,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWVSyxhxwYvzSCkpu3JSjFaQR0WZFwFOFYtBLtl4e2Nrmz4FHci4tAxCT8iipK6yc6sekKUL1lpPNhGLzFnw","stattrak":true,"normal_prices":[10135,9275,9733,0,0],"normal_volume":[71,64,18,0,0],"stattrak_prices":[13777,15603,17569,0,0],"stattrak_volume":[14,7,4,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWQiygnSIzsjO6lob-KT-JZgIlDJFxQbUIsxnsk9zjNrmz7wbfg4IQziT6hi9P5n5j674CWPIlqLqX0V-GxNuRmA","stattrak":true,"normal_prices":[22287,4572,4232,4331,4591],"normal_volume":[1,27,55,5,10],"stattrak_prices":[24946,6348,5400,6454,8270],"stattrak_volume":[4,12,6,2,4]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWQSC0nQk0py-MiorGLSLANkI-AsF1FrUI4US9wdeyZujg5lOIiIwTzHn823hO7X5rsrlUWatxqKWEjRaBb-NTNYcBTg","stattrak":true,"normal_prices":[22979,5161,4511,4857,4859],"normal_volume":[4,30,55,8,21],"stattrak_prices":[23100,7331,7188,7558,7117],"stattrak_volume":[3,2,3,6,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJuPhWSSahkA4zjD-KiIr4LRTLN1F4TowkTeFc5kHpwNGzY--05VPd34NMxCz8jiJI6ns_4LtUVaYtqKHQ3gHDL_RjtjQ2sZy9","stattrak":true,"normal_prices":[0,4934,4518,4759,4723],"normal_volume":[0,23,40,6,15],"stattrak_prices":[34598,7091,7270,10677,6969],"stattrak_volume":[2,9,2,1,4]},"857":{"index":857,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWSyi-lA4kpi66ip3wMibGAVp5Xco0W-8JuxK-k9y0Mbjj7wTXioNHmH33i3wcvCY6670CVKt3r_LTigyTMrUjoc5Uv9yDDqU","stattrak":true,"normal_prices":[5738,4848,4585,5572,5679],"normal_volume":[52,57,73,9,13],"stattrak_prices":[9742,7378,7159,7589,7307],"stattrak_volume":[11,10,9,5,2]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo-5WXzyhhREijDGMnYftby3FOgUhAsYjTeZetBm4xtXkNbiw5lPbi9pGxCr92itB7C9q4ekDU6c7uvqA74P7bNU","stattrak":true,"normal_prices":[13630,5754,4980,5381,4974],"normal_volume":[7,39,91,18,18],"stattrak_prices":[75111,8308,6792,7062,6785],"stattrak_volume":[1,8,15,7,1]}}},"521":{"name":"Nomad Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2hfbBpL_-BQDPEw-hz57cxTnCxkEh_5jnVzor8dymXbgAiAsFyEOEMsBW8l9O1Ne38p1uJmh0Kkm0","stattrak":true,"normal_prices":[13649,13649,13649,13649,13649],"normal_volume":[781,781,781,781,781],"stattrak_prices":[13886,13886,13886,13886,13886],"stattrak_volume":[132,132,132,132,132]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_iKMXCVw_1JvOhuRz39xEV_sT6Bn9mueX3EP1QjApd4QbZe5EW6wIDmNO7islfW391EzCWt3TQJsHib9FqZhg","stattrak":true,"normal_prices":[75006,21516,14923,14637,14322],"normal_volume":[8,147,331,37,40],"stattrak_prices":[0,26485,17654,19214,17557],"stattrak_volume":[0,26,41,8,6]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMXOR0etJpfNrTieMmRQguynLm96uciqSawMgX8Z1RrEIs0G8wN3nYbvjs1fZ2I1GmC-o3CofvSdi4PFCD_SLffhL6Q","stattrak":true,"normal_prices":[24000,11478,9730,9258,8915],"normal_volume":[4,53,116,25,51],"stattrak_prices":[86959,14739,10719,10748,10527],"stattrak_volume":[2,14,18,6,4]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMWOR0f56td5lRi67gVN252yBy4uteS7FaQ4kA5B5Q7EMthW6wdO0Zu7m5VTXgthFzy__ji1L8G81tIOO-uWD","stattrak":true,"normal_prices":[16242,10410,9043,8678,8287],"normal_volume":[5,63,80,43,44],"stattrak_prices":[36393,10955,9208,13111,9595],"stattrak_volume":[2,15,35,4,11]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GSMWGRxetJvOhuRz39wUUksW7Vm4n7d3yUO1InXsdxTeQDukO4l9zuN7_j5QzYjIlFy3n6jDQJsHjNMoy1vA","stattrak":true,"normal_prices":[28681,30424,0,0,0],"normal_volume":[717,37,0,0,0],"stattrak_prices":[30704,54772,0,0,0],"stattrak_volume":[128,9,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GdMXOZxutkj-57Tie0kCIrujqNjsGsIH-WOlUnCpp3FOAMshe-xNHgZe20slPX2YNFn336iy1L6Stp47oET-N7rXiT8mY0","stattrak":true,"normal_prices":[18942,21038,0,0,0],"normal_volume":[444,22,0,0,0],"stattrak_prices":[20822,29569,0,0,0],"stattrak_volume":[64,5,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWORzO9ls_R6cCW6khUz_W6Hyt-vJXifaQFzCJNzR7RZsxLsx4K0N-_m5AbZg9kXn3r93S1NvHx1o7FV4ooHb_M","stattrak":true,"normal_prices":[14921,13335,12482,12944,13359],"normal_volume":[103,117,164,18,14],"stattrak_prices":[19082,16653,15269,14565,23273],"stattrak_volume":[20,13,19,4,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWqR0-x6td5vTi22qhEutDWR1NqsdS6Wa1UpC8cjQ7QJ5BHqx9zjZurgsgfZiYgXn3r7hy8b6yo_5OocEf1y7tM7KOE","stattrak":true,"normal_prices":[23079,27039,0,0,0],"normal_volume":[548,20,0,0,0],"stattrak_prices":[24609,32456,0,0,0],"stattrak_volume":[69,1,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMXSExOt6j-pnRi-2qhAitzSQl8GteHyfZ1coCZB3FLUDthK_kdKzZr7i4leN3okTxH6t2i9M6XxpselRT-N7rRxzBN3w","stattrak":true,"normal_prices":[0,0,0,10948,10099],"normal_volume":[0,0,0,22,271],"stattrak_prices":[0,0,0,11796,10216],"stattrak_volume":[0,0,0,5,75]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMXWFw_dJveB7TSW2nAcitwKJk4jxNWWVOlUiWZt0RO4MtkW8ldK2ML7i4wHW2t9Bm3n2iH5Kv3pttuwBU6Rw5OSJ2BsJTr2y","stattrak":true,"normal_prices":[121781,130577,0,0,0],"normal_volume":[79,3,0,0,0],"stattrak_prices":[122406,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMXSR0f5-ufNscCSyhx8rtjSfn4vGLSLANkI-DZF4E7EL4xiwxILgMLni41SM3o8Uz3j4h3tJ6ik_sO9WU_F3-KPUjRaBb-NU6ZNx2A","stattrak":true,"normal_prices":[81543,92119,0,0,0],"normal_volume":[68,4,0,0,0],"stattrak_prices":[77613,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWWcwO19oORoXSWMmBw1sTGAk5X8JRTLN1F4TowlROMLuxe8k9DjP-rj4QONjNhAnCuojiNLvytpt-pRUPci-PffilzIL_Rjtq5H6bYu","stattrak":true,"normal_prices":[114518,402162,0,0,0],"normal_volume":[40,1,0,0,0],"stattrak_prices":[110017,350000,0,0,0],"stattrak_volume":[4,2,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhh2jDGMnYftb3mSbQF0A5NzEbMI5BO4l4bvNujh5gPaj95Mzy75iStI7ito5-tXVvY7uvqAlag3iO0","stattrak":true,"normal_prices":[37524,42447,0,0,0],"normal_volume":[106,4,0,0,0],"stattrak_prices":[40979,61872,0,0,0],"stattrak_volume":[8,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhh1jDGMnYftby6SPAV2X8N3Q7NcsEa_lNezMuPq5wzY2IpHmHn6j3tNvytq5OhXBaY7uvqAC7ut2F0","stattrak":true,"normal_prices":[43444,46703,0,0,0],"normal_volume":[137,3,0,0,0],"stattrak_prices":[41503,200000,0,0,0],"stattrak_volume":[12,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWWc1Otyj-1gSCGn2011smSEyIz6eH2XaAIkDpt3TLQDtEXpwdHmYe_itgTd3o9DySr8hihXrnE81fc4CIg","stattrak":true,"normal_prices":[22890,14680,13468,12739,12965],"normal_volume":[27,97,156,99,106],"stattrak_prices":[29528,20232,17509,16504,17821],"stattrak_volume":[6,14,21,10,17]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhh0jDGMnYftb3rDbQcmCsMlQrEP5xTsxIa2Yuy2tVDdjIITyi352iob7C1j47tUBfA7uvqAy8gEoCY","stattrak":true,"normal_prices":[36983,43479,0,0,0],"normal_volume":[96,3,0,0,0],"stattrak_prices":[38832,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhhzjDGMnYftbyqeblVzX5ohROZbtxfpxNDvZOjmsVSKj98Wzi_5jilO6ilose8GBKE7uvqAQvAc2Rg","stattrak":true,"normal_prices":[42327,41466,0,0,0],"normal_volume":[126,4,0,0,0],"stattrak_prices":[41585,0,0,0,0],"stattrak_volume":[17,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWGf0-1ztN5lRi67gVMh6mjXwo6ud3rEOgVyA5ZxQeFZtBDpk9e0MrzmslDW2d5GzSit338a8G81tHbrR9Yc","stattrak":true,"normal_prices":[17480,12993,11811,11435,11316],"normal_volume":[37,108,141,71,58],"stattrak_prices":[26512,14691,13918,14971,13472],"stattrak_volume":[8,23,21,13,6]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWiZzetyj-1gSCGn2xhz5GyHwtr_dS7EOlR1DZtyEe8MsBO-xNKyNbnq7w3b2d8WzC7-jSNXrnE8rdGSE7w","stattrak":true,"normal_prices":[38401,16932,14988,15047,14725],"normal_volume":[63,348,575,275,206],"stattrak_prices":[78079,23609,19210,19461,21609],"stattrak_volume":[4,45,66,35,21]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_iKMWOU0e9ij-1gSCGn20x_5jnRnN37dH-TO1MgXsAhTeUPt0XskYLiN7-24AaPiIoRniX_2HxXrnE8-aG-K_E","stattrak":true,"normal_prices":[20155,9853,8574,8421,7817],"normal_volume":[7,45,71,24,47],"stattrak_prices":[76547,11505,9384,11449,10904],"stattrak_volume":[1,10,33,5,12]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMX2Vw_x3j-1gSCGn20R15TyGnNv_cS3GZlUnA5smTLEM4xDpx4bmY77h51OMiIJNziX53SJXrnE8R49sMsc","stattrak":true,"normal_prices":[24357,21596,21420,0,0],"normal_volume":[197,197,45,0,0],"stattrak_prices":[26396,24953,25403,0,0],"stattrak_volume":[33,29,9,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMWqV0uZJpOBncCW6khUz_WzWm9esdXOfbwRyWZR0ROACthDulYeyM-m34AeL3doXxX-s2Hwb7311o7FVDfDKraI","stattrak":true,"normal_prices":[13152,8504,7536,7720,7734],"normal_volume":[7,29,65,20,41],"stattrak_prices":[57893,9669,8393,9331,8485],"stattrak_volume":[3,13,28,5,14]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMWmZxuZio_V7Rjm2qhEutDWR1N__eS6WbFMmD5MhFOJZ4xjswYHhMbzktFPYi45BmS3_2yJO6Cppt-4cEf1yoG4tbbU","stattrak":true,"normal_prices":[16230,10646,9730,9250,9283],"normal_volume":[8,72,123,34,28],"stattrak_prices":[72938,12577,10491,10915,10433],"stattrak_volume":[1,13,24,10,4]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_iKMWGf0-tlpN5rQDu2lBEYvzSCkpu3IC_EawN1WJMjRrMIsBiwlYXiPr7h5VOKgoJAyi37hy0f6Chp5egFVr1lpPOSgy8u-g","stattrak":true,"normal_prices":[14764,10317,8291,8336,8255],"normal_volume":[8,33,86,23,37],"stattrak_prices":[31903,10335,9104,10725,11335],"stattrak_volume":[2,16,30,3,3]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-OcMXeF0_56td5lRi67gVMhsDiHyduhcS7BaQ4oApUmRrFf4ES-k9GzPumxsQLej44Wzi37i3wb8G81tLNXf6VL","stattrak":true,"normal_prices":[29233,13781,11302,10799,10623],"normal_volume":[9,92,258,25,49],"stattrak_prices":[22928,16379,12926,14221,13388],"stattrak_volume":[1,15,47,2,13]}}},"522":{"name":"Stiletto Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s29fK1hJeSHASnCmO8v4bc_HCjilkkismTWyNutciqealMhDsR5F7MM4UWwlYC1Zr7n-UWA3E6ZCYCt","stattrak":true,"normal_prices":[19637,19637,19637,19637,19637],"normal_volume":[479,479,479,479,479],"stattrak_prices":[19431,19431,19431,19431,19431],"stattrak_volume":[103,103,103,103,103]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-bF1iHxOxlj-1gSCGn2xl-426HnourJHKWaQYkDpt5FLMKuxW4m9bvNO7k4ALYjIxNxH77iHxXrnE8aQrZRtQ","stattrak":true,"normal_prices":[128733,30130,21626,21594,20097],"normal_volume":[13,72,166,20,39],"stattrak_prices":[751319,34843,28365,26899,23394],"stattrak_volume":[1,16,15,4,8]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHliEwP5zj_R7TSi9qhEutDWR1Niud3ufbFMpA8B0TeNbuxW6w9PuP-_ntlTWi9oUnir5j35K5ypq67wcEf1y6MY6rfc","stattrak":true,"normal_prices":[38937,18195,14393,14152,14326],"normal_volume":[4,29,100,23,26],"stattrak_prices":[78506,22382,18382,17314,18799],"stattrak_volume":[1,13,18,1,5]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHliUwP5mvORWQyC0nQlpsmuDzNj6d3-SaQ4hCpN1FOMM40LuwdeyMe625gOIidlMmXn6hi1N6DErvbhNNNdMtg","stattrak":true,"normal_prices":[28935,14560,13366,12855,12418],"normal_volume":[6,55,120,21,28],"stattrak_prices":[98666,20305,17307,16241,19682],"stattrak_volume":[1,11,8,2,10]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SD1iWwOpzj-1gSCGn20h2smqHzNuqcy6TawckApJ5EeIJuxPpwNaxMejmtQLa2o5Nnnj3hy9XrnE8H9hk9aQ","stattrak":true,"normal_prices":[39526,42615,0,0,0],"normal_volume":[451,6,0,0,0],"stattrak_prices":[41663,61864,0,0,0],"stattrak_volume":[80,3,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SAFiEyOlzot5mXSi9khgYvzSCkpu3JyjBawQkXsF0EeEO4Ea_m93iNLjk71PfjtlDxSms3S1M7yhj47wLA71lpPOYHm96Lg","stattrak":true,"normal_prices":[26921,27999,0,0,0],"normal_volume":[441,9,0,0,0],"stattrak_prices":[28517,48552,0,0,0],"stattrak_volume":[72,3,0,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1idwPx0vORWSSi3kCIrujqNjsGgI3mSbgIoA8N3TeICtBC-kYG0Nenl4QPYjIJHmX6qingY5yZut-cHT-N7rRs0KjZk","stattrak":true,"normal_prices":[28470,30491,0,0,0],"normal_volume":[520,21,0,0,0],"stattrak_prices":[34456,44500,0,0,0],"stattrak_volume":[62,4,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iD1etzvN5iQSC1kCIqtjmMj4K3dCqUbgVzDJQiR7FcshW8kNfvNejh5wKPgokXyS__3y1N634_5OsKVr1lpPNkLaxKOQ","stattrak":true,"normal_prices":[0,0,0,14557,12982],"normal_volume":[0,0,0,19,392],"stattrak_prices":[0,0,0,15615,14048],"stattrak_volume":[0,0,0,8,79]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JZgMiD5UkTecD4Ra7w9LkNrzm4QXa2oJGnC-sjntM63pstbsEVvJ0qbqX0V8oOnXyXg","stattrak":true,"normal_prices":[177458,205000,0,0,0],"normal_volume":[78,5,0,0,0],"stattrak_prices":[180890,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMYmE-VfuxK-x9O0Yu7n4wDWgoxFyyz7jy4d53w65uxTVqR2qfHTi1vfcepq9g3r7qM","stattrak":true,"normal_prices":[106782,115132,0,0,0],"normal_volume":[58,5,0,0,0],"stattrak_prices":[112579,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuFrJbtRW_xNDhYbyxsgWKioJCxS7-jCga7Sto6usFUfIkq6bS3gCTMap9v8f8BQu6Gg","stattrak":true,"normal_prices":[181759,201650,0,0,0],"normal_volume":[23,1,0,0,0],"stattrak_prices":[182917,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXEbwAgX5RwQucPuhPrmobhN-2z4w3c2IkQyiz2jC0c7C04tusKUPIn5OSJ2D2EqjOB","stattrak":true,"normal_prices":[45429,50983,0,0,0],"normal_volume":[108,1,0,0,0],"stattrak_prices":[45906,90000,0,0,0],"stattrak_volume":[10,2,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWWRblMkAsRwELJf4RK8kNDlZbuxtFDX3o5EyC_7h3sb6XxrsO0GAvEh5OSJ2JbXapRd","stattrak":true,"normal_prices":[60043,63290,0,0,0],"normal_volume":[150,6,0,0,0],"stattrak_prices":[61477,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iSzftztN5lRi67gVMksmTczt-pcyiVOFAnCpJ2FOMOu0K4x9XmYuzq4APa3YgTz3mvjH9K8G81tONtHs_a","stattrak":true,"normal_prices":[33494,21559,19993,19191,18883],"normal_volume":[20,49,73,38,59],"stattrak_prices":[55723,28588,25456,22090,22315],"stattrak_volume":[5,13,7,2,11]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWXBPQ8lCcR2E-QLsRXuwNHuMeiwsQKIjokWm3r2hytIvypp4O4BBaIi5OSJ2HdaKYE7","stattrak":true,"normal_prices":[43225,50166,0,0,0],"normal_volume":[112,2,0,0,0],"stattrak_prices":[49659,57167,0,0,0],"stattrak_volume":[4,4,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWXGb1NxD5R1RLYNtEa8k9zkP-nk4VPeg4NAySSr3S0dvC5qtugCUvB25OSJ2JxPHqta","stattrak":true,"normal_prices":[49895,50378,0,0,0],"normal_volume":[136,4,0,0,0],"stattrak_prices":[52142,57000,0,0,0],"stattrak_volume":[5,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iWzvx1teVWQyC0nQlp4zjVyNn4cX-SPQcjCMBxRbIL40Kwl9SzNu3i5wSLjY9Byyz93X4f7jErvbjY1bBrVA","stattrak":true,"normal_prices":[22783,17577,16734,16628,16853],"normal_volume":[18,55,73,40,23],"stattrak_prices":[29528,20565,18995,17851,19194],"stattrak_volume":[1,13,7,1,1]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1ifyOJztN5lRi67gVNzsWTdn92oJy6XaVUgWJQlQuALtxS4l4HnMrzk5VDc2d1Mmyj9hn8b8G81tHhX34fn","stattrak":true,"normal_prices":[48974,25715,22566,20787,20195],"normal_volume":[32,164,223,131,75],"stattrak_prices":[59113,32750,29321,34742,30428],"stattrak_volume":[4,16,29,9,6]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-bF1iUxf53pN5lRi67gVN_4mrQzt74eCmebgUhXJFzTbQMshm-wd2zM--xtAbYi48Xmy_-3CMb8G81tPLKibvi","stattrak":true,"normal_prices":[19789,12983,12056,12006,11935],"normal_volume":[2,49,86,21,30],"stattrak_prices":[69933,13670,14807,16400,15041],"stattrak_volume":[1,10,16,3,1]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iKxOxksd5lRi67gVNy4GjTydv9JHvEZgJzC5NxTecD4xe9ltGxP7_r7gaK34hMzyr_jiob8G81tBYNQxXS","stattrak":true,"normal_prices":[38666,32377,34244,0,0],"normal_volume":[109,102,37,0,0],"stattrak_prices":[51285,41212,42127,0,0],"stattrak_volume":[16,15,8,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHlidxP1-j_VoQRa_nBovp3OEzoyhI3nBP1AlX5AkF7VZtRG6kd2xM7vj7lCIjoNDxSj_h34d6Hpt_a9cBqAgwT_I","stattrak":true,"normal_prices":[34325,12369,11856,12093,11820],"normal_volume":[7,40,45,21,25],"stattrak_prices":[39339,14366,13230,13000,16241],"stattrak_volume":[2,8,15,4,3]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHlieyOl-pPJ9XSCjkCIrujqNjsGpdn2eOgZxWZJ2FO5Z4xW9kdyxYbjjsVGK2thEnC2th3lA63xj4O8HT-N7rY8ygNQY","stattrak":true,"normal_prices":[41096,15466,13698,14204,13206],"normal_volume":[3,47,110,18,26],"stattrak_prices":[96575,20440,17501,17376,20862],"stattrak_volume":[2,2,15,2,4]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-bF1iWzvxzo_VWTSahkBwrjDGMnYftb3zCa1cgCZMhFONf4BDukofkZe7i5wPbid8Wniqtji5B6iptseoFAvI7uvqA6NgizlQ","stattrak":true,"normal_prices":[31278,12840,12175,12050,11964],"normal_volume":[9,38,51,22,27],"stattrak_prices":[28000,14693,13286,13400,17613],"stattrak_volume":[1,12,20,1,5]},"857":{"index":857,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iUwON3o-J8XBajhxQ0vjy6lob-KT-JZw52XpsiQuADtxjsm4GxPum37lSLjINBni7-iS1K7S9v5OkAUKIlq7qX0V-S_V0ZqQ","stattrak":true,"normal_prices":[20048,18490,17284,18723,16593],"normal_volume":[120,138,240,22,14],"stattrak_prices":[25163,20210,18778,19195,34430],"stattrak_volume":[27,16,36,5,2]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AAViA1PxmvORWQyC0nQlptmmGmdeqcHyebQ5zXJVzFrMC4RO8moHlZOPj4Fba2dlAzin3iX9L7DErvbgj2cX5Sw","stattrak":true,"normal_prices":[46259,20240,15425,15494,14238],"normal_volume":[11,81,298,30,42],"stattrak_prices":[47500,22916,18283,19337,17179],"stattrak_volume":[5,18,30,7,1]}}},"523":{"name":"Talon Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s25YaBiN_2SBWKCj7ghsrRrTHDnzB8h4mTRw9iudC_DPFVyCsF3R-Zc4xK_ldXgNb7qsgDAy9USS1NPX9M","stattrak":true,"normal_prices":[30614,30614,30614,30614,30614],"normal_volume":[546,546,546,546,546],"stattrak_prices":[30933,30933,30933,30933,30933],"stattrak_volume":[84,84,84,84,84]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMW-J_vlzsvJWQyC0nQlp5zzcw9qoIHuRZgV2A8EhF-IDtRC6l9PjN-zk4VHW2dhCyC-qjCtJ6TErvbjqnV9ukg","stattrak":true,"normal_prices":[200000,50420,32742,33909,30407],"normal_volume":[4,72,185,22,29],"stattrak_prices":[938161,60454,40736,39825,42000],"stattrak_volume":[2,16,10,2,4]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_vp3oORWWjuxlBMYvzSCkpu3Ii2TbwEjCZpzTOUIskawlYCxN7nisg2I2olAmyqrhy4duC5i67wKB71lpPPq3A_5rQ","stattrak":true,"normal_prices":[60767,25971,21434,21385,21410],"normal_volume":[3,43,98,13,31],"stattrak_prices":[121412,34708,25998,24264,27864],"stattrak_volume":[1,13,15,1,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_up3oPFlSha_nBovp3ODydepeCqeOwBxC5NwQ-NZ5BDswIKxP7y04wzdgt9NzC_33XlBuChr_a9cBq0veVHG","stattrak":true,"normal_prices":[39392,24292,20295,21019,19484],"normal_volume":[8,38,90,31,33],"stattrak_prices":[124177,35588,22399,23280,29500],"stattrak_volume":[1,7,13,2,4]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaR_uh3tORWQyC0nQlpsmXcnNaoeHuTZwUiWMZzRrVZsxm9x9ThNrzj4QCPjdhNmHj73S9KujErvbhX2ACGeQ","stattrak":true,"normal_prices":[73506,94020,0,0,0],"normal_volume":[484,23,0,0,0],"stattrak_prices":[80026,105398,0,0,0],"stattrak_volume":[70,2,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWae_vp_t-R7cCahlBMgtgKJk4jxNWXFOFN1XMF0Q7FfukW7moCyN-nq7gfejopDmSn73S4c7Ctu4esDBaUt5OSJ2J-DVBrR","stattrak":true,"normal_prices":[44706,46778,0,0,0],"normal_volume":[384,19,0,0,0],"stattrak_prices":[52159,56189,0,0,0],"stattrak_volume":[52,3,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_v1iteRlcCK9nBsijDCAnobsLGWUaFB1WZAiE-Vf4UK5m93vP-3ntFGPidlDzn36jCobuy5usOwKA6oi5OSJ2B5Cd8s9","stattrak":true,"normal_prices":[0,0,0,26409,23488],"normal_volume":[0,0,0,27,500],"stattrak_prices":[0,0,0,33355,25207],"stattrak_volume":[0,0,0,11,58]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_vxjsvhWQiihlxEiuieAnrD1KCzPKhgjDJt0TOZYsEWxm9C1ZOzqtgfW3oITxS_3jntJ6y5t4-YFA6YlrvaCkUifZtYs94Eq","stattrak":true,"normal_prices":[263265,253386,0,0,0],"normal_volume":[78,5,0,0,0],"stattrak_prices":[282875,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_v13oPFhRju2qhAmoT-Jn4bjJC_4Ml93UtZuF-MMt0btxtHlZr7m5gKKjYwRmH2oj3gcuH095e1QAqVwqKzUjluTMKp9v8cWgnOBZw","stattrak":true,"normal_prices":[172143,174707,0,0,0],"normal_volume":[72,3,0,0,0],"stattrak_prices":[203790,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_ux6seJiXyyyhxEYvjyXmIP8KDHCOml8U8UoAfkC4UbuldyzNOy35lHc3opEyS2qhiocvHs_5bsHVPIgq_bQhgrBM7w9_9Bdc1T7Obpq","stattrak":true,"normal_prices":[280509,264014,0,0,0],"normal_volume":[17,1,0,0,0],"stattrak_prices":[525834,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_ux6peRtcCW6khUz_WqHnNmqJH7GPwEhXJN5F-Ff5hPrlt3uN7vhsw2IidpEmyyq3yxJ6Cd1o7FVPYygbVE","stattrak":true,"normal_prices":[66772,40448,36248,35646,35693],"normal_volume":[16,52,80,47,50],"stattrak_prices":[60476,51221,42055,40337,40530],"stattrak_volume":[2,8,11,6,6]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_uh5ouJsSxa_nBovp3PTm96sdnmRPwcnCcB0QeVcsEG-mtLiMunn51CI2YhByy-ojnhLvHo5_a9cBs8s08Rw","stattrak":true,"normal_prices":[40235,30492,28336,27564,27270],"normal_volume":[19,43,70,38,43],"stattrak_prices":[59001,31500,31119,34295,29074],"stattrak_volume":[2,6,7,9,6]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_uF_vORtcCW6khUz_WqBzd39Ii_CaVApAsYlEeUO4xXslNexY7nl5ALWjI0WmSqq3XlN5yx1o7FV8eN3eSM","stattrak":true,"normal_prices":[89077,46966,37222,36322,37240],"normal_volume":[40,76,398,209,117],"stattrak_prices":[98827,66267,60224,45553,52771],"stattrak_volume":[3,12,26,19,18]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMW-J_upyoOB9cCW6khUz_WTQn9iqdXjDOwEjDsdyQuQC5BHpkNyxML_i5Abeio9Cyy362H9N7yZ1o7FVCmRPBKA","stattrak":true,"normal_prices":[55456,24079,19239,19745,19160],"normal_volume":[8,41,78,13,31],"stattrak_prices":[125949,27986,22208,25838,23662],"stattrak_volume":[2,10,16,2,4]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_vRzsvNocCW6khUz_W-Gy4n9cC3BOwIhA5t2ELFbuhm8x9LhYevq5AzZ3tkUmyr42HtIvXp1o7FVC_3pdDk","stattrak":true,"normal_prices":[66204,50886,48277,0,0],"normal_volume":[108,112,48,0,0],"stattrak_prices":[79444,61746,61862,0,0],"stattrak_volume":[23,12,5,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_uNzo-lWWyi9qhEutDWR1ImueHmRbwFzCJF5RO8OtRXpkNyzM-rn51aP2YpEyS73ii5Auits6u0cEf1yj0RX76A","stattrak":true,"normal_prices":[38350,20046,18962,18966,18728],"normal_volume":[6,50,82,25,45],"stattrak_prices":[80879,23718,20287,22342,20313],"stattrak_volume":[2,10,12,5,3]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_uB_t-l9XD2hnA0ijDGMnYftby3GOA4pX8EiReRYtkbtkIXkY-y05FeIg4NCyi79ji4d6Hw65-0CAqU7uvqAN4w4WLQ","stattrak":true,"normal_prices":[53071,25870,22312,23253,21505],"normal_volume":[3,53,148,29,37],"stattrak_prices":[250000,35232,26514,31663,27389],"stattrak_volume":[1,7,16,1,7]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMW-J_uh5ouR6Wxaxmg8isjG6lob-KT-JZgUhDZVwRe4P5xm-mtfiZOnkswTc2YtEnC36jC4bunk94e4HVvAsrLqX0V8QiPlhEA","stattrak":true,"normal_prices":[38262,23034,19770,19658,19299],"normal_volume":[5,37,91,23,29],"stattrak_prices":[132579,28899,22096,22932,21805],"stattrak_volume":[2,5,7,7,6]},"852":{"index":852,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjUpZjwJSTQAVp5Xco0W7UItUPuk4XiMr_q4gXXidkXzn73jipJvCw-4r1QWPEkr_DX2lrFYLAjoc5U3elI6r0","stattrak":true,"normal_prices":[79602,80238,0,0,0],"normal_volume":[115,3,0,0,0],"stattrak_prices":[85290,117528,0,0,0],"stattrak_volume":[13,2,0,0,0]},"853":{"index":853,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjXpZjwJSTQAVp5Xco0W-MOsxPpkILlN-zmtg3YiYlEz3qqiyxAuHw55ecHUaAl8qDR3A7EOOUjoc5UCy3x4c0","stattrak":true,"normal_prices":[95872,93843,0,0,0],"normal_volume":[140,5,0,0,0],"stattrak_prices":[111504,160000,0,0,0],"stattrak_volume":[7,1,0,0,0]},"854":{"index":854,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjWpZjwJSTQAVp5Xco0W-8M4RG7wdPhYrvm4FPZio1Ezi323HhN6ytp47tRWKcsrqCBigzDOLUjoc5UMQO3baE","stattrak":true,"normal_prices":[79863,80726,0,0,0],"normal_volume":[114,4,0,0,0],"stattrak_prices":[86037,150000,0,0,0],"stattrak_volume":[12,1,0,0,0]},"855":{"index":855,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjRpZjwJSTQAVp5Xco0W-8LuhXrm9ayMuPn4gHbitgUynn_2ChM531itu5UUqQtqKXUiwmQNrIjoc5U6_TK_Fs","stattrak":true,"normal_prices":[88947,91500,0,0,0],"normal_volume":[142,3,0,0,0],"stattrak_prices":[95056,117670,0,0,0],"stattrak_volume":[9,1,0,0,0]},"856":{"index":856,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_uN3ouNlSha1lBkijCqMnoDuHifOOV5kFJMlQecC4RW5x4bkMLvgsgGP2IIXzy_-iysaunlo4bwEBfYh_aLS3A7fcepqAVr8ibw","stattrak":true,"normal_prices":[52521,59167,0,0,0],"normal_volume":[768,23,0,0,0],"stattrak_prices":[63867,66234,0,0,0],"stattrak_volume":[76,6,0,0,0]},"858":{"index":858,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_up3veB6TDygqgoutzKSpYPwJiPTcAYoAsB4E-cIsRXqktKyMOzm4QWL3d4QziT53ykfu3tqtuYHBaJz8qzJz1aWxqN5i4Q","stattrak":true,"normal_prices":[34853,30294,28375,29158,33003],"normal_volume":[104,127,210,19,17],"stattrak_prices":[40672,39172,31899,40440,36230],"stattrak_volume":[18,15,20,2,2]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSf_v5jovFlSha_nBovp3PTzIuudXLGbVMkWJd0ELEPsEa6wNa0PunktASMj44QzSr2hiwcuHxt_a9cBqbhUpOe","stattrak":true,"normal_prices":[95682,34340,24944,25053,23418],"normal_volume":[9,87,245,39,54],"stattrak_prices":[217975,38561,28405,28571,26134],"stattrak_volume":[1,10,35,4,8]}}},"525":{"name":"Skeleton Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s29Y6FhJeScACnDkL8j6LU8GS3mwUh24G-Bno2tIymeblMgC5R3F-ECsBK6k4XuN-Lh-UWA3P3GyEv9","stattrak":true,"normal_prices":[24577,24577,24577,24577,24577],"normal_volume":[773,773,773,773,773],"stattrak_prices":[24865,24865,24865,24865,24865],"stattrak_volume":[142,142,142,142,142]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-bF1iHxOxlj-1gSCGn2011t26Bytr_cn-VZwciXJskRLQKuka9k4ezYrnqtQXf2YhGzC6viXxXrnE8k9yhp-k","stattrak":true,"normal_prices":[161173,35275,27612,27161,24316],"normal_volume":[13,160,503,68,104],"stattrak_prices":[1913466,46287,31985,32372,40582],"stattrak_volume":[1,29,61,20,12]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHliEwP5zj_R7TSi9qhEutDWR1N3_cnmWOAJzXJVwF-AO4xW8ld3iY-mz4lff399Mzi_7i39M6Cc947wcEf1y1H02ID0","stattrak":true,"normal_prices":[30504,15860,13193,13205,13081],"normal_volume":[11,79,185,37,62],"stattrak_prices":[175829,21039,16942,16000,18521],"stattrak_volume":[1,15,35,1,9]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHliUwP5mvORWQyC0nQlp42zQydivIn_EaQFzXpRyFLIDuhe-ldXmZOLg7lSP3dlAmC79hn5N5zErvbgU3gnTIw","stattrak":true,"normal_prices":[29007,13838,12620,12300,11603],"normal_volume":[11,88,252,52,59],"stattrak_prices":[50000,17708,13307,18089,14756],"stattrak_volume":[3,17,33,5,19]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SD1iWwOpzj-1gSCGn20kjt2-En9mpcCmQag8hXsciQeJYthW9kILkMLji4g3Ygo8Uznj6jX9XrnE8raC5r1M","stattrak":true,"normal_prices":[51010,54837,0,0,0],"normal_volume":[816,50,0,0,0],"stattrak_prices":[54412,73822,0,0,0],"stattrak_volume":[135,3,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SAFiEyOlzot5mXSi9khgYvzSCkpu3dyjBagAlXMB4R-YOt0OxlIe2ZuuztQXdjNhAySn52i5Mv3tj5rlRUb1lpPPHmhG_Tw","stattrak":true,"normal_prices":[31672,33883,0,0,0],"normal_volume":[474,29,0,0,0],"stattrak_prices":[32477,52305,0,0,0],"stattrak_volume":[75,3,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iUwON3o-J8XBa_nBovp3PUm9_7JHOWZ1QjAsN0ELUD5EHpwdGxP7nksQTbgoxEyXj833gf7S1j_a9cBoUrfx8l","stattrak":true,"normal_prices":[23040,21330,19434,19650,19757],"normal_volume":[130,121,224,28,22],"stattrak_prices":[29473,25443,20778,20232,23000],"stattrak_volume":[18,32,32,8,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1idwPx0vORWSSi3kCIrujqNjsGtdy-SbFUhApd1QbZbsUa7l9LmMurktgza3tgQxC38iS0Y6Hlo4rsKT-N7rTdSaj39","stattrak":true,"normal_prices":[37718,44114,0,0,0],"normal_volume":[536,26,0,0,0],"stattrak_prices":[42807,52867,0,0,0],"stattrak_volume":[60,4,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iD1etzvN5iQSC1kCIqtjmMj4K3d37COgAhXJEkQedc4ETuk4fkP7jq4VON3otFnCz_iHwdvH5qteZRA71lpPNCX9mpHA","stattrak":true,"normal_prices":[0,0,0,15909,13217],"normal_volume":[0,0,0,32,446],"stattrak_prices":[0,0,0,20381,13700],"stattrak_volume":[0,0,0,9,55]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JPVAnCJojELJetUG5wIC1ZLjr7wXXgolFmCivjXhN7Hxi4-YEUKok87qX0V8jai52PA","stattrak":true,"normal_prices":[254236,254822,0,0,0],"normal_volume":[78,4,0,0,0],"stattrak_prices":[238445,275000,0,0,0],"stattrak_volume":[10,3,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFJN4FOMPtRi9wdK2MuvksVPa34NMyyX62C0a7Ho_5-pWBaQtrqXfjFzfcepq5_yhcsc","stattrak":true,"normal_prices":[147716,157443,0,0,0],"normal_volume":[77,4,0,0,0],"stattrak_prices":[131108,134051,0,0,0],"stattrak_volume":[12,1,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuR7JYtEO-mtzjN-_gs1DXjN9MyHr92n4d7S89sL4AWaR2_vbSigzFZKp9v8c7W1qI3g","stattrak":true,"normal_prices":[240063,261931,0,0,0],"normal_volume":[34,3,0,0,0],"stattrak_prices":[231945,350898,0,0,0],"stattrak_volume":[3,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWWRbwR0XpokQuJYthW6kdXmZu_h5wHZ2YMRmC6s3X9IuH5i5r0LVasj5OSJ2E5r5oFO","stattrak":true,"normal_prices":[62212,72739,0,0,0],"normal_volume":[126,4,0,0,0],"stattrak_prices":[67542,0,0,0,0],"stattrak_volume":[8,0,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWWTZg5zDpV4R-QOsEO7lNa2NL_h41Da34tCyCiqhyxN6yxv4OoBVqcs5OSJ2Fw1OS4C","stattrak":true,"normal_prices":[81319,85340,0,0,0],"normal_volume":[126,6,0,0,0],"stattrak_prices":[81843,86771,0,0,0],"stattrak_volume":[13,3,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iSzftztN5lRi67gVMj4ziDz9-hc3vGbVAgCpB4RbQNu0G4lNHgPuqw4QfXi45BnHmtiixM8G81tDT9ezBU","stattrak":true,"normal_prices":[40319,23443,20597,20077,20043],"normal_volume":[35,93,135,111,133],"stattrak_prices":[62708,29859,24900,23433,23327],"stattrak_volume":[5,16,16,18,10]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWWSPA51DZomRuECtka6lYDhZbm3tQGI3d0XmS_4hysd63ltt-kHAKF35OSJ2Jqs4QDO","stattrak":true,"normal_prices":[62065,64621,0,0,0],"normal_volume":[117,5,0,0,0],"stattrak_prices":[68341,0,0,0,0],"stattrak_volume":[8,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWWSbQ8iDsMkQ7QLtUO7kNXmZLy24wLZjYwQyy6v2y5Nvy9t67oCVKN05OSJ2CIEz_WG","stattrak":true,"normal_prices":[70792,71944,0,0,0],"normal_volume":[124,3,0,0,0],"stattrak_prices":[71158,150039,0,0,0],"stattrak_volume":[11,2,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iWzvx1teVWQyC0nQlpsGjRw9_8cn6QPAd2DZN1TbJYtxjumtGzZLyw4wSIjN4Uzin3iyNPujErvbgnFqUCGg","stattrak":true,"normal_prices":[31173,20124,17970,16589,16918],"normal_volume":[34,134,129,76,67],"stattrak_prices":[51159,21949,19288,20804,18770],"stattrak_volume":[2,22,40,7,1]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1ifyOJztN5lRi67gVMj6m3Rnt2sdnOUZwIgWJAkTLUJ4xbrx9buYuywsgCLjItBmC79jiNN8G81tGbdgHHm","stattrak":true,"normal_prices":[52150,30370,23056,21500,20752],"normal_volume":[25,370,520,300,205],"stattrak_prices":[144691,37990,34320,32939,31803],"stattrak_volume":[4,57,68,23,14]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-bF1iUxf53pN5lRi67gVMh5z-Hy4z9IniUZlR1DZVzRrUMsUPpwNPuNuLn4QCL34xAznmt3Ssd8G81tIt2ow-p","stattrak":true,"normal_prices":[23630,12174,11520,11273,11214],"normal_volume":[6,72,159,32,49],"stattrak_prices":[64803,14749,13212,11811,11883],"stattrak_volume":[1,16,17,6,12]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iKxOxksd5lRi67gVMh62_RzdygJHORZlAlDpZwQOYM4Ri5k4HhNezg4wOLg49Nyy772y9J8G81tBUopZdW","stattrak":true,"normal_prices":[41934,36676,36475,0,0],"normal_volume":[202,221,85,0,0],"stattrak_prices":[51519,41093,43851,0,0],"stattrak_volume":[33,46,8,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHlidxP1-j_VoQRa_nBovp3PSyd6qdSqePQEhDpJ5E-cI5kK5kIe2Zrzh4Qza2I9Fyiys2i1N7Xpv_a9cBuq3CrbI","stattrak":true,"normal_prices":[26894,11475,11095,11050,11043],"normal_volume":[9,57,142,53,46],"stattrak_prices":[45628,14756,11610,13537,13133],"stattrak_volume":[4,18,36,7,12]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHlieyOl-pPJ9XSCjkCIrujqNjsH8dX2VbVJ1X5Z0RbVZtEO5mtPhY77qtlbc34IQxC_6jy0f7C0457wLT-N7rW2ankyk","stattrak":true,"normal_prices":[41163,15858,13513,13627,13680],"normal_volume":[7,81,214,35,63],"stattrak_prices":[198456,21792,15992,15755,17715],"stattrak_volume":[1,13,35,1,5]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-bF1iWzvxzo_VWTSahkBwrjDGMnYftb32fPFIkDZV4EeJbskTpxt2yN-6wtQCIjY1GnyWriyIauCxv4LtQAvY7uvqAMerubhQ","stattrak":true,"normal_prices":[22294,12305,11508,11301,11188],"normal_volume":[7,64,162,32,44],"stattrak_prices":[0,15947,12353,15535,14543],"stattrak_volume":[0,14,30,6,4]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AAViA1PxmvORWQyC0nQlp4WTSnN74J3PCOAF0A5V3R-ACsUS6kYCzYrzk7geI2YlMzS2r2i1NvzErvbhVpSdBEA","stattrak":true,"normal_prices":[64465,22130,18251,17634,17124],"normal_volume":[10,108,334,53,70],"stattrak_prices":[200000,28899,19476,21103,19745],"stattrak_volume":[2,15,49,8,11]}}},"526":{"name":"Kukri Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2lfa9_Kb6VXmPGwuogsbNvSyi3zR4jsTnQztyqdS6QP1IoXpoiEeAC5Be5l9CxKaq8sIvgdE5J","stattrak":true,"normal_prices":[10213,10213,10213,10213,10213],"normal_volume":[725,725,725,725,725],"stattrak_prices":[10865,10865,10865,10865,10865],"stattrak_volume":[144,144,144,144,144]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtlOc-EC2WD_uJ_t-l9AS-3x0x15m2Hw4z9eS-QbgQnA5ElFu8OtBfqwIK2NLjg4gbciN8UzirgznQebo7XmtM","stattrak":true,"normal_prices":[49047,12031,8824,8247,8436],"normal_volume":[26,253,690,75,105],"stattrak_prices":[147644,14102,10278,10986,11058],"stattrak_volume":[3,48,119,24,23]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-HD3eV_vtksuBncCW6khUz_W2GmdupJ3mfPA8jW5ZwR-QN4UKxmtOyN7y25lfW2YtNziX8jCtN7Xp1o7FVXby906g","stattrak":true,"normal_prices":[15177,7311,4970,5277,5394],"normal_volume":[17,91,243,38,103],"stattrak_prices":[26221,8589,6562,7382,7071],"stattrak_volume":[5,24,44,9,29]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-XD3eAzetJvOhuRz39kUpw42zRnoz7InOeOAd2XpQiQ7Ve5xixm9HhMe3l5wCI2YxHxS_2iDQJsHhKp4l7vg","stattrak":true,"normal_prices":[13010,6606,4760,4880,4800],"normal_volume":[16,129,278,45,115],"stattrak_prices":[31240,7419,5753,6544,5900],"stattrak_volume":[2,20,43,8,18]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsIc-VD2OV_uJ_t-l9AXyyzEohsGvVn4moIi-VO1N2CJR1E-UD4BXtkIXhMe2x7lbej4tEnyzgznQeN9c5PgA","stattrak":true,"normal_prices":[17652,20835,0,0,0],"normal_volume":[1468,75,0,0,0],"stattrak_prices":[20652,27410,0,0,0],"stattrak_volume":[201,14,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsMc-RAnKVxdF6ueZhW2exzE0h62nVyd6qeXjEbgF0X8EiEbZesRS_wIXkPujq7wPWjNpDyn6vkGoXudm1ivk1","stattrak":true,"normal_prices":[13183,9272,8381,7730,7772],"normal_volume":[60,166,172,141,142],"stattrak_prices":[21447,10488,9601,9250,10232],"stattrak_volume":[4,30,37,25,30]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsMc-VAXWTxOpJvOhuRz39lkgl52TXzdiscH2TOgAkX8QiRuFftxW6kNW1Yrzr7wOK2YkWxXr43zQJsHia9a0bCA","stattrak":true,"normal_prices":[11625,7537,6915,6471,6402],"normal_volume":[53,145,221,132,91],"stattrak_prices":[15286,8417,7869,8630,8478],"stattrak_volume":[11,37,40,20,16]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsMc-cB2uVxdF6ueZhW2fizRsk4G_dzY39eCrCaA51W8QlF-ZZtRK6m4XlPunn71TbjY0QzimokGoXuR84GhWV","stattrak":true,"normal_prices":[20493,11605,10247,9447,9491],"normal_volume":[108,588,851,421,315],"stattrak_prices":[61576,17819,13505,12238,14501],"stattrak_volume":[14,70,80,60,31]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtlOc-XCneR1dF6ueZhW2eyw0wk4TuDnI6pdS7BOAcnWMFyEbNYtEa6x9HjPurj4lHajYIWny6vkGoXuZN4gz37","stattrak":true,"normal_prices":[13936,5561,4702,4615,4618],"normal_volume":[13,116,297,59,74],"stattrak_prices":[24935,6338,5782,6104,5728],"stattrak_volume":[3,38,47,18,8]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsLc-JC2WCwNF6ueZhW2fmwkwj62TWmdyuc3nEOFB1Csd5ReFZtUTpxtXvYb_k4waPj4wXxXitkGoXuVwivb-T","stattrak":true,"normal_prices":[14407,12943,12492,0,0],"normal_volume":[376,392,113,0,0],"stattrak_prices":[17413,15030,15866,0,0],"stattrak_volume":[72,49,14,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-eC3SY_vp3vt5lRi67gVMit2vVyt-sc3qSalUjAsR1QOQLthKwk9HhYri34gzXg4wXmHmvjiNA8G81tJ681NhB","stattrak":true,"normal_prices":[10872,4900,4438,4513,4723],"normal_volume":[16,122,268,63,149],"stattrak_prices":[29271,6010,5265,5077,5338],"stattrak_volume":[1,37,46,11,31]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-dB2CY1f1iouh5Sha_nBovp3OHz9ahIynFPQUoDZZ2TbINtRK8lYXuM-nksQbago1FyS_23CNB5ihu_a9cBvtwqC7R","stattrak":true,"normal_prices":[13799,7153,5069,5265,5137],"normal_volume":[23,120,288,48,169],"stattrak_prices":[28039,8799,5888,6707,6909],"stattrak_volume":[1,33,57,27,27]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtlOc-VAXWV0vpJsu57Sii_qhEutDWR1N2vIH7Dbw8jXMZwTecNsEPsmoKzP-Kx5QHZ2YtAniyoi3kb6yht5-ocEf1yVn7b_ls","stattrak":true,"normal_prices":[10084,5336,4581,4592,4524],"normal_volume":[18,95,265,42,80],"stattrak_prices":[19911,6591,5585,6116,5682],"stattrak_volume":[2,26,37,13,5]}}},"60":{"name":"M4A1-S","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1001":{"index":1001,"max":1,"min":0,"rarity":6,"name":"Welcome to the Jungle","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9Jo-9oRCyMmRQguynLzYqgInjGZlcnX5ciE-IPthLrkN3hYu_ltQPW3Y1NzSn-jCpJ6ydpsvFCD_TdxQe8NQ","souvenir":true,"normal_prices":[197874,134842,83250,61341,57489],"normal_volume":[77,55,67,35,16]},"1017":{"index":1017,"max":0.08,"min":0,"rarity":5,"name":"Blue Phosphor","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWrEwL9lj-NlWiygmBIstgKJk4jxNWWeOg5xDJR2Q-5b5BGwxIDuP7uw4ALa3ohMz3n3iypLvyc55-pQUKct5OSJ2OKlF5Nn","normal_prices":[65596,77707,0,0,0],"normal_volume":[780,28,0,0,0]},"1059":{"index":1059,"max":0.57,"min":0,"rarity":3,"name":"Fizzy POP","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H-ODMXOVwuZ4v_ZoXRahkBkYvzSCkpu3JyqVagUhX5Z2QOYMs0a4lYHmMOjn7gCN2YwQyX6r3HhO5i464b1RA71lpPPi0vWs1A","normal_prices":[1258,261,171,179,159],"normal_volume":[774,437,546,54,119]},"106":{"index":106,"max":0.597321,"min":0,"rarity":6,"name":"Vaporwave","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_vh3oO57WCilkCIrujqNjsH_In7DZgYnWcAiR-MJshO6koDlN7vhsQyLi41HySX6iXlAvCZrsb0HT-N7rW-9qIHE","stattrak":true,"normal_prices":[20729,8891,4831,5186,4568],"normal_volume":[459,597,825,44,51],"stattrak_prices":[31176,18400,9914,12178,10412],"stattrak_volume":[131,147,106,11,11]},"1073":{"index":1073,"max":0.8,"min":0,"rarity":6,"name":"Imminent Danger","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9JpuR7WyC0miIrujqNjsGpciiVZgIpCpAjEOUPuhXuw93kZOzm4laPi4IRyij-2H9P6yc65rwCT-N7rc1sfRJu","souvenir":true,"normal_prices":[147176,119842,76827,105000,72771],"normal_volume":[43,27,39,2,11]},"1130":{"index":1130,"max":0.7,"min":0,"rarity":4,"name":"Night Terror","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj-hnXCa-mxQmjDGMnYftby3FPFVxA5ZwRecOtUXuxtPiNL_jsQLc2NkTzS38jC5L7ydj5u8EUKo7uvqAgGSM4LM","stattrak":true,"normal_prices":[203,76,52,64,67],"normal_volume":[2104,1953,6456,438,2898],"stattrak_prices":[452,205,142,202,224],"stattrak_volume":[473,503,1078,127,727]},"1166":{"index":1166,"max":0.7,"min":0,"rarity":5,"name":"Black Lotus","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_ux6seJicCW8gQg0jDGMnYftb3-eOgEpDcFyQuMMtRG8kIbhMuK051ba2IMQyH6r3yof5ilv4bwLWfU7uvqA7qRNHGA","stattrak":true,"normal_prices":[1541,738,495,544,504],"normal_volume":[1978,2748,6831,217,345],"stattrak_prices":[3666,2003,1371,1435,1434],"stattrak_volume":[433,422,676,67,287]},"1177":{"index":1177,"max":0.08,"min":0,"rarity":6,"name":"Fade","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GSMWGRxetJvbVoHjqMmRQguynLm92pci2WagEkC5Z5Q7VetkbukIXjNrnm5QPbjt8WxS-vii4b5i5v4fFCD_TfxF4xWg","normal_prices":[28784,30962,0,0,0],"normal_volume":[3739,126,0,0,0]},"1216":{"index":1216,"max":0.8,"min":0,"rarity":5,"name":"Stratosphere","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGC1iD1fx3pO56XyG2hxgYvzSCkpu3eSjEOgUkDsRxR7RYsRexwNe0Y-O05VeNg90UmX2q33lJ7itvt-cKB71lpPNheQHx2Q","normal_prices":[6370,1465,564,612,547],"normal_volume":[399,608,1322,87,146]},"1223":{"index":1223,"max":0.8,"min":0,"rarity":4,"name":"Emphorosaur-S","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-dsSi26mxoYtS-AlJXgHifOOV5kFJt4F-8KukXtldyyMLjjtVOIjIsWzXj8iylJ5ig6tbsKV_ItqaaB3gHfcepq28_00F4","stattrak":true,"normal_prices":[259,90,41,42,38],"normal_volume":[1886,2647,8716,430,493],"stattrak_prices":[626,213,105,159,105],"stattrak_volume":[517,1046,1003,115,218]},"1243":{"index":1243,"max":0.73,"min":0,"rarity":2,"name":"Mud-Spec","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj-xgQzqjkB4YvzSCkpu3I3rGP1JxDJpwEbEJ40G6mtfjPuqx7wTf3d5AzHn5hy9AuH5p4u9QBb1lpPNjrdVvDA","souvenir":true,"normal_prices":[338,103,29,42,41],"normal_volume":[785,441,1511,255,1213]},"1311":{"index":1311,"max":0.67,"min":0,"rarity":4,"name":"Glitched Paint","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iHMWaS0vpkseJ9cD66mxkYvzSCkpu3dSnCPFJxXJZ2RrEP4Ri8k4a1Yu_j7w3e3okTzXr92ytA5ilrsroDUr1lpPMn2xt0Zg","normal_prices":[953,385,171,206,149],"normal_volume":[1116,1243,1507,88,330]},"1319":{"index":1319,"max":0.5,"min":0,"rarity":3,"name":"Rose Hex","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMW-V2e9xv-9WQyC0nQlp6mzTyNr8eH3EOAAmXMQjEOdZtxC7mt3gMuuw5FSL3YlNn3qv3CxO5jErvbgiwdR6KA","normal_prices":[80,35,17,17,16],"normal_volume":[1351,730,829,102,28]},"1338":{"index":1338,"max":0.7,"min":0,"rarity":5,"name":"Solitude","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H-OcDW-vzOFjvvVoRiegqhBzsmyWpYPwJiPTcFIoXpslROVftRK5kYblN7zq5VbX3YtMmH_8ji5MvX1qtu1XWPFxrvLJz1aW589-peo","normal_prices":[2245,449,175,188,135],"normal_volume":[4937,15859,18263,329,1391]},"1340":{"index":1340,"max":1,"min":0,"rarity":4,"name":"Liquidation","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_v9jueJicCW6hAgutzyRk4D3HifOOV5kFJtwQLQCshW4kYazNOngsQGMj4tAyXj8iy1N7CxqsulQVqt0-aaFhwrfcepqI4yC_kU","stattrak":true,"normal_prices":[1057,474,242,129,94],"normal_volume":[1012,1860,1800,47,405],"stattrak_prices":[3193,1374,694,428,342],"stattrak_volume":[218,363,359,81,81]},"1376":{"index":1376,"max":0.6,"min":0,"rarity":5,"name":"Party Animal","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKC1iRz-d7se1WXzu6mwkY6m2WpYPwJiPTcFNxDcMjEeUIuxK-wNWyPrzj4wePiIxGmCj5jngcuCpvt7wBAKFw-KbJz1aW-PVDUm8","normal_prices":[8416,2246,1075,1086,1053],"normal_volume":[195,247,421,31,54]},"1433":{"index":1433,"max":1,"min":0,"rarity":4,"name":"Electrum","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_ut6teJ9XTy-qhEutDWR1Iz4cnjCag51DZQlEOIMtEa7k9TiNbmw51OP3tlBxCr8iCsY6C5t6uwcEf1y--utkZE","stattrak":true,"normal_prices":[1006,379,166,106,94],"normal_volume":[467,667,651,155,315],"stattrak_prices":[2884,1048,563,398,406],"stattrak_volume":[103,124,180,55,97]},"160":{"index":160,"max":0.58,"min":0,"rarity":2,"name":"Wash me plz","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMWiGxPxmsfJ6cC28mhkrtgKIzo6oMhTLN1F4Tox1TLUNthHuxtbuZejntAzWjNlNmX6rjylJuyhp6-kLBKt38vKFiFuUL_Rjtk_8Ljjf","souvenir":true,"normal_prices":[41,8,4,4,5],"normal_volume":[3220,1883,2068,157,156]},"189":{"index":189,"max":0.22,"min":0.1,"rarity":4,"name":"Bright Water","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMWiTxO94j-N7Tj-8qhEutDWR1N2scy2Sa1UkC8NyRbMPuhexx4fgYrziswHf395Az3-qiStK5i864-kcEf1ycufvRr8","stattrak":true,"normal_prices":[0,5094,3697,0,0],"normal_volume":[0,629,166,0,0],"stattrak_prices":[0,6648,7085,0,0],"stattrak_volume":[0,211,82,0,0]},"217":{"index":217,"max":0.3,"min":0,"rarity":3,"name":"Blood Tiger","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMXWVxfp_t-R7cCW6khUz_WXWmdmpeXOWbA4jDJolQeMNthnrlIbiMO7m71TfjIpFxH-vjClO6CZ1o7FVlF3bnRA","stattrak":true,"normal_prices":[2364,482,479,0,0],"normal_volume":[557,460,125,0,0],"stattrak_prices":[1613,1136,1178,0,0],"stattrak_volume":[284,355,111,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":3,"name":"VariCamo","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMXGR0-d1sexmcCW6khUz_WjSw9qgd32TaAV1DMAlRrNcuhG7xt2yM-_ktlHW2tlHxHqs2iJI7yZ1o7FVeF8MW04","souvenir":true,"normal_prices":[147,43,18,33,22],"normal_volume":[1186,1744,1108,180,162]},"254":{"index":254,"max":0.8,"min":0.06,"rarity":4,"name":"Nitro","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H-OcMWiCwOBxtd5oTCq2mwk0jDGMnYftb3nFaVQgApQiQuEOukS-x4KxP-PjsQOLjt9HzS6t2CpB6C0_4LxWBaA7uvqANEieesU","souvenir":true,"normal_prices":[2865,109,42,38,31],"normal_volume":[705,2335,5462,584,634]},"257":{"index":257,"max":0.5,"min":0,"rarity":5,"name":"Guardian","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL87o95sQyy0lBMzjDGMnYftb3-QPFUlWZJ1F7VbsBi7xoa0Y7vl5ACP2ohEzX-t2iJA7Xtv4ugKWaQ7uvqAAzqYQbE","stattrak":true,"normal_prices":[12552,3118,2400,2736,3023],"normal_volume":[666,657,457,39,22],"stattrak_prices":[9903,7175,6208,6597,7283],"stattrak_volume":[182,147,135,10,5]},"301":{"index":301,"max":0.9,"min":0,"rarity":5,"name":"Atomic Alloy","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWrEwL87o95oQyW8jCIooTyLnYrGLSLANkI-D5d2FrENtRG7wNDvZe-3slfci9pFmHj8jSof6yZjtugEB6QtrKTXhxaBb-PhITXxPA","stattrak":true,"normal_prices":[15435,4168,2648,2792,2874],"normal_volume":[228,585,430,84,44],"stattrak_prices":[18916,8620,4973,4509,5345],"stattrak_volume":[86,107,134,16,36]},"321":{"index":321,"max":1,"min":0,"rarity":5,"name":"Master Piece","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL87o956RiW2mx4ijDGMnYftby3FbFdyXpZxQ-AP5hi7wILkZOzg5ASNgt4WmCv833hKuntvsLxWAKE7uvqATAFok6E","souvenir":true,"normal_prices":[50269,21975,14142,10748,10556],"normal_volume":[69,105,109,35,33]},"326":{"index":326,"max":0.1,"min":0,"rarity":5,"name":"Knight","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWqV1e96o95lRi67gVNwsWTQzdn4JHyQZ1QhWMZyQe5YsxK-ktPnZOiwtVDcjo9ExS393ytB8G81tGXpYjdX","souvenir":true,"normal_prices":[351738,374000,0,0,0],"normal_volume":[63,1,0,0,0]},"360":{"index":360,"max":0.5,"min":0,"rarity":6,"name":"Cyrex","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-JwXSyrqhEutDWR1N77cimSbQQgC8F5QLYCsELpltTnZuvk7wbcjdhDzy_43yMb6ilvt7kcEf1yDWu2yf8","stattrak":true,"normal_prices":[17607,15820,15112,15799,16371],"normal_volume":[704,583,486,36,34],"stattrak_prices":[21344,16377,15460,16587,14932],"stattrak_volume":[155,84,105,10,2]},"383":{"index":383,"max":0.68,"min":0,"rarity":4,"name":"Basilisk","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GCMWrEwL9lj-NoXCC_nA4sjDGMnYftbyqVPwUiX5V5ReUDuxC5m9zmNOPktAHYiIgXzSz43C4a7Sg_6uZQVKU7uvqA7bOYRbA","stattrak":true,"normal_prices":[5242,946,748,950,755],"normal_volume":[315,586,645,30,102],"stattrak_prices":[4952,3088,2353,2492,2408],"stattrak_volume":[122,157,208,4,55]},"430":{"index":430,"max":1,"min":0,"rarity":6,"name":"Hyper Beast","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9JuPh5SjuMlxgmoCm6lob-KT-JbwF1WZEjR-YJskK9k9XiYePltAeNjYlAxSn5j34dvCZstb4LB6Ut-7qX0V8Xkv5_2A","stattrak":true,"normal_prices":[33108,10710,9939,9948,9932],"normal_volume":[162,474,639,184,110],"stattrak_prices":[40788,17810,10187,10480,11327],"stattrak_volume":[48,97,115,54,40]},"440":{"index":440,"max":0.1,"min":0,"rarity":4,"name":"Icarus Fell","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMW6TwPxjo95lRi67gVN_smmHyor9eHyUZwImDpJzEeZf4xS6kN2zY77i7wPdjtgXn3msin4b8G81tDwr8lc2","normal_prices":[56437,66462,0,0,0],"normal_volume":[689,42,0,0,0]},"445":{"index":445,"max":0.08,"min":0,"rarity":5,"name":"Hot Rod","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GdMXWVxdF75OA4XBa_nBovp3PXyt2uJ32QaQciDZUhReUM5hLskdy2Pu_n4wLe2doXm3j-2i5A7X5i_a9cBuWkb97d","normal_prices":[177299,188365,0,0,0],"normal_volume":[309,8,0,0,0]},"497":{"index":497,"max":1,"min":0,"rarity":6,"name":"Golden Coil","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj_JnTiK2lxQztgKClYP9HifOOV5kFJclQ-Jb5xW-m9CxPuLq4QTfjd0XzyX6jCpL6X5o5OgDVfYn_a2Ci1rfcepqgV49FrE","stattrak":true,"normal_prices":[24026,9511,5930,5324,4985],"normal_volume":[183,385,590,129,113],"stattrak_prices":[37641,24278,13007,11164,9887],"stattrak_volume":[65,79,113,36,29]},"548":{"index":548,"max":0.99,"min":0,"rarity":6,"name":"Chantico's Fire","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj_JmWiWnlBYioQKJk4jxNWXFZ1IgC5MiQuZeuhK4wIXnMuPhslCM2oMTxH75hnxK6Htjse4BVqd25OSJ2DU2Q_CD","stattrak":true,"normal_prices":[28718,10238,9848,9990,10366],"normal_volume":[143,319,546,141,72],"stattrak_prices":[35446,14624,10638,10633,11665],"stattrak_volume":[57,104,109,26,9]},"587":{"index":587,"max":0.8,"min":0,"rarity":6,"name":"Mecha Industries","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9JveRqRyiMnBMjpi6RiIb8MhTLN1F4TowiE7EMtRW7ltzlMbvi5wPej4pDmCT2i3tKuHo4sOoEWKFz8qPS3F7BL_Rjtn0I4s52","stattrak":true,"normal_prices":[25188,9779,9353,10656,9940],"normal_volume":[260,644,795,27,83],"stattrak_prices":[21440,12869,9754,10623,10177],"stattrak_volume":[107,140,140,8,21]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":4,"name":"Dark Water","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMX2Vw_x3j-VoXSKMmRQguynLzI6td3-TPQAlD5slR-EJ5hDux9XmMe7i71CI2t8UzSuthi9OvSlo6vFCD_TltxSe0A","stattrak":true,"normal_prices":[0,10566,6948,0,0],"normal_volume":[0,358,131,0,0],"stattrak_prices":[0,14382,11554,0,0],"stattrak_volume":[0,127,78,0,0]},"631":{"index":631,"max":1,"min":0,"rarity":4,"name":"Flashback","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9Jtu1oXCGxlB4sjDGMnYftb3yVPQFyDMB3EbJZ5xC4kNPvMOO35AHW3d1AnC_3iHlNuytqtuYDVfI7uvqAZWXE-YM","stattrak":true,"normal_prices":[12702,892,324,264,267],"normal_volume":[39,238,727,357,352],"stattrak_prices":[1826,524,259,269,270],"stattrak_volume":[92,120,214,72,77]},"644":{"index":644,"max":0.85,"min":0,"rarity":5,"name":"Decimator","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9JtORqRiSygRI1jDGMnYftb3iUb1dxW5ImFLNftxCxktflZLm2tgaP2otGyn_-hytOvy9q5elQV_A7uvqA6CRSoZY","stattrak":true,"normal_prices":[5279,1778,1154,1399,1156],"normal_volume":[626,1209,1902,72,206],"stattrak_prices":[8429,4394,2811,3875,2809],"stattrak_volume":[184,236,295,24,35]},"663":{"index":663,"max":0.8,"min":0,"rarity":3,"name":"Briefing","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-xsWzu6gRg1sgKJk4jxNWWTZgclDpNzQ7FZsESxxNPgZujksVDf2dkTmS343S1M731t5OcLAvZ05OSJ2NaAMPYY","stattrak":true,"normal_prices":[10037,988,674,588,716],"normal_volume":[72,219,171,17,39],"stattrak_prices":[4553,1493,718,1535,801],"stattrak_volume":[62,69,60,9,10]},"681":{"index":681,"max":0.7,"min":0,"rarity":5,"name":"Leaded Glass","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9Jo-loWz22hyIrujqNjsH8dn6ePwB2DpEmFuAMt0HulYa1Nu2z4QWPjt9NnCX63H9M5ys96r1QT-N7rZDTLd1E","stattrak":true,"normal_prices":[3702,935,842,895,906],"normal_volume":[517,1184,1450,45,130],"stattrak_prices":[4009,1884,1332,1928,1380],"stattrak_volume":[169,199,283,29,54]},"714":{"index":714,"max":1,"min":0,"rarity":5,"name":"Nightmare","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-9gSCGnmBw1tgKJk4jxNWXCbAUpXpp0FrYPthC7k4fnZOm04laMjYxHn3r52HxJ6i065e0FVKV05OSJ2IHiKyzQ","stattrak":true,"normal_prices":[23644,2037,912,669,732],"normal_volume":[310,760,1259,213,158],"stattrak_prices":[11989,5294,2436,2187,2205],"stattrak_volume":[91,135,189,42,42]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":2,"name":"Boreal Forest","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMWGf0-tlpN5rQDu2lBEYvzSCkpu3dyqVZgF1CJAhF7NYtULrlIa2M-Lh4wKMiYlDmyqrhygduCZs6-xXV71lpPMY7TF_eA","souvenir":true,"normal_prices":[2267,29,10,10,11],"normal_volume":[140,969,1607,190,558]},"792":{"index":792,"max":1,"min":0,"rarity":5,"name":"Control Panel","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj-55SjuygRI1jDGMnYftbynDbQBzDcR3ROMI40Hpmt3kP-y271OK3tpFmy7633hJ73xit70GBPE7uvqArjH2yek","souvenir":true,"normal_prices":[15657,2879,1630,473,463],"normal_volume":[171,445,486,258,300]},"862":{"index":862,"max":0.5,"min":0,"rarity":2,"name":"Moss Quartz","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWSC2P1ise1lRjO2kSIjsi-OpYjrJC7JAVp5Xco0W7NZsRCwmoCzNbni7lGNi4JMyij3ii9LvS5q4u4KUKIl-ayF2QnBOeYjoc5UYcWIs5E","normal_prices":[13790,4445,2881,3451,3162],"normal_volume":[331,222,172,19,8]},"946":{"index":946,"max":0.84,"min":0,"rarity":6,"name":"Player Two","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-J6SCbhxUl_jDGMnYftby7BbVdyCsB0EeZY4RPukNfhZOO2sQ3W398Qy3_6jHxIunptsO9TUqs7uvqAAWrfZoM","stattrak":true,"normal_prices":[15148,5775,4960,5398,5115],"normal_volume":[202,763,1084,39,108],"stattrak_prices":[18831,9855,5852,7450,6299],"stattrak_volume":[66,118,166,9,23]},"984":{"index":984,"max":0.8,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj_F7Rienhgk1tjyIpYPwJiPTcAAoCpsiEO5ZsUbpm9C2Zuni4VHW3o5EzSX62HxP7Sg96-hWVqYi_6TJz1aW0nxrkGs","stattrak":true,"normal_prices":[47948,26291,18207,16871,15448],"normal_volume":[670,1352,1917,76,186],"stattrak_prices":[99568,50065,29803,35311,25794],"stattrak_volume":[214,235,238,11,40]}}},"61":{"name":"USP-S","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1027":{"index":1027,"max":0.5,"min":0,"rarity":5,"name":"Target Acquired","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sB2mExOJ6ueZsQSq2qhAmtDiLjo7GLSLANkI-XpZxE-4MtxW5ldeyZbvq51PXid9EzSr6iSof7y1t47lQAqRxrvCEjxaBb-PT-N1SiA","normal_prices":[54054,23639,17650,21421,22000],"normal_volume":[93,46,20,3,6]},"1031":{"index":1031,"max":0.45,"min":0,"rarity":4,"name":"Ancient Visions","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsD2mTyOt4pN5rXSC0nQkYvzSCkpu3eHiSOAB0DsMkTOcJtRjtwNG1ZOvq4wDe2t1AzCuojy1JvSpp4ewKVr1lpPOm90TY1A","souvenir":true,"normal_prices":[10283,5019,4263,4042,0],"normal_volume":[60,49,8,5,0]},"1040":{"index":1040,"max":1,"min":0,"rarity":6,"name":"The Traitor","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OsG3SA0tF-se9uSi2-lBMYvzSCkpu3eX7EP1MpApdwR-8NsxbukoXuNLnj4QOMiN8XzHn_iC8a7Spi4upRWb1lpPOCQNKXgA","stattrak":true,"normal_prices":[13369,5152,3276,2981,2849],"normal_volume":[149,579,877,297,186],"stattrak_prices":[21203,7983,5033,4213,3979],"stattrak_volume":[83,104,158,43,20]},"1065":{"index":1065,"max":0.8,"min":0.06,"rarity":5,"name":"Whiteout","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-sGW-Z1et5pfVWXSCjgRQjtgKJk4jxNWXCbQQpCJF1QLINsUbrlofgNunj5lSLg4sXnCT8jS5Oun445O8CUqUt5OSJ2Dgwztii","normal_prices":[63610,11472,5486,4080,3702],"normal_volume":[136,884,605,71,104]},"1102":{"index":1102,"max":0.9,"min":0,"rarity":3,"name":"Black Lotus","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_ux6seJicCW8gQg0jDGMnYftbynFZg8nXpt2Ru8D5hSwl9PhN7_m7wzdjotFxXr62y4Y6C894OxQVKA7uvqAvobUkb8","stattrak":true,"normal_prices":[3629,242,109,77,63],"normal_volume":[289,773,917,181,196],"stattrak_prices":[3741,667,319,328,287],"stattrak_volume":[108,312,309,91,101]},"1136":{"index":1136,"max":0.76,"min":0,"rarity":4,"name":"Ticket to Hell","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_vp5j-lsQyWMmRQguynLzt_8JXiVOwF2AsF4R-ECshftltKxZe6x41CKjotExST8jn8f7ilr5PFCD_TZVvgG5g","stattrak":true,"normal_prices":[213,79,50,49,47],"normal_volume":[1668,1438,4159,166,425],"stattrak_prices":[595,199,81,135,69],"stattrak_volume":[678,545,1375,96,219]},"1142":{"index":1142,"max":0.85,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_v5kue99XD2hkBwqjDGMnYftb3yUPFR0XsNyRrNc5kO5ltziMenr5lONj4kXyi2riywc7y9o5LtQAqQ7uvqAkScWnv4","stattrak":true,"normal_prices":[10969,5840,3563,3499,3311],"normal_volume":[657,1571,3175,105,255],"stattrak_prices":[23665,10875,6003,6093,5352],"stattrak_volume":[212,447,495,30,70]},"115":{"index":115,"max":1,"min":0,"rarity":3,"name":"27","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpoo6m1FBRp3_bGcjhQ08mlhL-NnvL4N4TCmGpa7fp9g-7J4cKtjQC38ks9YTz6cNSQdQU5Zl3V81S-xOzqgsfv6s_Byydi7nZ3sSnbgVXp1oZrc3sm","stattrak":true,"normal_prices":[729,39,17,14,14],"normal_volume":[210,227,219,76,247],"stattrak_prices":[470,105,45,44,52],"stattrak_volume":[40,155,177,118,185]},"1173":{"index":1173,"max":1,"min":0,"rarity":5,"name":"Jawbreaker","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSNeODHViUzulxqd5lRi67gVMl62nUyd2scnOVPAcgA5J2TOFY5xLrlN22YbzgsQaI2IlHyiWojnwa8G81tErOD-_J","stattrak":true,"normal_prices":[2145,615,383,302,309],"normal_volume":[576,953,1775,316,612],"stattrak_prices":[4562,1581,852,689,692],"stattrak_volume":[170,309,399,102,146]},"1186":{"index":1186,"max":0.9,"min":0,"rarity":3,"name":"PC-GRN","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSNeODHViS0_titedmXSq2qho1tjiLpYPwJiPTcFcoCpV2F-Nc4xXpwNPhZeLg5AffiIxNynj2jylP53xp6ugHU6Ig__XJz1aWMWkGKhU","stattrak":true,"normal_prices":[131,19,8,8,7],"normal_volume":[909,840,1211,201,247],"stattrak_prices":[297,65,21,24,23],"stattrak_volume":[279,902,222,247,209]},"1217":{"index":1217,"max":0.6,"min":0,"rarity":4,"name":"Royal Guard","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-WMWWc1OtJse9tcC68mRkYvzSCkpu3dymfbAUmWJAkQ-AI40Oxx9ezMrvl5gyLj41Nn3n6iHlKvXk9trpXUr1lpPMve4WI8Q","normal_prices":[672,308,64,59,53],"normal_volume":[1174,1349,1875,83,114]},"1253":{"index":1253,"max":1,"min":0,"rarity":2,"name":"Desert Tactical","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OsG3SA0tFiseJ9RiqymSIksjCKpYPwJiPTcARxX5VzROcIuhLtl9HkMum25AbZ2YtDzCT5234b6Ho-67lRA6Bw_fDJz1aWLNvRpDs","souvenir":true,"normal_prices":[616,113,24,15,17],"normal_volume":[169,490,401,124,109]},"1284":{"index":1284,"max":0.55,"min":0,"rarity":3,"name":"Tropical Breeze","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-WMXOCzv5_s-BlcCW6khUz_WqBz9avIyiRbAQiApB1E-dZsEK7ld3gZuPqtFHbiYtMnyn9hn5Avy51o7FVuRzLF34","normal_prices":[199,103,38,42,23],"normal_volume":[3385,1830,2415,227,173]},"1323":{"index":1323,"max":0.6,"min":0,"rarity":4,"name":"Bleeding Edge","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOSsHGKU_utyt-R6cCW6khUz_TvRzd2tdy2WOlUoDZtxRLZY5xWwxty1Muzr4FCP2N5GmS-siywf7Xl1o7FVhoySCzY","normal_prices":[841,306,126,140,127],"normal_volume":[777,894,1132,42,110]},"1377":{"index":1377,"max":0.7,"min":0,"rarity":4,"name":"Sleeping Potion","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-WMXeF0_56td5lRi67gVMh4D-Gn4qheH6RPFIoCcAhELVf5kK-xNexMe_rtFfai45EnC_8iH9I8G81tAH9GDu2","normal_prices":[1264,561,148,134,123],"normal_volume":[403,296,611,53,104]},"1431":{"index":1431,"max":1,"min":0,"rarity":3,"name":"Silent Shot","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSNeODHViDyOJzvvVWTSaqqhEutDWR1Nf8cn_CPAQmW8Z5Ee8P4UbuxILmMLu3tAXYj4hByyWsjCscvy89sOYcEf1yCvXTIoM","stattrak":true,"normal_prices":[231,85,46,26,23],"normal_volume":[812,920,770,299,148],"stattrak_prices":[808,312,195,128,122],"stattrak_volume":[193,241,266,89,86]},"183":{"index":183,"max":0.8,"min":0.06,"rarity":4,"name":"Overgrowth","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsHW6VxutJsvNoWSaMmRQguynLytyqdy2eaVUgAsB0QeIIsxfuldy2MO3gtFSI2ooRzSiq3HxA7SlvtfFCD_RGjmYWyQ","stattrak":true,"normal_prices":[9530,3390,2140,2328,2020],"normal_volume":[45,165,158,26,20],"stattrak_prices":[31355,5656,3087,3269,3569],"stattrak_volume":[13,94,104,13,10]},"217":{"index":217,"max":0.3,"min":0,"rarity":3,"name":"Blood Tiger","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsHGKU1edxtfNWQyC0nQlptWWEzd-qd3mVbgR2WZYiFuUMtUG7x4HhYeLhs1fZiN1DnC6viH4Y7TErvbgp6HjWjQ","stattrak":true,"normal_prices":[3146,350,367,0,0],"normal_volume":[153,351,66,0,0],"stattrak_prices":[1016,530,580,0,0],"stattrak_volume":[178,268,103,0,0]},"221":{"index":221,"max":0.25,"min":0,"rarity":5,"name":"Serum","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sC2uVwvpkueJWXSy3qhEutDWR1I34J3uXOwFyCsF4TeAJt0bpw9OxNrzh7gyI3t1DmHiq3y5M6HxqsrwcEf1yfEp4lzc","stattrak":true,"normal_prices":[13763,5618,5424,0,0],"normal_volume":[110,76,15,0,0],"stattrak_prices":[7268,5364,5354,0,0],"stattrak_volume":[59,35,13,0,0]},"236":{"index":236,"max":0.6,"min":0,"rarity":3,"name":"Night Ops","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsGGaCyO13ve5WQSC0nQkYvzSCkpu3cy-RbFciDJUlQ7Rc4xW6l4DuNLzi4gPdg41NzX6r3H8d7y5q5epTAr1lpPPHAcmmJQ","souvenir":true,"normal_prices":[363,41,17,32,22],"normal_volume":[609,319,596,92,130]},"25":{"index":25,"max":0.8,"min":0.06,"rarity":2,"name":"Forest Leaves","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsAmKR1-tlj-1gSCGn2xgh5W3Rwo2gcH6eP1IhWcYmTeYO4xTsw9TmY-mx5Q3a3ogQmSqsiCtXrnE8utrnVdI","souvenir":true,"normal_prices":[995,19,3,7,4],"normal_volume":[133,533,1293,187,219]},"277":{"index":277,"max":0.8,"min":0,"rarity":3,"name":"Stainless","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIeGsG3SA_v1isehnQyyghiIrujqNjsGqcHuVa1VxCcciR7MP50a5ktLuP-rr5ATXioJNyij93y0a7nlstboAT-N7rU1N1uE6","stattrak":true,"normal_prices":[5457,1066,550,597,465],"normal_volume":[400,858,935,31,130],"stattrak_prices":[10108,3319,1785,2079,1843],"stattrak_volume":[173,409,505,12,60]},"290":{"index":290,"max":0.38,"min":0,"rarity":4,"name":"Guardian","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_ut6teZoQT2MmRQguynLyd76I32fbFUkD5EmRu4Ct0O4m9fmY-zlsQSMiN9CnHj2jitL531o4fFCD_TZrkjVNw","stattrak":true,"normal_prices":[694,285,266,0,0],"normal_volume":[1349,813,619,0,0],"stattrak_prices":[1039,571,444,0,0],"stattrak_volume":[666,543,543,0,0]},"313":{"index":313,"max":0.5,"min":0,"rarity":5,"name":"Orion","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpoo6m1FBRp3_bGcjhQ09-jq5WYh8jnI7LFkGJD7fp9g-7J4cL23lexqhI9ZT3wd4WTJ1VvZ1rZr1G2wu2805W46p6amnJj6SEmt3_YgVXp1sALRvj2","stattrak":true,"normal_prices":[14172,5753,5885,6149,19895],"normal_volume":[426,452,86,1,6],"stattrak_prices":[17730,12524,13109,0,37306],"stattrak_volume":[175,81,41,0,2]},"318":{"index":318,"max":1,"min":0,"rarity":4,"name":"Road Rash","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_v13vuV5Tjm2hxgjjDGMnYftby2UaFcmCsF1R-cLsBS4mtLmM7nmsVbfiNlHxSuriypAvytisuhQWPY7uvqAwrOwBmU","souvenir":true,"normal_prices":[19428,6077,4610,3580,4304],"normal_volume":[118,60,137,40,29]},"332":{"index":332,"max":0.8,"min":0.06,"rarity":2,"name":"Royal Blue","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsB2mUyOl5j_R6Xxa_nBovp3OAzNv6d3yVbVBxAsNzReNZuxK8kIHnNurj4wTaiNlBnH6q3CMYv3po_a9cBsy26Gzj","souvenir":true,"normal_prices":[14988,4924,1025,1168,1260],"normal_volume":[76,252,225,30,54]},"339":{"index":339,"max":0.4,"min":0,"rarity":5,"name":"Caiman","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsBWaZzO94j-1gSCGn20t-4WyBn4mocC6XbVN0CMB2RLYMsUG5x9DgN-20tQSNiI1GzS2q3XtXrnE8NAiGp64","stattrak":true,"normal_prices":[9872,3334,2985,3474,0],"normal_volume":[95,62,67,6,0],"stattrak_prices":[9021,6679,6334,6949,0],"stattrak_volume":[63,40,28,6,0]},"364":{"index":364,"max":1,"min":0,"rarity":3,"name":"Business Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsAnKXxu9xtd58XDn-hiIrujqNjsGvJSjDPQ4nW5d1EO5btka6x9y1Me7ktgWM2oMWn3irjn8Y5ils5rxWT-N7rQDu-iuk","normal_prices":[8741,4151,3307,3064,3033],"normal_volume":[43,27,39,15,5]},"443":{"index":443,"max":0.35,"min":0,"rarity":2,"name":"Pathfinder","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsAmaS2Px_vvVhHRa_nBovp3PQzImpJHuTa1InCsEhF-cDsxjplIGxN7nqtlfdgotHyy6viylN6Sxj_a9cBrrpg9X-","normal_prices":[12803,1700,1621,0,0],"normal_volume":[106,111,39,0,0]},"454":{"index":454,"max":0.8,"min":0,"rarity":2,"name":"Para Green","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-sBW-RyudJt_NsSieMmRQguynLw9erJynFawZ0XMd0FLVZ5he4lIe0Puvq4gDfi9oQyy3_j3gd6Hw65PFCD_QfWpQsfw","normal_prices":[8252,1060,801,1069,909],"normal_volume":[124,139,138,16,24]},"489":{"index":489,"max":0.46,"min":0,"rarity":3,"name":"Torque","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_v5kv-Z7SjqgnAsYvzSCkpu3cH2eZgcgD5cmTOQK5BftlobvY-zk4gCN2I4UyX-s3XhI7S4_supXA71lpPNCDDeLhA","stattrak":true,"normal_prices":[174,98,59,62,177],"normal_volume":[1358,776,1149,91,66],"stattrak_prices":[386,280,166,212,318],"stattrak_volume":[476,401,478,41,43]},"504":{"index":504,"max":1,"min":0,"rarity":6,"name":"Kill Confirmed","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_uV_vO1WTCa9kxQ1vjiBpYPwJiPTcFB2Xpp5TO5cskG9lYCxZu_jsVCL3o4Xnij23ClO5ik9tegFA_It8qHJz1aWe-uc160","stattrak":true,"normal_prices":[24949,9900,6460,5751,5593],"normal_volume":[209,494,579,143,92],"stattrak_prices":[58286,27939,17863,14840,14892],"stattrak_volume":[99,103,127,36,30]},"540":{"index":540,"max":1,"min":0,"rarity":3,"name":"Lead Conduit","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OsG3SA_vh5vPVoSCyMmRQguynLmNyrdimTZw4mW8cmE-ZYsxewkYaxZb6z5FbfjY8RyS__iXsc6S09sfFCD_RkYnnFtg","stattrak":true,"normal_prices":[2102,175,84,60,54],"normal_volume":[181,275,367,238,206],"stattrak_prices":[2016,477,230,164,168],"stattrak_volume":[60,127,213,120,106]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":4,"name":"Dark Water","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sFGKS0-9JtOB7RBa_nBovp3OHy9v8J3vFbgIhC5UmQ7UIsxm7wNDnNr_rswOMiNlGmCWoiH9Juis9_a9cBl2xnYuj","stattrak":true,"normal_prices":[0,11465,6933,0,0],"normal_volume":[0,124,55,0,0],"stattrak_prices":[0,14845,11384,0,0],"stattrak_volume":[0,78,50,0,0]},"637":{"index":637,"max":0.55,"min":0,"rarity":4,"name":"Cyrex","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_u1vouRxcCW6khUz_TjdzdmsJyiTZg8kX8N4ELUP5EPsw9G1YeLn5VTXjY0WxS6rhiIYuCd1o7FV2N83Spg","stattrak":true,"normal_prices":[2711,428,323,373,345],"normal_volume":[412,978,1202,82,69],"stattrak_prices":[1536,725,557,658,584],"stattrak_volume":[293,208,301,49,42]},"653":{"index":653,"max":0.7,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA0tF4v-h7cCW6khUz_WXdmd-vI3uRPwEkApR4QuBcu0Xrk4biYr_mtQXdidlCz3r63Ska7Hx1o7FVWuokIcU","stattrak":true,"normal_prices":[10392,8684,8547,10304,8854],"normal_volume":[389,564,433,35,29],"stattrak_prices":[14558,10425,8898,11328,9673],"stattrak_volume":[131,97,113,10,16]},"657":{"index":657,"max":0.86,"min":0,"rarity":3,"name":"Blueprint","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA0tF0vPRsXzu6mwkYvzSCkpu3IiqTZgAmCJIlRLEP5BXpxtPlMOOxswPZithFyyj3iyNPvCo96r1QBb1lpPPa5SpubA","stattrak":true,"normal_prices":[10690,2203,626,543,459],"normal_volume":[217,600,736,56,99],"stattrak_prices":[11314,2645,1182,1162,1152],"stattrak_volume":[78,263,313,19,54]},"705":{"index":705,"max":1,"min":0,"rarity":5,"name":"Cortex","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_u1jpN5lRi67gVNz4G7Qm938cS_Da1AhXpB1EeVb4xm4mtDjN7vj4A3b2NpGyCr52i4Y8G81tMzdoYZ7","stattrak":true,"normal_prices":[2557,630,343,299,295],"normal_volume":[437,1080,2214,377,256],"stattrak_prices":[3911,1367,736,733,763],"stattrak_volume":[185,311,357,115,107]},"796":{"index":796,"max":0.6,"min":0,"rarity":3,"name":"Check Engine","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsA2KDydFlsedsWzChkBkYvzSCkpu3Iy6RbQYnXJZ2F7QN4UPqkIfmNeni5laNit1Dyiz42C5JvCdo57xQA71lpPMz6iO7bg","souvenir":true,"normal_prices":[236,119,93,80,69],"normal_volume":[1084,762,1412,76,108]},"817":{"index":817,"max":0.5,"min":0,"rarity":4,"name":"Flashback","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_uh6sfJhTSiwniIrujqNjsH6dnKfbAdxAsF3ELQCu0Hsmty1N76z71GIit4RySX_2CJI6yk9tucLT-N7rUYlhjC0","stattrak":true,"normal_prices":[286,64,53,67,77],"normal_volume":[497,550,1156,84,145],"stattrak_prices":[312,167,134,189,253],"stattrak_volume":[233,440,569,46,46]},"818":{"index":818,"max":0.55,"min":0,"rarity":3,"name":"Purple DDPAT","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sCmOAwPpJoPR7XyW2qhEutDWR1N-rcHPBPFMiDZUkF-9Z4ETtxtDkYu3js1ffg94Tnn2o3yMavH0957ocEf1yWMwziKM","souvenir":true,"normal_prices":[3876,1026,662,1472,1664],"normal_volume":[383,144,133,20,20]},"830":{"index":830,"max":0.68,"min":0,"rarity":3,"name":"Alpine Camo","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OQBliS0-dxuPVWTCi-miIyoC26lob-KT-JaVIpXpRxFuIMtRe4x9PjYrni7wfejYpFnn3-jCNB6C4_5u4FU6It8rqX0V8gYmZtWA","normal_prices":[257,76,39,41,35],"normal_volume":[3606,2904,5611,212,246]},"922":{"index":922,"max":0.37,"min":0,"rarity":4,"name":"Orange Anolis","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sAm6KwPxyj_NsSxa_nBovp3OHn4qqcX3FbQMgD5okQeFYtBbsktLmMeux5leLjIIXxXn4i3wdvC9s_a9cBikK0tGN","souvenir":true,"normal_prices":[9620,2676,3885,0,0],"normal_volume":[71,64,29,0,0]},"991":{"index":991,"max":0.7,"min":0,"rarity":5,"name":"Monster Mashup","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_uVkv-pmXBa_nBovp3PQn46ueX3FbAB0WZMjTe9csEKwk9XvNbnl41Tcj48WzHqv3HhP5ydj_a9cBuLIfNg1","stattrak":true,"normal_prices":[9972,3291,2180,2393,2476],"normal_volume":[242,315,312,33,35],"stattrak_prices":[10910,5865,3118,3501,3321],"stattrak_volume":[106,114,106,10,27]}}},"63":{"name":"CZ75-Auto","sticker_amount":5,"type":"Weapons","paints":{"1036":{"index":1036,"max":0.9,"min":0,"rarity":3,"name":"Circaetus","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H-ebB3Wc1ud4tN5lRi67gVN242-AzNuoIyieOg8lDJdyEeVe40TqxoDvZLixtVPZ2IhFmC333yNJ8G81tFbyihAW","stattrak":true,"normal_prices":[183,23,18,15,15],"normal_volume":[97,156,221,61,62],"stattrak_prices":[232,51,33,28,27],"stattrak_volume":[82,152,233,43,69]},"1064":{"index":1064,"max":0.7,"min":0,"rarity":4,"name":"Syndicate","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M26eqVkLs-QFDDF_uJ_t-l9ASjglxhw52rQy974IirCa1UiC5R4RbJbsxjrk9SxMb7k4lfZ2o9AzirgznQeG7VwMmI","normal_prices":[4047,1403,704,893,869],"normal_volume":[159,81,76,6,33]},"1076":{"index":1076,"max":0.8,"min":0,"rarity":1,"name":"Framework","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s24bbZ5KfecB2uc1P1_v-9WQyC0nQlp4WrQn42pIiqTZlQpXMByE-8Mu0Huxte0Y-zl41Pci4lFxST_33lA6TErvbh9z0zyoQ","souvenir":true,"normal_prices":[349,115,131,100,79],"normal_volume":[33,35,61,4,59]},"1195":{"index":1195,"max":0.563291,"min":0,"rarity":2,"name":"Copper Fiber","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2tabZvL_6sCG6SxPxJs_s-Gha_nBovp3OEzIn8c3qUagUiD5p0FuILtUKxm4e2Mrzms1baiIpCyiiqhi1J6yxo_a9cBnTQQcTV","souvenir":true,"normal_prices":[40,5,1,2,1],"normal_volume":[2461,686,390,35,59]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s25baZ-H_yaCW-Ej-0u4-VsH3G2x0x-sGXQyY76JXPGOAQkCMAlR-YNsBDqxtHhZerjsgTAy9USIjIDnE8","stattrak":true,"normal_prices":[2802,517,214,246,182],"normal_volume":[30,206,138,33,53],"stattrak_prices":[9373,562,242,237,229],"stattrak_volume":[8,111,228,32,49]},"1329":{"index":1329,"max":0.7,"min":0,"rarity":1,"name":"Pink Pearl","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4PeReK1jK8-DC2aCzdF6ueZhW2exk0xx6mnSmN-qci_BOwAgDZd3ReUO4BW4wYDmMejq51OL34lBmyT9kGoXudH7YXET","normal_prices":[3,1,1,1,1],"normal_volume":[428,198,543,47,173]},"1390":{"index":1390,"max":0.6,"min":0,"rarity":1,"name":"Honey Paisley","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9veReKVkM_yWF1iUxP13pN5lRi67gVN2tW3Sntuvd3OROFUoXsB2Q-9Zs0Hqlta0Pujr7waIiYJAxS-sjy0c8G81tBzzAWSY","normal_prices":[6,1,1,1,1],"normal_volume":[420,172,262,128,398]},"147":{"index":147,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle Dashed","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I_826abRoH-ObAXWE_uRjvuZlSha_nBovp3PQyt2reHrGPAQiDJYjTOQItRDpwd3kZO23sQLY3Y0TmX75iXxB631i_a9cBsRmAsJf","normal_prices":[559,103,84,82,76],"normal_volume":[136,130,355,138,97]},"218":{"index":218,"max":0.4,"min":0,"rarity":3,"name":"Hexane","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s2sZLFoKPWLMWuZxuZi_rBqS3vrkRxz5W7dnN2oIyiTZgYhXpN5EOIPsUbsloC1M-_qs1HdiYlbjXKpP5VEBps","stattrak":true,"normal_prices":[559,310,332,753,0],"normal_volume":[42,62,110,7,0],"stattrak_prices":[678,340,229,796,0],"stattrak_volume":[28,72,120,5,0]},"268":{"index":268,"max":0.2,"min":0,"rarity":4,"name":"Tread Plate","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2qYaVgL_6XMXecwPpzj-1gSCGn20l_62-Bzd39cH2QaAYoD8ckE-9csxmxx9biML_q4w3Wi4gTmSyvjShXrnE8FqKNMu4","stattrak":true,"normal_prices":[1334,578,663,0,0],"normal_volume":[100,48,5,0,0],"stattrak_prices":[669,669,855,0,0],"stattrak_volume":[51,60,11,0,0]},"269":{"index":269,"max":0.4,"min":0,"rarity":5,"name":"The Fuschia Is Now","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2ofbduKPmSMWuZxuZi_uM-Sn_hlhgi4D_RnImrJC3COFIoApB3FLUP4RS9mtSzYu_r7wHZjopbjXKpFZZFzGk","stattrak":true,"normal_prices":[4749,2054,1937,2402,0],"normal_volume":[100,77,26,5,0],"stattrak_prices":[4833,2842,3117,4198,0],"stattrak_volume":[34,24,29,2,0]},"270":{"index":270,"max":0.75,"min":0,"rarity":6,"name":"Victoria","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a_s2rfKdlJfSsDX3HlNF6ueZhW2fkk04i5WrXmY2sc3qfPFAlWZd3EOdY4Bi6loCxPu7h51fZjNlGzST5kGoXuTXAF0gA","stattrak":true,"normal_prices":[10540,7508,7305,9154,7101],"normal_volume":[106,95,86,4,22],"stattrak_prices":[21147,9261,8282,11000,8751],"stattrak_volume":[29,22,41,3,7]},"297":{"index":297,"max":0.8,"min":0,"rarity":3,"name":"Tuxedo","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4M2heqdsH_yaCW-Ej7lz6Oc9GXC3zEwh4D_VzY36eHvDaQYkXJV3FLMJtEG_kNHiZLmxtAPAy9USE1srPao","normal_prices":[257,71,29,35,28],"normal_volume":[361,167,288,60,115]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2veql0H-ObB2mV_uJ_t-l9ASrgl0lzsWSDytatICnDaVQmWZt3Q-MJsxS4m4DgYuuz7w2L3ogRyivgznQeVdjncD8","normal_prices":[512,441,335,0,0],"normal_volume":[42,95,28,0,0]},"315":{"index":315,"max":0.7,"min":0,"rarity":3,"name":"Poison Dart","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnj53UO7ryvaac0dKiVW2XBlrwmsuA6GH3hkE9062qEz9aoeCmVawchW8dwEe4MrFDmxWPDR_Ga","stattrak":true,"normal_prices":[1318,413,252,28025,747],"normal_volume":[60,38,29,1,20],"stattrak_prices":[2520,605,262,1102,577],"stattrak_volume":[13,51,31,7,11]},"32":{"index":32,"max":0.08,"min":0,"rarity":2,"name":"Silver","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4c29Yah7JeKsAm6Xyfo457c5Gn7nwEV-6jvRy96rcHPEPwcpDcZ4RrQItxHsk9bnMOrg5QKPi5UFk3v7O4lRrA","souvenir":true,"normal_prices":[598,1362,0,0,0],"normal_volume":[299,11,0,0,0]},"322":{"index":322,"max":0.8,"min":0.06,"rarity":3,"name":"Nitro","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4M2heqVjJ_WsD2STxOBio7NWQyC0nQlptWvXw9_7I3zCaVB1C5YkTeAIsRC8m9a1MePg5VGLiI9CnH772C9AuDErvbi4qlLcDQ","souvenir":true,"normal_prices":[8641,2624,860,888,1205],"normal_volume":[14,42,56,15,11]},"325":{"index":325,"max":0.1,"min":0,"rarity":4,"name":"Chalice","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s28Z71sLM-fB2CY1aBzsrQ5HnyyzBh25jzcyI3_dyqXaFcmC8ByReBZuxi-lYXlMei05FSPlcsbmsOlfuvI","souvenir":true,"normal_prices":[42970,57993,0,0,0],"normal_volume":[20,2,0,0,0]},"333":{"index":333,"max":0.8,"min":0.06,"rarity":1,"name":"Indigo","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4M2nZqBkJ_-sD2mU_ulktfhWQyC0nQlp5zmGzo2rcXnDbFJxDZoiRrII40Puw9a2YeOwsgbdjNlCnCSoiilK6TErvbj4Q9U5dw","normal_prices":[1772,413,331,288,198],"normal_volume":[35,40,233,36,26]},"334":{"index":334,"max":1,"min":0,"rarity":3,"name":"Twist","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2pcbZsNPWsAm6Xyfo45bY7TXzjxk5w42XXn93_cnLFOFN1C5t0ROANsBLtx9ziNu6x4FHejpUFk3uH-TvaLw","stattrak":true,"normal_prices":[689,160,81,82,114],"normal_volume":[126,94,90,151,75],"stattrak_prices":[354,172,105,88,106],"stattrak_volume":[48,192,167,131,84]},"350":{"index":350,"max":1,"min":0,"rarity":4,"name":"Tigris","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tP_FsbeSaCWKC_uJ_t-l9ASvil0R15WjUmYmqc33CaQ91W5QlRbVetETtwNC1P-u34g2L2dpEmS_gznQebcVQ6rs","stattrak":true,"normal_prices":[905,226,188,187,182],"normal_volume":[179,261,262,108,39],"stattrak_prices":[1023,317,178,169,172],"stattrak_volume":[99,136,140,109,76]},"366":{"index":366,"max":0.58,"min":0,"rarity":1,"name":"Green Plaid","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s2-ZKVkJKKsAm6Xyfo4s7Y4Fn22xkhw6mzSyY2tcn3DaVIhXpshFLQD5hTpmtCzP-Pg4wKLg5UFk3t4lHCTnQ","normal_prices":[574,388,280,408,398],"normal_volume":[14,15,52,7,3]},"435":{"index":435,"max":0.7,"min":0,"rarity":4,"name":"Pole Position","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H-CBC2SZ0ud5vt5lRi67gVNy4mTdzdmgc33COg90DcB2FuMPtxLpldSxZeLn4w2K34NCzXj9hnsY8G81tCL36RK-","stattrak":true,"normal_prices":[704,181,104,111,108],"normal_volume":[204,276,341,35,81],"stattrak_prices":[604,261,132,136,120],"stattrak_volume":[124,209,217,18,31]},"453":{"index":453,"max":0.08,"min":0,"rarity":3,"name":"Emerald","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4c2rZaF_IfyXMWuZxuZi_rNsFyzqzUhy4zzWmdqvdnPFbQYoCpolQeMOuxHum4HnMbjl4FCM2I1bjXKpBQcUgmo","normal_prices":[4185,6285,0,0,0],"normal_volume":[355,28,0,0,0]},"476":{"index":476,"max":1,"min":0,"rarity":5,"name":"Yellow Jacket","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4Ic-QBmaD1edstfNWQyC0nQlptjjRn9z8cHjBbgB2WccmFOAPukbux9zlP77nsQXf3YxFzSX9iy9AvDErvbgg0Q8tFg","stattrak":true,"normal_prices":[2923,629,391,374,347],"normal_volume":[77,81,117,82,19],"stattrak_prices":[4740,1660,798,855,901],"stattrak_volume":[57,29,34,27,15]},"543":{"index":543,"max":1,"min":0,"rarity":4,"name":"Red Astor","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4Ic-BC2OR0vp5ot5lRi67gVMh5D_cwor7cy7GZ1UpA8F0QrQP5BjuwdHiZr7r5FeNjIpAmyT8hnlI8G81tORsc2LX","stattrak":true,"normal_prices":[947,140,108,103,99],"normal_volume":[174,164,309,103,103],"stattrak_prices":[802,221,114,112,110],"stattrak_volume":[77,82,145,39,62]},"602":{"index":602,"max":1,"min":0,"rarity":3,"name":"Imprint","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4H-SBC2aU_uJ_t-l9AX_ql0kksWTVyYupJC7FOAUiAptxQudbs0KxkNK1MLzl4wOPjIsWyCngznQeZTDWXeo","stattrak":true,"normal_prices":[380,31,37,18,18],"normal_volume":[183,188,113,48,153],"stattrak_prices":[368,63,24,21,23],"stattrak_volume":[50,101,105,67,122]},"622":{"index":622,"max":0.5,"min":0,"rarity":3,"name":"Polymer","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2tcrI_H_2VMWuZxuZi_rcwSnHjwxgh527SzI6oIHKUZ1dxA8ckTbUCskG6ldTuY-nh5FTf34JbjXKpj6qz0B4","stattrak":true,"normal_prices":[470,49,48,46,41],"normal_volume":[387,112,182,33,24],"stattrak_prices":[138,48,33,47,55],"stattrak_volume":[118,90,127,34,21]},"643":{"index":643,"max":0.56,"min":0,"rarity":5,"name":"Xiangliu","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcpt-LvGYC3Sv0ftkoO1scCW6khUz_WTcw9r7JH7BOgApApojQuBb5kO5lNO1ZO_h4VaM2o5Gm36s3HgbvH51o7FVgkdxNDg","stattrak":true,"normal_prices":[2961,1281,1116,1360,1270],"normal_volume":[147,130,111,20,26],"stattrak_prices":[3528,2150,2090,2045,2102],"stattrak_volume":[54,37,42,11,19]},"687":{"index":687,"max":0.7,"min":0,"rarity":4,"name":"Tacticat","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4H-SSDXOZwu9ij-1gSCGn2x4k5zvVm9z8IH7FZwFyCJckR7NfshSwwNGyMLzn41fejINHn3r6jy5XrnE8D8_CCNo","stattrak":true,"normal_prices":[410,138,82,97,84],"normal_volume":[434,392,566,63,80],"stattrak_prices":[523,227,132,185,141],"stattrak_volume":[197,142,247,35,52]},"709":{"index":709,"max":1,"min":0,"rarity":4,"name":"Eco","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H_WQAVicyOl-pK87HivqxR5xt2_Qnt6qI3-fPFciWJBzRuFZ5Ba_moG0Mrm04lfajYwQ02yg2Q7xomN1","stattrak":true,"normal_prices":[2682,342,90,66,60],"normal_volume":[180,319,279,172,70],"stattrak_prices":[1903,381,164,115,124],"stattrak_volume":[109,123,139,32,76]},"859":{"index":859,"max":0.7,"min":0,"rarity":3,"name":"Emerald Quartz","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2ter1-NPGfAm6KxOpJt_NsSieMmRQguynLyNivIn6XPFUnXsYmFuNbukK6ltfiYeux5A2M2dgXyCqo2igY7yhutfFCD_SCQHbp0w","normal_prices":[15003,9081,9298,165975,9428],"normal_volume":[30,16,8,1,10]},"933":{"index":933,"max":0.5,"min":0,"rarity":2,"name":"Midnight Palm","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I_82-aahgH_6aCW-E_uJ_t-l9ASiwl0lw5z_Unt_9IHqRbwV1X5QmFuJZtxi-l9HuML7htgGN3t1NzSjgznQe0h5WimA","souvenir":true,"normal_prices":[181,85,34,110,132],"normal_volume":[162,36,65,48,16]},"937":{"index":937,"max":0.57,"min":0,"rarity":4,"name":"Slalom","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2vard5MvGQGliHyeditd5qVRa_nBovp3Pdzt3_eSqUOA4hDpB1EbQPshXqkdPmPrm04APXjdhExXis2C1N7io9_a9cBtMaUZjs","normal_prices":[2188,918,711,816,924],"normal_volume":[255,147,164,31,14]},"944":{"index":944,"max":1,"min":0,"rarity":3,"name":"Distressed","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H_OWHGabzvpzj-1gSCGn208hsTyHw9z6eS2faQEoX5p1ELECtBi7xtG2Pr7j5APZjopDynj_iHtXrnE8XiCan1o","stattrak":true,"normal_prices":[176,20,25,18,15],"normal_volume":[178,21,248,143,74],"stattrak_prices":[147,25,15,12,15],"stattrak_volume":[48,43,42,48,30]},"976":{"index":976,"max":1,"min":0,"rarity":3,"name":"Vendetta","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4H-aWAGOV1fp3j-1gSCGn205ysWiEw9iqInueOAZyD5J1EOdf4Ea9l9bmMb_q4AaI2NhGySz6iStXrnE8_AWQoqE","stattrak":true,"normal_prices":[576,136,70,55,53],"normal_volume":[62,111,68,60,71],"stattrak_prices":[484,139,83,72,55],"stattrak_volume":[22,22,33,35,22]}}},"64":{"name":"R8 Revolver","sticker_amount":5,"type":"Weapons","paints":{"1011":{"index":1011,"max":0.6,"min":0,"rarity":2,"name":"Phoenix Marker","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vZZt9KP-WAG6I_vp3t_JWTSWmkCIrujqNjsH9dSnGZgQiC5Z5EOQP5ETsmtLjNuzi5lPe3tpEmyj9ji0a6Cxp4blRT-N7rZuorHqs","normal_prices":[2215,658,459,457,454],"normal_volume":[197,138,90,24,31]},"1047":{"index":1047,"max":1,"min":0,"rarity":3,"name":"Junk Yard","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-BG3SEyud4t95lRi67gVMj4WTdzY2qcXjFbwUmDpcmTOEO5xC-x9XgYb7h71eM2dlMmCX_3CpK8G81tNsMj6E-","stattrak":true,"normal_prices":[1126,27,22,15,15],"normal_volume":[163,394,203,91,158],"stattrak_prices":[249,60,33,30,29],"stattrak_volume":[94,113,209,162,66]},"1145":{"index":1145,"max":1,"min":0,"rarity":4,"name":"Crazy 8","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_JeacAnGV09FmpfN5QyyMkBEupzi6lob-KT-JZlJ0X5MhEOFcthO9wIHuZrng5A3XgotFmSv82ClAuHo46-wHU6p38rqX0V9gOeDH5A","stattrak":true,"normal_prices":[417,73,37,32,30],"normal_volume":[348,665,930,263,176],"stattrak_prices":[491,143,62,58,54],"stattrak_volume":[173,188,510,235,174]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2mcZt6JfKAMWuZxuZi_rdrHny2wkR_sDuHw4muJXuWOwZyAsdzTeNcu0S4ktfkP77htAOPiYlbjXKp8jg9HbM","stattrak":true,"normal_prices":[1429,75,20,25,17],"normal_volume":[40,504,182,75,68],"stattrak_prices":[3105,232,38,52,30],"stattrak_volume":[58,193,134,42,83]},"123":{"index":123,"max":0.851064,"min":0,"rarity":3,"name":"Tango","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c28MJt_L-OWHViRz-pJt_RnXBa_nBovp3PSm4urdy7Da1UjWJolF-RbshfqldXuMuqxsgGKi45HmXj4iS5IuCxi_a9cBo6oJFLo","stattrak":true,"normal_prices":[219,37,15,16,12],"normal_volume":[285,231,240,62,58],"stattrak_prices":[453,121,28,46,30],"stattrak_volume":[75,96,132,71,69]},"1232":{"index":1232,"max":1,"min":0,"rarity":4,"name":"Banana Cannon","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-RD2mRz-9JvOhuRz39kU4msjzdmd6peXKTOFd2DcchEOEP40btlt3lN7iz5FbeiNpFzi_83zQJsHgWY2btRg","stattrak":true,"normal_prices":[373,59,32,31,29],"normal_volume":[454,781,956,283,234],"stattrak_prices":[412,91,44,38,42],"stattrak_volume":[91,127,183,62,151]},"1237":{"index":1237,"max":0.76,"min":0,"rarity":1,"name":"Inlay","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_JeacAnGV09F3s-BnWyGmhiIloTKLgIrGLSLANkI-A5cjFOBc5ES_m921Ybux5gXeioMQzy2ojHlMuChi4bxQVfFzr6OEjRaBb-Nm3twhXg","souvenir":true,"normal_prices":[52,12,3,5,3],"normal_volume":[359,517,350,25,106]},"1276":{"index":1276,"max":0.80339,"min":0,"rarity":1,"name":"Cobalt Grip","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z6dlH_mdCm6XztFxouh5XBa_nBovp3ODyI2scn3BO1J2WJJ0F-MLsha6wNTgY7_m4VePid9AzSv4iC9LuiY5_a9cBmU4DDcB","normal_prices":[8,1,1,1,1],"normal_volume":[456,475,498,68,306]},"1293":{"index":1293,"max":0.65098,"min":0,"rarity":2,"name":"Leafhopper","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2veZt5KeSSAG6FzNF3s-htcCW6khUz_W-Gy96pJXmWOwJyX8QlF7Zeshm5wYbiMOvm5laLjohNxCis3S8a5311o7FVOU-zWog","normal_prices":[19,6,2,2,1],"normal_volume":[612,404,476,36,65]},"1363":{"index":1363,"max":0.80339,"min":0,"rarity":2,"name":"Dark Chamber","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z6dlH-OeAWyV_ulkufF6cCW6khUz_WqGmNatdnzDbAR0CcR2FLQO4UKxxNfuM-rj4QzX3YsTziuqiHgf7351o7FV2A-FKGc","normal_prices":[35,5,1,1,1],"normal_volume":[259,354,297,40,92]},"1389":{"index":1389,"max":0.80339,"min":0,"rarity":1,"name":"Mauve Aside","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z6dlH_OcHneV09F3s-JsQT2MhxgxvDGTn53GLSLANkI-C5d5Q7EK4xLpxtDhY-vksleP3d1DzXn52itKvCxstewGVKosqPDTiRaBb-Oa78uGvw","normal_prices":[5,1,1,1,1],"normal_volume":[377,231,1089,42,109]},"27":{"index":27,"max":0.8,"min":0.06,"rarity":1,"name":"Bone Mask","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29eJt5IeCWMWuZxuZi_rNtHX_hwh91sWjXm9qreSqfaAIgD5d3RLNbt0Pqx4e2Mrjn5wHbi99bjXKpUIbZI8w","souvenir":true,"normal_prices":[189,7,1,1,2],"normal_volume":[66,152,258,42,1149]},"37":{"index":37,"max":0.08,"min":0,"rarity":3,"name":"Blaze","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vaZtrLPGeC3SvzedxuPUnTCznkR9xsGiHzomgIn-UPwN1DZZyELNe5xDrlNTgY-jm5FeM3tkUnDK-0H3jUXrCJQ","normal_prices":[332,340,0,0,0],"normal_volume":[1408,105,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z5tjKfebGlicyOl-pK9oGCjkk0sktWyAntv6cSrDaAdzAsFxQuFZtRnqwNPlP7jg5QHd39oU02yg2UcfjkJE","souvenir":true,"normal_prices":[1212,83,144,173,65],"normal_volume":[75,48,142,8,12]},"522":{"index":522,"max":0.4,"min":0,"rarity":6,"name":"Fade","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vaZtrIfSWMXWV1-F6puR7cCW6khUz_W2EnIuheSiVZgIgX8F3Ee9YthLuw9LjMePqswCL34kQzHj6iypPu351o7FV6jjqgC8","stattrak":true,"normal_prices":[8645,7547,6863,8553,0],"normal_volume":[297,250,147,9,0],"stattrak_prices":[12109,8316,7749,14902,0],"stattrak_volume":[78,35,30,2,0]},"523":{"index":523,"max":0.4,"min":0,"rarity":5,"name":"Amber Fade","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vaZtrIfSWMWqV1e96vOhqcDu2gxIrpTiXpYPwJiPTcAIpDJckF-9cuhfqltDuZujgs1DZj4hDy338jnhM73xusOcKVaos-qPJz1aW9R0yRq8","souvenir":true,"normal_prices":[389,136,122,217,0],"normal_volume":[191,611,618,49,0]},"595":{"index":595,"max":1,"min":0,"rarity":4,"name":"Reboot","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2tfZt_eM-QF2WV0_1mv_N9cCW6khUz_WjRyouseHqUPwQoXMNyQbMM4ETulNSxNuq3s1DZi95CzH_-2Cgf7Hp1o7FVySZFkkA","stattrak":true,"normal_prices":[1248,233,110,95,97],"normal_volume":[163,269,215,58,58],"stattrak_prices":[1774,490,208,151,171],"stattrak_volume":[84,132,194,60,47]},"683":{"index":683,"max":0.7,"min":0.03,"rarity":5,"name":"Llama Cannon","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-fAmadwO13vu9mQRa_nBovp3OEz9n7JH-UPwEoA5t2TLFYtBmxlNzhYuOztgHZjo9Mzyqq3C9O63o5_a9cBr5nn1G8","stattrak":true,"normal_prices":[3529,945,844,864,846],"normal_volume":[65,101,220,18,59],"stattrak_prices":[4997,1530,958,1032,990],"stattrak_volume":[27,37,63,6,29]},"701":{"index":701,"max":1,"min":0,"rarity":3,"name":"Grip","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_JeacAnGV09FiouRoSxa_nBovp3PTwt-hJH-WbFMnWJdwRuUPtEG7k93iN7uw4wLf2I9FxCr733hBvXxj_a9cBlQvB05B","stattrak":true,"normal_prices":[101,18,12,9,10],"normal_volume":[154,108,214,73,59],"stattrak_prices":[152,26,15,14,11],"stattrak_volume":[121,107,138,71,63]},"721":{"index":721,"max":0.7,"min":0,"rarity":3,"name":"Survivalist","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2tfZt_eM-AG3WGyPh3vOh6Wxa_nBovp3OBzditcSmSOFUnDsEiE-4MuhPqw4bmY-jisQff2dhGnCyq2n4a631v_a9cBkWPt9yi","stattrak":true,"normal_prices":[309,29,28,29,23],"normal_volume":[182,141,53,20,46],"stattrak_prices":[132,63,27,49,34],"stattrak_volume":[45,84,131,33,49]},"798":{"index":798,"max":0.8,"min":0.06,"rarity":2,"name":"Nitro","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z5tiMvGdCWKvwO11te99XHqMmRQguynLzo34IiiTagQoWZUlFOYOsha6ltLlPuPlsweMj4tDnyT6jy5MuytosvFCD_SeBWArcQ","souvenir":true,"normal_prices":[517,20,8,9,7],"normal_volume":[115,299,291,331,300]},"843":{"index":843,"max":0.8,"min":0.25,"rarity":5,"name":"Skull Crusher","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2tfZt_JeacAnGV09F5oPF7Sjqgmg8YvjiBk5r0b3uSaQUiCsZ2E-EI5EKwldW2NOzqslffgopHxHj-jHxLvH4_tbwHWaQ7uvqApie1xz8","stattrak":true,"normal_prices":[0,0,619,477,482],"normal_volume":[0,0,356,112,109],"stattrak_prices":[0,0,1085,640,554],"stattrak_volume":[0,0,85,21,48]},"866":{"index":866,"max":0.6,"min":0.06,"rarity":1,"name":"Canal Spray","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29eJt-MOKSF1iHwPpzot5lRi67gVN04jnTyd2hIHqUOwUiX8BzEbYM4xDum4K2ZrvltQWPgthFm3j63yhB8G81tDz6WJ29","normal_prices":[1707,460,289,303,198],"normal_volume":[16,74,74,18,38]},"892":{"index":892,"max":0.8,"min":0,"rarity":3,"name":"Memento","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-eC2qVz_p5j-1gSCGn20wk4D7Vz9_9JHyeawMnXpByReMDshfuxIDnPunj5gCN2ohFyST_2C1XrnE8s2YJKK4","stattrak":true,"normal_prices":[500,238,97,146,81],"normal_volume":[66,47,59,7,35],"stattrak_prices":[1121,336,163,283,138],"stattrak_volume":[42,20,34,10,9]},"924":{"index":924,"max":0.6,"min":0,"rarity":1,"name":"Desert Brush","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2mcZtvMuWABliTwON5j_VoQRa_nBovp3PUz9iodirCaQQkA5R2RbFe5kO5lt3lZuLn41DfiI9FxSn4j38f73xs_a9cBhkVhlil","souvenir":true,"normal_prices":[123,43,41,65,39],"normal_volume":[460,209,328,52,65]},"952":{"index":952,"max":0.6,"min":0,"rarity":3,"name":"Bone Forged","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-fC3GZwPp-se9WQyC0nQlp5jmEydqpci2SaQdyDZEjEeFe4Re4wdznNu6ztgbWidkQzSz6jiJKuDErvbgK8jU85g","stattrak":true,"normal_prices":[63,19,26,14,18],"normal_volume":[439,106,402,21,104],"stattrak_prices":[89,21,13,25,20],"stattrak_volume":[62,123,104,34,63]}}},"7":{"name":"AK-47","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1004":{"index":1004,"max":1,"min":0,"rarity":6,"name":"X-Ray","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV7x_IemsAm6Xyfo44OQ_Tn3il08k4GzVyo2qeSnDaQAlXpF1RuZZsUO4kNLjNO2w51HWjJUFk3tTkVsnkA","normal_prices":[259287,124657,71295,49475,40492],"normal_volume":[93,72,94,57,40]},"1018":{"index":1018,"max":1,"min":0,"rarity":5,"name":"Panthera onca","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV65sJ-WSHFicyOl-pK9sSS-2wEV25z_Qw4mqcn3EOgclCpJ3TbRctELtm9HmNLix4wHc3o5H02yg2Q50xEQx","souvenir":true,"normal_prices":[55120,29574,22305,20157,18052],"normal_volume":[89,60,54,28,25]},"1035":{"index":1035,"max":1,"min":0,"rarity":4,"name":"Slate","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSMOKcCGKD0ud5vuBlcCW6khUz_W3Sytb4cCqTOFUpWJtzTOUD5hPsw9a0Yrnrs1SK3ooXzy6shilM5311o7FVYrIufmI","stattrak":true,"normal_prices":[1567,689,444,346,349],"normal_volume":[2851,7323,11711,3519,4137],"stattrak_prices":[4563,2095,1333,1180,1163],"stattrak_volume":[651,1210,1781,650,833]},"1070":{"index":1070,"max":0.4,"min":0.02,"rarity":3,"name":"Green Laminate","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sCXWVxOBJvOhuRz39xUgj4WmByIuqInLCag8jWZJ3F-AL4xi6wd22Ne3rtQLZjYNEnHj92zQJsHgD_GLtVg","souvenir":true,"normal_prices":[13768,3357,2637,3719,0],"normal_volume":[136,147,137,21,0]},"1087":{"index":1087,"max":0.65,"min":0,"rarity":6,"name":"Leet Museo","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSIfKAGnWRwvpJvOhuRz39xEly6jmHmdiqeS6UawMmCsBzFrRb4BLtx9DgPr635A3Xj45GySj5jzQJsHjwtGRbjQ","stattrak":true,"normal_prices":[54624,23492,17003,8929,7169],"normal_volume":[133,247,318,73,77],"stattrak_prices":[29641,14882,10387,11948,11493],"stattrak_volume":[90,103,116,12,8]},"113":{"index":113,"max":0.9,"min":0,"rarity":5,"name":"The Outsiders","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WRfJtvNeOsAm6Xyfo4tbg7G3-wxxwl5mzRyYqodSrBagMjCZJxELMPthi8lNLgYuzltgHc3ZUFk3sO-7HKrg","stattrak":true,"normal_prices":[6533,1426,733,711,716],"normal_volume":[292,883,1876,195,206],"stattrak_prices":[9676,3196,1845,1892,1886],"stattrak_volume":[110,205,290,45,67]},"1141":{"index":1141,"max":1,"min":0,"rarity":6,"name":"Nightwish","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSLvmUBnOHyP1-j-1gSCGn20glt2nXnt78cnKUbwN2XJp2R-ZbuxHqlNXlMLiw5AHc3toWnCur23hXrnE8p0T2bx4","stattrak":true,"normal_prices":[10050,6290,5764,5456,5341],"normal_volume":[501,1023,1326,456,275],"stattrak_prices":[13244,6491,5560,5486,5322],"stattrak_volume":[198,274,292,92,74]},"1143":{"index":1143,"max":0.77,"min":0,"rarity":5,"name":"Ice Coaled","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSI_-UGm-Zz-llj-1gSCGn2x4l5z_RyNj6JXnEbgFzXMYjEOUIsBe5m9exP-zg4leMj4pGxXn7jCJXrnE84asPq_0","stattrak":true,"normal_prices":[1564,763,422,471,375],"normal_volume":[2418,4776,9077,237,535],"stattrak_prices":[3529,1797,977,1072,954],"stattrak_volume":[598,781,897,64,83]},"1171":{"index":1171,"max":0.797346,"min":0,"rarity":6,"name":"Inheritance","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQ0OKheqdoLPGaAFicyOl-pK8xGH_nwUt1sGrSz9ivcHKQOAcjXMYkRu5Yuxe4lYCyZOq25VSM2oMT02yg2UxBSEgA","stattrak":true,"normal_prices":[12968,6148,4162,3856,3526],"normal_volume":[1179,2448,4952,166,493],"stattrak_prices":[26701,13985,8023,9883,7276],"stattrak_volume":[270,419,593,49,92]},"1179":{"index":1179,"max":0.5,"min":0,"rarity":2,"name":"Olive Polycam","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipP0OKhZL1SI_GeAViRyrohj-1gSCGn201-4G7dyo2oeXORaAIpCcFwTeEK4ELskNa0NeKxtVTXiItDySms3XxXrnE8JD9gyYo","normal_prices":[58,13,7,7,8],"normal_volume":[6495,2286,4559,140,118]},"1207":{"index":1207,"max":1,"min":0,"rarity":5,"name":"Searing Rage","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WRbbx9LP-AB3GV_uJ_t-l9AXu2lk1xsD-EnI3_JHmeaAV1CZB1RbEJtxfuxNHuMuq251PY3o4UxXjgznQeg4Qz-rg","stattrak":true,"normal_prices":[2872,677,436,393,387],"normal_volume":[828,1200,2151,616,443],"stattrak_prices":[3669,1447,900,897,920],"stattrak_volume":[225,298,464,121,160]},"1218":{"index":1218,"max":0.75,"min":0,"rarity":4,"name":"Midnight Laminate","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFU6s2neq1pJeOQC2mE_v5jovFlSha_nBovp3PRnt36d36UOlUmCcF2TOZfsRC_ldW1ML625AbZ2dhHyn_7jSgauCtp_a9cBpVVSdXG","normal_prices":[2035,1033,380,365,238],"normal_volume":[1552,2317,2963,105,216]},"122":{"index":122,"max":0.8,"min":0.06,"rarity":2,"name":"Jungle Spray","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFL0OG-eqV0H_qGAGCcxNF6ueZhW2ewlhhz5T6ByY2oIi2XZgVxX8Z0FrFfsxnrl9bkMu625lbb2o9DzSyvkGoXuXE-297B","normal_prices":[15800,4110,1176,921,886],"normal_volume":[20,163,340,33,68]},"1221":{"index":1221,"max":1,"min":0,"rarity":6,"name":"Head Shot","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV6xoIfSsHW-f1dF-v-1mcCW6khUz_TzRnNigd3-SOg4lAsF1QOQN4xS4wdHnMu-0swaMjIxExSSoiyof6ih1o7FVGHIdVhw","stattrak":true,"normal_prices":[9355,4531,3000,2763,2666],"normal_volume":[415,1143,1593,315,238],"stattrak_prices":[10200,4412,2877,2573,2530],"stattrak_volume":[170,254,303,75,96]},"1238":{"index":1238,"max":0.73,"min":0,"rarity":3,"name":"Steel Delta","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSM-SBAWmV_uJ_t-l9AXqyk0hy5GWEyduhdC2TPAEjDptzQbRf5EHrmoWyZu22sQLciokQyyzgznQesAEGx_A","souvenir":true,"normal_prices":[2891,307,167,218,209],"normal_volume":[332,488,853,99,466]},"1283":{"index":1283,"max":0.75,"min":0,"rarity":3,"name":"Wintergreen","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFU6s2jbbBsLPyaDViX0-tzvt47cCW6khUz_W-Ay96seSrBaQcnDJRyTbMDuxTsw9bmNLy0sQPb34JNyn_-jS9N6n51o7FVK4Nkj6A","normal_prices":[564,235,69,68,55],"normal_volume":[2102,1963,2455,184,248]},"1288":{"index":1288,"max":0.671875,"min":0,"rarity":2,"name":"VariCamo Grey","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFU6s24abZkI_GeAVicyOl-pK8_TXvhxh5_626Bn477dn-fbQcnXMZzEeMPtxe_w9DhY-OztAXc2IsT02yg2Vc0ERtW","normal_prices":[56,11,7,12,6],"normal_volume":[1754,276,1693,167,659]},"1309":{"index":1309,"max":1,"min":0,"rarity":5,"name":"Nouveau Rouge","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC6s2vY_A6H_6cG3GVwPtJvOhuRz39zBsm5j-HyNqpd32fPVd1AsB3RbEP4xntwdPuM-jl4QaK2NpCzX_23DQJsHjpyGbntg","normal_prices":[9870,2940,1091,801,802],"normal_volume":[453,748,1046,196,156]},"1352":{"index":1352,"max":1,"min":0,"rarity":6,"name":"The Oligarch","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WReLFrJvWBMWSF0vp5vd5lRi67gVNz4Tvdn4qoJC3Ba1V1WcdxTbFcsEbpxoHhNunnsVPYitlFm3392C4f8G81tEVBuxrI","stattrak":true,"normal_prices":[27833,10941,6376,3911,3579],"normal_volume":[299,873,787,251,206],"stattrak_prices":[56076,20797,10462,7351,7151],"stattrak_volume":[86,179,158,64,50]},"1358":{"index":1358,"max":0.75,"min":0,"rarity":4,"name":"Breakthrough","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC6s20baB-H_yaCW-Ej-olseI8Gyq1kBkh4GrVz4queXySPAd0XJEkQ7UMu0TrldaxYbzjsw3Ay9USrh0CgFA","normal_prices":[1410,736,335,309,220],"normal_volume":[458,596,933,74,92]},"1397":{"index":1397,"max":1,"min":0,"rarity":6,"name":"Aphrodite","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI7PqRaa9SJPqaB2mvzedxuPUnGCi3wktzt2rRn92pdXuXbA4iDcdxQOIMsBK4k9S2Zeiw4lTdjdhNyTK-0H1wmrL4zA","normal_prices":[49550,3703,1809,1314,1280],"normal_volume":[305,2598,3323,1378,705]},"14":{"index":14,"max":0.8,"min":0.06,"rarity":5,"name":"Red Laminate","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sAm6Xyfo4tucxS3rjwRx_42zRwo6pdSnCPwAmX5ohFOIJsUTqwdThNOi0s1TajZUFk3t5vdi_Cw","stattrak":true,"normal_prices":[56419,15014,5939,6166,6415],"normal_volume":[29,239,772,79,107],"stattrak_prices":[89106,22152,14909,15075,19230],"stattrak_volume":[5,82,160,30,36]},"142":{"index":142,"max":0.8,"min":0,"rarity":6,"name":"B the Monster","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0P24bbZ9IeOAMWqfz_1itfNWTiLnwiIrujqNjsGocC6QPQNyA8FxReZYtEHrw4ezMe_nsgbWjYIXni782ipA5yxv5OkET-N7rajaE730","souvenir":true,"normal_prices":[56017,21851,13426,11333,7248],"normal_volume":[481,641,925,68,241]},"1425":{"index":1425,"max":1,"min":0,"rarity":5,"name":"Crane Flight","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WRa7ZsLvWsCGuZxuZij-1gSCGn20wksT7Xzo6ueX6VOgUmWZQiTO5btxDrldbmNru05QLfiN5EmHmsj3hXrnE8mi375M8","stattrak":true,"normal_prices":[8663,3793,1911,1270,1065],"normal_volume":[256,802,877,250,289],"stattrak_prices":[15714,7598,3947,2532,2326],"stattrak_volume":[48,178,184,64,59]},"170":{"index":170,"max":0.8,"min":0.06,"rarity":2,"name":"Predator","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFL0OirarZsI_GeMWuZxuZi_uMwF3i3xkh25W_VzNevICqTP1QoXpJ2E-MM40bpldXvY7yw4wXb3olbjXKpy8jW9Xo","normal_prices":[8476,1627,879,942,954],"normal_volume":[28,170,307,33,76]},"172":{"index":172,"max":0.8,"min":0.06,"rarity":3,"name":"Black Laminate","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sDHCvzedxuPUnGnzjlh51sTyAzomrICnEbQByWcciTOQIsBG_m9LiZOLh7wfdi91DnzK-0H1Z7oynag","souvenir":true,"normal_prices":[31758,7144,3223,4010,4061],"normal_volume":[23,384,431,43,83]},"180":{"index":180,"max":0.76,"min":0.06,"rarity":6,"name":"Fire Serpent","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0PSneqF-JeKDC2mE_u995LZWTTuygxIYvzSCkpu3cnvFPQB2DpUkROFY4Rntw93lP7i241DbiI1BxSuviHlKunk_6-sHU71lpPMTRLyP4Q","stattrak":true,"normal_prices":[226628,105046,69574,74548,53772],"normal_volume":[80,423,648,23,72],"stattrak_prices":[453412,278845,174248,167877,131100],"stattrak_volume":[56,109,103,5,10]},"226":{"index":226,"max":0.4,"min":0.02,"rarity":4,"name":"Blue Laminate","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sDGuFxNF6ueZhW2fhzE5_5G7dnt_7JXufa1J0DZAkE-cKtBaxl9WzPuyz5lDY3YpAzCn9kGoXuZPu7T4u","stattrak":true,"normal_prices":[6406,1586,1435,2321,0],"normal_volume":[1423,1980,1679,63,0],"stattrak_prices":[4924,3501,3134,4672,0],"stattrak_volume":[555,617,608,14,0]},"282":{"index":282,"max":0.7,"min":0.1,"rarity":5,"name":"Redline","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSI_-RHGavzedxuPUnFniykEtzsWWBzoyuIiifaAchDZUjTOZe4RC_w4buM-6z7wzbgokUyzK-0H08hRGDMA","stattrak":true,"normal_prices":[0,14472,2854,2491,2559],"normal_volume":[0,1605,15418,268,314],"stattrak_prices":[0,26987,5975,5167,4939],"stattrak_volume":[0,486,2610,75,179]},"300":{"index":300,"max":1,"min":0,"rarity":4,"name":"Emerald Pinstripe","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0OKnZrd5MvmDC1iRyrohj-1gSCGn20t-422Bn4v6eH_FaFcpWcFyRrRbsRK9xN3lNOK0tFPX2YJBmS_4iytXrnE8zwmR9Cc","normal_prices":[3132,379,258,258,241],"normal_volume":[370,686,1216,473,431]},"302":{"index":302,"max":0.9,"min":0,"rarity":6,"name":"Vulcan","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSMuWRDGKC_uJ_t-l9AXCxxEh14zjTztivci2ePQZ2W8NzTecD4BKwloLiYeqxtAOIj9gUyyngznQeF7I6QE8","stattrak":true,"normal_prices":[60241,35303,17786,12769,11384],"normal_volume":[1015,1571,1658,100,174],"stattrak_prices":[137231,84342,33565,28015,20406],"stattrak_volume":[228,274,276,33,53]},"316":{"index":316,"max":1,"min":0,"rarity":6,"name":"Jaguar","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0OKvZrBlJeKsD2zEltF6ueZhW2fhzUwi4WuBzNv6dCiWPVUgApV0TLIM40SwxNLuN-Pl71fdjogXmy79kGoXuYeqaPqj","stattrak":true,"normal_prices":[65055,16559,7540,7639,7836],"normal_volume":[62,163,311,60,48],"stattrak_prices":[62606,33289,17900,13475,17531],"stattrak_volume":[18,38,45,3,7]},"340":{"index":340,"max":1,"min":0,"rarity":5,"name":"Jet Set","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0OWrZKhSNOKSGGKcxOpJseo9GBa_nBovp3ODydescy_FbVcoDZMkReYP4xC8w93jY7u35AeK2IhMmC__2itN73pv_a9cBpGGBr1j","normal_prices":[115492,41225,30828,30806,32431],"normal_volume":[21,52,26,14,23]},"341":{"index":341,"max":1,"min":0,"rarity":4,"name":"First Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0PW8baFjH_yWD3OYxPxJseo9GBa_nBovp3PXmNmpdymUZwMnX8EhEeBbtBnrk4LjZLzi7wbe3opNmCn8iH8YvX5i_a9cBikeWj5H","normal_prices":[22930,13837,9287,8832,8767],"normal_volume":[52,27,52,21,11]},"380":{"index":380,"max":0.7,"min":0.05,"rarity":6,"name":"Wasteland Rebel","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0Oa8YaZ4NPWsD2zEltF6ueZhW2fgkEh35m3cmIusIn6TbwMpWJJxReMKtBHsw4HhM7nh4gTc3YJCxXr2kGoXudZyw1tq","stattrak":true,"normal_prices":[39672,9616,7203,8457,7714],"normal_volume":[44,209,345,16,33],"stattrak_prices":[138000,19603,10968,15587,10258],"stattrak_volume":[8,52,105,2,7]},"394":{"index":394,"max":0.75,"min":0,"rarity":5,"name":"Cartel","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNK0POlPPNSI_GBGmKc_uJ_t-l9ASuywktwtW3dwt79eX6fZlUiCJJ1RbUPtkW8w4LiZe_i4ATYjN8WmH7gznQeZkk4ehM","stattrak":true,"normal_prices":[6029,1972,1561,2333,1576],"normal_volume":[480,1261,1228,34,149],"stattrak_prices":[9401,5694,4419,5766,4195],"stattrak_volume":[209,228,297,16,66]},"422":{"index":422,"max":1,"min":0,"rarity":3,"name":"Elite Build","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSLfGAGmKC2NF6ueZhW2e2wh9y5GjTztirdSqfP1dyCpclR7FZ5xe9wNbhZei25FGPjokXxC2vkGoXuQLr5jvs","stattrak":true,"normal_prices":[880,285,182,150,144],"normal_volume":[1255,3984,3933,2271,1430],"stattrak_prices":[2739,880,512,352,371],"stattrak_volume":[458,1186,1218,686,702]},"44":{"index":44,"max":1,"min":0,"rarity":5,"name":"Case Hardened","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNK0P2nZKFpH_yaCW-Ej7sk5bE8Sn-2lEpz4zndzoyvdHuUPwFzWZYiE7EK4Bi4k9TlY-y24FbAy9USGSiZd5Q","stattrak":true,"normal_prices":[65782,23771,20043,17549,17370],"normal_volume":[552,1830,1749,614,359],"stattrak_prices":[91248,65777,45888,41389,36421],"stattrak_volume":[135,178,178,115,74]},"456":{"index":456,"max":0.8,"min":0,"rarity":5,"name":"Hydroponic","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNW0PCvZaZiL8-ZG2mXzetJvOhuRz39lk0m4Dncztz7Jy2fagIoC5t5QeNbskW6xNLgZu-24AXZgt4Xyi_4izQJsHjOr8RS6A","normal_prices":[501992,207263,134756,110904,89756],"normal_volume":[174,134,112,4,17]},"474":{"index":474,"max":1,"min":0,"rarity":6,"name":"Aquamarine Revenge","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSI_-GHGaXxNF3vPVWQyC0nQlp4WvVzturJ3qVb1B1DMd3Q7EO5xW_l9O2ZOLg5gyP2N9BxST_jXwY7TErvbj-FmM1dA","stattrak":true,"normal_prices":[18329,6088,3656,3335,3536],"normal_volume":[302,577,873,115,94],"stattrak_prices":[29567,16246,8784,6461,6457],"stattrak_volume":[90,91,133,53,47]},"490":{"index":490,"max":0.87,"min":0.02,"rarity":5,"name":"Frontside Misty","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSN_mdGmKC_v1mv_N9cCW6khUz_WvRm9r8JS-SaFMmWcN5ReMD4BDsltDkN-Prs1DfjN9Cn3r_jC4YvHl1o7FVgJsyBlQ","stattrak":true,"normal_prices":[13501,2894,1694,1689,1746],"normal_volume":[172,1064,1751,177,125],"stattrak_prices":[18392,5993,3433,3594,3861],"stattrak_volume":[92,247,319,44,49]},"506":{"index":506,"max":0.67,"min":0,"rarity":5,"name":"Point Disarray","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSMP-aAHOvxedlsfN7TjCMmRQguynLnIz_dXnEbFcoDsNzQLMN40S7mte0Zuzl5gbY34JEnnr52ChA7ytisPFCD_Rw7udDlA","stattrak":true,"normal_prices":[6687,2037,1335,1760,1403],"normal_volume":[666,1459,1442,44,86],"stattrak_prices":[8780,4846,3063,4082,3390],"stattrak_volume":[225,229,208,9,21]},"524":{"index":524,"max":1,"min":0,"rarity":6,"name":"Fuel Injector","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSM-WDC3WTye9kt-RtcCW6khUz_WuGy9_8dHuRbg5xW5IjQ-BYshK9mta0NLmw4lDa2o0Wni_3iy4f6np1o7FVB0pWHHg","stattrak":true,"normal_prices":[45336,20685,15340,11533,10897],"normal_volume":[291,739,1015,279,197],"stattrak_prices":[81468,44640,29385,23999,19268],"stattrak_volume":[108,165,183,65,40]},"600":{"index":600,"max":0.8,"min":0,"rarity":6,"name":"Neon Revolution","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIf6SHGSY2NF6ueZhW2e3w0524mjQzomreXqVbAAhWJF3RuZfuxC5x920Yurh7gONjY0RxHr4kGoXuT5bpI-V","stattrak":true,"normal_prices":[22035,10134,9752,10034,9517],"normal_volume":[186,530,692,46,72],"stattrak_prices":[19588,10746,9473,9924,9698],"stattrak_volume":[108,124,144,10,22]},"639":{"index":639,"max":0.45,"min":0,"rarity":6,"name":"Bloodsport","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSIvycAWOD0eFkpN5lRi67gVN15mmDw9egci_EPFAkDMQlTeZe4EXplNa0Yrvr5wbd345GyHioiC4b8G81tFuqg_k_","stattrak":true,"normal_prices":[17339,13886,12500,12788,0],"normal_volume":[1791,1296,1139,81,0],"stattrak_prices":[36336,29528,23964,27055,0],"stattrak_volume":[406,238,235,24,0]},"656":{"index":656,"max":0.55,"min":0,"rarity":4,"name":"Orbit Mk01","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlV6diLP-dFzfB_vxztN5lRi67gVMk4TmEn9n_c3PGPwZyDMckTO8JsEPuktG1ZOrjsgPX2IwUyiyv3S0f8G81tLnuvOvF","stattrak":true,"normal_prices":[10935,3241,2644,2931,2768],"normal_volume":[285,478,404,34,44],"stattrak_prices":[9486,6458,5549,6357,5730],"stattrak_volume":[118,83,102,3,23]},"675":{"index":675,"max":1,"min":0,"rarity":6,"name":"The Empress","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSJf2DHGKD0tF6ueZhW2exxEt152rWzI7_Ii-Ubw90DMB0Ee4C5xOwx9GxZbjk71PXgogWn36tkGoXudZeYvlo","stattrak":true,"normal_prices":[22780,9240,8854,8512,8526],"normal_volume":[333,970,1230,262,202],"stattrak_prices":[35961,16052,10340,9377,8964],"stattrak_volume":[162,240,259,68,47]},"707":{"index":707,"max":0.8,"min":0,"rarity":6,"name":"Neon Rider","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV6poL_6sHG6UxPxJvOhuRz39xkQhsTnVzoygdy7Ea1UoCZQkRe9bs0brl9TvN-m0tVHYjY5CyS35jjQJsHhk4o5zcA","stattrak":true,"normal_prices":[19621,6864,4530,5678,4660],"normal_volume":[381,734,1026,30,55],"stattrak_prices":[36494,18468,8524,10741,8997],"stattrak_volume":[131,175,167,4,35]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":2,"name":"Safari Mesh","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFL0P-re6xSNPGdMWuZxuZi_rIxSirkkElyt2qEzI2heXiTaVIiX5siROQJtxnul4XnYbvgswOMgolbjXKpnRk9Yjk","souvenir":true,"normal_prices":[1404,21,6,7,6],"normal_volume":[353,2084,6877,567,958]},"724":{"index":724,"max":1,"min":0,"rarity":6,"name":"Wild Lotus","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV61-LPGdCliWzeFkse1WQyC0nQlpsDuGyt-pdnyRPA4hDcYkR-QPuhi-wdPuYbyx5AaMidkQnC_-2ilIuzErvbi4ijV5Mw","normal_prices":[1251390,938021,712430,546490,402231],"normal_volume":[167,73,82,40,18]},"745":{"index":745,"max":1,"min":0,"rarity":2,"name":"Baroque Purple","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0OSrZqF5L8-DG3WAzetJvOhuRz39wEgl6jyBwtqtJS6QbFRzApIkR-YLsRe6wdDvZung4gHbjd4XyH7_iTQJsHhGzMbuTA","normal_prices":[9135,970,606,595,603],"normal_volume":[218,606,463,116,125]},"795":{"index":795,"max":0.6,"min":0,"rarity":4,"name":"Safety Net","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0P-re6xSM_GVC3OJzvx3vuZscCW6khUz_W3RyI2tdyjFaAUlW5J5QeNc4BS_xoKzYePi4QSIgoJDynn4jS9Mvyh1o7FVeAmr1N8","souvenir":true,"normal_prices":[3020,370,268,338,293],"normal_volume":[479,559,754,78,112]},"801":{"index":801,"max":0.7,"min":0.05,"rarity":6,"name":"Asiimov","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIeOaB2qf19F6ueZhW2e2wEt-t2jcytf6dymSO1JxA5oiRecLsRa5kIfkYr-241aLgotHz3-rkGoXuUp8oX57","stattrak":true,"normal_prices":[40828,5187,3964,4245,4080],"normal_volume":[129,1993,2539,84,100],"stattrak_prices":[50561,10887,6618,7821,6946],"stattrak_volume":[83,387,348,12,31]},"836":{"index":836,"max":0.75,"min":0,"rarity":3,"name":"Uncharted","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIeqHC2SvzedxuPUnFnCwwBl_5D_Syon8dnyUaQUlD5oiQ7ECuxW7l920ZL-w4AfX2IlByTK-0H0PRM7cOA","stattrak":true,"normal_prices":[284,79,56,107,60],"normal_volume":[359,1334,1961,223,634],"stattrak_prices":[548,260,211,281,226],"stattrak_volume":[318,463,601,61,133]},"885":{"index":885,"max":1,"min":0,"rarity":4,"name":"Rat Rod","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSLvmRDGuV09F6ueZhW2fklBx362TTnN36dHiRa1AmW5QlQuVftxO9k4HhZuvksVDc398Rzy32kGoXuR34FNLu","stattrak":true,"normal_prices":[7459,710,421,422,385],"normal_volume":[129,714,710,181,184],"stattrak_prices":[5044,1702,1227,1237,1431],"stattrak_volume":[78,110,107,50,51]},"912":{"index":912,"max":0.5,"min":0,"rarity":3,"name":"Crossfade","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0PW8abRlKfOsAXGV0-J3qd5oRH3kqhEutDWR1N6vdi2Wb1IjA5V5FrUPuhW6ldGzMe7htQTd2YoRzyn83HhPvys65eocEf1y0nVviGs","normal_prices":[627,283,184,184,182],"normal_volume":[1829,966,875,145,21]},"921":{"index":921,"max":0.7,"min":0,"rarity":6,"name":"Gold Arabesque","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSJ_-fCliR0-90tfJ4WiyMmRQguynLntmvICieOARzCpMhF-BYsRe-xoHvYu_g5lSNj4NDyy2viCwY6Hlu5_FCD_Q1jEqYuQ","souvenir":true,"normal_prices":[262886,179216,132210,155710,126998],"normal_volume":[206,126,153,8,27]},"941":{"index":941,"max":0.65,"min":0,"rarity":5,"name":"Phantom Disruptor","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlJfA6H-CbD2mEzuNJtOh6XTyjgRI1jDGMnYftb3qTbQMpCZVxF-8Ku0Xtw4XkYu2xtQSL3d5FxSz-3H5Ovy895epRA6E7uvqAsbzZtpo","stattrak":true,"normal_prices":[2454,737,533,645,517],"normal_volume":[585,1075,2223,76,159],"stattrak_prices":[3091,1878,1399,1621,1513],"stattrak_volume":[239,204,226,27,29]},"959":{"index":959,"max":0.7,"min":0,"rarity":6,"name":"Legion of Anubis","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIf6GDG6D_uJ_t-l9AX_nzBhw4TvWwo6udC2QbgZyWcN2RuMP4xHrlYDnYezm7geP3d5FyH3gznQeY_Oe4QY","stattrak":true,"normal_prices":[5017,3401,3230,3196,3001],"normal_volume":[826,1203,1220,34,72],"stattrak_prices":[6963,4315,3623,3881,3956],"stattrak_volume":[291,273,232,23,21]}}},"8":{"name":"AUG","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"10":{"index":10,"max":0.38,"min":0.12,"rarity":3,"name":"Copperhead","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk7P2-eKF_KPWSClicyOl-pK9oTCvmk0hw5TzXytqodXzEOgYlCsMjQ7YDshG_wdbkNLjltgPb39pM02yg2WdB2M5V","normal_prices":[0,9563,8541,0,0],"normal_volume":[0,20,10,0,0]},"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1k_OaheqlrMv-dGlicyOl-pK84GCzkxEkisDnUz42qc32WaVckW5AhQeVYs0W9wIfuP7i34laK2d9G02yg2S19fQbA","souvenir":true,"normal_prices":[202,5,1,2,1],"normal_volume":[148,112,803,981,166]},"1033":{"index":1033,"max":0.2,"min":0,"rarity":3,"name":"Carved Jade","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k5fOqbZthKfebGimWkLlytrI5TXrlwBx-sGyGw9-gcC-fZgAhCpRwQbRbtxe4kdSxP7vm-UWA3MgZU-ku","souvenir":true,"normal_prices":[5827,1637,1659,0,0],"normal_volume":[359,59,11,0,0]},"1088":{"index":1088,"max":0.76,"min":0,"rarity":3,"name":"Plague","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7RhIfeGC1icyOl-pK8_GH7hzUx04WSByNj4JXuRaQJzXJclEO8MthHpl9DhYejjtAeL2YMU02yg2aipyCXk","stattrak":true,"normal_prices":[576,189,58,80,49],"normal_volume":[180,88,99,30,40],"stattrak_prices":[405,268,107,103,74],"stattrak_volume":[37,80,61,54,31]},"110":{"index":110,"max":0.8,"min":0.06,"rarity":2,"name":"Condemned","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4ve9YJtrL-KWHXOvx-dktd5lRi67gVNztmXQz92qcyiWPQAiDZZ1ELUD5kG8wNW0P762tVaMjopBxCX3jiMc8G81tDi9HBdS","souvenir":true,"normal_prices":[1066,21,4,4,5],"normal_volume":[23,64,850,51,79]},"1198":{"index":1198,"max":1,"min":0,"rarity":2,"name":"Steel Sentinel","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Ddc0PGhZKBSM_WdGm6exOJJvOhuRz39xRsltT6Hw92peX6SaAYpX8RwFuFf5BPuktLiZuKztVTYid9GyCqtiTQJsHi4iDvrNw","souvenir":true,"normal_prices":[195,11,2,1,1],"normal_volume":[274,859,463,172,205]},"121":{"index":121,"max":0.9,"min":0,"rarity":3,"name":"Luxe Trim","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Ddc0OK7bqJoMs-fB2CY1aAntOUwSivrwksmtTyBnI2udijFZ1cmDZt0QeUCsRG7xoWzNu3r5gPelcsbmlZvKhNj","stattrak":true,"normal_prices":[265,27,18,12,11],"normal_volume":[94,191,214,36,45],"stattrak_prices":[427,81,24,26,21],"stattrak_volume":[49,139,100,43,55]},"1249":{"index":1249,"max":0.55,"min":0,"rarity":1,"name":"Snake Pit","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6-egbZt5MvGDMWuZxuZi_rg4S3rqwxgltjyEy9r_cH7GbFBxXpd2RbEPukLtxoXgNOLg7gXe2thbjXKpZivzOLA","souvenir":true,"normal_prices":[30,10,3,2,3],"normal_volume":[895,390,405,72,52]},"1308":{"index":1308,"max":0.65,"min":0,"rarity":1,"name":"Commando Company","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6f6ra695IeKdMWuZxuZi_rQwHHrlxRl_smzQn4qqIiqePAAmDcZyEbNYthW-k9y0Zem2swzbi9hbjXKptZgodME","normal_prices":[4,1,1,1,1],"normal_volume":[510,365,589,72,121]},"1339":{"index":1339,"max":1,"min":0,"rarity":3,"name":"Trigger Discipline","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Ddc0Oa8YaNqJeKsCm6DwudmvOhnShalkBEkvAKJk4jxNWXEbwMhDpMkELUP4BSxxt2zYeuw71ff3d9AxHn5hyxL7nlrsr4HU6pz5OSJ2GiAbBJR","stattrak":true,"normal_prices":[89,20,10,7,5],"normal_volume":[623,457,358,84,93],"stattrak_prices":[175,47,27,21,16],"stattrak_volume":[203,249,148,86,53]},"134":{"index":134,"max":0.85,"min":0,"rarity":4,"name":"Eye of Zapems","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk4OSrerRsM-OsCXWRx9F3peZWQyC0nQlp6m7WyNescHuQOlIiXMd3F7UMtxfuwdSxMunh5waMjdhAzSutj3hBvTErvbhjFS7Ncw","souvenir":true,"normal_prices":[1293,471,214,220,170],"normal_volume":[695,813,831,58,120]},"1362":{"index":1362,"max":0.8,"min":0,"rarity":3,"name":"Creep","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1e0PO7b5tuMvWWHlicyOl-pK9oSnnnkRl34WqBwtavcH6TagRxWZR2E7FYuhm9wIblZr60slHXjYtM02yg2RFs1ez8","normal_prices":[121,47,19,18,15],"normal_volume":[249,378,589,25,58]},"173":{"index":173,"max":0.8,"min":0,"rarity":5,"name":"Lil' Pig","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk4_uieK1qH_GGCVicyOl-pK84TXCwxRhx627SmNj6J3PFaQV2X5R1R7JctBixldfvY7u24ATY2owX02yg2cUR6r7A","normal_prices":[13393,9172,4492,5823,4096],"normal_volume":[125,112,158,14,36]},"197":{"index":197,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Cxk4fO4cZtvMvGFAVicyOl-pK8wSnngwk8msDnRz9yseXzDZ1R0XJAhEbYN4RW9xNTiM-vmslOPjd5M02yg2bwhPrnn","normal_prices":[3891,5948,0,0,0],"normal_volume":[98,4,0,0,0]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_CNk6fOqbZtgJeSSAmuZwtF6ueZhW2fizUlwsmuEytmvJHzGaQJyXMclEbYCuhPtkdHmPrvqsVaL3osTmyj6kGoXuZFFysy6","normal_prices":[664,249,160,404,0],"normal_volume":[446,93,51,28,0]},"280":{"index":280,"max":0.5,"min":0,"rarity":6,"name":"Chameleon","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV6dlIf2WAmKfz-9_ouRWQyC0nQlpt23VztercCjGbg90C8RyQOcMs0G5x93uZLm37wbe2owTz3j9iShI6TErvbi7ZmzWCw","stattrak":true,"normal_prices":[7984,7052,6463,7774,7100],"normal_volume":[261,349,177,13,8],"stattrak_prices":[9623,7396,6618,9370,8063],"stattrak_volume":[65,75,44,7,1]},"305":{"index":305,"max":0.5,"min":0,"rarity":4,"name":"Torque","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV7R_L_eBC3SDyPhJvOhuRz39lxhxsm_WzN37Iy7CbAcmC8B2QuYPtRCwx9HvNr-xtQPaj95EmS__3TQJsHjrLu4xbg","stattrak":true,"normal_prices":[1226,782,638,738,710],"normal_volume":[167,99,77,5,12],"stattrak_prices":[1082,940,686,726,829],"stattrak_volume":[69,100,110,18,11]},"33":{"index":33,"max":0.08,"min":0,"rarity":3,"name":"Hot Rod","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Cxk_feqV6hkJ_iHQDCVkuxz5bY_H3znlhtz5jzTztigeXLBbwRyD8ckTOZbt0G8wNOyZuL8p1uJa1KD__k","normal_prices":[40770,150000,0,0,0],"normal_volume":[39,1,0,0,0]},"375":{"index":375,"max":0.55,"min":0,"rarity":2,"name":"Radiation Hazard","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4eelbbd5MvmDC1if0-94t-RWTjy0qhEutDWR1N__dX2WOlIoX8N4QOYDu0K6kILuM-m05ASP3YJFz3r3jy0buio_4uYcEf1yDazvhM4","souvenir":true,"normal_prices":[1210,504,309,280,338],"normal_volume":[170,65,105,22,24]},"444":{"index":444,"max":0.55,"min":0,"rarity":1,"name":"Daedalus","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4_OscbZkLuSbXVicyOl-pK8wGyy3zEl25jjVwtareXqUbQN0CpZzTLNYuhm7kYe1MLy3tAzei4JG02yg2fD5c25_","normal_prices":[847,656,465,453,453],"normal_volume":[85,36,84,8,2]},"455":{"index":455,"max":1,"min":0,"rarity":6,"name":"Akihabara Accept","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7vynZaFSIeWUMWuZxuZi_rZvSXDgzUV_tWWAydyqI3mQbVMiWJolTLQOtBS4w4a1MuznsVHa3YlbjXKpUc8HttI","normal_prices":[372358,107007,48499,33243,26930],"normal_volume":[45,60,69,14,15]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1k__-tV6hkJ_iHQGWWxOx04LlsGn7lwElytW3cnNihdnqTaFMhWJZxQeYLsUXpxoeyZOv8p1uJ4uPpmuk","souvenir":true,"normal_prices":[159,4,1,2,1],"normal_volume":[60,418,485,1348,141]},"47":{"index":47,"max":0.8,"min":0.06,"rarity":1,"name":"Colony","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1k_OKva6FSLfGBB2mV_uJ_t-l9ASjnk0p06jmHmIyveCmWPFAiCZUlF-BcsEW4wYW2ZO3q4QLf3Y9NmC3gznQeEvKGZSQ","souvenir":true,"normal_prices":[1888,320,269,301,272],"normal_volume":[4,16,43,2,18]},"507":{"index":507,"max":0.8,"min":0,"rarity":3,"name":"Ricochet","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7uepV654LfKfC1icyOl-pK9tHi-wxUp0sTyGw4z8dXqfb1IlWcd1QedctUbpwNHgPrnjtFeLj4tD02yg2euRXb9L","stattrak":true,"normal_prices":[232,31,20,23,15],"normal_volume":[296,278,383,48,77],"stattrak_prices":[188,89,27,73,26],"stattrak_volume":[99,169,143,4,72]},"541":{"index":541,"max":1,"min":0,"rarity":5,"name":"Fleet Flock","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV7d6IfyfAXCD_uJ_t-l9AXnmw0t252TVztercCmTZ1AmDMZ2RuBftRnsx4LhN-O0s1DYi9pEmCTgznQesuSvNik","stattrak":true,"normal_prices":[3377,1121,1048,980,993],"normal_volume":[72,195,264,66,47],"stattrak_prices":[3683,1213,958,1106,1097],"stattrak_volume":[62,64,58,18,14]},"583":{"index":583,"max":0.66,"min":0,"rarity":4,"name":"Aristocrat","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV6V_KeOHAWSCwPpJvOhuRz39w00j5WSDytyqI3_CPwAgXMd2E-Vc4US-koCxNOzq5AaMithNyij32DQJsHjdc8VZyg","stattrak":true,"normal_prices":[1231,188,104,115,108],"normal_volume":[235,272,265,56,57],"stattrak_prices":[795,374,174,320,162],"stattrak_volume":[136,96,145,49,30]},"601":{"index":601,"max":0.8,"min":0,"rarity":5,"name":"Syd Mead","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7d0JM-eC2aU_uJ_t-l9AX_rkU9-5j_Ry42qcnuQbw5zCcMhQrINtRO-xIHvY-Ow4gPY2Y4UmSngznQeqqNNbYw","stattrak":true,"normal_prices":[2370,995,963,999,936],"normal_volume":[175,384,477,51,58],"stattrak_prices":[2503,1028,879,921,957],"stattrak_volume":[83,80,128,20,28]},"674":{"index":674,"max":1,"min":0,"rarity":3,"name":"Triqua","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV6t_If6UC1iE0-d3vuZlSha_nBovp3OGyd-hdXzDZwApApYjF7UJtUK5l9LnYe_g4wDWjd5NmHqojnxJuCw-_a9cBrjnwKiq","stattrak":true,"normal_prices":[409,24,18,14,13],"normal_volume":[71,245,175,61,83],"stattrak_prices":[235,38,14,14,15],"stattrak_volume":[99,183,131,72,86]},"690":{"index":690,"max":0.63,"min":0,"rarity":5,"name":"Stymphalian","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7d5Of2DBmacyO94j-NgXS2gqhEutDWR1Iz6cnqXOA8mD5shTOEPuhm-moHlZLnj4gLWjdhEzimr2n8bvC5q4e8cEf1yYjdCpmM","stattrak":true,"normal_prices":[1062,438,329,288,344],"normal_volume":[274,430,676,25,64],"stattrak_prices":[1413,512,339,382,349],"stattrak_volume":[115,142,194,21,43]},"708":{"index":708,"max":0.55,"min":0,"rarity":3,"name":"Amber Slipstream","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk7uepV7BiMv6sAXWRz-lzj-1gSCGn2x8msm2Dn9-oeSnGbAAiXppxE-cMs0Prm9a0Mrnqtg2L3dgQzS2vh3lXrnE8QYlxFJI","stattrak":true,"normal_prices":[136,27,34,26,23],"normal_volume":[359,117,219,41,48],"stattrak_prices":[134,50,30,40,32],"stattrak_volume":[119,100,142,15,10]},"727":{"index":727,"max":0.5,"min":0,"rarity":4,"name":"Midnight Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7f6hZ6lSIvyGC1icyOl-pK8-FnDrlE8k62uAytipeSqRaFcoC8BwQbIM5xjtwdWzMr6ztAPd2YNA02yg2RS7P3lf","normal_prices":[37560,44055,34791,43654,49405],"normal_volume":[99,9,19,3,4]},"73":{"index":73,"max":0.14,"min":0,"rarity":3,"name":"Wings","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6fevfKxoMuOsD3KX_uJ_t-l9AX7qzE5_sGmEw9uoJCrBOgMoDsN2ReMI4EPrm4fvY-m04ASPgt8Uz3_gznQePzx-iqc","stattrak":true,"normal_prices":[1690,1601,0,0,0],"normal_volume":[330,54,0,0,0],"stattrak_prices":[2071,2184,0,0,0],"stattrak_volume":[296,49,0,0,0]},"740":{"index":740,"max":1,"min":0,"rarity":1,"name":"Navy Murano","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk4ue8aapiH_KfG2KvzedxuPUnF3rgl0R-5DjXn4z7Ii_GbQEhC5VzQrNZuxW5l9ayY77g4gDa2tgWmzK-0H0vbAfLTQ","normal_prices":[1764,409,301,269,147],"normal_volume":[134,94,64,81,30]},"758":{"index":758,"max":0.5,"min":0,"rarity":4,"name":"Flame Jörmungandr","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k5f28ZZtiMvGdCWKvzedxuPUnTn7glkly423Xy4yoJHOWaFR0A5YlQrNc5xXrm93hZejntQWN3YNCzzK-0H2szzSoFw","normal_prices":[36637,39388,40710,0,65336],"normal_volume":[75,15,4,0,1]},"779":{"index":779,"max":0.5,"min":0,"rarity":4,"name":"Random Access","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7Pu8a7FkNPKcD3WU_uFkse9uSha_nBovp3PcnImuIi2RbA8iD5B5FLYNtULqwdLuYbvg4w2Ng9hAziSvjnhBv31v_a9cBkz61Qws","souvenir":true,"normal_prices":[909,148,73,89,85],"normal_volume":[257,230,248,28,41]},"794":{"index":794,"max":0.6,"min":0,"rarity":1,"name":"Sweeper","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4ve9YJt-IfaWGn6Sze91u95lRi67gVNysGXWwt78dXmVawMnC5t5EeFftkTpk9S1Zu6xswbai4MWyy-rjngb8G81tGCvNXTC","souvenir":true,"normal_prices":[7,3,1,1,1],"normal_volume":[829,2674,808,56,115]},"823":{"index":823,"max":0.5,"min":0,"rarity":4,"name":"Sand Storm","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7dsLvSsHXOf0-NJvOhuRz39kxtzt2jcyNqsdy2TawElApolF7Zf50bsl9fvZuq05waMi44XyX3-2zQJsHjlDs_LaQ","souvenir":true,"normal_prices":[5683,2722,1990,5369,2876],"normal_volume":[77,48,42,1,2]},"845":{"index":845,"max":1,"min":0.05,"rarity":5,"name":"Momentum","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV6liLfWdGnKd_uJ_t-l9ASi2zUp042SBno6sICrFbFMnCZR5EedftkPqk9ayMr_j71fXjo8XmXrgznQeFjVtTWM","stattrak":true,"normal_prices":[4466,1269,502,487,480],"normal_volume":[86,299,633,119,129],"stattrak_prices":[6006,1743,704,738,734],"stattrak_volume":[45,103,124,59,65]},"886":{"index":886,"max":0.7,"min":0,"rarity":4,"name":"Arctic Wolf","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV7NlKeSWCGaextF6ueZhW2frxxtxsGrTw46sI33BOAUiXMElFO4L50O9xNLvNOyz4lDd3olMzX6skGoXude_sLiC","stattrak":true,"normal_prices":[1420,357,178,289,181],"normal_volume":[261,203,357,56,73],"stattrak_prices":[1858,874,346,620,360],"stattrak_volume":[87,118,131,20,18]},"9":{"index":9,"max":0.8,"min":0.06,"rarity":5,"name":"Bengal Tiger","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk-_upbbZSLPmUBnPeme1z5LU7F3_gxk9xtj6Em4yveCrDOgIiW5cjRrIL5hnuk9TkM-rr5hue1dxoTofnTA","stattrak":true,"normal_prices":[9603,3165,1277,1446,1340],"normal_volume":[35,93,78,11,18],"stattrak_prices":[11773,3965,1873,2137,1985],"stattrak_volume":[12,23,22,6,17]},"913":{"index":913,"max":0.4,"min":0,"rarity":5,"name":"Death by Puppy","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7uepV6BoIeSbMWWJ_up5t-ZwcCW6khUz_W7RnNegdyqRPAcpDZdwQOAO5xW4w4C0ZemwtgHYjoNHniX6iSsd7Cx1o7FVmQFtzuc","stattrak":true,"normal_prices":[1527,447,352,791,0],"normal_volume":[210,154,70,4,0],"stattrak_prices":[2066,741,787,1172,0],"stattrak_volume":[66,69,29,13,0]},"927":{"index":927,"max":0.48,"min":0,"rarity":2,"name":"Spalted Wood","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6-C3V7NiL_SsAm6Xyfo44-JsFiy3wBkl6miBmNz9IHrEbAZxDZciEO8Kuxbtm93gP-Lgtlbe35UFk3vZ4ja9kg","souvenir":true,"normal_prices":[249,101,51,113,376],"normal_volume":[167,97,37,64,27]},"942":{"index":942,"max":0.8,"min":0,"rarity":3,"name":"Tom Cat","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7BlNf6XC3WD1eFkvd5lRi67gVMm5GrRzt2sJXqUag4kDZAmFuBYtUTslIXuPui2s1Hb2o4Wyir2hy1N8G81tF6C_jtH","stattrak":true,"normal_prices":[101,17,23,20,15],"normal_volume":[435,231,567,45,125],"stattrak_prices":[131,26,19,27,14],"stattrak_volume":[226,253,174,44,41]},"995":{"index":995,"max":0.6,"min":0,"rarity":1,"name":"Surveillance","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k5vy6bahhKfeWAGSV_ulktfhWQyC0nQlp42TWmI2seXOUb1UgXJp3F-ZbsxixltbiNLvl7gza3olCyST-i3wa6zErvbj9bg91yA","normal_prices":[171,90,79,84,81],"normal_volume":[643,315,350,88,55]}}},"9":{"name":"AWP","sticker_amount":5,"type":"Weapons","paints":{"1026":{"index":1026,"max":0.08,"min":0,"rarity":6,"name":"Fade","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_CNk7uW-V6JsJPWsAm6Xyfo45-c5GXDnwB534DuEwtuoIHOfaAYiAsYjF-QItUaxmoC0MO_h5ALcjJUFk3sEzfdk4w","normal_prices":[90343,96654,0,0,0],"normal_volume":[535,24,0,0,0]},"1029":{"index":1029,"max":0.6,"min":0,"rarity":5,"name":"Silk Tiger","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k-_upbbZ-H_KfG2KvzedxuPUnTXywkU1x4DvXztz_dH2WZlQkXMEhFrFY5BDrm9HhMurq4AfdiYxAnDK-0H0fPMTeBA","normal_prices":[72190,37810,17488,20071,20922],"normal_volume":[142,62,57,2,4]},"1058":{"index":1058,"max":0.44,"min":0,"rarity":4,"name":"POP AWP","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk-_etYKpiN_GBMXWHw9F6ueZhW2fikxgjtmjTzd-ucXOXbgEiCZN1QOcKtka_l9PgY7jrswbe2t5NyC_6kGoXuXrlRr9k","normal_prices":[6863,1029,764,905,0],"normal_volume":[486,617,330,51,0]},"1144":{"index":1144,"max":0.7,"min":0,"rarity":6,"name":"Chromatic Aberration","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6dlMv-eD1iAyOB9j-1gSCGn2x50tT_Tm9f4cXORPA4oWJckFOMLtha_x9e1Nu-35QfbjYtHyiythitXrnE8ylr09zg","stattrak":true,"normal_prices":[6976,3591,2996,3046,2831],"normal_volume":[547,979,992,81,76],"stattrak_prices":[4904,2908,2402,3112,2447],"stattrak_volume":[250,237,224,17,62]},"1170":{"index":1170,"max":1,"min":0,"rarity":6,"name":"Chrome Cannon","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0OarZbRoMvWXMWuZxuZi_uM6SXngxR5-smTXw4ugIi6RbVcpXsN1ELUDtxPrktOyNL7h4g2P2tpbjXKpKIbjbD4","stattrak":true,"normal_prices":[8488,3648,2678,2415,2366],"normal_volume":[500,1241,1896,411,290],"stattrak_prices":[17047,6264,3957,3244,3233],"stattrak_volume":[139,238,279,92,84]},"1206":{"index":1206,"max":1,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0OK8Yap5M-SBC2ad_uJ_t-l9AX_qlk4k5GyAzo6ocC-QZgZxX8AjEbZY5xnrxtPjM7vnsgGIj9oTmXngznQeg3pfcPs","stattrak":true,"normal_prices":[23420,7255,4484,4033,3972],"normal_volume":[613,1646,2695,560,342],"stattrak_prices":[42144,13382,7715,6084,5818],"stattrak_volume":[174,340,393,128,117]},"1213":{"index":1213,"max":1,"min":0,"rarity":6,"name":"LongDog","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0P6hZqNpL_esAm6Xyfo44rNtFi_kxhx-4WvWnImoJ3mTblJzDJFzR-QP4EK4m9XjZbvk7lCLiZUFk3u2JoT1UA","souvenir":true,"normal_prices":[90011,25806,14195,7511,6705],"normal_volume":[200,329,402,251,206]},"1222":{"index":1222,"max":0.8,"min":0,"rarity":5,"name":"Duality","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6hkLfKcMXSewOVzj-1gSCGn20p_62-HnN7_cH-XblQjDZYhR-FZsETqmoXjYry2s1DX3d5AyyT62ipXrnE8bpg5yZk","stattrak":true,"normal_prices":[1358,519,297,283,272],"normal_volume":[1238,1914,3397,132,573],"stattrak_prices":[2335,959,580,682,562],"stattrak_volume":[301,432,601,58,257]},"1239":{"index":1239,"max":0.75,"min":0,"rarity":3,"name":"Black Nile","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V7d5Mv-dC1icyOl-pK89Gyvhlhsit2-BwoyrICmWPQcmDpEkQOdeskOxwNKzN7vm4VeP2oMR02yg2Z2CmmVC","souvenir":true,"normal_prices":[3466,496,289,333,324],"normal_volume":[489,654,781,73,522]},"1280":{"index":1280,"max":0.75,"min":0,"rarity":5,"name":"Green Energy","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jde0Pi7ZbRSLPmdC1icyOl-pK8wTCzlxkl_tm7Vz9j6cnLEOA91C5siTOBYsRWwxtC2MOzj5g2I3Y4W02yg2VFgswq6","normal_prices":[5735,2121,1015,925,727],"normal_volume":[546,879,1329,71,117]},"1324":{"index":1324,"max":0.501961,"min":0,"rarity":3,"name":"Arsenic Spill","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk-fO8YadsLf-sHW6d0eJzj_hsQyW8giIrujqNjsH8eS2ePANxXJN3Q-NbtxDtkNexMeri5lfd3doTnij7hiJMuy5jtutQT-N7rTqLZycV","normal_prices":[107,44,27,30,34],"normal_volume":[1487,383,524,75,27]},"1346":{"index":1346,"max":1,"min":0,"rarity":5,"name":"Ice Coaled","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0PutbZtuL_GfC2OvzedxuPUnS3u3wR8lsTzTn4qqcXuXOlQmCpUiQOdYtUG_ltXgP-u04wWL3Y9NnjK-0H2dw8uldQ","stattrak":true,"normal_prices":[3085,1456,743,549,455],"normal_volume":[502,1242,949,287,448],"stattrak_prices":[7038,3098,1533,1153,1111],"stattrak_volume":[124,204,211,75,131]},"1356":{"index":1356,"max":1,"min":0,"rarity":5,"name":"The End","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf7i1e0PC5V7BlJc-WAGOvwPlmj-1gSCGn20hytjzSy4r_cy_FZlB1DJdxE7QN50bql4LuNL7g4gTYj9lGnir9iyJXrnE8dWNkiOM","normal_prices":[8126,2839,1634,1470,1416],"normal_volume":[122,237,377,61,99]},"137":{"index":137,"max":1,"min":0,"rarity":5,"name":"Crakow!","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk4OSrerRsM-OsDXWRyuFhj-B-Xxa_nBovp3OAyd34cC2VOgUoCZYmF7UCthm_kdGyMry05wHa3t0XxH_23XhP7y9q_a9cBncOjtH9","souvenir":true,"normal_prices":[12331,5113,2621,2099,2066],"normal_volume":[662,857,1384,313,299]},"1378":{"index":1378,"max":0.7,"min":0,"rarity":4,"name":"Exothermic","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Tte0PSneqF6L-KYMXeR1e1-tfJWQyC0nQlp4W7Xzd-qcH_DO1N0W5FzQuEP5kW8ltfnM-q24wzYgt0RmC_7jSlL5jErvbgX7dER8Q","normal_prices":[1559,707,424,448,347],"normal_volume":[407,662,715,45,133]},"1422":{"index":1422,"max":1,"min":0,"rarity":6,"name":"Queen's Gambit","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0OO7baFjM8-UD2qSyPpJvOhuRz39kUpw42zWntiteSiVaQYhCJJzEeIOukSwl4XmPrmw4VHXjtpExC_33zQJsHjNnJgjQA","stattrak":true,"normal_prices":[26407,11698,5956,5409,4153],"normal_volume":[190,494,449,209,214],"stattrak_prices":[47088,16426,8228,5739,5175],"stattrak_volume":[67,122,111,29,34]},"163":{"index":163,"max":0.8,"min":0,"rarity":6,"name":"CMYK","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk5vyqbbRoLvSWMWaH0dF6ueZhW2e1zElxtmzQmIv8J3qQalRzW5t0RrYOsBCwlte2Mbmw5AbXiYlAnnn4kGoXuYBQOb0Q","normal_prices":[101820,41162,22910,18359,13289],"normal_volume":[123,149,211,34,77]},"174":{"index":174,"max":0.28,"min":0.06,"rarity":5,"name":"BOOM","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk7f6vZZt-Kf2DAmKvzedxuPUnTX7mkxhy62iDzYqhdiqXbw4oWZEkE-IDsRa9lIXlMejktFOMi49MmDK-0H2AgUnw_w","stattrak":true,"normal_prices":[43800,14996,10968,0,0],"normal_volume":[69,742,209,0,0],"stattrak_prices":[72140,21851,18443,0,0],"stattrak_volume":[28,161,45,0,0]},"181":{"index":181,"max":0.3,"min":0.06,"rarity":5,"name":"Corticera","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk6fO4bahsH_GEHlicyOl-pK8xTSzqwU1-5jjWno6hJHyeOg91A5R2TOEOtRS-kIG2ZeO25lDYg90U02yg2USK57Qn","stattrak":true,"normal_prices":[20142,2562,2332,0,0],"normal_volume":[90,676,246,0,0],"stattrak_prices":[11905,4497,4138,0,0],"stattrak_volume":[47,149,57,0,0]},"212":{"index":212,"max":0.12,"min":0,"rarity":5,"name":"Graphite","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k7OC7ZbRhJc-RHGaGztF6ueZhW2e2k0l2sW_WzN7_cS6SbgV1CsF3TOEI4EOwloGzNLzg5g3fiIpHxC78kGoXuTqeOjwH","stattrak":true,"normal_prices":[15417,16254,0,0,0],"normal_volume":[1132,115,0,0,0],"stattrak_prices":[35201,50596,0,0,0],"stattrak_volume":[201,10,0,0,0]},"227":{"index":227,"max":0.4,"min":0,"rarity":5,"name":"Electric Hive","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk5_u4bZthKfebGinElLtytLVtG362x05wsWyByt2scHrGOgd1WZJ1ROBc4xi_ld3gNO7g-UWA3Kwc2RVq","stattrak":true,"normal_prices":[12327,3424,3335,4902,0],"normal_volume":[556,584,443,27,0],"stattrak_prices":[10404,6768,6074,9276,0],"stattrak_volume":[154,114,81,6,0]},"251":{"index":251,"max":0.5,"min":0.08,"rarity":4,"name":"Pit Viper","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk_PyvY6F-K_mdMWuZxuZi_rQ_GS3mxRwk4jvTyNv6eC-RPQV1W5AlTOZb4xLtw9fuNriw51Hd3otbjXKp4cSTTIs","souvenir":true,"normal_prices":[0,143,82,118,101],"normal_volume":[0,2964,2776,204,292]},"259":{"index":259,"max":0.4,"min":0.1,"rarity":5,"name":"Redline","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6diIuKSMWuZxuZi_rUxHS3lzUwm5DjWy976dSiRagd1WJB1RLQP4RK-mtazM-3itQeL2INbjXKpw2eVIZ0","stattrak":true,"normal_prices":[0,6481,3519,4978,0],"normal_volume":[0,1772,1933,26,0],"stattrak_prices":[0,13994,8015,11999,0],"stattrak_volume":[0,307,357,5,0]},"279":{"index":279,"max":1,"min":0.18,"rarity":6,"name":"Asiimov","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6V-Kf2cGFidxOp_pewnF3nhxEt0sGnSzN76dH3GOg9xC8FyEORftRe-x9PuYurq71bW3d8UnjK-0H0YSTpMGQ","stattrak":true,"normal_prices":[0,0,10948,8679,7260],"normal_volume":[0,0,2983,606,1582],"stattrak_prices":[0,0,22055,17513,14799],"stattrak_volume":[0,0,569,116,279]},"30":{"index":30,"max":0.8,"min":0.06,"rarity":3,"name":"Snake Camo","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf7jJk_PyvY6FSLPmUBnPexb10sbk8HXixk09-smqEyIytci7GPwFxCZt0RLMLtBG4xNHuPr-3tRue1dy_ONei3w","normal_prices":[42000,9677,9449,10107,9710],"normal_volume":[8,30,42,5,17]},"344":{"index":344,"max":0.7,"min":0,"rarity":6,"name":"Dragon Lore","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk4veqYaF7IfysCnWRxuF4j-B-Xxa_nBovp3Pdwtj9cC_GaAd0DZdwQu9fuhS4kNy0NePntVTbjYpCyyT_3CgY5i9j_a9cBkcCWUKV","souvenir":true,"normal_prices":[1037753,860650,635415,566791,480085],"normal_volume":[255,115,137,4,25]},"395":{"index":395,"max":0.2,"min":0.1,"rarity":6,"name":"Man-o'-war","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k7uW-V6NhL-KKMWuZxuZi_uM5HXG3xhh_t2iBnI2ucn3EZwEjDpJ0Q-dY5EPrxNTiYevj7gXa2IhbjXKpQIFOiXU","stattrak":true,"normal_prices":[0,10088,10625,0,0],"normal_volume":[0,807,100,0,0],"stattrak_prices":[0,10865,12702,0,0],"stattrak_volume":[0,229,22,0,0]},"424":{"index":424,"max":0.45,"min":0,"rarity":4,"name":"Worm God","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DNk7uW-V7B6Kf6WMWuZxuZi_uRoGH3iw0wh4j7cnt6ucSqSZwUkCMB5TLIPsES_kNbuYeOwtgXai4NbjXKpZ4kj0o0","stattrak":true,"normal_prices":[418,269,222,228,0],"normal_volume":[1822,1992,1752,146,0],"stattrak_prices":[834,583,541,585,0],"stattrak_volume":[489,446,451,52,0]},"446":{"index":446,"max":1,"min":0,"rarity":6,"name":"Medusa","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk4veqfbdsH_GEHlicyOl-pK85TC23wk12tWSGnNr6JXqRPVUnA5J5RLIKshS-l4HuYbji7lfajdgU02yg2bOcOBD3","normal_prices":[449777,275836,193090,181831,187508],"normal_volume":[42,60,64,45,37]},"451":{"index":451,"max":0.5,"min":0,"rarity":2,"name":"Sun in Leo","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk9f2qYaVucs-fB2CY1aAnteVqHCzgkRsh4TnXyY2vIH-QaVcpA5F3TOdct0S_wNO0Zri05wbXlcsbmn9hB4gb","normal_prices":[8685,2664,2182,2414,2716],"normal_volume":[1107,1066,472,29,46]},"475":{"index":475,"max":1,"min":0,"rarity":6,"name":"Hyper Beast","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6x0MPWBMWWVwP1ij-1gSCGn20pxtm_WzNuoeHKeaFAnCZUiTe5bt0HqxofmZOrm5Q2IjoMQzS_5iShXrnE8NzWs__c","stattrak":true,"normal_prices":[17394,4864,3297,3336,3039],"normal_volume":[220,496,610,137,226],"stattrak_prices":[27951,13218,7190,6627,6837],"stattrak_volume":[89,90,122,36,42]},"51":{"index":51,"max":0.08,"min":0,"rarity":6,"name":"Lightning Strike","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k4_upYLBjKf6UMWaH0dF6ueZhW2frwU1_sW2EmNyvc32RZwMpCpcjQ-EJ4xbtmt3gYezk4wzb3tpAy3mrkGoXubsGIfVN","stattrak":true,"normal_prices":[50128,52018,0,0,0],"normal_volume":[864,28,0,0,0],"stattrak_prices":[89233,98212,0,0,0],"stattrak_volume":[179,5,0,0,0]},"525":{"index":525,"max":1,"min":0,"rarity":5,"name":"Elite Build","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6lsM-SWHH6vzedxuPUnSnHmk0Qh4G6HmN-scXmSaQRxXJpwRuZYsxTqxtTnM7nl4gTW2dlFyjK-0H0d8XeEBg","stattrak":true,"normal_prices":[9215,2089,1250,1249,1270],"normal_volume":[141,391,509,162,178],"stattrak_prices":[8481,4478,2655,3210,3088],"stattrak_volume":[86,89,102,16,72]},"584":{"index":584,"max":0.4,"min":0,"rarity":4,"name":"Phobos","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V7RlL_KcHVicyOl-pK84GXHmwk115D6GzdqudHyUbwRxW5R3ROZbtEG8wYDiY7-x5VOKgotB02yg2bdJjfAf","stattrak":true,"normal_prices":[509,229,211,423,0],"normal_volume":[1162,1337,971,24,0],"stattrak_prices":[786,548,523,1284,0],"stattrak_volume":[343,321,192,37,0]},"640":{"index":640,"max":0.55,"min":0,"rarity":5,"name":"Fever Dream","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7R-OfObAXeR1eZJvOhuRz39kE1w4jiAzNiod3qTOgcgXpAlQ-ML5hjqxtHjZOrrtlHWit9EyCj9iDQJsHhCZP-wUg","stattrak":true,"normal_prices":[2372,1392,1243,1326,1295],"normal_volume":[913,827,600,44,104],"stattrak_prices":[3255,2576,2204,2489,2546],"stattrak_volume":[259,193,129,20,22]},"662":{"index":662,"max":0.5,"min":0,"rarity":6,"name":"Oni Taiji","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6xsLv6KD1icyOl-pK9vGCqwkx524G_WnNmsInyXOAVyXJJ0TbNb5EOxxIflYbzj4gDdiNlC02yg2XaKgrAq","stattrak":true,"normal_prices":[68022,37355,26817,29477,36643],"normal_volume":[211,223,190,11,8],"stattrak_prices":[90192,63065,36214,58232,60471],"stattrak_volume":[73,35,45,3,4]},"691":{"index":691,"max":0.64,"min":0,"rarity":5,"name":"Mortis","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6BoIeSbMWuZxuZi_rNtHiuwwRwismWEnNn8JymSZgUiDpd3Ru9ZsxG-xNy2NLzn41DWg41bjXKp5oOAt0A","stattrak":true,"normal_prices":[1795,483,338,411,348],"normal_volume":[630,1313,2005,148,236],"stattrak_prices":[1806,909,699,865,753],"stattrak_volume":[214,301,462,29,74]},"718":{"index":718,"max":0.5,"min":0,"rarity":4,"name":"PAW","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k7uW-V7RsN-CSGVicyOl-pK84Tn-3xkgltWWGnI39c3LDaA4lD5V0QO8It0LqktfuMOrq7gDajYJG02yg2bUm5WIV","stattrak":true,"normal_prices":[627,323,227,251,287],"normal_volume":[2337,1996,1503,140,177],"stattrak_prices":[1339,701,635,618,694],"stattrak_volume":[483,409,350,63,60]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":2,"name":"Safari Mesh","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf7jJk4ve9YJt5If6sAm6Xyfo45uU7HS_nzU914z_dzImtdXyQZlMjCJIkFOUI5ES9k9PkPriz71bdiJUFk3tlgygeXw","souvenir":true,"normal_prices":[1324,29,11,14,13],"normal_volume":[211,1335,2001,222,3037]},"736":{"index":736,"max":0.6,"min":0,"rarity":6,"name":"The Prince","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6FjIf2WAlicyOl-pK9qHXHkw093sGvTw4uqJSnDPQAkCsNyEbZcshiwxtK0Yumz4gbX2o9C02yg2f5NtC8l","normal_prices":[266604,211653,185889,215787,186293],"normal_volume":[124,70,96,4,14]},"756":{"index":756,"max":0.6,"min":0,"rarity":6,"name":"Gungnir","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6N4LvedB3WvzedxuPUnHnjnzUl0sWrdztitI3rDZgJzAsZ1QOFY4UPqldDgMO_l41HXit9AmTK-0H227dAsvQ","normal_prices":[1082881,892907,724155,734999,692448],"normal_volume":[228,79,116,4,17]},"788":{"index":788,"max":0.83,"min":0,"rarity":3,"name":"Acheron","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk4eetZKFsMs-ABXKczf1JouRtTSWmkCIrujqNjsH4eC-ROFMkDccjR7EDsBCxlN2xZu7jtlaNj4pMxSr8hiIc53tt67kHT-N7rafi4HxI","souvenir":true,"normal_prices":[2199,185,73,115,57],"normal_volume":[377,842,1537,35,1229]},"803":{"index":803,"max":0.5,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6poL_6cB3WvzedxuPUnHirrxR4l423SyI39I3KXPwdxWZclQeNZ5EXskYfnNeyw71OMi9lNzDK-0H3r66pOTw","stattrak":true,"normal_prices":[5091,4048,3826,3850,4047],"normal_volume":[1120,1150,892,41,44],"stattrak_prices":[8620,6884,5263,5817,5829],"stattrak_volume":[325,175,180,13,17]},"819":{"index":819,"max":0.6,"min":0,"rarity":6,"name":"Desert Hydra","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6x0JOKSMWuZxuZi_uA7Syu2w0Ry4mqGzYypeH3DaAEnCpt0FuAK4RjrkoDgMb7mtFfcit5bjXKpX4RFZcA","souvenir":true,"normal_prices":[186526,140092,107278,114912,115497],"normal_volume":[239,144,160,15,62]},"838":{"index":838,"max":1,"min":0,"rarity":4,"name":"Atheris","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7JkMPWBMWuZxuZi_rZsS3zgzU8isW3dnIr6eHKfPVAhDpojEe9YsUW4xta1Nuzm5FDci4NbjXKpmWVQppo","stattrak":true,"normal_prices":[5517,783,477,368,349],"normal_volume":[396,1579,2136,401,833],"stattrak_prices":[3825,1655,888,740,727],"stattrak_volume":[201,304,402,144,281]},"84":{"index":84,"max":0.8,"min":0.06,"rarity":4,"name":"Pink DDPAT","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk6_a-abBSMPmdBVicyOl-pK9qHXC2zUpz5DiBn9arJCmXOFd0DZpxQOUDtBC6wNK0MOzl4wXWjYpG02yg2c9nQ1pb","souvenir":true,"normal_prices":[19251,6007,3038,3615,3664],"normal_volume":[41,272,192,24,65]},"887":{"index":887,"max":1,"min":0,"rarity":6,"name":"Containment Breach","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7JkMuWAMWuZxuZi_rQ6SXq1xURysj_Vw4uhJHOVPQ8oCZt4QrRbtRi6ldPlPu_g4FHaiYNbjXKpcPI_17A","stattrak":true,"normal_prices":[58574,16279,7973,5046,4930],"normal_volume":[102,263,484,117,106],"stattrak_prices":[82678,31724,16251,11485,12230],"stattrak_volume":[32,58,77,34,18]},"917":{"index":917,"max":0.7,"min":0.01,"rarity":6,"name":"Wildfire","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7NkLPSVB3WV_uJ_t-l9AX7rxhl-tmzSwomtdC6TPwQnW5UkR-YD5kK-ltCzP-Ox4FfXiNoQyyrgznQeu9L0PzQ","stattrak":true,"normal_prices":[18768,6574,4344,4861,4211],"normal_volume":[316,787,1069,43,123],"stattrak_prices":[27731,14579,9314,9176,9683],"stattrak_volume":[111,140,154,21,25]},"943":{"index":943,"max":0.7,"min":0.05,"rarity":3,"name":"Capillary","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7JoKf6sAm6Xyfo44bE5HSrmlx5z4GTUzt__I3yebQAgA8R3FuFfsBTqx9W2Y7vq5lbfjZUFk3ugIlCuqg","stattrak":true,"normal_prices":[987,100,60,85,58],"normal_volume":[197,1313,2201,169,232],"stattrak_prices":[1055,266,180,258,175],"stattrak_volume":[61,416,697,64,150]},"975":{"index":975,"max":1,"min":0,"rarity":4,"name":"Exoskeleton","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6F1L-OYC2uV1eF4j-1gSCGn20km5zyEmd2qc3uWZwcnA5MiELIJtxa_w9OyN-nh5wKKj4kTyn78hyNXrnE83OTew2I","stattrak":true,"normal_prices":[6036,1188,509,428,434],"normal_volume":[308,464,608,142,357],"stattrak_prices":[3752,1401,1029,1074,1038],"stattrak_volume":[161,218,231,60,110]}}}}} diff --git a/BlueLaminate/captures/003_csfloat.com_api_v1_listings_limit_40_def_index_16_paint_index_985.json b/BlueLaminate/captures/003_csfloat.com_api_v1_listings_limit_40_def_index_16_paint_index_985.json new file mode 100644 index 0000000..39c392a --- /dev/null +++ b/BlueLaminate/captures/003_csfloat.com_api_v1_listings_limit_40_def_index_16_paint_index_985.json @@ -0,0 +1 @@ +{"code":1,"message":"You need to be logged in to search listings"} diff --git a/BlueLaminate/captures/004_csfloat.com_api_v1_meta_location.json b/BlueLaminate/captures/004_csfloat.com_api_v1_meta_location.json new file mode 100644 index 0000000..6206d3f --- /dev/null +++ b/BlueLaminate/captures/004_csfloat.com_api_v1_meta_location.json @@ -0,0 +1 @@ +{"inferred_location":{"short":"US","long":"United States","currency":"USD"}} diff --git a/BlueLaminate/captures/004_csfloat.com_api_v1_schema.json b/BlueLaminate/captures/004_csfloat.com_api_v1_schema.json new file mode 100644 index 0000000..5821350 --- /dev/null +++ b/BlueLaminate/captures/004_csfloat.com_api_v1_schema.json @@ -0,0 +1 @@ +{"collections":[{"key":"set_inferno","name":"The Inferno Collection","has_souvenir":true},{"key":"set_overpass","name":"The Overpass Collection","has_souvenir":true},{"key":"set_baggage","name":"The Baggage Collection"},{"key":"set_norse","name":"The Norse Collection"},{"key":"set_op10_ct","name":"The Control Collection"},{"key":"set_community_31","name":"The Recoil Collection","has_crate":true},{"key":"set_community_36","name":"The Genesis Collection","has_crate":true},{"key":"set_lake","name":"The Lake Collection","has_souvenir":true},{"key":"set_dust","name":"The Dust Collection"},{"key":"set_office","name":"The Office Collection"},{"key":"set_italy","name":"The Italy Collection","has_souvenir":true},{"key":"set_community_11","name":"The Wildfire Collection","has_crate":true},{"key":"set_vertigo_2021","name":"The 2021 Vertigo Collection","has_souvenir":true},{"key":"set_community_29","name":"The Operation Riptide Collection","has_crate":true},{"key":"set_community_37","name":"The Dead Hand Collection","has_crate":true},{"key":"set_community_9","name":"The Shadow Collection","has_crate":true},{"key":"set_community_22","name":"The Prisma Collection","has_crate":true},{"key":"set_timed_drops_cool","name":"The Ascent Collection"},{"key":"set_timed_drops_exuberant","name":"The Harlequin Collection"},{"key":"set_safehouse","name":"The Safehouse Collection","has_souvenir":true},{"key":"set_community_17","name":"The Operation Hydra Collection","has_crate":true},{"key":"set_community_18","name":"The Spectrum 2 Collection","has_crate":true},{"key":"set_community_25","name":"The Prisma 2 Collection","has_crate":true},{"key":"set_weapons_i","name":"The Arms Deal Collection","has_crate":true},{"key":"set_community_7","name":"The Chroma 2 Collection","has_crate":true},{"key":"set_train_2021","name":"The 2021 Train Collection"},{"key":"set_graphic_design","name":"The Graphic Design Collection"},{"key":"set_timed_drops_warm","name":"The Radiant Collection"},{"key":"set_kimono","name":"The Rising Sun Collection"},{"key":"set_gamma_2","name":"The Gamma 2 Collection","has_crate":true},{"key":"set_blacksite","name":"The Blacksite Collection","has_souvenir":true},{"key":"set_op10_ancient","name":"The Ancient Collection","has_souvenir":true},{"key":"set_community_21","name":"The Danger Zone Collection","has_crate":true},{"key":"set_community_24","name":"The CS20 Collection","has_crate":true},{"key":"set_community_30","name":"The Dreams \u0026 Nightmares Collection","has_crate":true},{"key":"set_community_2","name":"The Phoenix Collection","has_crate":true},{"key":"set_community_5","name":"The Vanguard Collection","has_crate":true},{"key":"set_dust_2","name":"The Dust 2 Collection","has_souvenir":true},{"key":"set_gods_and_monsters","name":"The Gods and Monsters Collection"},{"key":"set_community_10","name":"The Revolver Case Collection","has_crate":true},{"key":"set_community_35","name":"The Fever Collection","has_crate":true},{"key":"set_mirage_2021","name":"The 2021 Mirage Collection","has_souvenir":true},{"key":"set_aztec","name":"The Aztec Collection"},{"key":"set_militia","name":"The Militia Collection"},{"key":"set_nuke","name":"The Nuke Collection","has_souvenir":true},{"key":"set_chopshop","name":"The Chop Shop Collection"},{"key":"set_inferno_2","name":"The 2018 Inferno Collection","has_souvenir":true},{"key":"set_dust_2_2021","name":"The 2021 Dust 2 Collection","has_souvenir":true},{"key":"set_community_32","name":"The Revolution Collection","has_crate":true},{"key":"set_community_33","name":"The Kilowatt Collection","has_crate":true},{"key":"set_community_3","name":"The Huntsman Collection","has_crate":true},{"key":"set_assault","name":"The Assault Collection"},{"key":"set_train","name":"The Train Collection","has_souvenir":true},{"key":"set_community_8","name":"The Falchion Collection","has_crate":true},{"key":"set_nuke_2","name":"The 2018 Nuke Collection","has_souvenir":true},{"key":"set_xraymachine","name":"The X-Ray Collection","has_crate":true},{"key":"set_community_16","name":"The Spectrum Collection","has_crate":true},{"key":"set_community_19","name":"The Clutch Collection","has_crate":true},{"key":"set_community_6","name":"The Chroma Collection","has_crate":true},{"key":"set_bank","name":"The Bank Collection"},{"key":"set_cache","name":"The Cache Collection","has_souvenir":true},{"key":"set_community_28","name":"The Snakebite Collection","has_crate":true},{"key":"set_anubis","name":"The Anubis Collection","has_souvenir":true},{"key":"set_overpass_2024","name":"The Overpass 2024 Collection","has_souvenir":true},{"key":"set_timed_drops_achroma","name":"The Achroma Collection"},{"key":"set_train_2025","name":"The Train 2025 Collection","has_souvenir":true},{"key":"set_community_4","name":"The Breakout Collection","has_crate":true},{"key":"set_community_12","name":"The Chroma 3 Collection","has_crate":true},{"key":"set_community_13","name":"The Gamma Collection","has_crate":true},{"key":"set_stmarc","name":"The St. Marc Collection"},{"key":"set_realism_camo","name":"The Sport \u0026 Field Collection"},{"key":"set_timed_drops_neutral","name":"The Boreal Collection"},{"key":"set_xpshop_wpn_01","name":"Limited Edition Item"},{"key":"set_esports_ii","name":"The eSports 2013 Winter Collection","has_crate":true},{"key":"set_mirage","name":"The Mirage Collection","has_souvenir":true},{"key":"set_community_15","name":"The Glove Collection","has_crate":true},{"key":"set_community_20","name":"The Horizon Collection","has_crate":true},{"key":"set_canals","name":"The Canals Collection"},{"key":"set_community_23","name":"The Shattered Web Collection","has_crate":true},{"key":"set_community_26","name":"The Fracture Collection","has_crate":true},{"key":"set_community_27","name":"The Operation Broken Fang Collection","has_crate":true},{"key":"set_esports","name":"The eSports 2013 Collection","has_crate":true},{"key":"set_weapons_ii","name":"The Arms Deal 2 Collection","has_crate":true},{"key":"set_community_1","name":"The Winter Offensive Collection","has_crate":true},{"key":"set_vertigo","name":"The Vertigo Collection","has_souvenir":true},{"key":"set_bravo_ii","name":"The Alpha Collection"},{"key":"set_cobblestone","name":"The Cobblestone Collection","has_souvenir":true},{"key":"set_bravo_i","name":"The Bravo Collection","has_crate":true},{"key":"set_weapons_iii","name":"The Arms Deal 3 Collection","has_crate":true},{"key":"set_esports_iii","name":"The eSports 2014 Summer Collection","has_crate":true},{"key":"set_op10_t","name":"The Havoc Collection"},{"key":"set_community_34","name":"The Gallery Collection","has_crate":true}],"rarities":[{"key":"uncommon","name":"Industrial Grade","value":2},{"key":"mythical","name":"Restricted","value":4},{"key":"ancient","name":"Covert","value":6},{"key":"immortal","name":"Contraband","value":7},{"key":"common","name":"Consumer Grade","value":1},{"key":"rare","name":"Mil-Spec Grade","value":3},{"key":"legendary","name":"Classified","value":5},{"key":"default","name":"Stock","value":0}],"stickers":{"1":{"market_hash_name":"Sticker | Shooter"},"10":{"market_hash_name":"Sticker | Mountain (Foil)"},"100":{"market_hash_name":"Sticker | Gold ESL Skull (Foil) | Katowice 2014"},"1000":{"market_hash_name":"Sticker | The Bomber (Foil)"},"10000":{"market_hash_name":"Sticker | frozen (Holo) | Budapest 2025"},"10001":{"market_hash_name":"Sticker | frozen (Gold) | Budapest 2025"},"10002":{"market_hash_name":"Sticker | jcobbb | Budapest 2025"},"10003":{"market_hash_name":"Sticker | jcobbb (Embroidered) | Budapest 2025"},"10004":{"market_hash_name":"Sticker | jcobbb (Holo) | Budapest 2025"},"10005":{"market_hash_name":"Sticker | jcobbb (Gold) | Budapest 2025"},"10006":{"market_hash_name":"Sticker | karrigan | Budapest 2025"},"10007":{"market_hash_name":"Sticker | karrigan (Embroidered) | Budapest 2025"},"10008":{"market_hash_name":"Sticker | karrigan (Holo) | Budapest 2025"},"10009":{"market_hash_name":"Sticker | karrigan (Gold) | Budapest 2025"},"1001":{"market_hash_name":"Sticker | The Fragger (Foil)"},"10010":{"market_hash_name":"Sticker | rain | Budapest 2025"},"10011":{"market_hash_name":"Sticker | rain (Embroidered) | Budapest 2025"},"10012":{"market_hash_name":"Sticker | rain (Holo) | Budapest 2025"},"10013":{"market_hash_name":"Sticker | rain (Gold) | Budapest 2025"},"10014":{"market_hash_name":"Sticker | alex666 | Budapest 2025"},"10015":{"market_hash_name":"Sticker | alex666 (Embroidered) | Budapest 2025"},"10016":{"market_hash_name":"Sticker | alex666 (Holo) | Budapest 2025"},"10017":{"market_hash_name":"Sticker | alex666 (Gold) | Budapest 2025"},"10018":{"market_hash_name":"Sticker | esenthial | Budapest 2025"},"10019":{"market_hash_name":"Sticker | esenthial (Embroidered) | Budapest 2025"},"1002":{"market_hash_name":"Sticker | The Leader (Foil)"},"10020":{"market_hash_name":"Sticker | esenthial (Holo) | Budapest 2025"},"10021":{"market_hash_name":"Sticker | esenthial (Gold) | Budapest 2025"},"10022":{"market_hash_name":"Sticker | headtr1ck | Budapest 2025"},"10023":{"market_hash_name":"Sticker | headtr1ck (Embroidered) | Budapest 2025"},"10024":{"market_hash_name":"Sticker | headtr1ck (Holo) | Budapest 2025"},"10025":{"market_hash_name":"Sticker | headtr1ck (Gold) | Budapest 2025"},"10026":{"market_hash_name":"Sticker | kensizor | Budapest 2025"},"10027":{"market_hash_name":"Sticker | kensizor (Embroidered) | Budapest 2025"},"10028":{"market_hash_name":"Sticker | kensizor (Holo) | Budapest 2025"},"10029":{"market_hash_name":"Sticker | kensizor (Gold) | Budapest 2025"},"1003":{"market_hash_name":"Sticker | The Nader (Foil)"},"10030":{"market_hash_name":"Sticker | npl | Budapest 2025"},"10031":{"market_hash_name":"Sticker | npl (Embroidered) | Budapest 2025"},"10032":{"market_hash_name":"Sticker | npl (Holo) | Budapest 2025"},"10033":{"market_hash_name":"Sticker | npl (Gold) | Budapest 2025"},"10034":{"market_hash_name":"Sticker | Kursy | Budapest 2025"},"10035":{"market_hash_name":"Sticker | Kursy (Embroidered) | Budapest 2025"},"10036":{"market_hash_name":"Sticker | Kursy (Holo) | Budapest 2025"},"10037":{"market_hash_name":"Sticker | Kursy (Gold) | Budapest 2025"},"10038":{"market_hash_name":"Sticker | PR | Budapest 2025"},"10039":{"market_hash_name":"Sticker | PR (Embroidered) | Budapest 2025"},"1004":{"market_hash_name":"Sticker | Ninja (Foil)"},"10040":{"market_hash_name":"Sticker | PR (Holo) | Budapest 2025"},"10041":{"market_hash_name":"Sticker | PR (Gold) | Budapest 2025"},"10042":{"market_hash_name":"Sticker | REZ | Budapest 2025"},"10043":{"market_hash_name":"Sticker | REZ (Embroidered) | Budapest 2025"},"10044":{"market_hash_name":"Sticker | REZ (Holo) | Budapest 2025"},"10045":{"market_hash_name":"Sticker | REZ (Gold) | Budapest 2025"},"10046":{"market_hash_name":"Sticker | Tauson | Budapest 2025"},"10047":{"market_hash_name":"Sticker | Tauson (Embroidered) | Budapest 2025"},"10048":{"market_hash_name":"Sticker | Tauson (Holo) | Budapest 2025"},"10049":{"market_hash_name":"Sticker | Tauson (Gold) | Budapest 2025"},"1005":{"market_hash_name":"Sticker | The Pro (Foil)"},"10050":{"market_hash_name":"Sticker | ztr | Budapest 2025"},"10051":{"market_hash_name":"Sticker | ztr (Embroidered) | Budapest 2025"},"10052":{"market_hash_name":"Sticker | ztr (Holo) | Budapest 2025"},"10053":{"market_hash_name":"Sticker | ztr (Gold) | Budapest 2025"},"10054":{"market_hash_name":"Sticker | blameF | Budapest 2025"},"10055":{"market_hash_name":"Sticker | blameF (Embroidered) | Budapest 2025"},"10056":{"market_hash_name":"Sticker | blameF (Holo) | Budapest 2025"},"10057":{"market_hash_name":"Sticker | blameF (Gold) | Budapest 2025"},"10058":{"market_hash_name":"Sticker | Cypher | Budapest 2025"},"10059":{"market_hash_name":"Sticker | Cypher (Embroidered) | Budapest 2025"},"1006":{"market_hash_name":"Sticker | Support (Foil)"},"10060":{"market_hash_name":"Sticker | Cypher (Holo) | Budapest 2025"},"10061":{"market_hash_name":"Sticker | Cypher (Gold) | Budapest 2025"},"10062":{"market_hash_name":"Sticker | fEAR | Budapest 2025"},"10063":{"market_hash_name":"Sticker | fEAR (Embroidered) | Budapest 2025"},"10064":{"market_hash_name":"Sticker | fEAR (Holo) | Budapest 2025"},"10065":{"market_hash_name":"Sticker | fEAR (Gold) | Budapest 2025"},"10066":{"market_hash_name":"Sticker | jambo | Budapest 2025"},"10067":{"market_hash_name":"Sticker | jambo (Embroidered) | Budapest 2025"},"10068":{"market_hash_name":"Sticker | jambo (Holo) | Budapest 2025"},"10069":{"market_hash_name":"Sticker | jambo (Gold) | Budapest 2025"},"1007":{"market_hash_name":"Sticker | Ninjas in Pyjamas | MLG Columbus 2016"},"10070":{"market_hash_name":"Sticker | KRIMZ | Budapest 2025"},"10071":{"market_hash_name":"Sticker | KRIMZ (Embroidered) | Budapest 2025"},"10072":{"market_hash_name":"Sticker | KRIMZ (Holo) | Budapest 2025"},"10073":{"market_hash_name":"Sticker | KRIMZ (Gold) | Budapest 2025"},"10074":{"market_hash_name":"Sticker | AW | Budapest 2025"},"10075":{"market_hash_name":"Sticker | AW (Embroidered) | Budapest 2025"},"10076":{"market_hash_name":"Sticker | AW (Holo) | Budapest 2025"},"10077":{"market_hash_name":"Sticker | AW (Gold) | Budapest 2025"},"10078":{"market_hash_name":"Sticker | BELCHONOKK | Budapest 2025"},"10079":{"market_hash_name":"Sticker | BELCHONOKK (Embroidered) | Budapest 2025"},"1008":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | MLG Columbus 2016"},"10080":{"market_hash_name":"Sticker | BELCHONOKK (Holo) | Budapest 2025"},"10081":{"market_hash_name":"Sticker | BELCHONOKK (Gold) | Budapest 2025"},"10082":{"market_hash_name":"Sticker | Jame | Budapest 2025"},"10083":{"market_hash_name":"Sticker | Jame (Embroidered) | Budapest 2025"},"10084":{"market_hash_name":"Sticker | Jame (Holo) | Budapest 2025"},"10085":{"market_hash_name":"Sticker | Jame (Gold) | Budapest 2025"},"10086":{"market_hash_name":"Sticker | nota | Budapest 2025"},"10087":{"market_hash_name":"Sticker | nota (Embroidered) | Budapest 2025"},"10088":{"market_hash_name":"Sticker | nota (Holo) | Budapest 2025"},"10089":{"market_hash_name":"Sticker | nota (Gold) | Budapest 2025"},"1009":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | MLG Columbus 2016"},"10090":{"market_hash_name":"Sticker | xiELO | Budapest 2025"},"10091":{"market_hash_name":"Sticker | xiELO (Embroidered) | Budapest 2025"},"10092":{"market_hash_name":"Sticker | xiELO (Holo) | Budapest 2025"},"10093":{"market_hash_name":"Sticker | xiELO (Gold) | Budapest 2025"},"10094":{"market_hash_name":"Sticker | ewjerkz | Budapest 2025"},"10095":{"market_hash_name":"Sticker | ewjerkz (Embroidered) | Budapest 2025"},"10096":{"market_hash_name":"Sticker | ewjerkz (Holo) | Budapest 2025"},"10097":{"market_hash_name":"Sticker | ewjerkz (Gold) | Budapest 2025"},"10098":{"market_hash_name":"Sticker | r1nkle | Budapest 2025"},"10099":{"market_hash_name":"Sticker | r1nkle (Embroidered) | Budapest 2025"},"101":{"market_hash_name":"Sticker | Backstab"},"1010":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | MLG Columbus 2016"},"10100":{"market_hash_name":"Sticker | r1nkle (Holo) | Budapest 2025"},"10101":{"market_hash_name":"Sticker | r1nkle (Gold) | Budapest 2025"},"10102":{"market_hash_name":"Sticker | sjuush | Budapest 2025"},"10103":{"market_hash_name":"Sticker | sjuush (Embroidered) | Budapest 2025"},"10104":{"market_hash_name":"Sticker | sjuush (Holo) | Budapest 2025"},"10105":{"market_hash_name":"Sticker | sjuush (Gold) | Budapest 2025"},"10106":{"market_hash_name":"Sticker | Snappi | Budapest 2025"},"10107":{"market_hash_name":"Sticker | Snappi (Embroidered) | Budapest 2025"},"10108":{"market_hash_name":"Sticker | Snappi (Holo) | Budapest 2025"},"10109":{"market_hash_name":"Sticker | Snappi (Gold) | Budapest 2025"},"1011":{"market_hash_name":"Sticker | Splyce | MLG Columbus 2016"},"10110":{"market_hash_name":"Sticker | xKacpersky | Budapest 2025"},"10111":{"market_hash_name":"Sticker | xKacpersky (Embroidered) | Budapest 2025"},"10112":{"market_hash_name":"Sticker | xKacpersky (Holo) | Budapest 2025"},"10113":{"market_hash_name":"Sticker | xKacpersky (Gold) | Budapest 2025"},"10114":{"market_hash_name":"Sticker | chelo | Budapest 2025"},"10115":{"market_hash_name":"Sticker | chelo (Embroidered) | Budapest 2025"},"10116":{"market_hash_name":"Sticker | chelo (Holo) | Budapest 2025"},"10117":{"market_hash_name":"Sticker | chelo (Gold) | Budapest 2025"},"10118":{"market_hash_name":"Sticker | noway | Budapest 2025"},"10119":{"market_hash_name":"Sticker | noway (Embroidered) | Budapest 2025"},"1012":{"market_hash_name":"Sticker | Splyce (Holo) | MLG Columbus 2016"},"10120":{"market_hash_name":"Sticker | noway (Holo) | Budapest 2025"},"10121":{"market_hash_name":"Sticker | noway (Gold) | Budapest 2025"},"10122":{"market_hash_name":"Sticker | skullz | Budapest 2025"},"10123":{"market_hash_name":"Sticker | skullz (Embroidered) | Budapest 2025"},"10124":{"market_hash_name":"Sticker | skullz (Holo) | Budapest 2025"},"10125":{"market_hash_name":"Sticker | skullz (Gold) | Budapest 2025"},"10126":{"market_hash_name":"Sticker | TRY | Budapest 2025"},"10127":{"market_hash_name":"Sticker | TRY (Embroidered) | Budapest 2025"},"10128":{"market_hash_name":"Sticker | TRY (Holo) | Budapest 2025"},"10129":{"market_hash_name":"Sticker | TRY (Gold) | Budapest 2025"},"1013":{"market_hash_name":"Sticker | Splyce (Foil) | MLG Columbus 2016"},"10130":{"market_hash_name":"Sticker | VINI | Budapest 2025"},"10131":{"market_hash_name":"Sticker | VINI (Embroidered) | Budapest 2025"},"10132":{"market_hash_name":"Sticker | VINI (Holo) | Budapest 2025"},"10133":{"market_hash_name":"Sticker | VINI (Gold) | Budapest 2025"},"10134":{"market_hash_name":"Sticker | INS | Budapest 2025"},"10135":{"market_hash_name":"Sticker | INS (Embroidered) | Budapest 2025"},"10136":{"market_hash_name":"Sticker | INS (Holo) | Budapest 2025"},"10137":{"market_hash_name":"Sticker | INS (Gold) | Budapest 2025"},"10138":{"market_hash_name":"Sticker | jks | Budapest 2025"},"10139":{"market_hash_name":"Sticker | jks (Embroidered) | Budapest 2025"},"1014":{"market_hash_name":"Sticker | Splyce (Gold) | MLG Columbus 2016"},"10140":{"market_hash_name":"Sticker | jks (Holo) | Budapest 2025"},"10141":{"market_hash_name":"Sticker | jks (Gold) | Budapest 2025"},"10142":{"market_hash_name":"Sticker | nettik | Budapest 2025"},"10143":{"market_hash_name":"Sticker | nettik (Embroidered) | Budapest 2025"},"10144":{"market_hash_name":"Sticker | nettik (Holo) | Budapest 2025"},"10145":{"market_hash_name":"Sticker | nettik (Gold) | Budapest 2025"},"10146":{"market_hash_name":"Sticker | regali | Budapest 2025"},"10147":{"market_hash_name":"Sticker | regali (Embroidered) | Budapest 2025"},"10148":{"market_hash_name":"Sticker | regali (Holo) | Budapest 2025"},"10149":{"market_hash_name":"Sticker | regali (Gold) | Budapest 2025"},"1015":{"market_hash_name":"Sticker | Counter Logic Gaming | MLG Columbus 2016"},"10150":{"market_hash_name":"Sticker | vexite | Budapest 2025"},"10151":{"market_hash_name":"Sticker | vexite (Embroidered) | Budapest 2025"},"10152":{"market_hash_name":"Sticker | vexite (Holo) | Budapest 2025"},"10153":{"market_hash_name":"Sticker | vexite (Gold) | Budapest 2025"},"10154":{"market_hash_name":"Sticker | C4LLM3SU3 | Budapest 2025"},"10155":{"market_hash_name":"Sticker | C4LLM3SU3 (Embroidered) | Budapest 2025"},"10156":{"market_hash_name":"Sticker | C4LLM3SU3 (Holo) | Budapest 2025"},"10157":{"market_hash_name":"Sticker | C4LLM3SU3 (Gold) | Budapest 2025"},"10158":{"market_hash_name":"Sticker | EmiliaQAQ | Budapest 2025"},"10159":{"market_hash_name":"Sticker | EmiliaQAQ (Embroidered) | Budapest 2025"},"1016":{"market_hash_name":"Sticker | Counter Logic Gaming (Holo) | MLG Columbus 2016"},"10160":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Budapest 2025"},"10161":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Budapest 2025"},"10162":{"market_hash_name":"Sticker | Starry | Budapest 2025"},"10163":{"market_hash_name":"Sticker | Starry (Embroidered) | Budapest 2025"},"10164":{"market_hash_name":"Sticker | Starry (Holo) | Budapest 2025"},"10165":{"market_hash_name":"Sticker | Starry (Gold) | Budapest 2025"},"10166":{"market_hash_name":"Sticker | westmelon | Budapest 2025"},"10167":{"market_hash_name":"Sticker | westmelon (Embroidered) | Budapest 2025"},"10168":{"market_hash_name":"Sticker | westmelon (Holo) | Budapest 2025"},"10169":{"market_hash_name":"Sticker | westmelon (Gold) | Budapest 2025"},"1017":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | MLG Columbus 2016"},"10170":{"market_hash_name":"Sticker | z4KR | Budapest 2025"},"10171":{"market_hash_name":"Sticker | z4KR (Embroidered) | Budapest 2025"},"10172":{"market_hash_name":"Sticker | z4KR (Holo) | Budapest 2025"},"10173":{"market_hash_name":"Sticker | z4KR (Gold) | Budapest 2025"},"10174":{"market_hash_name":"Sticker | HexT | Budapest 2025"},"10175":{"market_hash_name":"Sticker | HexT (Embroidered) | Budapest 2025"},"10176":{"market_hash_name":"Sticker | HexT (Holo) | Budapest 2025"},"10177":{"market_hash_name":"Sticker | HexT (Gold) | Budapest 2025"},"10178":{"market_hash_name":"Sticker | Lake | Budapest 2025"},"10179":{"market_hash_name":"Sticker | Lake (Embroidered) | Budapest 2025"},"1018":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | MLG Columbus 2016"},"10180":{"market_hash_name":"Sticker | Lake (Holo) | Budapest 2025"},"10181":{"market_hash_name":"Sticker | Lake (Gold) | Budapest 2025"},"10182":{"market_hash_name":"Sticker | s1n | Budapest 2025"},"10183":{"market_hash_name":"Sticker | s1n (Embroidered) | Budapest 2025"},"10184":{"market_hash_name":"Sticker | s1n (Holo) | Budapest 2025"},"10185":{"market_hash_name":"Sticker | s1n (Gold) | Budapest 2025"},"10186":{"market_hash_name":"Sticker | slaxz- | Budapest 2025"},"10187":{"market_hash_name":"Sticker | slaxz- (Embroidered) | Budapest 2025"},"10188":{"market_hash_name":"Sticker | slaxz- (Holo) | Budapest 2025"},"10189":{"market_hash_name":"Sticker | slaxz- (Gold) | Budapest 2025"},"1019":{"market_hash_name":"Sticker | Gambit Gaming | MLG Columbus 2016"},"10190":{"market_hash_name":"Sticker | Swisher | Budapest 2025"},"10191":{"market_hash_name":"Sticker | Swisher (Embroidered) | Budapest 2025"},"10192":{"market_hash_name":"Sticker | Swisher (Holo) | Budapest 2025"},"10193":{"market_hash_name":"Sticker | Swisher (Gold) | Budapest 2025"},"10194":{"market_hash_name":"Sticker | arT | Budapest 2025"},"10195":{"market_hash_name":"Sticker | arT (Embroidered) | Budapest 2025"},"10196":{"market_hash_name":"Sticker | arT (Holo) | Budapest 2025"},"10197":{"market_hash_name":"Sticker | arT (Gold) | Budapest 2025"},"10198":{"market_hash_name":"Sticker | decenty | Budapest 2025"},"10199":{"market_hash_name":"Sticker | decenty (Embroidered) | Budapest 2025"},"102":{"market_hash_name":"Sticker | King on the Field"},"1020":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | MLG Columbus 2016"},"10200":{"market_hash_name":"Sticker | decenty (Holo) | Budapest 2025"},"10201":{"market_hash_name":"Sticker | decenty (Gold) | Budapest 2025"},"10202":{"market_hash_name":"Sticker | kye | Budapest 2025"},"10203":{"market_hash_name":"Sticker | kye (Embroidered) | Budapest 2025"},"10204":{"market_hash_name":"Sticker | kye (Holo) | Budapest 2025"},"10205":{"market_hash_name":"Sticker | kye (Gold) | Budapest 2025"},"10206":{"market_hash_name":"Sticker | Lucaozy | Budapest 2025"},"10207":{"market_hash_name":"Sticker | Lucaozy (Embroidered) | Budapest 2025"},"10208":{"market_hash_name":"Sticker | Lucaozy (Holo) | Budapest 2025"},"10209":{"market_hash_name":"Sticker | Lucaozy (Gold) | Budapest 2025"},"1021":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | MLG Columbus 2016"},"10210":{"market_hash_name":"Sticker | zevy | Budapest 2025"},"10211":{"market_hash_name":"Sticker | zevy (Embroidered) | Budapest 2025"},"10212":{"market_hash_name":"Sticker | zevy (Holo) | Budapest 2025"},"10213":{"market_hash_name":"Sticker | zevy (Gold) | Budapest 2025"},"10214":{"market_hash_name":"Sticker | chayJESUS | Budapest 2025"},"10215":{"market_hash_name":"Sticker | chayJESUS (Embroidered) | Budapest 2025"},"10216":{"market_hash_name":"Sticker | chayJESUS (Holo) | Budapest 2025"},"10217":{"market_hash_name":"Sticker | chayJESUS (Gold) | Budapest 2025"},"10218":{"market_hash_name":"Sticker | drop | Budapest 2025"},"10219":{"market_hash_name":"Sticker | drop (Embroidered) | Budapest 2025"},"1022":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | MLG Columbus 2016"},"10220":{"market_hash_name":"Sticker | drop (Holo) | Budapest 2025"},"10221":{"market_hash_name":"Sticker | drop (Gold) | Budapest 2025"},"10222":{"market_hash_name":"Sticker | History | Budapest 2025"},"10223":{"market_hash_name":"Sticker | History (Embroidered) | Budapest 2025"},"10224":{"market_hash_name":"Sticker | History (Holo) | Budapest 2025"},"10225":{"market_hash_name":"Sticker | History (Gold) | Budapest 2025"},"10226":{"market_hash_name":"Sticker | kauez | Budapest 2025"},"10227":{"market_hash_name":"Sticker | kauez (Embroidered) | Budapest 2025"},"10228":{"market_hash_name":"Sticker | kauez (Holo) | Budapest 2025"},"10229":{"market_hash_name":"Sticker | kauez (Gold) | Budapest 2025"},"1023":{"market_hash_name":"Sticker | Flipsid3 Tactics | MLG Columbus 2016"},"10230":{"market_hash_name":"Sticker | venomzera | Budapest 2025"},"10231":{"market_hash_name":"Sticker | venomzera (Embroidered) | Budapest 2025"},"10232":{"market_hash_name":"Sticker | venomzera (Holo) | Budapest 2025"},"10233":{"market_hash_name":"Sticker | venomzera (Gold) | Budapest 2025"},"10234":{"market_hash_name":"Sticker | Bart4k | Budapest 2025"},"10235":{"market_hash_name":"Sticker | Bart4k (Embroidered) | Budapest 2025"},"10236":{"market_hash_name":"Sticker | Bart4k (Holo) | Budapest 2025"},"10237":{"market_hash_name":"Sticker | Bart4k (Gold) | Budapest 2025"},"10238":{"market_hash_name":"Sticker | cobra | Budapest 2025"},"10239":{"market_hash_name":"Sticker | cobra (Embroidered) | Budapest 2025"},"1024":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | MLG Columbus 2016"},"10240":{"market_hash_name":"Sticker | cobra (Holo) | Budapest 2025"},"10241":{"market_hash_name":"Sticker | cobra (Gold) | Budapest 2025"},"10242":{"market_hash_name":"Sticker | nin9 | Budapest 2025"},"10243":{"market_hash_name":"Sticker | nin9 (Embroidered) | Budapest 2025"},"10244":{"market_hash_name":"Sticker | nin9 (Holo) | Budapest 2025"},"10245":{"market_hash_name":"Sticker | nin9 (Gold) | Budapest 2025"},"10246":{"market_hash_name":"Sticker | sk0R | Budapest 2025"},"10247":{"market_hash_name":"Sticker | sk0R (Embroidered) | Budapest 2025"},"10248":{"market_hash_name":"Sticker | sk0R (Holo) | Budapest 2025"},"10249":{"market_hash_name":"Sticker | sk0R (Gold) | Budapest 2025"},"1025":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | MLG Columbus 2016"},"10250":{"market_hash_name":"Sticker | xerolte | Budapest 2025"},"10251":{"market_hash_name":"Sticker | xerolte (Embroidered) | Budapest 2025"},"10252":{"market_hash_name":"Sticker | xerolte (Holo) | Budapest 2025"},"10253":{"market_hash_name":"Sticker | xerolte (Gold) | Budapest 2025"},"10254":{"market_hash_name":"Sticker | br0 | Budapest 2025"},"10255":{"market_hash_name":"Sticker | br0 (Embroidered) | Budapest 2025"},"10256":{"market_hash_name":"Sticker | br0 (Holo) | Budapest 2025"},"10257":{"market_hash_name":"Sticker | br0 (Gold) | Budapest 2025"},"10258":{"market_hash_name":"Sticker | jeorge | Budapest 2025"},"10259":{"market_hash_name":"Sticker | jeorge (Embroidered) | Budapest 2025"},"1026":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | MLG Columbus 2016"},"10260":{"market_hash_name":"Sticker | jeorge (Holo) | Budapest 2025"},"10261":{"market_hash_name":"Sticker | jeorge (Gold) | Budapest 2025"},"10262":{"market_hash_name":"Sticker | nitr0 | Budapest 2025"},"10263":{"market_hash_name":"Sticker | nitr0 (Embroidered) | Budapest 2025"},"10264":{"market_hash_name":"Sticker | nitr0 (Holo) | Budapest 2025"},"10265":{"market_hash_name":"Sticker | nitr0 (Gold) | Budapest 2025"},"10266":{"market_hash_name":"Sticker | Sonic | Budapest 2025"},"10267":{"market_hash_name":"Sticker | Sonic (Embroidered) | Budapest 2025"},"10268":{"market_hash_name":"Sticker | Sonic (Holo) | Budapest 2025"},"10269":{"market_hash_name":"Sticker | Sonic (Gold) | Budapest 2025"},"1027":{"market_hash_name":"Sticker | Team Liquid | MLG Columbus 2016"},"10270":{"market_hash_name":"Sticker | XotiC | Budapest 2025"},"10271":{"market_hash_name":"Sticker | XotiC (Embroidered) | Budapest 2025"},"10272":{"market_hash_name":"Sticker | XotiC (Holo) | Budapest 2025"},"10273":{"market_hash_name":"Sticker | XotiC (Gold) | Budapest 2025"},"10274":{"market_hash_name":"Sticker | ChildKing | Budapest 2025"},"10275":{"market_hash_name":"Sticker | ChildKing (Embroidered) | Budapest 2025"},"10276":{"market_hash_name":"Sticker | ChildKing (Holo) | Budapest 2025"},"10277":{"market_hash_name":"Sticker | ChildKing (Gold) | Budapest 2025"},"10278":{"market_hash_name":"Sticker | L1haNg | Budapest 2025"},"10279":{"market_hash_name":"Sticker | L1haNg (Embroidered) | Budapest 2025"},"1028":{"market_hash_name":"Sticker | Team Liquid (Holo) | MLG Columbus 2016"},"10280":{"market_hash_name":"Sticker | L1haNg (Holo) | Budapest 2025"},"10281":{"market_hash_name":"Sticker | L1haNg (Gold) | Budapest 2025"},"10282":{"market_hash_name":"Sticker | Marek | Budapest 2025"},"10283":{"market_hash_name":"Sticker | Marek (Embroidered) | Budapest 2025"},"10284":{"market_hash_name":"Sticker | Marek (Holo) | Budapest 2025"},"10285":{"market_hash_name":"Sticker | Marek (Gold) | Budapest 2025"},"10286":{"market_hash_name":"Sticker | Summer | Budapest 2025"},"10287":{"market_hash_name":"Sticker | Summer (Embroidered) | Budapest 2025"},"10288":{"market_hash_name":"Sticker | Summer (Holo) | Budapest 2025"},"10289":{"market_hash_name":"Sticker | Summer (Gold) | Budapest 2025"},"1029":{"market_hash_name":"Sticker | Team Liquid (Foil) | MLG Columbus 2016"},"10290":{"market_hash_name":"Sticker | Tiger | Budapest 2025"},"10291":{"market_hash_name":"Sticker | Tiger (Embroidered) | Budapest 2025"},"10292":{"market_hash_name":"Sticker | Tiger (Holo) | Budapest 2025"},"10293":{"market_hash_name":"Sticker | Tiger (Gold) | Budapest 2025"},"10294":{"market_hash_name":"Sticker | apEX (Champion) | Budapest 2025"},"10295":{"market_hash_name":"Sticker | apEX (Embroidered, Champion) | Budapest 2025"},"10296":{"market_hash_name":"Sticker | apEX (Holo, Champion) | Budapest 2025"},"10297":{"market_hash_name":"Sticker | apEX (Gold, Champion) | Budapest 2025"},"10298":{"market_hash_name":"Sticker | FlameZ (Champion) | Budapest 2025"},"10299":{"market_hash_name":"Sticker | FlameZ (Embroidered, Champion) | Budapest 2025"},"103":{"market_hash_name":"Sticker | Howling Dawn"},"1030":{"market_hash_name":"Sticker | Team Liquid (Gold) | MLG Columbus 2016"},"10300":{"market_hash_name":"Sticker | FlameZ (Holo, Champion) | Budapest 2025"},"10301":{"market_hash_name":"Sticker | FlameZ (Gold, Champion) | Budapest 2025"},"10302":{"market_hash_name":"Sticker | mezii (Champion) | Budapest 2025"},"10303":{"market_hash_name":"Sticker | mezii (Embroidered, Champion) | Budapest 2025"},"10304":{"market_hash_name":"Sticker | mezii (Holo, Champion) | Budapest 2025"},"10305":{"market_hash_name":"Sticker | mezii (Gold, Champion) | Budapest 2025"},"10306":{"market_hash_name":"Sticker | ropz (Champion) | Budapest 2025"},"10307":{"market_hash_name":"Sticker | ropz (Embroidered, Champion) | Budapest 2025"},"10308":{"market_hash_name":"Sticker | ropz (Holo, Champion) | Budapest 2025"},"10309":{"market_hash_name":"Sticker | ropz (Gold, Champion) | Budapest 2025"},"1031":{"market_hash_name":"Sticker | mousesports | MLG Columbus 2016"},"10310":{"market_hash_name":"Sticker | ZywOo (Champion) | Budapest 2025"},"10311":{"market_hash_name":"Sticker | ZywOo (Embroidered, Champion) | Budapest 2025"},"10312":{"market_hash_name":"Sticker | ZywOo (Holo, Champion) | Budapest 2025"},"10313":{"market_hash_name":"Sticker | ZywOo (Gold, Champion) | Budapest 2025"},"1032":{"market_hash_name":"Sticker | mousesports (Holo) | MLG Columbus 2016"},"1033":{"market_hash_name":"Sticker | mousesports (Foil) | MLG Columbus 2016"},"1034":{"market_hash_name":"Sticker | mousesports (Gold) | MLG Columbus 2016"},"1035":{"market_hash_name":"Sticker | Natus Vincere | MLG Columbus 2016"},"1036":{"market_hash_name":"Sticker | Natus Vincere (Holo) | MLG Columbus 2016"},"10369":{"market_hash_name":"Sticker | Vitality | Cologne 2026"},"1037":{"market_hash_name":"Sticker | Natus Vincere (Foil) | MLG Columbus 2016"},"10370":{"market_hash_name":"Sticker | Vitality (Foil) | Cologne 2026"},"10371":{"market_hash_name":"Sticker | Vitality (Holo) | Cologne 2026"},"10372":{"market_hash_name":"Sticker | Vitality (Gold) | Cologne 2026"},"10373":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2026"},"10374":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2026"},"10375":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Cologne 2026"},"10376":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cologne 2026"},"10377":{"market_hash_name":"Sticker | Falcons | Cologne 2026"},"10378":{"market_hash_name":"Sticker | Falcons (Foil) | Cologne 2026"},"10379":{"market_hash_name":"Sticker | Falcons (Holo) | Cologne 2026"},"1038":{"market_hash_name":"Sticker | Natus Vincere (Gold) | MLG Columbus 2016"},"10380":{"market_hash_name":"Sticker | Falcons (Gold) | Cologne 2026"},"10381":{"market_hash_name":"Sticker | The Mongolz | Cologne 2026"},"10382":{"market_hash_name":"Sticker | The Mongolz (Foil) | Cologne 2026"},"10383":{"market_hash_name":"Sticker | The Mongolz (Holo) | Cologne 2026"},"10384":{"market_hash_name":"Sticker | The Mongolz (Gold) | Cologne 2026"},"10385":{"market_hash_name":"Sticker | PARIVISION | Cologne 2026"},"10386":{"market_hash_name":"Sticker | PARIVISION (Foil) | Cologne 2026"},"10387":{"market_hash_name":"Sticker | PARIVISION (Holo) | Cologne 2026"},"10388":{"market_hash_name":"Sticker | PARIVISION (Gold) | Cologne 2026"},"10389":{"market_hash_name":"Sticker | Aurora | Cologne 2026"},"1039":{"market_hash_name":"Sticker | Virtus.Pro | MLG Columbus 2016"},"10390":{"market_hash_name":"Sticker | Aurora (Foil) | Cologne 2026"},"10391":{"market_hash_name":"Sticker | Aurora (Holo) | Cologne 2026"},"10392":{"market_hash_name":"Sticker | Aurora (Gold) | Cologne 2026"},"10393":{"market_hash_name":"Sticker | FURIA | Cologne 2026"},"10394":{"market_hash_name":"Sticker | FURIA (Foil) | Cologne 2026"},"10395":{"market_hash_name":"Sticker | FURIA (Holo) | Cologne 2026"},"10396":{"market_hash_name":"Sticker | FURIA (Gold) | Cologne 2026"},"10397":{"market_hash_name":"Sticker | MOUZ | Cologne 2026"},"10398":{"market_hash_name":"Sticker | MOUZ (Foil) | Cologne 2026"},"10399":{"market_hash_name":"Sticker | MOUZ (Holo) | Cologne 2026"},"104":{"market_hash_name":"Sticker | Bomb Doge"},"1040":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | MLG Columbus 2016"},"10400":{"market_hash_name":"Sticker | MOUZ (Gold) | Cologne 2026"},"10401":{"market_hash_name":"Sticker | FUT | Cologne 2026"},"10402":{"market_hash_name":"Sticker | FUT (Foil) | Cologne 2026"},"10403":{"market_hash_name":"Sticker | FUT (Holo) | Cologne 2026"},"10404":{"market_hash_name":"Sticker | FUT (Gold) | Cologne 2026"},"10405":{"market_hash_name":"Sticker | Team Spirit | Cologne 2026"},"10406":{"market_hash_name":"Sticker | Team Spirit (Foil) | Cologne 2026"},"10407":{"market_hash_name":"Sticker | Team Spirit (Holo) | Cologne 2026"},"10408":{"market_hash_name":"Sticker | Team Spirit (Gold) | Cologne 2026"},"10409":{"market_hash_name":"Sticker | Astralis | Cologne 2026"},"1041":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | MLG Columbus 2016"},"10410":{"market_hash_name":"Sticker | Astralis (Foil) | Cologne 2026"},"10411":{"market_hash_name":"Sticker | Astralis (Holo) | Cologne 2026"},"10412":{"market_hash_name":"Sticker | Astralis (Gold) | Cologne 2026"},"10413":{"market_hash_name":"Sticker | G2 esports | Cologne 2026"},"10414":{"market_hash_name":"Sticker | G2 esports (Foil) | Cologne 2026"},"10415":{"market_hash_name":"Sticker | G2 esports (Holo) | Cologne 2026"},"10416":{"market_hash_name":"Sticker | G2 esports (Gold) | Cologne 2026"},"10417":{"market_hash_name":"Sticker | Legacy | Cologne 2026"},"10418":{"market_hash_name":"Sticker | Legacy (Foil) | Cologne 2026"},"10419":{"market_hash_name":"Sticker | Legacy (Holo) | Cologne 2026"},"1042":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | MLG Columbus 2016"},"10420":{"market_hash_name":"Sticker | Legacy (Gold) | Cologne 2026"},"10421":{"market_hash_name":"Sticker | paiN Gaming | Cologne 2026"},"10422":{"market_hash_name":"Sticker | paiN Gaming (Foil) | Cologne 2026"},"10423":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Cologne 2026"},"10424":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Cologne 2026"},"10425":{"market_hash_name":"Sticker | Monte | Cologne 2026"},"10426":{"market_hash_name":"Sticker | Monte (Foil) | Cologne 2026"},"10427":{"market_hash_name":"Sticker | Monte (Holo) | Cologne 2026"},"10428":{"market_hash_name":"Sticker | Monte (Gold) | Cologne 2026"},"10429":{"market_hash_name":"Sticker | 9z Team | Cologne 2026"},"1043":{"market_hash_name":"Sticker | Cloud9 | MLG Columbus 2016"},"10430":{"market_hash_name":"Sticker | 9z Team (Foil) | Cologne 2026"},"10431":{"market_hash_name":"Sticker | 9z Team (Holo) | Cologne 2026"},"10432":{"market_hash_name":"Sticker | 9z Team (Gold) | Cologne 2026"},"10433":{"market_hash_name":"Sticker | GamerLegion | Cologne 2026"},"10434":{"market_hash_name":"Sticker | GamerLegion (Foil) | Cologne 2026"},"10435":{"market_hash_name":"Sticker | GamerLegion (Holo) | Cologne 2026"},"10436":{"market_hash_name":"Sticker | GamerLegion (Gold) | Cologne 2026"},"10437":{"market_hash_name":"Sticker | B8 | Cologne 2026"},"10438":{"market_hash_name":"Sticker | B8 (Foil) | Cologne 2026"},"10439":{"market_hash_name":"Sticker | B8 (Holo) | Cologne 2026"},"1044":{"market_hash_name":"Sticker | Cloud9 (Holo) | MLG Columbus 2016"},"10440":{"market_hash_name":"Sticker | B8 (Gold) | Cologne 2026"},"10441":{"market_hash_name":"Sticker | HEROIC | Cologne 2026"},"10442":{"market_hash_name":"Sticker | HEROIC (Foil) | Cologne 2026"},"10443":{"market_hash_name":"Sticker | HEROIC (Holo) | Cologne 2026"},"10444":{"market_hash_name":"Sticker | HEROIC (Gold) | Cologne 2026"},"10445":{"market_hash_name":"Sticker | BetBoom | Cologne 2026"},"10446":{"market_hash_name":"Sticker | BetBoom (Foil) | Cologne 2026"},"10447":{"market_hash_name":"Sticker | BetBoom (Holo) | Cologne 2026"},"10448":{"market_hash_name":"Sticker | BetBoom (Gold) | Cologne 2026"},"10449":{"market_hash_name":"Sticker | BIG | Cologne 2026"},"1045":{"market_hash_name":"Sticker | Cloud9 (Foil) | MLG Columbus 2016"},"10450":{"market_hash_name":"Sticker | BIG (Foil) | Cologne 2026"},"10451":{"market_hash_name":"Sticker | BIG (Holo) | Cologne 2026"},"10452":{"market_hash_name":"Sticker | BIG (Gold) | Cologne 2026"},"10453":{"market_hash_name":"Sticker | M80 | Cologne 2026"},"10454":{"market_hash_name":"Sticker | M80 (Foil) | Cologne 2026"},"10455":{"market_hash_name":"Sticker | M80 (Holo) | Cologne 2026"},"10456":{"market_hash_name":"Sticker | M80 (Gold) | Cologne 2026"},"10457":{"market_hash_name":"Sticker | MIBR | Cologne 2026"},"10458":{"market_hash_name":"Sticker | MIBR (Foil) | Cologne 2026"},"10459":{"market_hash_name":"Sticker | MIBR (Holo) | Cologne 2026"},"1046":{"market_hash_name":"Sticker | Cloud9 (Gold) | MLG Columbus 2016"},"10460":{"market_hash_name":"Sticker | MIBR (Gold) | Cologne 2026"},"10461":{"market_hash_name":"Sticker | SINNERS | Cologne 2026"},"10462":{"market_hash_name":"Sticker | SINNERS (Foil) | Cologne 2026"},"10463":{"market_hash_name":"Sticker | SINNERS (Holo) | Cologne 2026"},"10464":{"market_hash_name":"Sticker | SINNERS (Gold) | Cologne 2026"},"10465":{"market_hash_name":"Sticker | NRG | Cologne 2026"},"10466":{"market_hash_name":"Sticker | NRG (Foil) | Cologne 2026"},"10467":{"market_hash_name":"Sticker | NRG (Holo) | Cologne 2026"},"10468":{"market_hash_name":"Sticker | NRG (Gold) | Cologne 2026"},"10469":{"market_hash_name":"Sticker | TYLOO | Cologne 2026"},"1047":{"market_hash_name":"Sticker | G2 Esports | MLG Columbus 2016"},"10470":{"market_hash_name":"Sticker | TYLOO (Foil) | Cologne 2026"},"10471":{"market_hash_name":"Sticker | TYLOO (Holo) | Cologne 2026"},"10472":{"market_hash_name":"Sticker | TYLOO (Gold) | Cologne 2026"},"10473":{"market_hash_name":"Sticker | Sharks Esports | Cologne 2026"},"10474":{"market_hash_name":"Sticker | Sharks Esports (Foil) | Cologne 2026"},"10475":{"market_hash_name":"Sticker | Sharks Esports (Holo) | Cologne 2026"},"10476":{"market_hash_name":"Sticker | Sharks Esports (Gold) | Cologne 2026"},"10477":{"market_hash_name":"Sticker | Gaimin Gladiators | Cologne 2026"},"10478":{"market_hash_name":"Sticker | Gaimin Gladiators (Foil) | Cologne 2026"},"10479":{"market_hash_name":"Sticker | Gaimin Gladiators (Holo) | Cologne 2026"},"1048":{"market_hash_name":"Sticker | G2 Esports (Holo) | MLG Columbus 2016"},"10480":{"market_hash_name":"Sticker | Gaimin Gladiators (Gold) | Cologne 2026"},"10481":{"market_hash_name":"Sticker | Team Liquid | Cologne 2026"},"10482":{"market_hash_name":"Sticker | Team Liquid (Foil) | Cologne 2026"},"10483":{"market_hash_name":"Sticker | Team Liquid (Holo) | Cologne 2026"},"10484":{"market_hash_name":"Sticker | Team Liquid (Gold) | Cologne 2026"},"10485":{"market_hash_name":"Sticker | Lynn Vision | Cologne 2026"},"10486":{"market_hash_name":"Sticker | Lynn Vision (Foil) | Cologne 2026"},"10487":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Cologne 2026"},"10488":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Cologne 2026"},"10489":{"market_hash_name":"Sticker | THUNDERdOWNUNDER | Cologne 2026"},"1049":{"market_hash_name":"Sticker | G2 Esports (Foil) | MLG Columbus 2016"},"10490":{"market_hash_name":"Sticker | THUNDERdOWNUNDER (Foil) | Cologne 2026"},"10491":{"market_hash_name":"Sticker | THUNDERdOWNUNDER (Holo) | Cologne 2026"},"10492":{"market_hash_name":"Sticker | THUNDERdOWNUNDER (Gold) | Cologne 2026"},"10493":{"market_hash_name":"Sticker | FlyQuest | Cologne 2026"},"10494":{"market_hash_name":"Sticker | FlyQuest (Foil) | Cologne 2026"},"10495":{"market_hash_name":"Sticker | FlyQuest (Holo) | Cologne 2026"},"10496":{"market_hash_name":"Sticker | FlyQuest (Gold) | Cologne 2026"},"10497":{"market_hash_name":"Sticker | IEM | Cologne 2026"},"10498":{"market_hash_name":"Sticker | IEM (Foil) | Cologne 2026"},"10499":{"market_hash_name":"Sticker | IEM (Holo) | Cologne 2026"},"105":{"market_hash_name":"Sticker | Burn Them All"},"1050":{"market_hash_name":"Sticker | G2 Esports (Gold) | MLG Columbus 2016"},"10500":{"market_hash_name":"Sticker | IEM (Gold) | Cologne 2026"},"1051":{"market_hash_name":"Sticker | FaZe Clan | MLG Columbus 2016"},"1052":{"market_hash_name":"Sticker | FaZe Clan (Holo) | MLG Columbus 2016"},"1053":{"market_hash_name":"Sticker | FaZe Clan (Foil) | MLG Columbus 2016"},"10534":{"market_hash_name":"Sticker | ZywOo | Cologne 2026"},"10535":{"market_hash_name":"Sticker | ZywOo (Foil) | Cologne 2026"},"10536":{"market_hash_name":"Sticker | ZywOo (Holo) | Cologne 2026"},"10537":{"market_hash_name":"Sticker | ZywOo (Gold) | Cologne 2026"},"10538":{"market_hash_name":"Sticker | apEX | Cologne 2026"},"10539":{"market_hash_name":"Sticker | apEX (Foil) | Cologne 2026"},"1054":{"market_hash_name":"Sticker | FaZe Clan (Gold) | MLG Columbus 2016"},"10540":{"market_hash_name":"Sticker | apEX (Holo) | Cologne 2026"},"10541":{"market_hash_name":"Sticker | apEX (Gold) | Cologne 2026"},"10542":{"market_hash_name":"Sticker | mezii | Cologne 2026"},"10543":{"market_hash_name":"Sticker | mezii (Foil) | Cologne 2026"},"10544":{"market_hash_name":"Sticker | mezii (Holo) | Cologne 2026"},"10545":{"market_hash_name":"Sticker | mezii (Gold) | Cologne 2026"},"10546":{"market_hash_name":"Sticker | FlameZ | Cologne 2026"},"10547":{"market_hash_name":"Sticker | FlameZ (Foil) | Cologne 2026"},"10548":{"market_hash_name":"Sticker | FlameZ (Holo) | Cologne 2026"},"10549":{"market_hash_name":"Sticker | FlameZ (Gold) | Cologne 2026"},"1055":{"market_hash_name":"Sticker | Astralis | MLG Columbus 2016"},"10550":{"market_hash_name":"Sticker | ropz | Cologne 2026"},"10551":{"market_hash_name":"Sticker | ropz (Foil) | Cologne 2026"},"10552":{"market_hash_name":"Sticker | ropz (Holo) | Cologne 2026"},"10553":{"market_hash_name":"Sticker | ropz (Gold) | Cologne 2026"},"10554":{"market_hash_name":"Sticker | w0nderful | Cologne 2026"},"10555":{"market_hash_name":"Sticker | w0nderful (Foil) | Cologne 2026"},"10556":{"market_hash_name":"Sticker | w0nderful (Holo) | Cologne 2026"},"10557":{"market_hash_name":"Sticker | w0nderful (Gold) | Cologne 2026"},"10558":{"market_hash_name":"Sticker | Aleksib | Cologne 2026"},"10559":{"market_hash_name":"Sticker | Aleksib (Foil) | Cologne 2026"},"1056":{"market_hash_name":"Sticker | Astralis (Holo) | MLG Columbus 2016"},"10560":{"market_hash_name":"Sticker | Aleksib (Holo) | Cologne 2026"},"10561":{"market_hash_name":"Sticker | Aleksib (Gold) | Cologne 2026"},"10562":{"market_hash_name":"Sticker | b1t | Cologne 2026"},"10563":{"market_hash_name":"Sticker | b1t (Foil) | Cologne 2026"},"10564":{"market_hash_name":"Sticker | b1t (Holo) | Cologne 2026"},"10565":{"market_hash_name":"Sticker | b1t (Gold) | Cologne 2026"},"10566":{"market_hash_name":"Sticker | iM | Cologne 2026"},"10567":{"market_hash_name":"Sticker | iM (Foil) | Cologne 2026"},"10568":{"market_hash_name":"Sticker | iM (Holo) | Cologne 2026"},"10569":{"market_hash_name":"Sticker | iM (Gold) | Cologne 2026"},"1057":{"market_hash_name":"Sticker | Astralis (Foil) | MLG Columbus 2016"},"10570":{"market_hash_name":"Sticker | makazze | Cologne 2026"},"10571":{"market_hash_name":"Sticker | makazze (Foil) | Cologne 2026"},"10572":{"market_hash_name":"Sticker | makazze (Holo) | Cologne 2026"},"10573":{"market_hash_name":"Sticker | makazze (Gold) | Cologne 2026"},"10574":{"market_hash_name":"Sticker | NiKo | Cologne 2026"},"10575":{"market_hash_name":"Sticker | NiKo (Foil) | Cologne 2026"},"10576":{"market_hash_name":"Sticker | NiKo (Holo) | Cologne 2026"},"10577":{"market_hash_name":"Sticker | NiKo (Gold) | Cologne 2026"},"10578":{"market_hash_name":"Sticker | kyxsan | Cologne 2026"},"10579":{"market_hash_name":"Sticker | kyxsan (Foil) | Cologne 2026"},"1058":{"market_hash_name":"Sticker | Astralis (Gold) | MLG Columbus 2016"},"10580":{"market_hash_name":"Sticker | kyxsan (Holo) | Cologne 2026"},"10581":{"market_hash_name":"Sticker | kyxsan (Gold) | Cologne 2026"},"10582":{"market_hash_name":"Sticker | m0NESY | Cologne 2026"},"10583":{"market_hash_name":"Sticker | m0NESY (Foil) | Cologne 2026"},"10584":{"market_hash_name":"Sticker | m0NESY (Holo) | Cologne 2026"},"10585":{"market_hash_name":"Sticker | m0NESY (Gold) | Cologne 2026"},"10586":{"market_hash_name":"Sticker | TeSeS | Cologne 2026"},"10587":{"market_hash_name":"Sticker | TeSeS (Foil) | Cologne 2026"},"10588":{"market_hash_name":"Sticker | TeSeS (Holo) | Cologne 2026"},"10589":{"market_hash_name":"Sticker | TeSeS (Gold) | Cologne 2026"},"1059":{"market_hash_name":"Sticker | Team EnVyUs | MLG Columbus 2016"},"10590":{"market_hash_name":"Sticker | kyousuke | Cologne 2026"},"10591":{"market_hash_name":"Sticker | kyousuke (Foil) | Cologne 2026"},"10592":{"market_hash_name":"Sticker | kyousuke (Holo) | Cologne 2026"},"10593":{"market_hash_name":"Sticker | kyousuke (Gold) | Cologne 2026"},"10594":{"market_hash_name":"Sticker | bLitz | Cologne 2026"},"10595":{"market_hash_name":"Sticker | bLitz (Foil) | Cologne 2026"},"10596":{"market_hash_name":"Sticker | bLitz (Holo) | Cologne 2026"},"10597":{"market_hash_name":"Sticker | bLitz (Gold) | Cologne 2026"},"10598":{"market_hash_name":"Sticker | Techno4K | Cologne 2026"},"10599":{"market_hash_name":"Sticker | Techno4K (Foil) | Cologne 2026"},"106":{"market_hash_name":"Sticker | Harp of War (Holo)"},"1060":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | MLG Columbus 2016"},"10600":{"market_hash_name":"Sticker | Techno4K (Holo) | Cologne 2026"},"10601":{"market_hash_name":"Sticker | Techno4K (Gold) | Cologne 2026"},"10602":{"market_hash_name":"Sticker | cobra | Cologne 2026"},"10603":{"market_hash_name":"Sticker | cobra (Foil) | Cologne 2026"},"10604":{"market_hash_name":"Sticker | cobra (Holo) | Cologne 2026"},"10605":{"market_hash_name":"Sticker | cobra (Gold) | Cologne 2026"},"10606":{"market_hash_name":"Sticker | mzinho | Cologne 2026"},"10607":{"market_hash_name":"Sticker | mzinho (Foil) | Cologne 2026"},"10608":{"market_hash_name":"Sticker | mzinho (Holo) | Cologne 2026"},"10609":{"market_hash_name":"Sticker | mzinho (Gold) | Cologne 2026"},"1061":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | MLG Columbus 2016"},"10610":{"market_hash_name":"Sticker | 910 | Cologne 2026"},"10611":{"market_hash_name":"Sticker | 910 (Foil) | Cologne 2026"},"10612":{"market_hash_name":"Sticker | 910 (Holo) | Cologne 2026"},"10613":{"market_hash_name":"Sticker | 910 (Gold) | Cologne 2026"},"10614":{"market_hash_name":"Sticker | Jame | Cologne 2026"},"10615":{"market_hash_name":"Sticker | Jame (Foil) | Cologne 2026"},"10616":{"market_hash_name":"Sticker | Jame (Holo) | Cologne 2026"},"10617":{"market_hash_name":"Sticker | Jame (Gold) | Cologne 2026"},"10618":{"market_hash_name":"Sticker | nota | Cologne 2026"},"10619":{"market_hash_name":"Sticker | nota (Foil) | Cologne 2026"},"1062":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | MLG Columbus 2016"},"10620":{"market_hash_name":"Sticker | nota (Holo) | Cologne 2026"},"10621":{"market_hash_name":"Sticker | nota (Gold) | Cologne 2026"},"10622":{"market_hash_name":"Sticker | xiELO | Cologne 2026"},"10623":{"market_hash_name":"Sticker | xiELO (Foil) | Cologne 2026"},"10624":{"market_hash_name":"Sticker | xiELO (Holo) | Cologne 2026"},"10625":{"market_hash_name":"Sticker | xiELO (Gold) | Cologne 2026"},"10626":{"market_hash_name":"Sticker | BELCHONOKK | Cologne 2026"},"10627":{"market_hash_name":"Sticker | BELCHONOKK (Foil) | Cologne 2026"},"10628":{"market_hash_name":"Sticker | BELCHONOKK (Holo) | Cologne 2026"},"10629":{"market_hash_name":"Sticker | BELCHONOKK (Gold) | Cologne 2026"},"1063":{"market_hash_name":"Sticker | Fnatic | MLG Columbus 2016"},"10630":{"market_hash_name":"Sticker | zweih | Cologne 2026"},"10631":{"market_hash_name":"Sticker | zweih (Foil) | Cologne 2026"},"10632":{"market_hash_name":"Sticker | zweih (Holo) | Cologne 2026"},"10633":{"market_hash_name":"Sticker | zweih (Gold) | Cologne 2026"},"10634":{"market_hash_name":"Sticker | XANTARES | Cologne 2026"},"10635":{"market_hash_name":"Sticker | XANTARES (Foil) | Cologne 2026"},"10636":{"market_hash_name":"Sticker | XANTARES (Holo) | Cologne 2026"},"10637":{"market_hash_name":"Sticker | XANTARES (Gold) | Cologne 2026"},"10638":{"market_hash_name":"Sticker | soulfly | Cologne 2026"},"10639":{"market_hash_name":"Sticker | soulfly (Foil) | Cologne 2026"},"1064":{"market_hash_name":"Sticker | Fnatic (Holo) | MLG Columbus 2016"},"10640":{"market_hash_name":"Sticker | soulfly (Holo) | Cologne 2026"},"10641":{"market_hash_name":"Sticker | soulfly (Gold) | Cologne 2026"},"10642":{"market_hash_name":"Sticker | Wicadia | Cologne 2026"},"10643":{"market_hash_name":"Sticker | Wicadia (Foil) | Cologne 2026"},"10644":{"market_hash_name":"Sticker | Wicadia (Holo) | Cologne 2026"},"10645":{"market_hash_name":"Sticker | Wicadia (Gold) | Cologne 2026"},"10646":{"market_hash_name":"Sticker | MAJ3R | Cologne 2026"},"10647":{"market_hash_name":"Sticker | MAJ3R (Foil) | Cologne 2026"},"10648":{"market_hash_name":"Sticker | MAJ3R (Holo) | Cologne 2026"},"10649":{"market_hash_name":"Sticker | MAJ3R (Gold) | Cologne 2026"},"1065":{"market_hash_name":"Sticker | Fnatic (Foil) | MLG Columbus 2016"},"10650":{"market_hash_name":"Sticker | woxic | Cologne 2026"},"10651":{"market_hash_name":"Sticker | woxic (Foil) | Cologne 2026"},"10652":{"market_hash_name":"Sticker | woxic (Holo) | Cologne 2026"},"10653":{"market_hash_name":"Sticker | woxic (Gold) | Cologne 2026"},"10654":{"market_hash_name":"Sticker | YEKINDAR | Cologne 2026"},"10655":{"market_hash_name":"Sticker | YEKINDAR (Foil) | Cologne 2026"},"10656":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Cologne 2026"},"10657":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Cologne 2026"},"10658":{"market_hash_name":"Sticker | KSCERATO | Cologne 2026"},"10659":{"market_hash_name":"Sticker | KSCERATO (Foil) | Cologne 2026"},"1066":{"market_hash_name":"Sticker | Fnatic (Gold) | MLG Columbus 2016"},"10660":{"market_hash_name":"Sticker | KSCERATO (Holo) | Cologne 2026"},"10661":{"market_hash_name":"Sticker | KSCERATO (Gold) | Cologne 2026"},"10662":{"market_hash_name":"Sticker | FalleN | Cologne 2026"},"10663":{"market_hash_name":"Sticker | FalleN (Foil) | Cologne 2026"},"10664":{"market_hash_name":"Sticker | FalleN (Holo) | Cologne 2026"},"10665":{"market_hash_name":"Sticker | FalleN (Gold) | Cologne 2026"},"10666":{"market_hash_name":"Sticker | molodoy | Cologne 2026"},"10667":{"market_hash_name":"Sticker | molodoy (Foil) | Cologne 2026"},"10668":{"market_hash_name":"Sticker | molodoy (Holo) | Cologne 2026"},"10669":{"market_hash_name":"Sticker | molodoy (Gold) | Cologne 2026"},"1067":{"market_hash_name":"Sticker | Luminosity Gaming | MLG Columbus 2016"},"10670":{"market_hash_name":"Sticker | yuurih | Cologne 2026"},"10671":{"market_hash_name":"Sticker | yuurih (Foil) | Cologne 2026"},"10672":{"market_hash_name":"Sticker | yuurih (Holo) | Cologne 2026"},"10673":{"market_hash_name":"Sticker | yuurih (Gold) | Cologne 2026"},"10674":{"market_hash_name":"Sticker | Jimpphat | Cologne 2026"},"10675":{"market_hash_name":"Sticker | Jimpphat (Foil) | Cologne 2026"},"10676":{"market_hash_name":"Sticker | Jimpphat (Holo) | Cologne 2026"},"10677":{"market_hash_name":"Sticker | Jimpphat (Gold) | Cologne 2026"},"10678":{"market_hash_name":"Sticker | Brollan | Cologne 2026"},"10679":{"market_hash_name":"Sticker | Brollan (Foil) | Cologne 2026"},"1068":{"market_hash_name":"Sticker | Luminosity Gaming (Holo) | MLG Columbus 2016"},"10680":{"market_hash_name":"Sticker | Brollan (Holo) | Cologne 2026"},"10681":{"market_hash_name":"Sticker | Brollan (Gold) | Cologne 2026"},"10682":{"market_hash_name":"Sticker | Spinx | Cologne 2026"},"10683":{"market_hash_name":"Sticker | Spinx (Foil) | Cologne 2026"},"10684":{"market_hash_name":"Sticker | Spinx (Holo) | Cologne 2026"},"10685":{"market_hash_name":"Sticker | Spinx (Gold) | Cologne 2026"},"10686":{"market_hash_name":"Sticker | torzsi | Cologne 2026"},"10687":{"market_hash_name":"Sticker | torzsi (Foil) | Cologne 2026"},"10688":{"market_hash_name":"Sticker | torzsi (Holo) | Cologne 2026"},"10689":{"market_hash_name":"Sticker | torzsi (Gold) | Cologne 2026"},"1069":{"market_hash_name":"Sticker | Luminosity Gaming (Foil) | MLG Columbus 2016"},"10690":{"market_hash_name":"Sticker | xertioN | Cologne 2026"},"10691":{"market_hash_name":"Sticker | xertioN (Foil) | Cologne 2026"},"10692":{"market_hash_name":"Sticker | xertioN (Holo) | Cologne 2026"},"10693":{"market_hash_name":"Sticker | xertioN (Gold) | Cologne 2026"},"10694":{"market_hash_name":"Sticker | dem0n | Cologne 2026"},"10695":{"market_hash_name":"Sticker | dem0n (Foil) | Cologne 2026"},"10696":{"market_hash_name":"Sticker | dem0n (Holo) | Cologne 2026"},"10697":{"market_hash_name":"Sticker | dem0n (Gold) | Cologne 2026"},"10698":{"market_hash_name":"Sticker | lauNX | Cologne 2026"},"10699":{"market_hash_name":"Sticker | lauNX (Foil) | Cologne 2026"},"107":{"market_hash_name":"Sticker | Flammable (Foil)"},"1070":{"market_hash_name":"Sticker | Luminosity Gaming (Gold) | MLG Columbus 2016"},"10700":{"market_hash_name":"Sticker | lauNX (Holo) | Cologne 2026"},"10701":{"market_hash_name":"Sticker | lauNX (Gold) | Cologne 2026"},"10702":{"market_hash_name":"Sticker | Krabeni | Cologne 2026"},"10703":{"market_hash_name":"Sticker | Krabeni (Foil) | Cologne 2026"},"10704":{"market_hash_name":"Sticker | Krabeni (Holo) | Cologne 2026"},"10705":{"market_hash_name":"Sticker | Krabeni (Gold) | Cologne 2026"},"10706":{"market_hash_name":"Sticker | cmtry | Cologne 2026"},"10707":{"market_hash_name":"Sticker | cmtry (Foil) | Cologne 2026"},"10708":{"market_hash_name":"Sticker | cmtry (Holo) | Cologne 2026"},"10709":{"market_hash_name":"Sticker | cmtry (Gold) | Cologne 2026"},"1071":{"market_hash_name":"Sticker | MLG | MLG Columbus 2016"},"10710":{"market_hash_name":"Sticker | dziugss | Cologne 2026"},"10711":{"market_hash_name":"Sticker | dziugss (Foil) | Cologne 2026"},"10712":{"market_hash_name":"Sticker | dziugss (Holo) | Cologne 2026"},"10713":{"market_hash_name":"Sticker | dziugss (Gold) | Cologne 2026"},"10714":{"market_hash_name":"Sticker | tN1R | Cologne 2026"},"10715":{"market_hash_name":"Sticker | tN1R (Foil) | Cologne 2026"},"10716":{"market_hash_name":"Sticker | tN1R (Holo) | Cologne 2026"},"10717":{"market_hash_name":"Sticker | tN1R (Gold) | Cologne 2026"},"10718":{"market_hash_name":"Sticker | donk | Cologne 2026"},"10719":{"market_hash_name":"Sticker | donk (Foil) | Cologne 2026"},"1072":{"market_hash_name":"Sticker | MLG (Holo) | MLG Columbus 2016"},"10720":{"market_hash_name":"Sticker | donk (Holo) | Cologne 2026"},"10721":{"market_hash_name":"Sticker | donk (Gold) | Cologne 2026"},"10722":{"market_hash_name":"Sticker | magixx | Cologne 2026"},"10723":{"market_hash_name":"Sticker | magixx (Foil) | Cologne 2026"},"10724":{"market_hash_name":"Sticker | magixx (Holo) | Cologne 2026"},"10725":{"market_hash_name":"Sticker | magixx (Gold) | Cologne 2026"},"10726":{"market_hash_name":"Sticker | sh1ro | Cologne 2026"},"10727":{"market_hash_name":"Sticker | sh1ro (Foil) | Cologne 2026"},"10728":{"market_hash_name":"Sticker | sh1ro (Holo) | Cologne 2026"},"10729":{"market_hash_name":"Sticker | sh1ro (Gold) | Cologne 2026"},"1073":{"market_hash_name":"Sticker | MLG (Foil) | MLG Columbus 2016"},"10730":{"market_hash_name":"Sticker | zont1x | Cologne 2026"},"10731":{"market_hash_name":"Sticker | zont1x (Foil) | Cologne 2026"},"10732":{"market_hash_name":"Sticker | zont1x (Holo) | Cologne 2026"},"10733":{"market_hash_name":"Sticker | zont1x (Gold) | Cologne 2026"},"10734":{"market_hash_name":"Sticker | HooXi | Cologne 2026"},"10735":{"market_hash_name":"Sticker | HooXi (Foil) | Cologne 2026"},"10736":{"market_hash_name":"Sticker | HooXi (Holo) | Cologne 2026"},"10737":{"market_hash_name":"Sticker | HooXi (Gold) | Cologne 2026"},"10738":{"market_hash_name":"Sticker | phzy | Cologne 2026"},"10739":{"market_hash_name":"Sticker | phzy (Foil) | Cologne 2026"},"1074":{"market_hash_name":"Sticker | MLG (Gold) | MLG Columbus 2016"},"10740":{"market_hash_name":"Sticker | phzy (Holo) | Cologne 2026"},"10741":{"market_hash_name":"Sticker | phzy (Gold) | Cologne 2026"},"10742":{"market_hash_name":"Sticker | ryu | Cologne 2026"},"10743":{"market_hash_name":"Sticker | ryu (Foil) | Cologne 2026"},"10744":{"market_hash_name":"Sticker | ryu (Holo) | Cologne 2026"},"10745":{"market_hash_name":"Sticker | ryu (Gold) | Cologne 2026"},"10746":{"market_hash_name":"Sticker | jabbi | Cologne 2026"},"10747":{"market_hash_name":"Sticker | jabbi (Foil) | Cologne 2026"},"10748":{"market_hash_name":"Sticker | jabbi (Holo) | Cologne 2026"},"10749":{"market_hash_name":"Sticker | jabbi (Gold) | Cologne 2026"},"1075":{"market_hash_name":"Sticker | reltuC | MLG Columbus 2016"},"10750":{"market_hash_name":"Sticker | Staehr | Cologne 2026"},"10751":{"market_hash_name":"Sticker | Staehr (Foil) | Cologne 2026"},"10752":{"market_hash_name":"Sticker | Staehr (Holo) | Cologne 2026"},"10753":{"market_hash_name":"Sticker | Staehr (Gold) | Cologne 2026"},"10754":{"market_hash_name":"Sticker | huNter- | Cologne 2026"},"10755":{"market_hash_name":"Sticker | huNter- (Foil) | Cologne 2026"},"10756":{"market_hash_name":"Sticker | huNter- (Holo) | Cologne 2026"},"10757":{"market_hash_name":"Sticker | huNter- (Gold) | Cologne 2026"},"10758":{"market_hash_name":"Sticker | Heavygod | Cologne 2026"},"10759":{"market_hash_name":"Sticker | Heavygod (Foil) | Cologne 2026"},"1076":{"market_hash_name":"Sticker | reltuC (Foil) | MLG Columbus 2016"},"10760":{"market_hash_name":"Sticker | Heavygod (Holo) | Cologne 2026"},"10761":{"market_hash_name":"Sticker | Heavygod (Gold) | Cologne 2026"},"10762":{"market_hash_name":"Sticker | NertZ | Cologne 2026"},"10763":{"market_hash_name":"Sticker | NertZ (Foil) | Cologne 2026"},"10764":{"market_hash_name":"Sticker | NertZ (Holo) | Cologne 2026"},"10765":{"market_hash_name":"Sticker | NertZ (Gold) | Cologne 2026"},"10766":{"market_hash_name":"Sticker | SunPayus | Cologne 2026"},"10767":{"market_hash_name":"Sticker | SunPayus (Foil) | Cologne 2026"},"10768":{"market_hash_name":"Sticker | SunPayus (Holo) | Cologne 2026"},"10769":{"market_hash_name":"Sticker | SunPayus (Gold) | Cologne 2026"},"1077":{"market_hash_name":"Sticker | reltuC (Gold) | MLG Columbus 2016"},"10770":{"market_hash_name":"Sticker | MATYS | Cologne 2026"},"10771":{"market_hash_name":"Sticker | MATYS (Foil) | Cologne 2026"},"10772":{"market_hash_name":"Sticker | MATYS (Holo) | Cologne 2026"},"10773":{"market_hash_name":"Sticker | MATYS (Gold) | Cologne 2026"},"10774":{"market_hash_name":"Sticker | arT | Cologne 2026"},"10775":{"market_hash_name":"Sticker | arT (Foil) | Cologne 2026"},"10776":{"market_hash_name":"Sticker | arT (Holo) | Cologne 2026"},"10777":{"market_hash_name":"Sticker | arT (Gold) | Cologne 2026"},"10778":{"market_hash_name":"Sticker | latto | Cologne 2026"},"10779":{"market_hash_name":"Sticker | latto (Foil) | Cologne 2026"},"1078":{"market_hash_name":"Sticker | FugLy | MLG Columbus 2016"},"10780":{"market_hash_name":"Sticker | latto (Holo) | Cologne 2026"},"10781":{"market_hash_name":"Sticker | latto (Gold) | Cologne 2026"},"10782":{"market_hash_name":"Sticker | dumau | Cologne 2026"},"10783":{"market_hash_name":"Sticker | dumau (Foil) | Cologne 2026"},"10784":{"market_hash_name":"Sticker | dumau (Holo) | Cologne 2026"},"10785":{"market_hash_name":"Sticker | dumau (Gold) | Cologne 2026"},"10786":{"market_hash_name":"Sticker | saadzin | Cologne 2026"},"10787":{"market_hash_name":"Sticker | saadzin (Foil) | Cologne 2026"},"10788":{"market_hash_name":"Sticker | saadzin (Holo) | Cologne 2026"},"10789":{"market_hash_name":"Sticker | saadzin (Gold) | Cologne 2026"},"1079":{"market_hash_name":"Sticker | FugLy (Foil) | MLG Columbus 2016"},"10790":{"market_hash_name":"Sticker | n1ssim | Cologne 2026"},"10791":{"market_hash_name":"Sticker | n1ssim (Foil) | Cologne 2026"},"10792":{"market_hash_name":"Sticker | n1ssim (Holo) | Cologne 2026"},"10793":{"market_hash_name":"Sticker | n1ssim (Gold) | Cologne 2026"},"10794":{"market_hash_name":"Sticker | biguzera | Cologne 2026"},"10795":{"market_hash_name":"Sticker | biguzera (Foil) | Cologne 2026"},"10796":{"market_hash_name":"Sticker | biguzera (Holo) | Cologne 2026"},"10797":{"market_hash_name":"Sticker | biguzera (Gold) | Cologne 2026"},"10798":{"market_hash_name":"Sticker | NQZ | Cologne 2026"},"10799":{"market_hash_name":"Sticker | NQZ (Foil) | Cologne 2026"},"108":{"market_hash_name":"Sticker | Headhunter (Foil)"},"1080":{"market_hash_name":"Sticker | FugLy (Gold) | MLG Columbus 2016"},"10800":{"market_hash_name":"Sticker | NQZ (Holo) | Cologne 2026"},"10801":{"market_hash_name":"Sticker | NQZ (Gold) | Cologne 2026"},"10802":{"market_hash_name":"Sticker | snow | Cologne 2026"},"10803":{"market_hash_name":"Sticker | snow (Foil) | Cologne 2026"},"10804":{"market_hash_name":"Sticker | snow (Holo) | Cologne 2026"},"10805":{"market_hash_name":"Sticker | snow (Gold) | Cologne 2026"},"10806":{"market_hash_name":"Sticker | piriajr | Cologne 2026"},"10807":{"market_hash_name":"Sticker | piriajr (Foil) | Cologne 2026"},"10808":{"market_hash_name":"Sticker | piriajr (Holo) | Cologne 2026"},"10809":{"market_hash_name":"Sticker | piriajr (Gold) | Cologne 2026"},"1081":{"market_hash_name":"Sticker | hazed | MLG Columbus 2016"},"10810":{"market_hash_name":"Sticker | v$m | Cologne 2026"},"10811":{"market_hash_name":"Sticker | v$m (Foil) | Cologne 2026"},"10812":{"market_hash_name":"Sticker | v$m (Holo) | Cologne 2026"},"10813":{"market_hash_name":"Sticker | v$m (Gold) | Cologne 2026"},"10814":{"market_hash_name":"Sticker | Rainwaker | Cologne 2026"},"10815":{"market_hash_name":"Sticker | Rainwaker (Foil) | Cologne 2026"},"10816":{"market_hash_name":"Sticker | Rainwaker (Holo) | Cologne 2026"},"10817":{"market_hash_name":"Sticker | Rainwaker (Gold) | Cologne 2026"},"10818":{"market_hash_name":"Sticker | Bymas | Cologne 2026"},"10819":{"market_hash_name":"Sticker | Bymas (Foil) | Cologne 2026"},"1082":{"market_hash_name":"Sticker | hazed (Foil) | MLG Columbus 2016"},"10820":{"market_hash_name":"Sticker | Bymas (Holo) | Cologne 2026"},"10821":{"market_hash_name":"Sticker | Bymas (Gold) | Cologne 2026"},"10822":{"market_hash_name":"Sticker | afro | Cologne 2026"},"10823":{"market_hash_name":"Sticker | afro (Foil) | Cologne 2026"},"10824":{"market_hash_name":"Sticker | afro (Holo) | Cologne 2026"},"10825":{"market_hash_name":"Sticker | afro (Gold) | Cologne 2026"},"10826":{"market_hash_name":"Sticker | Gizmy | Cologne 2026"},"10827":{"market_hash_name":"Sticker | Gizmy (Foil) | Cologne 2026"},"10828":{"market_hash_name":"Sticker | Gizmy (Holo) | Cologne 2026"},"10829":{"market_hash_name":"Sticker | Gizmy (Gold) | Cologne 2026"},"1083":{"market_hash_name":"Sticker | hazed (Gold) | MLG Columbus 2016"},"10830":{"market_hash_name":"Sticker | AZUWU | Cologne 2026"},"10831":{"market_hash_name":"Sticker | AZUWU (Foil) | Cologne 2026"},"10832":{"market_hash_name":"Sticker | AZUWU (Holo) | Cologne 2026"},"10833":{"market_hash_name":"Sticker | AZUWU (Gold) | Cologne 2026"},"10834":{"market_hash_name":"Sticker | max | Cologne 2026"},"10835":{"market_hash_name":"Sticker | max (Foil) | Cologne 2026"},"10836":{"market_hash_name":"Sticker | max (Holo) | Cologne 2026"},"10837":{"market_hash_name":"Sticker | max (Gold) | Cologne 2026"},"10838":{"market_hash_name":"Sticker | dgt | Cologne 2026"},"10839":{"market_hash_name":"Sticker | dgt (Foil) | Cologne 2026"},"1084":{"market_hash_name":"Sticker | jdm64 | MLG Columbus 2016"},"10840":{"market_hash_name":"Sticker | dgt (Holo) | Cologne 2026"},"10841":{"market_hash_name":"Sticker | dgt (Gold) | Cologne 2026"},"10842":{"market_hash_name":"Sticker | meyern | Cologne 2026"},"10843":{"market_hash_name":"Sticker | meyern (Foil) | Cologne 2026"},"10844":{"market_hash_name":"Sticker | meyern (Holo) | Cologne 2026"},"10845":{"market_hash_name":"Sticker | meyern (Gold) | Cologne 2026"},"10846":{"market_hash_name":"Sticker | luchov | Cologne 2026"},"10847":{"market_hash_name":"Sticker | luchov (Foil) | Cologne 2026"},"10848":{"market_hash_name":"Sticker | luchov (Holo) | Cologne 2026"},"10849":{"market_hash_name":"Sticker | luchov (Gold) | Cologne 2026"},"1085":{"market_hash_name":"Sticker | jdm64 (Foil) | MLG Columbus 2016"},"10850":{"market_hash_name":"Sticker | HUASOPEEK | Cologne 2026"},"10851":{"market_hash_name":"Sticker | HUASOPEEK (Foil) | Cologne 2026"},"10852":{"market_hash_name":"Sticker | HUASOPEEK (Holo) | Cologne 2026"},"10853":{"market_hash_name":"Sticker | HUASOPEEK (Gold) | Cologne 2026"},"10854":{"market_hash_name":"Sticker | Snax | Cologne 2026"},"10855":{"market_hash_name":"Sticker | Snax (Foil) | Cologne 2026"},"10856":{"market_hash_name":"Sticker | Snax (Holo) | Cologne 2026"},"10857":{"market_hash_name":"Sticker | Snax (Gold) | Cologne 2026"},"10858":{"market_hash_name":"Sticker | REZ | Cologne 2026"},"10859":{"market_hash_name":"Sticker | REZ (Foil) | Cologne 2026"},"1086":{"market_hash_name":"Sticker | jdm64 (Gold) | MLG Columbus 2016"},"10860":{"market_hash_name":"Sticker | REZ (Holo) | Cologne 2026"},"10861":{"market_hash_name":"Sticker | REZ (Gold) | Cologne 2026"},"10862":{"market_hash_name":"Sticker | Tauson | Cologne 2026"},"10863":{"market_hash_name":"Sticker | Tauson (Foil) | Cologne 2026"},"10864":{"market_hash_name":"Sticker | Tauson (Holo) | Cologne 2026"},"10865":{"market_hash_name":"Sticker | Tauson (Gold) | Cologne 2026"},"10866":{"market_hash_name":"Sticker | PR | Cologne 2026"},"10867":{"market_hash_name":"Sticker | PR (Foil) | Cologne 2026"},"10868":{"market_hash_name":"Sticker | PR (Holo) | Cologne 2026"},"10869":{"market_hash_name":"Sticker | PR (Gold) | Cologne 2026"},"1087":{"market_hash_name":"Sticker | tarik | MLG Columbus 2016"},"10870":{"market_hash_name":"Sticker | hypex | Cologne 2026"},"10871":{"market_hash_name":"Sticker | hypex (Foil) | Cologne 2026"},"10872":{"market_hash_name":"Sticker | hypex (Holo) | Cologne 2026"},"10873":{"market_hash_name":"Sticker | hypex (Gold) | Cologne 2026"},"10874":{"market_hash_name":"Sticker | s1zzi | Cologne 2026"},"10875":{"market_hash_name":"Sticker | s1zzi (Foil) | Cologne 2026"},"10876":{"market_hash_name":"Sticker | s1zzi (Holo) | Cologne 2026"},"10877":{"market_hash_name":"Sticker | s1zzi (Gold) | Cologne 2026"},"10878":{"market_hash_name":"Sticker | npl | Cologne 2026"},"10879":{"market_hash_name":"Sticker | npl (Foil) | Cologne 2026"},"1088":{"market_hash_name":"Sticker | tarik (Foil) | MLG Columbus 2016"},"10880":{"market_hash_name":"Sticker | npl (Holo) | Cologne 2026"},"10881":{"market_hash_name":"Sticker | npl (Gold) | Cologne 2026"},"10882":{"market_hash_name":"Sticker | esenthial | Cologne 2026"},"10883":{"market_hash_name":"Sticker | esenthial (Foil) | Cologne 2026"},"10884":{"market_hash_name":"Sticker | esenthial (Holo) | Cologne 2026"},"10885":{"market_hash_name":"Sticker | esenthial (Gold) | Cologne 2026"},"10886":{"market_hash_name":"Sticker | alex666 | Cologne 2026"},"10887":{"market_hash_name":"Sticker | alex666 (Foil) | Cologne 2026"},"10888":{"market_hash_name":"Sticker | alex666 (Holo) | Cologne 2026"},"10889":{"market_hash_name":"Sticker | alex666 (Gold) | Cologne 2026"},"1089":{"market_hash_name":"Sticker | tarik (Gold) | MLG Columbus 2016"},"10890":{"market_hash_name":"Sticker | kensizor | Cologne 2026"},"10891":{"market_hash_name":"Sticker | kensizor (Foil) | Cologne 2026"},"10892":{"market_hash_name":"Sticker | kensizor (Holo) | Cologne 2026"},"10893":{"market_hash_name":"Sticker | kensizor (Gold) | Cologne 2026"},"10894":{"market_hash_name":"Sticker | xfl0ud | Cologne 2026"},"10895":{"market_hash_name":"Sticker | xfl0ud (Foil) | Cologne 2026"},"10896":{"market_hash_name":"Sticker | xfl0ud (Holo) | Cologne 2026"},"10897":{"market_hash_name":"Sticker | xfl0ud (Gold) | Cologne 2026"},"10898":{"market_hash_name":"Sticker | nilo | Cologne 2026"},"10899":{"market_hash_name":"Sticker | nilo (Foil) | Cologne 2026"},"109":{"market_hash_name":"Sticker | Llama Cannon"},"1090":{"market_hash_name":"Sticker | freakazoid | MLG Columbus 2016"},"10900":{"market_hash_name":"Sticker | nilo (Holo) | Cologne 2026"},"10901":{"market_hash_name":"Sticker | nilo (Gold) | Cologne 2026"},"10902":{"market_hash_name":"Sticker | susp | Cologne 2026"},"10903":{"market_hash_name":"Sticker | susp (Foil) | Cologne 2026"},"10904":{"market_hash_name":"Sticker | susp (Holo) | Cologne 2026"},"10905":{"market_hash_name":"Sticker | susp (Gold) | Cologne 2026"},"10906":{"market_hash_name":"Sticker | Chr1zN | Cologne 2026"},"10907":{"market_hash_name":"Sticker | Chr1zN (Foil) | Cologne 2026"},"10908":{"market_hash_name":"Sticker | Chr1zN (Holo) | Cologne 2026"},"10909":{"market_hash_name":"Sticker | Chr1zN (Gold) | Cologne 2026"},"1091":{"market_hash_name":"Sticker | freakazoid (Foil) | MLG Columbus 2016"},"10910":{"market_hash_name":"Sticker | yxngstxr | Cologne 2026"},"10911":{"market_hash_name":"Sticker | yxngstxr (Foil) | Cologne 2026"},"10912":{"market_hash_name":"Sticker | yxngstxr (Holo) | Cologne 2026"},"10913":{"market_hash_name":"Sticker | yxngstxr (Gold) | Cologne 2026"},"10914":{"market_hash_name":"Sticker | Boombl4 | Cologne 2026"},"10915":{"market_hash_name":"Sticker | Boombl4 (Foil) | Cologne 2026"},"10916":{"market_hash_name":"Sticker | Boombl4 (Holo) | Cologne 2026"},"10917":{"market_hash_name":"Sticker | Boombl4 (Gold) | Cologne 2026"},"10918":{"market_hash_name":"Sticker | zorte | Cologne 2026"},"10919":{"market_hash_name":"Sticker | zorte (Foil) | Cologne 2026"},"1092":{"market_hash_name":"Sticker | freakazoid (Gold) | MLG Columbus 2016"},"10920":{"market_hash_name":"Sticker | zorte (Holo) | Cologne 2026"},"10921":{"market_hash_name":"Sticker | zorte (Gold) | Cologne 2026"},"10922":{"market_hash_name":"Sticker | S1ren | Cologne 2026"},"10923":{"market_hash_name":"Sticker | S1ren (Foil) | Cologne 2026"},"10924":{"market_hash_name":"Sticker | S1ren (Holo) | Cologne 2026"},"10925":{"market_hash_name":"Sticker | S1ren (Gold) | Cologne 2026"},"10926":{"market_hash_name":"Sticker | FL4MUS | Cologne 2026"},"10927":{"market_hash_name":"Sticker | FL4MUS (Foil) | Cologne 2026"},"10928":{"market_hash_name":"Sticker | FL4MUS (Holo) | Cologne 2026"},"10929":{"market_hash_name":"Sticker | FL4MUS (Gold) | Cologne 2026"},"1093":{"market_hash_name":"Sticker | Stewie2K | MLG Columbus 2016"},"10930":{"market_hash_name":"Sticker | Magnojez | Cologne 2026"},"10931":{"market_hash_name":"Sticker | Magnojez (Foil) | Cologne 2026"},"10932":{"market_hash_name":"Sticker | Magnojez (Holo) | Cologne 2026"},"10933":{"market_hash_name":"Sticker | Magnojez (Gold) | Cologne 2026"},"10934":{"market_hash_name":"Sticker | tabseN | Cologne 2026"},"10935":{"market_hash_name":"Sticker | tabseN (Foil) | Cologne 2026"},"10936":{"market_hash_name":"Sticker | tabseN (Holo) | Cologne 2026"},"10937":{"market_hash_name":"Sticker | tabseN (Gold) | Cologne 2026"},"10938":{"market_hash_name":"Sticker | JDC | Cologne 2026"},"10939":{"market_hash_name":"Sticker | JDC (Foil) | Cologne 2026"},"1094":{"market_hash_name":"Sticker | Stewie2K (Foil) | MLG Columbus 2016"},"10940":{"market_hash_name":"Sticker | JDC (Holo) | Cologne 2026"},"10941":{"market_hash_name":"Sticker | JDC (Gold) | Cologne 2026"},"10942":{"market_hash_name":"Sticker | faveN | Cologne 2026"},"10943":{"market_hash_name":"Sticker | faveN (Foil) | Cologne 2026"},"10944":{"market_hash_name":"Sticker | faveN (Holo) | Cologne 2026"},"10945":{"market_hash_name":"Sticker | faveN (Gold) | Cologne 2026"},"10946":{"market_hash_name":"Sticker | blameF | Cologne 2026"},"10947":{"market_hash_name":"Sticker | blameF (Foil) | Cologne 2026"},"10948":{"market_hash_name":"Sticker | blameF (Holo) | Cologne 2026"},"10949":{"market_hash_name":"Sticker | blameF (Gold) | Cologne 2026"},"1095":{"market_hash_name":"Sticker | Stewie2K (Gold) | MLG Columbus 2016"},"10950":{"market_hash_name":"Sticker | gr1ks | Cologne 2026"},"10951":{"market_hash_name":"Sticker | gr1ks (Foil) | Cologne 2026"},"10952":{"market_hash_name":"Sticker | gr1ks (Holo) | Cologne 2026"},"10953":{"market_hash_name":"Sticker | gr1ks (Gold) | Cologne 2026"},"10954":{"market_hash_name":"Sticker | Swisher | Cologne 2026"},"10955":{"market_hash_name":"Sticker | Swisher (Foil) | Cologne 2026"},"10956":{"market_hash_name":"Sticker | Swisher (Holo) | Cologne 2026"},"10957":{"market_hash_name":"Sticker | Swisher (Gold) | Cologne 2026"},"10958":{"market_hash_name":"Sticker | Lake | Cologne 2026"},"10959":{"market_hash_name":"Sticker | Lake (Foil) | Cologne 2026"},"1096":{"market_hash_name":"Sticker | shroud | MLG Columbus 2016"},"10960":{"market_hash_name":"Sticker | Lake (Holo) | Cologne 2026"},"10961":{"market_hash_name":"Sticker | Lake (Gold) | Cologne 2026"},"10962":{"market_hash_name":"Sticker | JBa | Cologne 2026"},"10963":{"market_hash_name":"Sticker | JBa (Foil) | Cologne 2026"},"10964":{"market_hash_name":"Sticker | JBa (Holo) | Cologne 2026"},"10965":{"market_hash_name":"Sticker | JBa (Gold) | Cologne 2026"},"10966":{"market_hash_name":"Sticker | s1n | Cologne 2026"},"10967":{"market_hash_name":"Sticker | s1n (Foil) | Cologne 2026"},"10968":{"market_hash_name":"Sticker | s1n (Holo) | Cologne 2026"},"10969":{"market_hash_name":"Sticker | s1n (Gold) | Cologne 2026"},"1097":{"market_hash_name":"Sticker | shroud (Foil) | MLG Columbus 2016"},"10970":{"market_hash_name":"Sticker | slaxz- | Cologne 2026"},"10971":{"market_hash_name":"Sticker | slaxz- (Foil) | Cologne 2026"},"10972":{"market_hash_name":"Sticker | slaxz- (Holo) | Cologne 2026"},"10973":{"market_hash_name":"Sticker | slaxz- (Gold) | Cologne 2026"},"10974":{"market_hash_name":"Sticker | LNZ | Cologne 2026"},"10975":{"market_hash_name":"Sticker | LNZ (Foil) | Cologne 2026"},"10976":{"market_hash_name":"Sticker | LNZ (Holo) | Cologne 2026"},"10977":{"market_hash_name":"Sticker | LNZ (Gold) | Cologne 2026"},"10978":{"market_hash_name":"Sticker | insani | Cologne 2026"},"10979":{"market_hash_name":"Sticker | insani (Foil) | Cologne 2026"},"1098":{"market_hash_name":"Sticker | shroud (Gold) | MLG Columbus 2016"},"10980":{"market_hash_name":"Sticker | insani (Holo) | Cologne 2026"},"10981":{"market_hash_name":"Sticker | insani (Gold) | Cologne 2026"},"10982":{"market_hash_name":"Sticker | brnz4n | Cologne 2026"},"10983":{"market_hash_name":"Sticker | brnz4n (Foil) | Cologne 2026"},"10984":{"market_hash_name":"Sticker | brnz4n (Holo) | Cologne 2026"},"10985":{"market_hash_name":"Sticker | brnz4n (Gold) | Cologne 2026"},"10986":{"market_hash_name":"Sticker | venomzera | Cologne 2026"},"10987":{"market_hash_name":"Sticker | venomzera (Foil) | Cologne 2026"},"10988":{"market_hash_name":"Sticker | venomzera (Holo) | Cologne 2026"},"10989":{"market_hash_name":"Sticker | venomzera (Gold) | Cologne 2026"},"1099":{"market_hash_name":"Sticker | Skadoodle | MLG Columbus 2016"},"10990":{"market_hash_name":"Sticker | kl1m | Cologne 2026"},"10991":{"market_hash_name":"Sticker | kl1m (Foil) | Cologne 2026"},"10992":{"market_hash_name":"Sticker | kl1m (Holo) | Cologne 2026"},"10993":{"market_hash_name":"Sticker | kl1m (Gold) | Cologne 2026"},"10994":{"market_hash_name":"Sticker | beastik | Cologne 2026"},"10995":{"market_hash_name":"Sticker | beastik (Foil) | Cologne 2026"},"10996":{"market_hash_name":"Sticker | beastik (Holo) | Cologne 2026"},"10997":{"market_hash_name":"Sticker | beastik (Gold) | Cologne 2026"},"10998":{"market_hash_name":"Sticker | SHOCK | Cologne 2026"},"10999":{"market_hash_name":"Sticker | SHOCK (Foil) | Cologne 2026"},"11":{"market_hash_name":"Sticker | Frosty the Hitman"},"110":{"market_hash_name":"Sticker | New Sheriff (Foil)"},"1100":{"market_hash_name":"Sticker | Skadoodle (Foil) | MLG Columbus 2016"},"11000":{"market_hash_name":"Sticker | SHOCK (Holo) | Cologne 2026"},"11001":{"market_hash_name":"Sticker | SHOCK (Gold) | Cologne 2026"},"11002":{"market_hash_name":"Sticker | MoDo | Cologne 2026"},"11003":{"market_hash_name":"Sticker | MoDo (Foil) | Cologne 2026"},"11004":{"market_hash_name":"Sticker | MoDo (Holo) | Cologne 2026"},"11005":{"market_hash_name":"Sticker | MoDo (Gold) | Cologne 2026"},"11006":{"market_hash_name":"Sticker | kisserek | Cologne 2026"},"11007":{"market_hash_name":"Sticker | kisserek (Foil) | Cologne 2026"},"11008":{"market_hash_name":"Sticker | kisserek (Holo) | Cologne 2026"},"11009":{"market_hash_name":"Sticker | kisserek (Gold) | Cologne 2026"},"1101":{"market_hash_name":"Sticker | Skadoodle (Gold) | MLG Columbus 2016"},"11010":{"market_hash_name":"Sticker | stressarN | Cologne 2026"},"11011":{"market_hash_name":"Sticker | stressarN (Foil) | Cologne 2026"},"11012":{"market_hash_name":"Sticker | stressarN (Holo) | Cologne 2026"},"11013":{"market_hash_name":"Sticker | stressarN (Gold) | Cologne 2026"},"11014":{"market_hash_name":"Sticker | Grim | Cologne 2026"},"11015":{"market_hash_name":"Sticker | Grim (Foil) | Cologne 2026"},"11016":{"market_hash_name":"Sticker | Grim (Holo) | Cologne 2026"},"11017":{"market_hash_name":"Sticker | Grim (Gold) | Cologne 2026"},"11018":{"market_hash_name":"Sticker | br0 | Cologne 2026"},"11019":{"market_hash_name":"Sticker | br0 (Foil) | Cologne 2026"},"1102":{"market_hash_name":"Sticker | n0thing | MLG Columbus 2016"},"11020":{"market_hash_name":"Sticker | br0 (Holo) | Cologne 2026"},"11021":{"market_hash_name":"Sticker | br0 (Gold) | Cologne 2026"},"11022":{"market_hash_name":"Sticker | oSee | Cologne 2026"},"11023":{"market_hash_name":"Sticker | oSee (Foil) | Cologne 2026"},"11024":{"market_hash_name":"Sticker | oSee (Holo) | Cologne 2026"},"11025":{"market_hash_name":"Sticker | oSee (Gold) | Cologne 2026"},"11026":{"market_hash_name":"Sticker | Sonic | Cologne 2026"},"11027":{"market_hash_name":"Sticker | Sonic (Foil) | Cologne 2026"},"11028":{"market_hash_name":"Sticker | Sonic (Holo) | Cologne 2026"},"11029":{"market_hash_name":"Sticker | Sonic (Gold) | Cologne 2026"},"1103":{"market_hash_name":"Sticker | n0thing (Foil) | MLG Columbus 2016"},"11030":{"market_hash_name":"Sticker | nitr0 | Cologne 2026"},"11031":{"market_hash_name":"Sticker | nitr0 (Foil) | Cologne 2026"},"11032":{"market_hash_name":"Sticker | nitr0 (Holo) | Cologne 2026"},"11033":{"market_hash_name":"Sticker | nitr0 (Gold) | Cologne 2026"},"11034":{"market_hash_name":"Sticker | Mercury | Cologne 2026"},"11035":{"market_hash_name":"Sticker | Mercury (Foil) | Cologne 2026"},"11036":{"market_hash_name":"Sticker | Mercury (Holo) | Cologne 2026"},"11037":{"market_hash_name":"Sticker | Mercury (Gold) | Cologne 2026"},"11038":{"market_hash_name":"Sticker | Jee | Cologne 2026"},"11039":{"market_hash_name":"Sticker | Jee (Foil) | Cologne 2026"},"1104":{"market_hash_name":"Sticker | n0thing (Gold) | MLG Columbus 2016"},"11040":{"market_hash_name":"Sticker | Jee (Holo) | Cologne 2026"},"11041":{"market_hash_name":"Sticker | Jee (Gold) | Cologne 2026"},"11042":{"market_hash_name":"Sticker | JamYoung | Cologne 2026"},"11043":{"market_hash_name":"Sticker | JamYoung (Foil) | Cologne 2026"},"11044":{"market_hash_name":"Sticker | JamYoung (Holo) | Cologne 2026"},"11045":{"market_hash_name":"Sticker | JamYoung (Gold) | Cologne 2026"},"11046":{"market_hash_name":"Sticker | Moseyuh | Cologne 2026"},"11047":{"market_hash_name":"Sticker | Moseyuh (Foil) | Cologne 2026"},"11048":{"market_hash_name":"Sticker | Moseyuh (Holo) | Cologne 2026"},"11049":{"market_hash_name":"Sticker | Moseyuh (Gold) | Cologne 2026"},"1105":{"market_hash_name":"Sticker | apEX | MLG Columbus 2016"},"11050":{"market_hash_name":"Sticker | Zero | Cologne 2026"},"11051":{"market_hash_name":"Sticker | Zero (Foil) | Cologne 2026"},"11052":{"market_hash_name":"Sticker | Zero (Holo) | Cologne 2026"},"11053":{"market_hash_name":"Sticker | Zero (Gold) | Cologne 2026"},"11054":{"market_hash_name":"Sticker | gafolo | Cologne 2026"},"11055":{"market_hash_name":"Sticker | gafolo (Foil) | Cologne 2026"},"11056":{"market_hash_name":"Sticker | gafolo (Holo) | Cologne 2026"},"11057":{"market_hash_name":"Sticker | gafolo (Gold) | Cologne 2026"},"11058":{"market_hash_name":"Sticker | koala | Cologne 2026"},"11059":{"market_hash_name":"Sticker | koala (Foil) | Cologne 2026"},"1106":{"market_hash_name":"Sticker | apEX (Foil) | MLG Columbus 2016"},"11060":{"market_hash_name":"Sticker | koala (Holo) | Cologne 2026"},"11061":{"market_hash_name":"Sticker | koala (Gold) | Cologne 2026"},"11062":{"market_hash_name":"Sticker | maxxkor | Cologne 2026"},"11063":{"market_hash_name":"Sticker | maxxkor (Foil) | Cologne 2026"},"11064":{"market_hash_name":"Sticker | maxxkor (Holo) | Cologne 2026"},"11065":{"market_hash_name":"Sticker | maxxkor (Gold) | Cologne 2026"},"11066":{"market_hash_name":"Sticker | rdnzao | Cologne 2026"},"11067":{"market_hash_name":"Sticker | rdnzao (Foil) | Cologne 2026"},"11068":{"market_hash_name":"Sticker | rdnzao (Holo) | Cologne 2026"},"11069":{"market_hash_name":"Sticker | rdnzao (Gold) | Cologne 2026"},"1107":{"market_hash_name":"Sticker | apEX (Gold) | MLG Columbus 2016"},"11070":{"market_hash_name":"Sticker | doc | Cologne 2026"},"11071":{"market_hash_name":"Sticker | doc (Foil) | Cologne 2026"},"11072":{"market_hash_name":"Sticker | doc (Holo) | Cologne 2026"},"11073":{"market_hash_name":"Sticker | doc (Gold) | Cologne 2026"},"11074":{"market_hash_name":"Sticker | HEN1 | Cologne 2026"},"11075":{"market_hash_name":"Sticker | HEN1 (Foil) | Cologne 2026"},"11076":{"market_hash_name":"Sticker | HEN1 (Holo) | Cologne 2026"},"11077":{"market_hash_name":"Sticker | HEN1 (Gold) | Cologne 2026"},"11078":{"market_hash_name":"Sticker | felps | Cologne 2026"},"11079":{"market_hash_name":"Sticker | felps (Foil) | Cologne 2026"},"1108":{"market_hash_name":"Sticker | Happy | MLG Columbus 2016"},"11080":{"market_hash_name":"Sticker | felps (Holo) | Cologne 2026"},"11081":{"market_hash_name":"Sticker | felps (Gold) | Cologne 2026"},"11082":{"market_hash_name":"Sticker | NEKiZ | Cologne 2026"},"11083":{"market_hash_name":"Sticker | NEKiZ (Foil) | Cologne 2026"},"11084":{"market_hash_name":"Sticker | NEKiZ (Holo) | Cologne 2026"},"11085":{"market_hash_name":"Sticker | NEKiZ (Gold) | Cologne 2026"},"11086":{"market_hash_name":"Sticker | luken | Cologne 2026"},"11087":{"market_hash_name":"Sticker | luken (Foil) | Cologne 2026"},"11088":{"market_hash_name":"Sticker | luken (Holo) | Cologne 2026"},"11089":{"market_hash_name":"Sticker | luken (Gold) | Cologne 2026"},"1109":{"market_hash_name":"Sticker | Happy (Foil) | MLG Columbus 2016"},"11090":{"market_hash_name":"Sticker | JOTA | Cologne 2026"},"11091":{"market_hash_name":"Sticker | JOTA (Foil) | Cologne 2026"},"11092":{"market_hash_name":"Sticker | JOTA (Holo) | Cologne 2026"},"11093":{"market_hash_name":"Sticker | JOTA (Gold) | Cologne 2026"},"11094":{"market_hash_name":"Sticker | EliGE | Cologne 2026"},"11095":{"market_hash_name":"Sticker | EliGE (Foil) | Cologne 2026"},"11096":{"market_hash_name":"Sticker | EliGE (Holo) | Cologne 2026"},"11097":{"market_hash_name":"Sticker | EliGE (Gold) | Cologne 2026"},"11098":{"market_hash_name":"Sticker | ultimate | Cologne 2026"},"11099":{"market_hash_name":"Sticker | ultimate (Foil) | Cologne 2026"},"111":{"market_hash_name":"Sticker | My Other Awp"},"1110":{"market_hash_name":"Sticker | Happy (Gold) | MLG Columbus 2016"},"11100":{"market_hash_name":"Sticker | ultimate (Holo) | Cologne 2026"},"11101":{"market_hash_name":"Sticker | ultimate (Gold) | Cologne 2026"},"11102":{"market_hash_name":"Sticker | malbsMd | Cologne 2026"},"11103":{"market_hash_name":"Sticker | malbsMd (Foil) | Cologne 2026"},"11104":{"market_hash_name":"Sticker | malbsMd (Holo) | Cologne 2026"},"11105":{"market_hash_name":"Sticker | malbsMd (Gold) | Cologne 2026"},"11106":{"market_hash_name":"Sticker | siuhy | Cologne 2026"},"11107":{"market_hash_name":"Sticker | siuhy (Foil) | Cologne 2026"},"11108":{"market_hash_name":"Sticker | siuhy (Holo) | Cologne 2026"},"11109":{"market_hash_name":"Sticker | siuhy (Gold) | Cologne 2026"},"1111":{"market_hash_name":"Sticker | DEVIL | MLG Columbus 2016"},"11110":{"market_hash_name":"Sticker | NAF | Cologne 2026"},"11111":{"market_hash_name":"Sticker | NAF (Foil) | Cologne 2026"},"11112":{"market_hash_name":"Sticker | NAF (Holo) | Cologne 2026"},"11113":{"market_hash_name":"Sticker | NAF (Gold) | Cologne 2026"},"11114":{"market_hash_name":"Sticker | westmelon | Cologne 2026"},"11115":{"market_hash_name":"Sticker | westmelon (Foil) | Cologne 2026"},"11116":{"market_hash_name":"Sticker | westmelon (Holo) | Cologne 2026"},"11117":{"market_hash_name":"Sticker | westmelon (Gold) | Cologne 2026"},"11118":{"market_hash_name":"Sticker | z4KR | Cologne 2026"},"11119":{"market_hash_name":"Sticker | z4KR (Foil) | Cologne 2026"},"1112":{"market_hash_name":"Sticker | DEVIL (Foil) | MLG Columbus 2016"},"11120":{"market_hash_name":"Sticker | z4KR (Holo) | Cologne 2026"},"11121":{"market_hash_name":"Sticker | z4KR (Gold) | Cologne 2026"},"11122":{"market_hash_name":"Sticker | Starry | Cologne 2026"},"11123":{"market_hash_name":"Sticker | Starry (Foil) | Cologne 2026"},"11124":{"market_hash_name":"Sticker | Starry (Holo) | Cologne 2026"},"11125":{"market_hash_name":"Sticker | Starry (Gold) | Cologne 2026"},"11126":{"market_hash_name":"Sticker | EmiliaQAQ | Cologne 2026"},"11127":{"market_hash_name":"Sticker | EmiliaQAQ (Foil) | Cologne 2026"},"11128":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Cologne 2026"},"11129":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Cologne 2026"},"1113":{"market_hash_name":"Sticker | DEVIL (Gold) | MLG Columbus 2016"},"11130":{"market_hash_name":"Sticker | C4LLM3SU3 | Cologne 2026"},"11131":{"market_hash_name":"Sticker | C4LLM3SU3 (Foil) | Cologne 2026"},"11132":{"market_hash_name":"Sticker | C4LLM3SU3 (Holo) | Cologne 2026"},"11133":{"market_hash_name":"Sticker | C4LLM3SU3 (Gold) | Cologne 2026"},"11134":{"market_hash_name":"Sticker | dexter | Cologne 2026"},"11135":{"market_hash_name":"Sticker | dexter (Foil) | Cologne 2026"},"11136":{"market_hash_name":"Sticker | dexter (Holo) | Cologne 2026"},"11137":{"market_hash_name":"Sticker | dexter (Gold) | Cologne 2026"},"11138":{"market_hash_name":"Sticker | Liazz | Cologne 2026"},"11139":{"market_hash_name":"Sticker | Liazz (Foil) | Cologne 2026"},"1114":{"market_hash_name":"Sticker | kennyS | MLG Columbus 2016"},"11140":{"market_hash_name":"Sticker | Liazz (Holo) | Cologne 2026"},"11141":{"market_hash_name":"Sticker | Liazz (Gold) | Cologne 2026"},"11142":{"market_hash_name":"Sticker | aliStair | Cologne 2026"},"11143":{"market_hash_name":"Sticker | aliStair (Foil) | Cologne 2026"},"11144":{"market_hash_name":"Sticker | aliStair (Holo) | Cologne 2026"},"11145":{"market_hash_name":"Sticker | aliStair (Gold) | Cologne 2026"},"11146":{"market_hash_name":"Sticker | asap | Cologne 2026"},"11147":{"market_hash_name":"Sticker | asap (Foil) | Cologne 2026"},"11148":{"market_hash_name":"Sticker | asap (Holo) | Cologne 2026"},"11149":{"market_hash_name":"Sticker | asap (Gold) | Cologne 2026"},"1115":{"market_hash_name":"Sticker | kennyS (Foil) | MLG Columbus 2016"},"11150":{"market_hash_name":"Sticker | TjP | Cologne 2026"},"11151":{"market_hash_name":"Sticker | TjP (Foil) | Cologne 2026"},"11152":{"market_hash_name":"Sticker | TjP (Holo) | Cologne 2026"},"11153":{"market_hash_name":"Sticker | TjP (Gold) | Cologne 2026"},"11154":{"market_hash_name":"Sticker | INS | Cologne 2026"},"11155":{"market_hash_name":"Sticker | INS (Foil) | Cologne 2026"},"11156":{"market_hash_name":"Sticker | INS (Holo) | Cologne 2026"},"11157":{"market_hash_name":"Sticker | INS (Gold) | Cologne 2026"},"11158":{"market_hash_name":"Sticker | jks | Cologne 2026"},"11159":{"market_hash_name":"Sticker | jks (Foil) | Cologne 2026"},"1116":{"market_hash_name":"Sticker | kennyS (Gold) | MLG Columbus 2016"},"11160":{"market_hash_name":"Sticker | jks (Holo) | Cologne 2026"},"11161":{"market_hash_name":"Sticker | jks (Gold) | Cologne 2026"},"11162":{"market_hash_name":"Sticker | vexite | Cologne 2026"},"11163":{"market_hash_name":"Sticker | vexite (Foil) | Cologne 2026"},"11164":{"market_hash_name":"Sticker | vexite (Holo) | Cologne 2026"},"11165":{"market_hash_name":"Sticker | vexite (Gold) | Cologne 2026"},"11166":{"market_hash_name":"Sticker | story | Cologne 2026"},"11167":{"market_hash_name":"Sticker | story (Foil) | Cologne 2026"},"11168":{"market_hash_name":"Sticker | story (Holo) | Cologne 2026"},"11169":{"market_hash_name":"Sticker | story (Gold) | Cologne 2026"},"1117":{"market_hash_name":"Sticker | NBK- | MLG Columbus 2016"},"11170":{"market_hash_name":"Sticker | nettik | Cologne 2026"},"11171":{"market_hash_name":"Sticker | nettik (Foil) | Cologne 2026"},"11172":{"market_hash_name":"Sticker | nettik (Holo) | Cologne 2026"},"11173":{"market_hash_name":"Sticker | nettik (Gold) | Cologne 2026"},"1118":{"market_hash_name":"Sticker | NBK- (Foil) | MLG Columbus 2016"},"1119":{"market_hash_name":"Sticker | NBK- (Gold) | MLG Columbus 2016"},"112":{"market_hash_name":"Sticker | Shave Master"},"1120":{"market_hash_name":"Sticker | B1ad3 | MLG Columbus 2016"},"1121":{"market_hash_name":"Sticker | B1ad3 (Foil) | MLG Columbus 2016"},"1122":{"market_hash_name":"Sticker | B1ad3 (Gold) | MLG Columbus 2016"},"1123":{"market_hash_name":"Sticker | bondik | MLG Columbus 2016"},"1124":{"market_hash_name":"Sticker | bondik (Foil) | MLG Columbus 2016"},"1125":{"market_hash_name":"Sticker | bondik (Gold) | MLG Columbus 2016"},"1126":{"market_hash_name":"Sticker | Shara | MLG Columbus 2016"},"1127":{"market_hash_name":"Sticker | Shara (Foil) | MLG Columbus 2016"},"1128":{"market_hash_name":"Sticker | Shara (Gold) | MLG Columbus 2016"},"1129":{"market_hash_name":"Sticker | markeloff | MLG Columbus 2016"},"113":{"market_hash_name":"Sticker | Rising Skull"},"1130":{"market_hash_name":"Sticker | markeloff (Foil) | MLG Columbus 2016"},"1131":{"market_hash_name":"Sticker | markeloff (Gold) | MLG Columbus 2016"},"1132":{"market_hash_name":"Sticker | WorldEdit | MLG Columbus 2016"},"1133":{"market_hash_name":"Sticker | WorldEdit (Foil) | MLG Columbus 2016"},"1134":{"market_hash_name":"Sticker | WorldEdit (Gold) | MLG Columbus 2016"},"1135":{"market_hash_name":"Sticker | flusha | MLG Columbus 2016"},"1136":{"market_hash_name":"Sticker | flusha (Foil) | MLG Columbus 2016"},"1137":{"market_hash_name":"Sticker | flusha (Gold) | MLG Columbus 2016"},"1138":{"market_hash_name":"Sticker | JW | MLG Columbus 2016"},"1139":{"market_hash_name":"Sticker | JW (Foil) | MLG Columbus 2016"},"114":{"market_hash_name":"Sticker | Sneaky Beaky Like"},"1140":{"market_hash_name":"Sticker | JW (Gold) | MLG Columbus 2016"},"1141":{"market_hash_name":"Sticker | KRIMZ | MLG Columbus 2016"},"1142":{"market_hash_name":"Sticker | KRIMZ (Foil) | MLG Columbus 2016"},"1143":{"market_hash_name":"Sticker | KRIMZ (Gold) | MLG Columbus 2016"},"1144":{"market_hash_name":"Sticker | olofmeister | MLG Columbus 2016"},"1145":{"market_hash_name":"Sticker | olofmeister (Foil) | MLG Columbus 2016"},"1146":{"market_hash_name":"Sticker | olofmeister (Gold) | MLG Columbus 2016"},"1147":{"market_hash_name":"Sticker | dennis | MLG Columbus 2016"},"1148":{"market_hash_name":"Sticker | dennis (Foil) | MLG Columbus 2016"},"1149":{"market_hash_name":"Sticker | dennis (Gold) | MLG Columbus 2016"},"115":{"market_hash_name":"Sticker | Swag (Foil)"},"1150":{"market_hash_name":"Sticker | aizy | MLG Columbus 2016"},"1151":{"market_hash_name":"Sticker | aizy (Foil) | MLG Columbus 2016"},"1152":{"market_hash_name":"Sticker | aizy (Gold) | MLG Columbus 2016"},"1153":{"market_hash_name":"Sticker | fox | MLG Columbus 2016"},"1154":{"market_hash_name":"Sticker | fox (Foil) | MLG Columbus 2016"},"1155":{"market_hash_name":"Sticker | fox (Gold) | MLG Columbus 2016"},"1156":{"market_hash_name":"Sticker | Maikelele | MLG Columbus 2016"},"1157":{"market_hash_name":"Sticker | Maikelele (Foil) | MLG Columbus 2016"},"1158":{"market_hash_name":"Sticker | Maikelele (Gold) | MLG Columbus 2016"},"1159":{"market_hash_name":"Sticker | rain | MLG Columbus 2016"},"116":{"market_hash_name":"Sticker | Teamwork (Holo)"},"1160":{"market_hash_name":"Sticker | rain (Foil) | MLG Columbus 2016"},"1161":{"market_hash_name":"Sticker | rain (Gold) | MLG Columbus 2016"},"1162":{"market_hash_name":"Sticker | jkaem | MLG Columbus 2016"},"1163":{"market_hash_name":"Sticker | jkaem (Foil) | MLG Columbus 2016"},"1164":{"market_hash_name":"Sticker | jkaem (Gold) | MLG Columbus 2016"},"1165":{"market_hash_name":"Sticker | fnx | MLG Columbus 2016"},"1166":{"market_hash_name":"Sticker | fnx (Foil) | MLG Columbus 2016"},"1167":{"market_hash_name":"Sticker | fnx (Gold) | MLG Columbus 2016"},"1168":{"market_hash_name":"Sticker | coldzera | MLG Columbus 2016"},"1169":{"market_hash_name":"Sticker | coldzera (Foil) | MLG Columbus 2016"},"117":{"market_hash_name":"Sticker | To B or not to B"},"1170":{"market_hash_name":"Sticker | coldzera (Gold) | MLG Columbus 2016"},"1171":{"market_hash_name":"Sticker | FalleN | MLG Columbus 2016"},"1172":{"market_hash_name":"Sticker | FalleN (Foil) | MLG Columbus 2016"},"1173":{"market_hash_name":"Sticker | FalleN (Gold) | MLG Columbus 2016"},"1174":{"market_hash_name":"Sticker | fer | MLG Columbus 2016"},"1175":{"market_hash_name":"Sticker | fer (Foil) | MLG Columbus 2016"},"1176":{"market_hash_name":"Sticker | fer (Gold) | MLG Columbus 2016"},"1177":{"market_hash_name":"Sticker | TACO | MLG Columbus 2016"},"1178":{"market_hash_name":"Sticker | TACO (Foil) | MLG Columbus 2016"},"1179":{"market_hash_name":"Sticker | TACO (Gold) | MLG Columbus 2016"},"118":{"market_hash_name":"Sticker | Winged Defuser"},"1180":{"market_hash_name":"Sticker | chrisJ | MLG Columbus 2016"},"1181":{"market_hash_name":"Sticker | chrisJ (Foil) | MLG Columbus 2016"},"1182":{"market_hash_name":"Sticker | chrisJ (Gold) | MLG Columbus 2016"},"1183":{"market_hash_name":"Sticker | denis | MLG Columbus 2016"},"1184":{"market_hash_name":"Sticker | denis (Foil) | MLG Columbus 2016"},"1185":{"market_hash_name":"Sticker | denis (Gold) | MLG Columbus 2016"},"1186":{"market_hash_name":"Sticker | Spiidi | MLG Columbus 2016"},"1187":{"market_hash_name":"Sticker | Spiidi (Foil) | MLG Columbus 2016"},"1188":{"market_hash_name":"Sticker | Spiidi (Gold) | MLG Columbus 2016"},"1189":{"market_hash_name":"Sticker | nex | MLG Columbus 2016"},"119":{"market_hash_name":"Sticker | Pocket BBQ"},"1190":{"market_hash_name":"Sticker | nex (Foil) | MLG Columbus 2016"},"1191":{"market_hash_name":"Sticker | nex (Gold) | MLG Columbus 2016"},"1192":{"market_hash_name":"Sticker | NiKo | MLG Columbus 2016"},"1193":{"market_hash_name":"Sticker | NiKo (Foil) | MLG Columbus 2016"},"1194":{"market_hash_name":"Sticker | NiKo (Gold) | MLG Columbus 2016"},"1195":{"market_hash_name":"Sticker | Edward | MLG Columbus 2016"},"1196":{"market_hash_name":"Sticker | Edward (Foil) | MLG Columbus 2016"},"1197":{"market_hash_name":"Sticker | Edward (Gold) | MLG Columbus 2016"},"1198":{"market_hash_name":"Sticker | flamie | MLG Columbus 2016"},"1199":{"market_hash_name":"Sticker | flamie (Foil) | MLG Columbus 2016"},"12":{"market_hash_name":"Sticker | Frosty the Hitman (Foil)"},"120":{"market_hash_name":"Sticker | Death Comes"},"1200":{"market_hash_name":"Sticker | flamie (Gold) | MLG Columbus 2016"},"1201":{"market_hash_name":"Sticker | GuardiaN | MLG Columbus 2016"},"1202":{"market_hash_name":"Sticker | GuardiaN (Foil) | MLG Columbus 2016"},"1203":{"market_hash_name":"Sticker | GuardiaN (Gold) | MLG Columbus 2016"},"1204":{"market_hash_name":"Sticker | seized | MLG Columbus 2016"},"1205":{"market_hash_name":"Sticker | seized (Foil) | MLG Columbus 2016"},"1206":{"market_hash_name":"Sticker | seized (Gold) | MLG Columbus 2016"},"1207":{"market_hash_name":"Sticker | Zeus | MLG Columbus 2016"},"1208":{"market_hash_name":"Sticker | Zeus (Foil) | MLG Columbus 2016"},"1209":{"market_hash_name":"Sticker | Zeus (Gold) | MLG Columbus 2016"},"121":{"market_hash_name":"Sticker | Rekt (Holo)"},"1210":{"market_hash_name":"Sticker | pyth | MLG Columbus 2016"},"1211":{"market_hash_name":"Sticker | pyth (Foil) | MLG Columbus 2016"},"1212":{"market_hash_name":"Sticker | pyth (Gold) | MLG Columbus 2016"},"1213":{"market_hash_name":"Sticker | f0rest | MLG Columbus 2016"},"1214":{"market_hash_name":"Sticker | f0rest (Foil) | MLG Columbus 2016"},"1215":{"market_hash_name":"Sticker | f0rest (Gold) | MLG Columbus 2016"},"1216":{"market_hash_name":"Sticker | friberg | MLG Columbus 2016"},"1217":{"market_hash_name":"Sticker | friberg (Foil) | MLG Columbus 2016"},"1218":{"market_hash_name":"Sticker | friberg (Gold) | MLG Columbus 2016"},"1219":{"market_hash_name":"Sticker | GeT_RiGhT | MLG Columbus 2016"},"122":{"market_hash_name":"Sticker | Cloud9 | Cologne 2014"},"1220":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | MLG Columbus 2016"},"1221":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | MLG Columbus 2016"},"1222":{"market_hash_name":"Sticker | Xizt | MLG Columbus 2016"},"1223":{"market_hash_name":"Sticker | Xizt (Foil) | MLG Columbus 2016"},"1224":{"market_hash_name":"Sticker | Xizt (Gold) | MLG Columbus 2016"},"1225":{"market_hash_name":"Sticker | jasonR | MLG Columbus 2016"},"1226":{"market_hash_name":"Sticker | jasonR (Foil) | MLG Columbus 2016"},"1227":{"market_hash_name":"Sticker | jasonR (Gold) | MLG Columbus 2016"},"1228":{"market_hash_name":"Sticker | arya | MLG Columbus 2016"},"1229":{"market_hash_name":"Sticker | arya (Foil) | MLG Columbus 2016"},"123":{"market_hash_name":"Sticker | Cloud9 (Holo) | Cologne 2014"},"1230":{"market_hash_name":"Sticker | arya (Gold) | MLG Columbus 2016"},"1231":{"market_hash_name":"Sticker | Professor_Chaos | MLG Columbus 2016"},"1232":{"market_hash_name":"Sticker | Professor_Chaos (Foil) | MLG Columbus 2016"},"1233":{"market_hash_name":"Sticker | Professor_Chaos (Gold) | MLG Columbus 2016"},"1234":{"market_hash_name":"Sticker | DAVEY | MLG Columbus 2016"},"1235":{"market_hash_name":"Sticker | DAVEY (Foil) | MLG Columbus 2016"},"1236":{"market_hash_name":"Sticker | DAVEY (Gold) | MLG Columbus 2016"},"1237":{"market_hash_name":"Sticker | abE | MLG Columbus 2016"},"1238":{"market_hash_name":"Sticker | abE (Foil) | MLG Columbus 2016"},"1239":{"market_hash_name":"Sticker | abE (Gold) | MLG Columbus 2016"},"124":{"market_hash_name":"Sticker | Fnatic | Cologne 2014"},"1240":{"market_hash_name":"Sticker | adreN | MLG Columbus 2016"},"1241":{"market_hash_name":"Sticker | adreN (Foil) | MLG Columbus 2016"},"1242":{"market_hash_name":"Sticker | adreN (Gold) | MLG Columbus 2016"},"1243":{"market_hash_name":"Sticker | EliGE | MLG Columbus 2016"},"1244":{"market_hash_name":"Sticker | EliGE (Foil) | MLG Columbus 2016"},"1245":{"market_hash_name":"Sticker | EliGE (Gold) | MLG Columbus 2016"},"1246":{"market_hash_name":"Sticker | s1mple | MLG Columbus 2016"},"1247":{"market_hash_name":"Sticker | s1mple (Foil) | MLG Columbus 2016"},"1248":{"market_hash_name":"Sticker | s1mple (Gold) | MLG Columbus 2016"},"1249":{"market_hash_name":"Sticker | Hiko | MLG Columbus 2016"},"125":{"market_hash_name":"Sticker | Fnatic (Holo) | Cologne 2014"},"1250":{"market_hash_name":"Sticker | Hiko (Foil) | MLG Columbus 2016"},"1251":{"market_hash_name":"Sticker | Hiko (Gold) | MLG Columbus 2016"},"1252":{"market_hash_name":"Sticker | nitr0 | MLG Columbus 2016"},"1253":{"market_hash_name":"Sticker | nitr0 (Foil) | MLG Columbus 2016"},"1254":{"market_hash_name":"Sticker | nitr0 (Gold) | MLG Columbus 2016"},"1255":{"market_hash_name":"Sticker | Ex6TenZ | MLG Columbus 2016"},"1256":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | MLG Columbus 2016"},"1257":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | MLG Columbus 2016"},"1258":{"market_hash_name":"Sticker | RpK | MLG Columbus 2016"},"1259":{"market_hash_name":"Sticker | RpK (Foil) | MLG Columbus 2016"},"126":{"market_hash_name":"Sticker | HellRaisers | Cologne 2014"},"1260":{"market_hash_name":"Sticker | RpK (Gold) | MLG Columbus 2016"},"1261":{"market_hash_name":"Sticker | ScreaM | MLG Columbus 2016"},"1262":{"market_hash_name":"Sticker | ScreaM (Foil) | MLG Columbus 2016"},"1263":{"market_hash_name":"Sticker | ScreaM (Gold) | MLG Columbus 2016"},"1264":{"market_hash_name":"Sticker | shox | MLG Columbus 2016"},"1265":{"market_hash_name":"Sticker | shox (Foil) | MLG Columbus 2016"},"1266":{"market_hash_name":"Sticker | shox (Gold) | MLG Columbus 2016"},"1267":{"market_hash_name":"Sticker | SmithZz | MLG Columbus 2016"},"1268":{"market_hash_name":"Sticker | SmithZz (Foil) | MLG Columbus 2016"},"1269":{"market_hash_name":"Sticker | SmithZz (Gold) | MLG Columbus 2016"},"127":{"market_hash_name":"Sticker | HellRaisers (Holo) | Cologne 2014"},"1270":{"market_hash_name":"Sticker | cajunb | MLG Columbus 2016"},"1271":{"market_hash_name":"Sticker | cajunb (Foil) | MLG Columbus 2016"},"1272":{"market_hash_name":"Sticker | cajunb (Gold) | MLG Columbus 2016"},"1273":{"market_hash_name":"Sticker | device | MLG Columbus 2016"},"1274":{"market_hash_name":"Sticker | device (Foil) | MLG Columbus 2016"},"1275":{"market_hash_name":"Sticker | device (Gold) | MLG Columbus 2016"},"1276":{"market_hash_name":"Sticker | dupreeh | MLG Columbus 2016"},"1277":{"market_hash_name":"Sticker | dupreeh (Foil) | MLG Columbus 2016"},"1278":{"market_hash_name":"Sticker | dupreeh (Gold) | MLG Columbus 2016"},"1279":{"market_hash_name":"Sticker | karrigan | MLG Columbus 2016"},"128":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cologne 2014"},"1280":{"market_hash_name":"Sticker | karrigan (Foil) | MLG Columbus 2016"},"1281":{"market_hash_name":"Sticker | karrigan (Gold) | MLG Columbus 2016"},"1282":{"market_hash_name":"Sticker | Xyp9x | MLG Columbus 2016"},"1283":{"market_hash_name":"Sticker | Xyp9x (Foil) | MLG Columbus 2016"},"1284":{"market_hash_name":"Sticker | Xyp9x (Gold) | MLG Columbus 2016"},"1285":{"market_hash_name":"Sticker | wayLander | MLG Columbus 2016"},"1286":{"market_hash_name":"Sticker | wayLander (Foil) | MLG Columbus 2016"},"1287":{"market_hash_name":"Sticker | wayLander (Gold) | MLG Columbus 2016"},"1288":{"market_hash_name":"Sticker | Dosia | MLG Columbus 2016"},"1289":{"market_hash_name":"Sticker | Dosia (Foil) | MLG Columbus 2016"},"129":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Cologne 2014"},"1290":{"market_hash_name":"Sticker | Dosia (Gold) | MLG Columbus 2016"},"1291":{"market_hash_name":"Sticker | hooch | MLG Columbus 2016"},"1292":{"market_hash_name":"Sticker | hooch (Foil) | MLG Columbus 2016"},"1293":{"market_hash_name":"Sticker | hooch (Gold) | MLG Columbus 2016"},"1294":{"market_hash_name":"Sticker | mou | MLG Columbus 2016"},"1295":{"market_hash_name":"Sticker | mou (Foil) | MLG Columbus 2016"},"1296":{"market_hash_name":"Sticker | mou (Gold) | MLG Columbus 2016"},"1297":{"market_hash_name":"Sticker | AdreN | MLG Columbus 2016"},"1298":{"market_hash_name":"Sticker | AdreN (Foil) | MLG Columbus 2016"},"1299":{"market_hash_name":"Sticker | AdreN (Gold) | MLG Columbus 2016"},"13":{"market_hash_name":"Sticker | Lucky 13"},"130":{"market_hash_name":"Sticker | Team Dignitas | Cologne 2014"},"1300":{"market_hash_name":"Sticker | byali | MLG Columbus 2016"},"1301":{"market_hash_name":"Sticker | byali (Foil) | MLG Columbus 2016"},"1302":{"market_hash_name":"Sticker | byali (Gold) | MLG Columbus 2016"},"1303":{"market_hash_name":"Sticker | NEO | MLG Columbus 2016"},"1304":{"market_hash_name":"Sticker | NEO (Foil) | MLG Columbus 2016"},"1305":{"market_hash_name":"Sticker | NEO (Gold) | MLG Columbus 2016"},"1306":{"market_hash_name":"Sticker | pashaBiceps | MLG Columbus 2016"},"1307":{"market_hash_name":"Sticker | pashaBiceps (Foil) | MLG Columbus 2016"},"1308":{"market_hash_name":"Sticker | pashaBiceps (Gold) | MLG Columbus 2016"},"1309":{"market_hash_name":"Sticker | Snax | MLG Columbus 2016"},"131":{"market_hash_name":"Sticker | Team Dignitas (Holo) | Cologne 2014"},"1310":{"market_hash_name":"Sticker | Snax (Foil) | MLG Columbus 2016"},"1311":{"market_hash_name":"Sticker | Snax (Gold) | MLG Columbus 2016"},"1312":{"market_hash_name":"Sticker | TaZ | MLG Columbus 2016"},"1313":{"market_hash_name":"Sticker | TaZ (Foil) | MLG Columbus 2016"},"1314":{"market_hash_name":"Sticker | TaZ (Gold) | MLG Columbus 2016"},"1315":{"market_hash_name":"Sticker | All-Stars Orange (Holo)"},"1316":{"market_hash_name":"Sticker | All-Stars Blue (Holo)"},"1317":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cologne 2016"},"1318":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Cologne 2016"},"1319":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cologne 2016"},"132":{"market_hash_name":"Sticker | Team LDLC.com | Cologne 2014"},"1320":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Cologne 2016"},"1321":{"market_hash_name":"Sticker | OpTic Gaming | Cologne 2016"},"1322":{"market_hash_name":"Sticker | OpTic Gaming (Holo) | Cologne 2016"},"1323":{"market_hash_name":"Sticker | OpTic Gaming (Foil) | Cologne 2016"},"1324":{"market_hash_name":"Sticker | OpTic Gaming (Gold) | Cologne 2016"},"1325":{"market_hash_name":"Sticker | Counter Logic Gaming | Cologne 2016"},"1326":{"market_hash_name":"Sticker | Counter Logic Gaming (Holo) | Cologne 2016"},"1327":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Cologne 2016"},"1328":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Cologne 2016"},"1329":{"market_hash_name":"Sticker | Gambit Gaming | Cologne 2016"},"133":{"market_hash_name":"Sticker | Team LDLC.com (Holo) | Cologne 2014"},"1330":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | Cologne 2016"},"1331":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | Cologne 2016"},"1332":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | Cologne 2016"},"1333":{"market_hash_name":"Sticker | Flipsid3 Tactics | Cologne 2016"},"1334":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Cologne 2016"},"1335":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Cologne 2016"},"1336":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Cologne 2016"},"1337":{"market_hash_name":"Sticker | Team Liquid | Cologne 2016"},"1338":{"market_hash_name":"Sticker | Team Liquid (Holo) | Cologne 2016"},"1339":{"market_hash_name":"Sticker | Team Liquid (Foil) | Cologne 2016"},"134":{"market_hash_name":"Sticker | Virtus.Pro | Cologne 2014"},"1340":{"market_hash_name":"Sticker | Team Liquid (Gold) | Cologne 2016"},"1341":{"market_hash_name":"Sticker | mousesports | Cologne 2016"},"1342":{"market_hash_name":"Sticker | mousesports (Holo) | Cologne 2016"},"1343":{"market_hash_name":"Sticker | mousesports (Foil) | Cologne 2016"},"1344":{"market_hash_name":"Sticker | mousesports (Gold) | Cologne 2016"},"1345":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2016"},"1346":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Cologne 2016"},"1347":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2016"},"1348":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cologne 2016"},"1349":{"market_hash_name":"Sticker | Virtus.Pro | Cologne 2016"},"135":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Cologne 2014"},"1350":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Cologne 2016"},"1351":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cologne 2016"},"1352":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Cologne 2016"},"1353":{"market_hash_name":"Sticker | SK Gaming | Cologne 2016"},"1354":{"market_hash_name":"Sticker | SK Gaming (Holo) | Cologne 2016"},"1355":{"market_hash_name":"Sticker | SK Gaming (Foil) | Cologne 2016"},"1356":{"market_hash_name":"Sticker | SK Gaming (Gold) | Cologne 2016"},"1357":{"market_hash_name":"Sticker | G2 Esports | Cologne 2016"},"1358":{"market_hash_name":"Sticker | G2 Esports (Holo) | Cologne 2016"},"1359":{"market_hash_name":"Sticker | G2 Esports (Foil) | Cologne 2016"},"136":{"market_hash_name":"Sticker | Copenhagen Wolves | Cologne 2014"},"1360":{"market_hash_name":"Sticker | G2 Esports (Gold) | Cologne 2016"},"1361":{"market_hash_name":"Sticker | FaZe Clan | Cologne 2016"},"1362":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Cologne 2016"},"1363":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Cologne 2016"},"1364":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Cologne 2016"},"1365":{"market_hash_name":"Sticker | Astralis | Cologne 2016"},"1366":{"market_hash_name":"Sticker | Astralis (Holo) | Cologne 2016"},"1367":{"market_hash_name":"Sticker | Astralis (Foil) | Cologne 2016"},"1368":{"market_hash_name":"Sticker | Astralis (Gold) | Cologne 2016"},"1369":{"market_hash_name":"Sticker | Team EnVyUs | Cologne 2016"},"137":{"market_hash_name":"Sticker | Copenhagen Wolves (Holo) | Cologne 2014"},"1370":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Cologne 2016"},"1371":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Cologne 2016"},"1372":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Cologne 2016"},"1373":{"market_hash_name":"Sticker | Fnatic | Cologne 2016"},"1374":{"market_hash_name":"Sticker | Fnatic (Holo) | Cologne 2016"},"1375":{"market_hash_name":"Sticker | Fnatic (Foil) | Cologne 2016"},"1376":{"market_hash_name":"Sticker | Fnatic (Gold) | Cologne 2016"},"1377":{"market_hash_name":"Sticker | Team Dignitas | Cologne 2016"},"1378":{"market_hash_name":"Sticker | Team Dignitas (Holo) | Cologne 2016"},"1379":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Cologne 2016"},"138":{"market_hash_name":"Sticker | dAT team | Cologne 2014"},"1380":{"market_hash_name":"Sticker | Team Dignitas (Gold) | Cologne 2016"},"1381":{"market_hash_name":"Sticker | ESL | Cologne 2016"},"1382":{"market_hash_name":"Sticker | ESL (Holo) | Cologne 2016"},"1383":{"market_hash_name":"Sticker | ESL (Foil) | Cologne 2016"},"1384":{"market_hash_name":"Sticker | ESL (Gold) | Cologne 2016"},"1385":{"market_hash_name":"Sticker | reltuC | Cologne 2016"},"1386":{"market_hash_name":"Sticker | reltuC (Foil) | Cologne 2016"},"1387":{"market_hash_name":"Sticker | reltuC (Gold) | Cologne 2016"},"1388":{"market_hash_name":"Sticker | koosta | Cologne 2016"},"1389":{"market_hash_name":"Sticker | koosta (Foil) | Cologne 2016"},"139":{"market_hash_name":"Sticker | dAT team (Holo) | Cologne 2014"},"1390":{"market_hash_name":"Sticker | koosta (Gold) | Cologne 2016"},"1391":{"market_hash_name":"Sticker | hazed | Cologne 2016"},"1392":{"market_hash_name":"Sticker | hazed (Foil) | Cologne 2016"},"1393":{"market_hash_name":"Sticker | hazed (Gold) | Cologne 2016"},"1394":{"market_hash_name":"Sticker | pita | Cologne 2016"},"1395":{"market_hash_name":"Sticker | pita (Foil) | Cologne 2016"},"1396":{"market_hash_name":"Sticker | pita (Gold) | Cologne 2016"},"1397":{"market_hash_name":"Sticker | tarik | Cologne 2016"},"1398":{"market_hash_name":"Sticker | tarik (Foil) | Cologne 2016"},"1399":{"market_hash_name":"Sticker | tarik (Gold) | Cologne 2016"},"14":{"market_hash_name":"Sticker | Aces High"},"140":{"market_hash_name":"Sticker | Epsilon eSports | Cologne 2014"},"1400":{"market_hash_name":"Sticker | daps | Cologne 2016"},"1401":{"market_hash_name":"Sticker | daps (Foil) | Cologne 2016"},"1402":{"market_hash_name":"Sticker | daps (Gold) | Cologne 2016"},"1403":{"market_hash_name":"Sticker | mixwell | Cologne 2016"},"1404":{"market_hash_name":"Sticker | mixwell (Foil) | Cologne 2016"},"1405":{"market_hash_name":"Sticker | mixwell (Gold) | Cologne 2016"},"1406":{"market_hash_name":"Sticker | NAF | Cologne 2016"},"1407":{"market_hash_name":"Sticker | NAF (Foil) | Cologne 2016"},"1408":{"market_hash_name":"Sticker | NAF (Gold) | Cologne 2016"},"1409":{"market_hash_name":"Sticker | RUSH | Cologne 2016"},"141":{"market_hash_name":"Sticker | Epsilon eSports (Holo) | Cologne 2014"},"1410":{"market_hash_name":"Sticker | RUSH (Foil) | Cologne 2016"},"1411":{"market_hash_name":"Sticker | RUSH (Gold) | Cologne 2016"},"1412":{"market_hash_name":"Sticker | stanislaw | Cologne 2016"},"1413":{"market_hash_name":"Sticker | stanislaw (Foil) | Cologne 2016"},"1414":{"market_hash_name":"Sticker | stanislaw (Gold) | Cologne 2016"},"1415":{"market_hash_name":"Sticker | apEX | Cologne 2016"},"1416":{"market_hash_name":"Sticker | apEX (Foil) | Cologne 2016"},"1417":{"market_hash_name":"Sticker | apEX (Gold) | Cologne 2016"},"1418":{"market_hash_name":"Sticker | Happy | Cologne 2016"},"1419":{"market_hash_name":"Sticker | Happy (Foil) | Cologne 2016"},"142":{"market_hash_name":"Sticker | iBUYPOWER | Cologne 2014"},"1420":{"market_hash_name":"Sticker | Happy (Gold) | Cologne 2016"},"1421":{"market_hash_name":"Sticker | DEVIL | Cologne 2016"},"1422":{"market_hash_name":"Sticker | DEVIL (Foil) | Cologne 2016"},"1423":{"market_hash_name":"Sticker | DEVIL (Gold) | Cologne 2016"},"1424":{"market_hash_name":"Sticker | kennyS | Cologne 2016"},"1425":{"market_hash_name":"Sticker | kennyS (Foil) | Cologne 2016"},"1426":{"market_hash_name":"Sticker | kennyS (Gold) | Cologne 2016"},"1427":{"market_hash_name":"Sticker | NBK- | Cologne 2016"},"1428":{"market_hash_name":"Sticker | NBK- (Foil) | Cologne 2016"},"1429":{"market_hash_name":"Sticker | NBK- (Gold) | Cologne 2016"},"143":{"market_hash_name":"Sticker | iBUYPOWER (Holo) | Cologne 2014"},"1430":{"market_hash_name":"Sticker | B1ad3 | Cologne 2016"},"1431":{"market_hash_name":"Sticker | B1ad3 (Foil) | Cologne 2016"},"1432":{"market_hash_name":"Sticker | B1ad3 (Gold) | Cologne 2016"},"1433":{"market_hash_name":"Sticker | wayLander | Cologne 2016"},"1434":{"market_hash_name":"Sticker | wayLander (Foil) | Cologne 2016"},"1435":{"market_hash_name":"Sticker | wayLander (Gold) | Cologne 2016"},"1436":{"market_hash_name":"Sticker | Shara | Cologne 2016"},"1437":{"market_hash_name":"Sticker | Shara (Foil) | Cologne 2016"},"1438":{"market_hash_name":"Sticker | Shara (Gold) | Cologne 2016"},"1439":{"market_hash_name":"Sticker | markeloff | Cologne 2016"},"144":{"market_hash_name":"Sticker | London Conspiracy | Cologne 2014"},"1440":{"market_hash_name":"Sticker | markeloff (Foil) | Cologne 2016"},"1441":{"market_hash_name":"Sticker | markeloff (Gold) | Cologne 2016"},"1442":{"market_hash_name":"Sticker | WorldEdit | Cologne 2016"},"1443":{"market_hash_name":"Sticker | WorldEdit (Foil) | Cologne 2016"},"1444":{"market_hash_name":"Sticker | WorldEdit (Gold) | Cologne 2016"},"1445":{"market_hash_name":"Sticker | flusha | Cologne 2016"},"1446":{"market_hash_name":"Sticker | flusha (Foil) | Cologne 2016"},"1447":{"market_hash_name":"Sticker | flusha (Gold) | Cologne 2016"},"1448":{"market_hash_name":"Sticker | JW | Cologne 2016"},"1449":{"market_hash_name":"Sticker | JW (Foil) | Cologne 2016"},"145":{"market_hash_name":"Sticker | London Conspiracy (Holo) | Cologne 2014"},"1450":{"market_hash_name":"Sticker | JW (Gold) | Cologne 2016"},"1451":{"market_hash_name":"Sticker | KRIMZ | Cologne 2016"},"1452":{"market_hash_name":"Sticker | KRIMZ (Foil) | Cologne 2016"},"1453":{"market_hash_name":"Sticker | KRIMZ (Gold) | Cologne 2016"},"1454":{"market_hash_name":"Sticker | olofmeister | Cologne 2016"},"1455":{"market_hash_name":"Sticker | olofmeister (Foil) | Cologne 2016"},"1456":{"market_hash_name":"Sticker | olofmeister (Gold) | Cologne 2016"},"1457":{"market_hash_name":"Sticker | dennis | Cologne 2016"},"1458":{"market_hash_name":"Sticker | dennis (Foil) | Cologne 2016"},"1459":{"market_hash_name":"Sticker | dennis (Gold) | Cologne 2016"},"146":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2014"},"1460":{"market_hash_name":"Sticker | aizy | Cologne 2016"},"1461":{"market_hash_name":"Sticker | aizy (Foil) | Cologne 2016"},"1462":{"market_hash_name":"Sticker | aizy (Gold) | Cologne 2016"},"1463":{"market_hash_name":"Sticker | fox | Cologne 2016"},"1464":{"market_hash_name":"Sticker | fox (Foil) | Cologne 2016"},"1465":{"market_hash_name":"Sticker | fox (Gold) | Cologne 2016"},"1466":{"market_hash_name":"Sticker | kioShiMa | Cologne 2016"},"1467":{"market_hash_name":"Sticker | kioShiMa (Foil) | Cologne 2016"},"1468":{"market_hash_name":"Sticker | kioShiMa (Gold) | Cologne 2016"},"1469":{"market_hash_name":"Sticker | rain | Cologne 2016"},"147":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Cologne 2014"},"1470":{"market_hash_name":"Sticker | rain (Foil) | Cologne 2016"},"1471":{"market_hash_name":"Sticker | rain (Gold) | Cologne 2016"},"1472":{"market_hash_name":"Sticker | jkaem | Cologne 2016"},"1473":{"market_hash_name":"Sticker | jkaem (Foil) | Cologne 2016"},"1474":{"market_hash_name":"Sticker | jkaem (Gold) | Cologne 2016"},"1475":{"market_hash_name":"Sticker | coldzera | Cologne 2016"},"1476":{"market_hash_name":"Sticker | coldzera (Foil) | Cologne 2016"},"1477":{"market_hash_name":"Sticker | coldzera (Gold) | Cologne 2016"},"1478":{"market_hash_name":"Sticker | FalleN | Cologne 2016"},"1479":{"market_hash_name":"Sticker | FalleN (Foil) | Cologne 2016"},"148":{"market_hash_name":"Sticker | Titan | Cologne 2014"},"1480":{"market_hash_name":"Sticker | FalleN (Gold) | Cologne 2016"},"1481":{"market_hash_name":"Sticker | fer | Cologne 2016"},"1482":{"market_hash_name":"Sticker | fer (Foil) | Cologne 2016"},"1483":{"market_hash_name":"Sticker | fer (Gold) | Cologne 2016"},"1484":{"market_hash_name":"Sticker | fnx | Cologne 2016"},"1485":{"market_hash_name":"Sticker | fnx (Foil) | Cologne 2016"},"1486":{"market_hash_name":"Sticker | fnx (Gold) | Cologne 2016"},"1487":{"market_hash_name":"Sticker | TACO | Cologne 2016"},"1488":{"market_hash_name":"Sticker | TACO (Foil) | Cologne 2016"},"1489":{"market_hash_name":"Sticker | TACO (Gold) | Cologne 2016"},"149":{"market_hash_name":"Sticker | Titan (Holo) | Cologne 2014"},"1490":{"market_hash_name":"Sticker | chrisJ | Cologne 2016"},"1491":{"market_hash_name":"Sticker | chrisJ (Foil) | Cologne 2016"},"1492":{"market_hash_name":"Sticker | chrisJ (Gold) | Cologne 2016"},"1493":{"market_hash_name":"Sticker | denis | Cologne 2016"},"1494":{"market_hash_name":"Sticker | denis (Foil) | Cologne 2016"},"1495":{"market_hash_name":"Sticker | denis (Gold) | Cologne 2016"},"1496":{"market_hash_name":"Sticker | Spiidi | Cologne 2016"},"1497":{"market_hash_name":"Sticker | Spiidi (Foil) | Cologne 2016"},"1498":{"market_hash_name":"Sticker | Spiidi (Gold) | Cologne 2016"},"1499":{"market_hash_name":"Sticker | nex | Cologne 2016"},"15":{"market_hash_name":"Sticker | Aces High (Holo)"},"150":{"market_hash_name":"Sticker | Vox Eminor | Cologne 2014"},"1500":{"market_hash_name":"Sticker | nex (Foil) | Cologne 2016"},"1501":{"market_hash_name":"Sticker | nex (Gold) | Cologne 2016"},"1502":{"market_hash_name":"Sticker | NiKo | Cologne 2016"},"1503":{"market_hash_name":"Sticker | NiKo (Foil) | Cologne 2016"},"1504":{"market_hash_name":"Sticker | NiKo (Gold) | Cologne 2016"},"1505":{"market_hash_name":"Sticker | Edward | Cologne 2016"},"1506":{"market_hash_name":"Sticker | Edward (Foil) | Cologne 2016"},"1507":{"market_hash_name":"Sticker | Edward (Gold) | Cologne 2016"},"1508":{"market_hash_name":"Sticker | flamie | Cologne 2016"},"1509":{"market_hash_name":"Sticker | flamie (Foil) | Cologne 2016"},"151":{"market_hash_name":"Sticker | Vox Eminor (Holo) | Cologne 2014"},"1510":{"market_hash_name":"Sticker | flamie (Gold) | Cologne 2016"},"1511":{"market_hash_name":"Sticker | GuardiaN | Cologne 2016"},"1512":{"market_hash_name":"Sticker | GuardiaN (Foil) | Cologne 2016"},"1513":{"market_hash_name":"Sticker | GuardiaN (Gold) | Cologne 2016"},"1514":{"market_hash_name":"Sticker | seized | Cologne 2016"},"1515":{"market_hash_name":"Sticker | seized (Foil) | Cologne 2016"},"1516":{"market_hash_name":"Sticker | seized (Gold) | Cologne 2016"},"1517":{"market_hash_name":"Sticker | Zeus | Cologne 2016"},"1518":{"market_hash_name":"Sticker | Zeus (Foil) | Cologne 2016"},"1519":{"market_hash_name":"Sticker | Zeus (Gold) | Cologne 2016"},"152":{"market_hash_name":"Sticker | MTS GameGod Wolf | Cologne 2014"},"1520":{"market_hash_name":"Sticker | pyth | Cologne 2016"},"1521":{"market_hash_name":"Sticker | pyth (Foil) | Cologne 2016"},"1522":{"market_hash_name":"Sticker | pyth (Gold) | Cologne 2016"},"1523":{"market_hash_name":"Sticker | f0rest | Cologne 2016"},"1524":{"market_hash_name":"Sticker | f0rest (Foil) | Cologne 2016"},"1525":{"market_hash_name":"Sticker | f0rest (Gold) | Cologne 2016"},"1526":{"market_hash_name":"Sticker | friberg | Cologne 2016"},"1527":{"market_hash_name":"Sticker | friberg (Foil) | Cologne 2016"},"1528":{"market_hash_name":"Sticker | friberg (Gold) | Cologne 2016"},"1529":{"market_hash_name":"Sticker | GeT_RiGhT | Cologne 2016"},"153":{"market_hash_name":"Sticker | MTS GameGod Wolf (Holo) | Cologne 2014"},"1530":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Cologne 2016"},"1531":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Cologne 2016"},"1532":{"market_hash_name":"Sticker | Xizt | Cologne 2016"},"1533":{"market_hash_name":"Sticker | Xizt (Foil) | Cologne 2016"},"1534":{"market_hash_name":"Sticker | Xizt (Gold) | Cologne 2016"},"1535":{"market_hash_name":"Sticker | cajunb | Cologne 2016"},"1536":{"market_hash_name":"Sticker | cajunb (Foil) | Cologne 2016"},"1537":{"market_hash_name":"Sticker | cajunb (Gold) | Cologne 2016"},"1538":{"market_hash_name":"Sticker | MSL | Cologne 2016"},"1539":{"market_hash_name":"Sticker | MSL (Foil) | Cologne 2016"},"154":{"market_hash_name":"Sticker | ESL One Cologne 2014 (Blue)"},"1540":{"market_hash_name":"Sticker | MSL (Gold) | Cologne 2016"},"1541":{"market_hash_name":"Sticker | TENZKI | Cologne 2016"},"1542":{"market_hash_name":"Sticker | TENZKI (Foil) | Cologne 2016"},"1543":{"market_hash_name":"Sticker | TENZKI (Gold) | Cologne 2016"},"1544":{"market_hash_name":"Sticker | RUBINO | Cologne 2016"},"1545":{"market_hash_name":"Sticker | RUBINO (Foil) | Cologne 2016"},"1546":{"market_hash_name":"Sticker | RUBINO (Gold) | Cologne 2016"},"1547":{"market_hash_name":"Sticker | k0nfig | Cologne 2016"},"1548":{"market_hash_name":"Sticker | k0nfig (Foil) | Cologne 2016"},"1549":{"market_hash_name":"Sticker | k0nfig (Gold) | Cologne 2016"},"155":{"market_hash_name":"Sticker | ESL One Cologne 2014 (Red)"},"1550":{"market_hash_name":"Sticker | jdm64 | Cologne 2016"},"1551":{"market_hash_name":"Sticker | jdm64 (Foil) | Cologne 2016"},"1552":{"market_hash_name":"Sticker | jdm64 (Gold) | Cologne 2016"},"1553":{"market_hash_name":"Sticker | EliGE | Cologne 2016"},"1554":{"market_hash_name":"Sticker | EliGE (Foil) | Cologne 2016"},"1555":{"market_hash_name":"Sticker | EliGE (Gold) | Cologne 2016"},"1556":{"market_hash_name":"Sticker | s1mple | Cologne 2016"},"1557":{"market_hash_name":"Sticker | s1mple (Foil) | Cologne 2016"},"1558":{"market_hash_name":"Sticker | s1mple (Gold) | Cologne 2016"},"1559":{"market_hash_name":"Sticker | Hiko | Cologne 2016"},"156":{"market_hash_name":"Sticker | Cloud9 (Foil) | Cologne 2014"},"1560":{"market_hash_name":"Sticker | Hiko (Foil) | Cologne 2016"},"1561":{"market_hash_name":"Sticker | Hiko (Gold) | Cologne 2016"},"1562":{"market_hash_name":"Sticker | nitr0 | Cologne 2016"},"1563":{"market_hash_name":"Sticker | nitr0 (Foil) | Cologne 2016"},"1564":{"market_hash_name":"Sticker | nitr0 (Gold) | Cologne 2016"},"1565":{"market_hash_name":"Sticker | bodyy | Cologne 2016"},"1566":{"market_hash_name":"Sticker | bodyy (Foil) | Cologne 2016"},"1567":{"market_hash_name":"Sticker | bodyy (Gold) | Cologne 2016"},"1568":{"market_hash_name":"Sticker | RpK | Cologne 2016"},"1569":{"market_hash_name":"Sticker | RpK (Foil) | Cologne 2016"},"157":{"market_hash_name":"Sticker | Fnatic (Foil) | Cologne 2014"},"1570":{"market_hash_name":"Sticker | RpK (Gold) | Cologne 2016"},"1571":{"market_hash_name":"Sticker | ScreaM | Cologne 2016"},"1572":{"market_hash_name":"Sticker | ScreaM (Foil) | Cologne 2016"},"1573":{"market_hash_name":"Sticker | ScreaM (Gold) | Cologne 2016"},"1574":{"market_hash_name":"Sticker | shox | Cologne 2016"},"1575":{"market_hash_name":"Sticker | shox (Foil) | Cologne 2016"},"1576":{"market_hash_name":"Sticker | shox (Gold) | Cologne 2016"},"1577":{"market_hash_name":"Sticker | SmithZz | Cologne 2016"},"1578":{"market_hash_name":"Sticker | SmithZz (Foil) | Cologne 2016"},"1579":{"market_hash_name":"Sticker | SmithZz (Gold) | Cologne 2016"},"158":{"market_hash_name":"Sticker | HellRaisers (Foil) | Cologne 2014"},"1580":{"market_hash_name":"Sticker | gla1ve | Cologne 2016"},"1581":{"market_hash_name":"Sticker | gla1ve (Foil) | Cologne 2016"},"1582":{"market_hash_name":"Sticker | gla1ve (Gold) | Cologne 2016"},"1583":{"market_hash_name":"Sticker | device | Cologne 2016"},"1584":{"market_hash_name":"Sticker | device (Foil) | Cologne 2016"},"1585":{"market_hash_name":"Sticker | device (Gold) | Cologne 2016"},"1586":{"market_hash_name":"Sticker | dupreeh | Cologne 2016"},"1587":{"market_hash_name":"Sticker | dupreeh (Foil) | Cologne 2016"},"1588":{"market_hash_name":"Sticker | dupreeh (Gold) | Cologne 2016"},"1589":{"market_hash_name":"Sticker | karrigan | Cologne 2016"},"159":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cologne 2014"},"1590":{"market_hash_name":"Sticker | karrigan (Foil) | Cologne 2016"},"1591":{"market_hash_name":"Sticker | karrigan (Gold) | Cologne 2016"},"1592":{"market_hash_name":"Sticker | Xyp9x | Cologne 2016"},"1593":{"market_hash_name":"Sticker | Xyp9x (Foil) | Cologne 2016"},"1594":{"market_hash_name":"Sticker | Xyp9x (Gold) | Cologne 2016"},"1595":{"market_hash_name":"Sticker | spaze | Cologne 2016"},"1596":{"market_hash_name":"Sticker | spaze (Foil) | Cologne 2016"},"1597":{"market_hash_name":"Sticker | spaze (Gold) | Cologne 2016"},"1598":{"market_hash_name":"Sticker | Dosia | Cologne 2016"},"1599":{"market_hash_name":"Sticker | Dosia (Foil) | Cologne 2016"},"16":{"market_hash_name":"Sticker | I Conquered"},"160":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Cologne 2014"},"1600":{"market_hash_name":"Sticker | Dosia (Gold) | Cologne 2016"},"1601":{"market_hash_name":"Sticker | hooch | Cologne 2016"},"1602":{"market_hash_name":"Sticker | hooch (Foil) | Cologne 2016"},"1603":{"market_hash_name":"Sticker | hooch (Gold) | Cologne 2016"},"1604":{"market_hash_name":"Sticker | mou | Cologne 2016"},"1605":{"market_hash_name":"Sticker | mou (Foil) | Cologne 2016"},"1606":{"market_hash_name":"Sticker | mou (Gold) | Cologne 2016"},"1607":{"market_hash_name":"Sticker | AdreN | Cologne 2016"},"1608":{"market_hash_name":"Sticker | AdreN (Foil) | Cologne 2016"},"1609":{"market_hash_name":"Sticker | AdreN (Gold) | Cologne 2016"},"161":{"market_hash_name":"Sticker | Team LDLC.com (Foil) | Cologne 2014"},"1610":{"market_hash_name":"Sticker | byali | Cologne 2016"},"1611":{"market_hash_name":"Sticker | byali (Foil) | Cologne 2016"},"1612":{"market_hash_name":"Sticker | byali (Gold) | Cologne 2016"},"1613":{"market_hash_name":"Sticker | NEO | Cologne 2016"},"1614":{"market_hash_name":"Sticker | NEO (Foil) | Cologne 2016"},"1615":{"market_hash_name":"Sticker | NEO (Gold) | Cologne 2016"},"1616":{"market_hash_name":"Sticker | pashaBiceps | Cologne 2016"},"1617":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Cologne 2016"},"1618":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Cologne 2016"},"1619":{"market_hash_name":"Sticker | Snax | Cologne 2016"},"162":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cologne 2014"},"1620":{"market_hash_name":"Sticker | Snax (Foil) | Cologne 2016"},"1621":{"market_hash_name":"Sticker | Snax (Gold) | Cologne 2016"},"1622":{"market_hash_name":"Sticker | TaZ | Cologne 2016"},"1623":{"market_hash_name":"Sticker | TaZ (Foil) | Cologne 2016"},"1624":{"market_hash_name":"Sticker | TaZ (Gold) | Cologne 2016"},"1625":{"market_hash_name":"Sticker | Boris"},"1626":{"market_hash_name":"Sticker | Max"},"1627":{"market_hash_name":"Sticker | Stan"},"1628":{"market_hash_name":"Sticker | Jack"},"1629":{"market_hash_name":"Sticker | Perry"},"163":{"market_hash_name":"Sticker | Copenhagen Wolves (Foil) | Cologne 2014"},"1630":{"market_hash_name":"Sticker | Viggo"},"1631":{"market_hash_name":"Sticker | Joan"},"1632":{"market_hash_name":"Sticker | Boris (Holo)"},"1633":{"market_hash_name":"Sticker | Max (Holo)"},"1634":{"market_hash_name":"Sticker | Stan (Holo)"},"1635":{"market_hash_name":"Sticker | Jack (Holo)"},"1636":{"market_hash_name":"Sticker | Perry (Holo)"},"1637":{"market_hash_name":"Sticker | Viggo (Holo)"},"1638":{"market_hash_name":"Sticker | Joan (Holo)"},"1639":{"market_hash_name":"Sticker | Basilisk"},"164":{"market_hash_name":"Sticker | dAT team (Foil) | Cologne 2014"},"1640":{"market_hash_name":"Sticker | Dragon"},"1641":{"market_hash_name":"Sticker | Hippocamp"},"1642":{"market_hash_name":"Sticker | Manticore"},"1643":{"market_hash_name":"Sticker | Pegasus"},"1644":{"market_hash_name":"Sticker | Phoenix Reborn"},"1645":{"market_hash_name":"Sticker | Sphinx"},"1646":{"market_hash_name":"Sticker | Hippocamp (Holo)"},"1647":{"market_hash_name":"Sticker | Manticore (Holo)"},"1648":{"market_hash_name":"Sticker | Pegasus (Holo)"},"1649":{"market_hash_name":"Sticker | Sphinx (Holo)"},"165":{"market_hash_name":"Sticker | Epsilon eSports (Foil) | Cologne 2014"},"1650":{"market_hash_name":"Sticker | Basilisk (Foil)"},"1651":{"market_hash_name":"Sticker | Dragon (Foil)"},"1652":{"market_hash_name":"Sticker | Phoenix Reborn (Foil)"},"166":{"market_hash_name":"Sticker | iBUYPOWER (Foil) | Cologne 2014"},"167":{"market_hash_name":"Sticker | London Conspiracy (Foil) | Cologne 2014"},"168":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2014"},"1689":{"market_hash_name":"Sticker | Ancient (Gold)"},"169":{"market_hash_name":"Sticker | Titan (Foil) | Cologne 2014"},"1690":{"market_hash_name":"Sticker | Dust II (Gold)"},"1691":{"market_hash_name":"Sticker | Inferno (Gold)"},"1692":{"market_hash_name":"Sticker | Mirage (Gold)"},"1693":{"market_hash_name":"Sticker | Nuke (Gold)"},"1694":{"market_hash_name":"Sticker | Overpass (Gold)"},"1695":{"market_hash_name":"Sticker | Vertigo (Gold)"},"17":{"market_hash_name":"Sticker | Seek \u0026 Destroy"},"170":{"market_hash_name":"Sticker | Vox Eminor (Foil) | Cologne 2014"},"171":{"market_hash_name":"Sticker | MTS GameGod Wolf (Foil) | Cologne 2014"},"172":{"market_hash_name":"Sticker | ESL One Cologne 2014 (Gold)"},"173":{"market_hash_name":"Sticker | Bossy Burger"},"1738":{"market_hash_name":"Sticker | Astralis | Atlanta 2017"},"1739":{"market_hash_name":"Sticker | Astralis (Holo) | Atlanta 2017"},"174":{"market_hash_name":"Sticker | Cat Call"},"1740":{"market_hash_name":"Sticker | Astralis (Foil) | Atlanta 2017"},"1741":{"market_hash_name":"Sticker | Astralis (Gold) | Atlanta 2017"},"1742":{"market_hash_name":"Sticker | Team EnVyUs | Atlanta 2017"},"1743":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Atlanta 2017"},"1744":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Atlanta 2017"},"1745":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Atlanta 2017"},"1746":{"market_hash_name":"Sticker | FaZe Clan | Atlanta 2017"},"1747":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Atlanta 2017"},"1748":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Atlanta 2017"},"1749":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Atlanta 2017"},"175":{"market_hash_name":"Sticker | Chicken Strike"},"1750":{"market_hash_name":"Sticker | Flipsid3 Tactics | Atlanta 2017"},"1751":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Atlanta 2017"},"1752":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Atlanta 2017"},"1753":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Atlanta 2017"},"1754":{"market_hash_name":"Sticker | Fnatic | Atlanta 2017"},"1755":{"market_hash_name":"Sticker | Fnatic (Holo) | Atlanta 2017"},"1756":{"market_hash_name":"Sticker | Fnatic (Foil) | Atlanta 2017"},"1757":{"market_hash_name":"Sticker | Fnatic (Gold) | Atlanta 2017"},"1758":{"market_hash_name":"Sticker | G2 Esports | Atlanta 2017"},"1759":{"market_hash_name":"Sticker | G2 Esports (Holo) | Atlanta 2017"},"176":{"market_hash_name":"Sticker | CT in Banana"},"1760":{"market_hash_name":"Sticker | G2 Esports (Foil) | Atlanta 2017"},"1761":{"market_hash_name":"Sticker | G2 Esports (Gold) | Atlanta 2017"},"1762":{"market_hash_name":"Sticker | Gambit Gaming | Atlanta 2017"},"1763":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | Atlanta 2017"},"1764":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | Atlanta 2017"},"1765":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | Atlanta 2017"},"1766":{"market_hash_name":"Sticker | GODSENT | Atlanta 2017"},"1767":{"market_hash_name":"Sticker | GODSENT (Holo) | Atlanta 2017"},"1768":{"market_hash_name":"Sticker | GODSENT (Foil) | Atlanta 2017"},"1769":{"market_hash_name":"Sticker | GODSENT (Gold) | Atlanta 2017"},"177":{"market_hash_name":"Sticker | Don't Worry, I'm Pro"},"1770":{"market_hash_name":"Sticker | HellRaisers | Atlanta 2017"},"1771":{"market_hash_name":"Sticker | HellRaisers (Holo) | Atlanta 2017"},"1772":{"market_hash_name":"Sticker | HellRaisers (Foil) | Atlanta 2017"},"1773":{"market_hash_name":"Sticker | HellRaisers (Gold) | Atlanta 2017"},"1774":{"market_hash_name":"Sticker | mousesports | Atlanta 2017"},"1775":{"market_hash_name":"Sticker | mousesports (Holo) | Atlanta 2017"},"1776":{"market_hash_name":"Sticker | mousesports (Foil) | Atlanta 2017"},"1777":{"market_hash_name":"Sticker | mousesports (Gold) | Atlanta 2017"},"1778":{"market_hash_name":"Sticker | Natus Vincere | Atlanta 2017"},"1779":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Atlanta 2017"},"178":{"market_hash_name":"Sticker | Fight like a Girl"},"1780":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Atlanta 2017"},"1781":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Atlanta 2017"},"1782":{"market_hash_name":"Sticker | North | Atlanta 2017"},"1783":{"market_hash_name":"Sticker | North (Holo) | Atlanta 2017"},"1784":{"market_hash_name":"Sticker | North (Foil) | Atlanta 2017"},"1785":{"market_hash_name":"Sticker | North (Gold) | Atlanta 2017"},"1786":{"market_hash_name":"Sticker | OpTic Gaming | Atlanta 2017"},"1787":{"market_hash_name":"Sticker | OpTic Gaming (Holo) | Atlanta 2017"},"1788":{"market_hash_name":"Sticker | OpTic Gaming (Foil) | Atlanta 2017"},"1789":{"market_hash_name":"Sticker | OpTic Gaming (Gold) | Atlanta 2017"},"179":{"market_hash_name":"Sticker | Flashbang"},"1790":{"market_hash_name":"Sticker | SK Gaming | Atlanta 2017"},"1791":{"market_hash_name":"Sticker | SK Gaming (Holo) | Atlanta 2017"},"1792":{"market_hash_name":"Sticker | SK Gaming (Foil) | Atlanta 2017"},"1793":{"market_hash_name":"Sticker | SK Gaming (Gold) | Atlanta 2017"},"1794":{"market_hash_name":"Sticker | Team Liquid | Atlanta 2017"},"1795":{"market_hash_name":"Sticker | Team Liquid (Holo) | Atlanta 2017"},"1796":{"market_hash_name":"Sticker | Team Liquid (Foil) | Atlanta 2017"},"1797":{"market_hash_name":"Sticker | Team Liquid (Gold) | Atlanta 2017"},"1798":{"market_hash_name":"Sticker | Virtus.Pro | Atlanta 2017"},"1799":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Atlanta 2017"},"18":{"market_hash_name":"Sticker | Black Dog"},"180":{"market_hash_name":"Sticker | Kawaii Killer CT"},"1800":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Atlanta 2017"},"1801":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Atlanta 2017"},"1802":{"market_hash_name":"Sticker | ELEAGUE | Atlanta 2017"},"1803":{"market_hash_name":"Sticker | ELEAGUE (Holo) | Atlanta 2017"},"1804":{"market_hash_name":"Sticker | ELEAGUE (Foil) | Atlanta 2017"},"1805":{"market_hash_name":"Sticker | ELEAGUE (Gold) | Atlanta 2017"},"181":{"market_hash_name":"Sticker | Nelu the Bear"},"182":{"market_hash_name":"Sticker | One Shot One Kill"},"1823":{"market_hash_name":"Sticker | STYKO | Atlanta 2017"},"1824":{"market_hash_name":"Sticker | STYKO (Foil) | Atlanta 2017"},"1825":{"market_hash_name":"Sticker | STYKO (Gold) | Atlanta 2017"},"1826":{"market_hash_name":"Sticker | Zero | Atlanta 2017"},"1827":{"market_hash_name":"Sticker | Zero (Foil) | Atlanta 2017"},"1828":{"market_hash_name":"Sticker | Zero (Gold) | Atlanta 2017"},"1829":{"market_hash_name":"Sticker | DeadFox | Atlanta 2017"},"183":{"market_hash_name":"Sticker | Shooting Star Return"},"1830":{"market_hash_name":"Sticker | DeadFox (Foil) | Atlanta 2017"},"1831":{"market_hash_name":"Sticker | DeadFox (Gold) | Atlanta 2017"},"1832":{"market_hash_name":"Sticker | bondik | Atlanta 2017"},"1833":{"market_hash_name":"Sticker | bondik (Foil) | Atlanta 2017"},"1834":{"market_hash_name":"Sticker | bondik (Gold) | Atlanta 2017"},"1835":{"market_hash_name":"Sticker | ANGE1 | Atlanta 2017"},"1836":{"market_hash_name":"Sticker | ANGE1 (Foil) | Atlanta 2017"},"1837":{"market_hash_name":"Sticker | ANGE1 (Gold) | Atlanta 2017"},"1838":{"market_hash_name":"Sticker | tarik | Atlanta 2017"},"1839":{"market_hash_name":"Sticker | tarik (Foil) | Atlanta 2017"},"184":{"market_hash_name":"Sticker | T On Cat"},"1840":{"market_hash_name":"Sticker | tarik (Gold) | Atlanta 2017"},"1841":{"market_hash_name":"Sticker | mixwell | Atlanta 2017"},"1842":{"market_hash_name":"Sticker | mixwell (Foil) | Atlanta 2017"},"1843":{"market_hash_name":"Sticker | mixwell (Gold) | Atlanta 2017"},"1844":{"market_hash_name":"Sticker | NAF | Atlanta 2017"},"1845":{"market_hash_name":"Sticker | NAF (Foil) | Atlanta 2017"},"1846":{"market_hash_name":"Sticker | NAF (Gold) | Atlanta 2017"},"1847":{"market_hash_name":"Sticker | RUSH | Atlanta 2017"},"1848":{"market_hash_name":"Sticker | RUSH (Foil) | Atlanta 2017"},"1849":{"market_hash_name":"Sticker | RUSH (Gold) | Atlanta 2017"},"185":{"market_hash_name":"Sticker | War Penguin"},"1850":{"market_hash_name":"Sticker | stanislaw | Atlanta 2017"},"1851":{"market_hash_name":"Sticker | stanislaw (Foil) | Atlanta 2017"},"1852":{"market_hash_name":"Sticker | stanislaw (Gold) | Atlanta 2017"},"1853":{"market_hash_name":"Sticker | apEX | Atlanta 2017"},"1854":{"market_hash_name":"Sticker | apEX (Foil) | Atlanta 2017"},"1855":{"market_hash_name":"Sticker | apEX (Gold) | Atlanta 2017"},"1856":{"market_hash_name":"Sticker | Happy | Atlanta 2017"},"1857":{"market_hash_name":"Sticker | Happy (Foil) | Atlanta 2017"},"1858":{"market_hash_name":"Sticker | Happy (Gold) | Atlanta 2017"},"1859":{"market_hash_name":"Sticker | SIXER | Atlanta 2017"},"186":{"market_hash_name":"Sticker | Windy Walking Club"},"1860":{"market_hash_name":"Sticker | SIXER (Foil) | Atlanta 2017"},"1861":{"market_hash_name":"Sticker | SIXER (Gold) | Atlanta 2017"},"1862":{"market_hash_name":"Sticker | kennyS | Atlanta 2017"},"1863":{"market_hash_name":"Sticker | kennyS (Foil) | Atlanta 2017"},"1864":{"market_hash_name":"Sticker | kennyS (Gold) | Atlanta 2017"},"1865":{"market_hash_name":"Sticker | NBK- | Atlanta 2017"},"1866":{"market_hash_name":"Sticker | NBK- (Foil) | Atlanta 2017"},"1867":{"market_hash_name":"Sticker | NBK- (Gold) | Atlanta 2017"},"1868":{"market_hash_name":"Sticker | B1ad3 | Atlanta 2017"},"1869":{"market_hash_name":"Sticker | B1ad3 (Foil) | Atlanta 2017"},"187":{"market_hash_name":"Sticker | Blitzkrieg"},"1870":{"market_hash_name":"Sticker | B1ad3 (Gold) | Atlanta 2017"},"1871":{"market_hash_name":"Sticker | wayLander | Atlanta 2017"},"1872":{"market_hash_name":"Sticker | wayLander (Foil) | Atlanta 2017"},"1873":{"market_hash_name":"Sticker | wayLander (Gold) | Atlanta 2017"},"1874":{"market_hash_name":"Sticker | electronic | Atlanta 2017"},"1875":{"market_hash_name":"Sticker | electronic (Foil) | Atlanta 2017"},"1876":{"market_hash_name":"Sticker | electronic (Gold) | Atlanta 2017"},"1877":{"market_hash_name":"Sticker | markeloff | Atlanta 2017"},"1878":{"market_hash_name":"Sticker | markeloff (Foil) | Atlanta 2017"},"1879":{"market_hash_name":"Sticker | markeloff (Gold) | Atlanta 2017"},"188":{"market_hash_name":"Sticker | Pigeon Master"},"1880":{"market_hash_name":"Sticker | WorldEdit | Atlanta 2017"},"1881":{"market_hash_name":"Sticker | WorldEdit (Foil) | Atlanta 2017"},"1882":{"market_hash_name":"Sticker | WorldEdit (Gold) | Atlanta 2017"},"1883":{"market_hash_name":"Sticker | twist | Atlanta 2017"},"1884":{"market_hash_name":"Sticker | twist (Foil) | Atlanta 2017"},"1885":{"market_hash_name":"Sticker | twist (Gold) | Atlanta 2017"},"1886":{"market_hash_name":"Sticker | disco doplan | Atlanta 2017"},"1887":{"market_hash_name":"Sticker | disco doplan (Foil) | Atlanta 2017"},"1888":{"market_hash_name":"Sticker | disco doplan (Gold) | Atlanta 2017"},"1889":{"market_hash_name":"Sticker | KRIMZ | Atlanta 2017"},"189":{"market_hash_name":"Sticker | Terrorized"},"1890":{"market_hash_name":"Sticker | KRIMZ (Foil) | Atlanta 2017"},"1891":{"market_hash_name":"Sticker | KRIMZ (Gold) | Atlanta 2017"},"1892":{"market_hash_name":"Sticker | olofmeister | Atlanta 2017"},"1893":{"market_hash_name":"Sticker | olofmeister (Foil) | Atlanta 2017"},"1894":{"market_hash_name":"Sticker | olofmeister (Gold) | Atlanta 2017"},"1895":{"market_hash_name":"Sticker | dennis | Atlanta 2017"},"1896":{"market_hash_name":"Sticker | dennis (Foil) | Atlanta 2017"},"1897":{"market_hash_name":"Sticker | dennis (Gold) | Atlanta 2017"},"1898":{"market_hash_name":"Sticker | aizy | Atlanta 2017"},"1899":{"market_hash_name":"Sticker | aizy (Foil) | Atlanta 2017"},"19":{"market_hash_name":"Sticker | Fearsome"},"190":{"market_hash_name":"Sticker | Till Death Do Us Part"},"1900":{"market_hash_name":"Sticker | aizy (Gold) | Atlanta 2017"},"1901":{"market_hash_name":"Sticker | allu | Atlanta 2017"},"1902":{"market_hash_name":"Sticker | allu (Foil) | Atlanta 2017"},"1903":{"market_hash_name":"Sticker | allu (Gold) | Atlanta 2017"},"1904":{"market_hash_name":"Sticker | kioShiMa | Atlanta 2017"},"1905":{"market_hash_name":"Sticker | kioShiMa (Foil) | Atlanta 2017"},"1906":{"market_hash_name":"Sticker | kioShiMa (Gold) | Atlanta 2017"},"1907":{"market_hash_name":"Sticker | rain | Atlanta 2017"},"1908":{"market_hash_name":"Sticker | rain (Foil) | Atlanta 2017"},"1909":{"market_hash_name":"Sticker | rain (Gold) | Atlanta 2017"},"191":{"market_hash_name":"Sticker | Stay Frosty"},"1910":{"market_hash_name":"Sticker | karrigan | Atlanta 2017"},"1911":{"market_hash_name":"Sticker | karrigan (Foil) | Atlanta 2017"},"1912":{"market_hash_name":"Sticker | karrigan (Gold) | Atlanta 2017"},"1913":{"market_hash_name":"Sticker | coldzera | Atlanta 2017"},"1914":{"market_hash_name":"Sticker | coldzera (Foil) | Atlanta 2017"},"1915":{"market_hash_name":"Sticker | coldzera (Gold) | Atlanta 2017"},"1916":{"market_hash_name":"Sticker | FalleN | Atlanta 2017"},"1917":{"market_hash_name":"Sticker | FalleN (Foil) | Atlanta 2017"},"1918":{"market_hash_name":"Sticker | FalleN (Gold) | Atlanta 2017"},"1919":{"market_hash_name":"Sticker | fer | Atlanta 2017"},"192":{"market_hash_name":"Sticker | Doomed"},"1920":{"market_hash_name":"Sticker | fer (Foil) | Atlanta 2017"},"1921":{"market_hash_name":"Sticker | fer (Gold) | Atlanta 2017"},"1922":{"market_hash_name":"Sticker | fox | Atlanta 2017"},"1923":{"market_hash_name":"Sticker | fox (Foil) | Atlanta 2017"},"1924":{"market_hash_name":"Sticker | fox (Gold) | Atlanta 2017"},"1925":{"market_hash_name":"Sticker | TACO | Atlanta 2017"},"1926":{"market_hash_name":"Sticker | TACO (Foil) | Atlanta 2017"},"1927":{"market_hash_name":"Sticker | TACO (Gold) | Atlanta 2017"},"1928":{"market_hash_name":"Sticker | chrisJ | Atlanta 2017"},"1929":{"market_hash_name":"Sticker | chrisJ (Foil) | Atlanta 2017"},"193":{"market_hash_name":"Sticker | Queen Of Pain"},"1930":{"market_hash_name":"Sticker | chrisJ (Gold) | Atlanta 2017"},"1931":{"market_hash_name":"Sticker | denis | Atlanta 2017"},"1932":{"market_hash_name":"Sticker | denis (Foil) | Atlanta 2017"},"1933":{"market_hash_name":"Sticker | denis (Gold) | Atlanta 2017"},"1934":{"market_hash_name":"Sticker | Spiidi | Atlanta 2017"},"1935":{"market_hash_name":"Sticker | Spiidi (Foil) | Atlanta 2017"},"1936":{"market_hash_name":"Sticker | Spiidi (Gold) | Atlanta 2017"},"1937":{"market_hash_name":"Sticker | loWel | Atlanta 2017"},"1938":{"market_hash_name":"Sticker | loWel (Foil) | Atlanta 2017"},"1939":{"market_hash_name":"Sticker | loWel (Gold) | Atlanta 2017"},"194":{"market_hash_name":"Sticker | Trick Or Threat"},"1940":{"market_hash_name":"Sticker | NiKo | Atlanta 2017"},"1941":{"market_hash_name":"Sticker | NiKo (Foil) | Atlanta 2017"},"1942":{"market_hash_name":"Sticker | NiKo (Gold) | Atlanta 2017"},"1943":{"market_hash_name":"Sticker | Edward | Atlanta 2017"},"1944":{"market_hash_name":"Sticker | Edward (Foil) | Atlanta 2017"},"1945":{"market_hash_name":"Sticker | Edward (Gold) | Atlanta 2017"},"1946":{"market_hash_name":"Sticker | flamie | Atlanta 2017"},"1947":{"market_hash_name":"Sticker | flamie (Foil) | Atlanta 2017"},"1948":{"market_hash_name":"Sticker | flamie (Gold) | Atlanta 2017"},"1949":{"market_hash_name":"Sticker | GuardiaN | Atlanta 2017"},"195":{"market_hash_name":"Sticker | Trick Or Treat"},"1950":{"market_hash_name":"Sticker | GuardiaN (Foil) | Atlanta 2017"},"1951":{"market_hash_name":"Sticker | GuardiaN (Gold) | Atlanta 2017"},"1952":{"market_hash_name":"Sticker | seized | Atlanta 2017"},"1953":{"market_hash_name":"Sticker | seized (Foil) | Atlanta 2017"},"1954":{"market_hash_name":"Sticker | seized (Gold) | Atlanta 2017"},"1955":{"market_hash_name":"Sticker | s1mple | Atlanta 2017"},"1956":{"market_hash_name":"Sticker | s1mple (Foil) | Atlanta 2017"},"1957":{"market_hash_name":"Sticker | s1mple (Gold) | Atlanta 2017"},"1958":{"market_hash_name":"Sticker | znajder | Atlanta 2017"},"1959":{"market_hash_name":"Sticker | znajder (Foil) | Atlanta 2017"},"196":{"market_hash_name":"Sticker | Witch"},"1960":{"market_hash_name":"Sticker | znajder (Gold) | Atlanta 2017"},"1961":{"market_hash_name":"Sticker | Lekr0 | Atlanta 2017"},"1962":{"market_hash_name":"Sticker | Lekr0 (Foil) | Atlanta 2017"},"1963":{"market_hash_name":"Sticker | Lekr0 (Gold) | Atlanta 2017"},"1964":{"market_hash_name":"Sticker | pronax | Atlanta 2017"},"1965":{"market_hash_name":"Sticker | pronax (Foil) | Atlanta 2017"},"1966":{"market_hash_name":"Sticker | pronax (Gold) | Atlanta 2017"},"1967":{"market_hash_name":"Sticker | JW | Atlanta 2017"},"1968":{"market_hash_name":"Sticker | JW (Foil) | Atlanta 2017"},"1969":{"market_hash_name":"Sticker | JW (Gold) | Atlanta 2017"},"197":{"market_hash_name":"Sticker | Zombie Lover"},"1970":{"market_hash_name":"Sticker | flusha | Atlanta 2017"},"1971":{"market_hash_name":"Sticker | flusha (Foil) | Atlanta 2017"},"1972":{"market_hash_name":"Sticker | flusha (Gold) | Atlanta 2017"},"1973":{"market_hash_name":"Sticker | cajunb | Atlanta 2017"},"1974":{"market_hash_name":"Sticker | cajunb (Foil) | Atlanta 2017"},"1975":{"market_hash_name":"Sticker | cajunb (Gold) | Atlanta 2017"},"1976":{"market_hash_name":"Sticker | MSL | Atlanta 2017"},"1977":{"market_hash_name":"Sticker | MSL (Foil) | Atlanta 2017"},"1978":{"market_hash_name":"Sticker | MSL (Gold) | Atlanta 2017"},"1979":{"market_hash_name":"Sticker | Magisk | Atlanta 2017"},"198":{"market_hash_name":"Sticker | Fnatic | DreamHack 2014"},"1980":{"market_hash_name":"Sticker | Magisk (Foil) | Atlanta 2017"},"1981":{"market_hash_name":"Sticker | Magisk (Gold) | Atlanta 2017"},"1982":{"market_hash_name":"Sticker | RUBINO | Atlanta 2017"},"1983":{"market_hash_name":"Sticker | RUBINO (Foil) | Atlanta 2017"},"1984":{"market_hash_name":"Sticker | RUBINO (Gold) | Atlanta 2017"},"1985":{"market_hash_name":"Sticker | k0nfig | Atlanta 2017"},"1986":{"market_hash_name":"Sticker | k0nfig (Foil) | Atlanta 2017"},"1987":{"market_hash_name":"Sticker | k0nfig (Gold) | Atlanta 2017"},"1988":{"market_hash_name":"Sticker | jdm64 | Atlanta 2017"},"1989":{"market_hash_name":"Sticker | jdm64 (Foil) | Atlanta 2017"},"199":{"market_hash_name":"Sticker | Fnatic (Holo) | DreamHack 2014"},"1990":{"market_hash_name":"Sticker | jdm64 (Gold) | Atlanta 2017"},"1991":{"market_hash_name":"Sticker | EliGE | Atlanta 2017"},"1992":{"market_hash_name":"Sticker | EliGE (Foil) | Atlanta 2017"},"1993":{"market_hash_name":"Sticker | EliGE (Gold) | Atlanta 2017"},"1994":{"market_hash_name":"Sticker | Pimp | Atlanta 2017"},"1995":{"market_hash_name":"Sticker | Pimp (Foil) | Atlanta 2017"},"1996":{"market_hash_name":"Sticker | Pimp (Gold) | Atlanta 2017"},"1997":{"market_hash_name":"Sticker | Hiko | Atlanta 2017"},"1998":{"market_hash_name":"Sticker | Hiko (Foil) | Atlanta 2017"},"1999":{"market_hash_name":"Sticker | Hiko (Gold) | Atlanta 2017"},"2":{"market_hash_name":"Sticker | Shooter (Foil)"},"20":{"market_hash_name":"Sticker | Fearsome (Holo)"},"200":{"market_hash_name":"Sticker | Fnatic (Foil) | DreamHack 2014"},"2000":{"market_hash_name":"Sticker | nitr0 | Atlanta 2017"},"2001":{"market_hash_name":"Sticker | nitr0 (Foil) | Atlanta 2017"},"2002":{"market_hash_name":"Sticker | nitr0 (Gold) | Atlanta 2017"},"2003":{"market_hash_name":"Sticker | bodyy | Atlanta 2017"},"2004":{"market_hash_name":"Sticker | bodyy (Foil) | Atlanta 2017"},"2005":{"market_hash_name":"Sticker | bodyy (Gold) | Atlanta 2017"},"2006":{"market_hash_name":"Sticker | RpK | Atlanta 2017"},"2007":{"market_hash_name":"Sticker | RpK (Foil) | Atlanta 2017"},"2008":{"market_hash_name":"Sticker | RpK (Gold) | Atlanta 2017"},"2009":{"market_hash_name":"Sticker | ScreaM | Atlanta 2017"},"201":{"market_hash_name":"Sticker | Cloud9 | DreamHack 2014"},"2010":{"market_hash_name":"Sticker | ScreaM (Foil) | Atlanta 2017"},"2011":{"market_hash_name":"Sticker | ScreaM (Gold) | Atlanta 2017"},"2012":{"market_hash_name":"Sticker | shox | Atlanta 2017"},"2013":{"market_hash_name":"Sticker | shox (Foil) | Atlanta 2017"},"2014":{"market_hash_name":"Sticker | shox (Gold) | Atlanta 2017"},"2015":{"market_hash_name":"Sticker | SmithZz | Atlanta 2017"},"2016":{"market_hash_name":"Sticker | SmithZz (Foil) | Atlanta 2017"},"2017":{"market_hash_name":"Sticker | SmithZz (Gold) | Atlanta 2017"},"2018":{"market_hash_name":"Sticker | gla1ve | Atlanta 2017"},"2019":{"market_hash_name":"Sticker | gla1ve (Foil) | Atlanta 2017"},"202":{"market_hash_name":"Sticker | Cloud9 (Holo) | DreamHack 2014"},"2020":{"market_hash_name":"Sticker | gla1ve (Gold) | Atlanta 2017"},"2021":{"market_hash_name":"Sticker | device | Atlanta 2017"},"2022":{"market_hash_name":"Sticker | device (Foil) | Atlanta 2017"},"2023":{"market_hash_name":"Sticker | device (Gold) | Atlanta 2017"},"2024":{"market_hash_name":"Sticker | dupreeh | Atlanta 2017"},"2025":{"market_hash_name":"Sticker | dupreeh (Foil) | Atlanta 2017"},"2026":{"market_hash_name":"Sticker | dupreeh (Gold) | Atlanta 2017"},"2027":{"market_hash_name":"Sticker | Kjaerbye | Atlanta 2017"},"2028":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Atlanta 2017"},"2029":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Atlanta 2017"},"203":{"market_hash_name":"Sticker | Cloud9 (Foil) | DreamHack 2014"},"2030":{"market_hash_name":"Sticker | Xyp9x | Atlanta 2017"},"2031":{"market_hash_name":"Sticker | Xyp9x (Foil) | Atlanta 2017"},"2032":{"market_hash_name":"Sticker | Xyp9x (Gold) | Atlanta 2017"},"2033":{"market_hash_name":"Sticker | Zeus | Atlanta 2017"},"2034":{"market_hash_name":"Sticker | Zeus (Foil) | Atlanta 2017"},"2035":{"market_hash_name":"Sticker | Zeus (Gold) | Atlanta 2017"},"2036":{"market_hash_name":"Sticker | Dosia | Atlanta 2017"},"2037":{"market_hash_name":"Sticker | Dosia (Foil) | Atlanta 2017"},"2038":{"market_hash_name":"Sticker | Dosia (Gold) | Atlanta 2017"},"2039":{"market_hash_name":"Sticker | Hobbit | Atlanta 2017"},"2040":{"market_hash_name":"Sticker | Hobbit (Foil) | Atlanta 2017"},"2041":{"market_hash_name":"Sticker | Hobbit (Gold) | Atlanta 2017"},"2042":{"market_hash_name":"Sticker | mou | Atlanta 2017"},"2043":{"market_hash_name":"Sticker | mou (Foil) | Atlanta 2017"},"2044":{"market_hash_name":"Sticker | mou (Gold) | Atlanta 2017"},"2045":{"market_hash_name":"Sticker | AdreN | Atlanta 2017"},"2046":{"market_hash_name":"Sticker | AdreN (Foil) | Atlanta 2017"},"2047":{"market_hash_name":"Sticker | AdreN (Gold) | Atlanta 2017"},"2048":{"market_hash_name":"Sticker | byali | Atlanta 2017"},"2049":{"market_hash_name":"Sticker | byali (Foil) | Atlanta 2017"},"2050":{"market_hash_name":"Sticker | byali (Gold) | Atlanta 2017"},"2051":{"market_hash_name":"Sticker | NEO | Atlanta 2017"},"2052":{"market_hash_name":"Sticker | NEO (Foil) | Atlanta 2017"},"2053":{"market_hash_name":"Sticker | NEO (Gold) | Atlanta 2017"},"2054":{"market_hash_name":"Sticker | pashaBiceps | Atlanta 2017"},"2055":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Atlanta 2017"},"2056":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Atlanta 2017"},"2057":{"market_hash_name":"Sticker | Snax | Atlanta 2017"},"2058":{"market_hash_name":"Sticker | Snax (Foil) | Atlanta 2017"},"2059":{"market_hash_name":"Sticker | Snax (Gold) | Atlanta 2017"},"2060":{"market_hash_name":"Sticker | TaZ | Atlanta 2017"},"2061":{"market_hash_name":"Sticker | TaZ (Foil) | Atlanta 2017"},"2062":{"market_hash_name":"Sticker | TaZ (Gold) | Atlanta 2017"},"2063":{"market_hash_name":"Sticker | Astralis | Krakow 2017"},"2064":{"market_hash_name":"Sticker | Astralis (Holo) | Krakow 2017"},"2065":{"market_hash_name":"Sticker | Astralis (Foil) | Krakow 2017"},"2066":{"market_hash_name":"Sticker | Astralis (Gold) | Krakow 2017"},"2067":{"market_hash_name":"Sticker | Virtus.Pro | Krakow 2017"},"2068":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Krakow 2017"},"2069":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Krakow 2017"},"207":{"market_hash_name":"Sticker | Virtus.Pro | DreamHack 2014"},"2070":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Krakow 2017"},"2071":{"market_hash_name":"Sticker | Fnatic | Krakow 2017"},"2072":{"market_hash_name":"Sticker | Fnatic (Holo) | Krakow 2017"},"2073":{"market_hash_name":"Sticker | Fnatic (Foil) | Krakow 2017"},"2074":{"market_hash_name":"Sticker | Fnatic (Gold) | Krakow 2017"},"2075":{"market_hash_name":"Sticker | SK Gaming | Krakow 2017"},"2076":{"market_hash_name":"Sticker | SK Gaming (Holo) | Krakow 2017"},"2077":{"market_hash_name":"Sticker | SK Gaming (Foil) | Krakow 2017"},"2078":{"market_hash_name":"Sticker | SK Gaming (Gold) | Krakow 2017"},"2079":{"market_hash_name":"Sticker | Natus Vincere | Krakow 2017"},"208":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | DreamHack 2014"},"2080":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Krakow 2017"},"2081":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Krakow 2017"},"2082":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Krakow 2017"},"2083":{"market_hash_name":"Sticker | Gambit | Krakow 2017"},"2084":{"market_hash_name":"Sticker | Gambit (Holo) | Krakow 2017"},"2085":{"market_hash_name":"Sticker | Gambit (Foil) | Krakow 2017"},"2086":{"market_hash_name":"Sticker | Gambit (Gold) | Krakow 2017"},"2087":{"market_hash_name":"Sticker | North | Krakow 2017"},"2088":{"market_hash_name":"Sticker | North (Holo) | Krakow 2017"},"2089":{"market_hash_name":"Sticker | North (Foil) | Krakow 2017"},"209":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | DreamHack 2014"},"2090":{"market_hash_name":"Sticker | North (Gold) | Krakow 2017"},"2091":{"market_hash_name":"Sticker | FaZe Clan | Krakow 2017"},"2092":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Krakow 2017"},"2093":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Krakow 2017"},"2094":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Krakow 2017"},"2095":{"market_hash_name":"Sticker | mousesports | Krakow 2017"},"2096":{"market_hash_name":"Sticker | mousesports (Holo) | Krakow 2017"},"2097":{"market_hash_name":"Sticker | mousesports (Foil) | Krakow 2017"},"2098":{"market_hash_name":"Sticker | mousesports (Gold) | Krakow 2017"},"2099":{"market_hash_name":"Sticker | G2 Esports | Krakow 2017"},"21":{"market_hash_name":"Sticker | Cerberus"},"210":{"market_hash_name":"Sticker | Ninjas in Pyjamas | DreamHack 2014"},"2100":{"market_hash_name":"Sticker | G2 Esports (Holo) | Krakow 2017"},"2101":{"market_hash_name":"Sticker | G2 Esports (Foil) | Krakow 2017"},"2102":{"market_hash_name":"Sticker | G2 Esports (Gold) | Krakow 2017"},"2103":{"market_hash_name":"Sticker | BIG | Krakow 2017"},"2104":{"market_hash_name":"Sticker | BIG (Holo) | Krakow 2017"},"2105":{"market_hash_name":"Sticker | BIG (Foil) | Krakow 2017"},"2106":{"market_hash_name":"Sticker | BIG (Gold) | Krakow 2017"},"2107":{"market_hash_name":"Sticker | Cloud9 | Krakow 2017"},"2108":{"market_hash_name":"Sticker | Cloud9 (Holo) | Krakow 2017"},"2109":{"market_hash_name":"Sticker | Cloud9 (Foil) | Krakow 2017"},"211":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | DreamHack 2014"},"2110":{"market_hash_name":"Sticker | Cloud9 (Gold) | Krakow 2017"},"2111":{"market_hash_name":"Sticker | PENTA Sports | Krakow 2017"},"2112":{"market_hash_name":"Sticker | PENTA Sports (Holo) | Krakow 2017"},"2113":{"market_hash_name":"Sticker | PENTA Sports (Foil) | Krakow 2017"},"2114":{"market_hash_name":"Sticker | PENTA Sports (Gold) | Krakow 2017"},"2115":{"market_hash_name":"Sticker | Flipsid3 Tactics | Krakow 2017"},"2116":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Krakow 2017"},"2117":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Krakow 2017"},"2118":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Krakow 2017"},"2119":{"market_hash_name":"Sticker | Immortals | Krakow 2017"},"212":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | DreamHack 2014"},"2120":{"market_hash_name":"Sticker | Immortals (Holo) | Krakow 2017"},"2121":{"market_hash_name":"Sticker | Immortals (Foil) | Krakow 2017"},"2122":{"market_hash_name":"Sticker | Immortals (Gold) | Krakow 2017"},"2123":{"market_hash_name":"Sticker | Vega Squadron | Krakow 2017"},"2124":{"market_hash_name":"Sticker | Vega Squadron (Holo) | Krakow 2017"},"2125":{"market_hash_name":"Sticker | Vega Squadron (Foil) | Krakow 2017"},"2126":{"market_hash_name":"Sticker | Vega Squadron (Gold) | Krakow 2017"},"2127":{"market_hash_name":"Sticker | PGL | Krakow 2017"},"2128":{"market_hash_name":"Sticker | PGL (Holo) | Krakow 2017"},"2129":{"market_hash_name":"Sticker | PGL (Foil) | Krakow 2017"},"213":{"market_hash_name":"Sticker | Natus Vincere | DreamHack 2014"},"2130":{"market_hash_name":"Sticker | PGL (Gold) | Krakow 2017"},"214":{"market_hash_name":"Sticker | Natus Vincere (Holo) | DreamHack 2014"},"2148":{"market_hash_name":"Sticker | device | Krakow 2017"},"2149":{"market_hash_name":"Sticker | device (Foil) | Krakow 2017"},"215":{"market_hash_name":"Sticker | Natus Vincere (Foil) | DreamHack 2014"},"2150":{"market_hash_name":"Sticker | device (Gold) | Krakow 2017"},"2151":{"market_hash_name":"Sticker | dupreeh | Krakow 2017"},"2152":{"market_hash_name":"Sticker | dupreeh (Foil) | Krakow 2017"},"2153":{"market_hash_name":"Sticker | dupreeh (Gold) | Krakow 2017"},"2154":{"market_hash_name":"Sticker | gla1ve | Krakow 2017"},"2155":{"market_hash_name":"Sticker | gla1ve (Foil) | Krakow 2017"},"2156":{"market_hash_name":"Sticker | gla1ve (Gold) | Krakow 2017"},"2157":{"market_hash_name":"Sticker | Kjaerbye | Krakow 2017"},"2158":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Krakow 2017"},"2159":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Krakow 2017"},"2160":{"market_hash_name":"Sticker | Xyp9x | Krakow 2017"},"2161":{"market_hash_name":"Sticker | Xyp9x (Foil) | Krakow 2017"},"2162":{"market_hash_name":"Sticker | Xyp9x (Gold) | Krakow 2017"},"2163":{"market_hash_name":"Sticker | byali | Krakow 2017"},"2164":{"market_hash_name":"Sticker | byali (Foil) | Krakow 2017"},"2165":{"market_hash_name":"Sticker | byali (Gold) | Krakow 2017"},"2166":{"market_hash_name":"Sticker | NEO | Krakow 2017"},"2167":{"market_hash_name":"Sticker | NEO (Foil) | Krakow 2017"},"2168":{"market_hash_name":"Sticker | NEO (Gold) | Krakow 2017"},"2169":{"market_hash_name":"Sticker | pashaBiceps | Krakow 2017"},"2170":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Krakow 2017"},"2171":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Krakow 2017"},"2172":{"market_hash_name":"Sticker | Snax | Krakow 2017"},"2173":{"market_hash_name":"Sticker | Snax (Foil) | Krakow 2017"},"2174":{"market_hash_name":"Sticker | Snax (Gold) | Krakow 2017"},"2175":{"market_hash_name":"Sticker | TaZ | Krakow 2017"},"2176":{"market_hash_name":"Sticker | TaZ (Foil) | Krakow 2017"},"2177":{"market_hash_name":"Sticker | TaZ (Gold) | Krakow 2017"},"2178":{"market_hash_name":"Sticker | dennis | Krakow 2017"},"2179":{"market_hash_name":"Sticker | dennis (Foil) | Krakow 2017"},"2180":{"market_hash_name":"Sticker | dennis (Gold) | Krakow 2017"},"2181":{"market_hash_name":"Sticker | flusha | Krakow 2017"},"2182":{"market_hash_name":"Sticker | flusha (Foil) | Krakow 2017"},"2183":{"market_hash_name":"Sticker | flusha (Gold) | Krakow 2017"},"2184":{"market_hash_name":"Sticker | JW | Krakow 2017"},"2185":{"market_hash_name":"Sticker | JW (Foil) | Krakow 2017"},"2186":{"market_hash_name":"Sticker | JW (Gold) | Krakow 2017"},"2187":{"market_hash_name":"Sticker | KRIMZ | Krakow 2017"},"2188":{"market_hash_name":"Sticker | KRIMZ (Foil) | Krakow 2017"},"2189":{"market_hash_name":"Sticker | KRIMZ (Gold) | Krakow 2017"},"219":{"market_hash_name":"Sticker | Team Dignitas | DreamHack 2014"},"2190":{"market_hash_name":"Sticker | olofmeister | Krakow 2017"},"2191":{"market_hash_name":"Sticker | olofmeister (Foil) | Krakow 2017"},"2192":{"market_hash_name":"Sticker | olofmeister (Gold) | Krakow 2017"},"2193":{"market_hash_name":"Sticker | coldzera | Krakow 2017"},"2194":{"market_hash_name":"Sticker | coldzera (Foil) | Krakow 2017"},"2195":{"market_hash_name":"Sticker | coldzera (Gold) | Krakow 2017"},"2196":{"market_hash_name":"Sticker | FalleN | Krakow 2017"},"2197":{"market_hash_name":"Sticker | FalleN (Foil) | Krakow 2017"},"2198":{"market_hash_name":"Sticker | FalleN (Gold) | Krakow 2017"},"2199":{"market_hash_name":"Sticker | felps | Krakow 2017"},"22":{"market_hash_name":"Sticker | Easy Peasy"},"220":{"market_hash_name":"Sticker | Team Dignitas (Holo) | DreamHack 2014"},"2200":{"market_hash_name":"Sticker | felps (Foil) | Krakow 2017"},"2201":{"market_hash_name":"Sticker | felps (Gold) | Krakow 2017"},"2202":{"market_hash_name":"Sticker | fer | Krakow 2017"},"2203":{"market_hash_name":"Sticker | fer (Foil) | Krakow 2017"},"2204":{"market_hash_name":"Sticker | fer (Gold) | Krakow 2017"},"2205":{"market_hash_name":"Sticker | TACO | Krakow 2017"},"2206":{"market_hash_name":"Sticker | TACO (Foil) | Krakow 2017"},"2207":{"market_hash_name":"Sticker | TACO (Gold) | Krakow 2017"},"2208":{"market_hash_name":"Sticker | Edward | Krakow 2017"},"2209":{"market_hash_name":"Sticker | Edward (Foil) | Krakow 2017"},"221":{"market_hash_name":"Sticker | Team Dignitas (Foil) | DreamHack 2014"},"2210":{"market_hash_name":"Sticker | Edward (Gold) | Krakow 2017"},"2211":{"market_hash_name":"Sticker | flamie | Krakow 2017"},"2212":{"market_hash_name":"Sticker | flamie (Foil) | Krakow 2017"},"2213":{"market_hash_name":"Sticker | flamie (Gold) | Krakow 2017"},"2214":{"market_hash_name":"Sticker | GuardiaN | Krakow 2017"},"2215":{"market_hash_name":"Sticker | GuardiaN (Foil) | Krakow 2017"},"2216":{"market_hash_name":"Sticker | GuardiaN (Gold) | Krakow 2017"},"2217":{"market_hash_name":"Sticker | s1mple | Krakow 2017"},"2218":{"market_hash_name":"Sticker | s1mple (Foil) | Krakow 2017"},"2219":{"market_hash_name":"Sticker | s1mple (Gold) | Krakow 2017"},"222":{"market_hash_name":"Sticker | Bravado Gaming | DreamHack 2014"},"2220":{"market_hash_name":"Sticker | seized | Krakow 2017"},"2221":{"market_hash_name":"Sticker | seized (Foil) | Krakow 2017"},"2222":{"market_hash_name":"Sticker | seized (Gold) | Krakow 2017"},"2223":{"market_hash_name":"Sticker | AdreN | Krakow 2017"},"2224":{"market_hash_name":"Sticker | AdreN (Foil) | Krakow 2017"},"2225":{"market_hash_name":"Sticker | AdreN (Gold) | Krakow 2017"},"2226":{"market_hash_name":"Sticker | Dosia | Krakow 2017"},"2227":{"market_hash_name":"Sticker | Dosia (Foil) | Krakow 2017"},"2228":{"market_hash_name":"Sticker | Dosia (Gold) | Krakow 2017"},"2229":{"market_hash_name":"Sticker | Hobbit | Krakow 2017"},"223":{"market_hash_name":"Sticker | ESC Gaming | DreamHack 2014"},"2230":{"market_hash_name":"Sticker | Hobbit (Foil) | Krakow 2017"},"2231":{"market_hash_name":"Sticker | Hobbit (Gold) | Krakow 2017"},"2232":{"market_hash_name":"Sticker | mou | Krakow 2017"},"2233":{"market_hash_name":"Sticker | mou (Foil) | Krakow 2017"},"2234":{"market_hash_name":"Sticker | mou (Gold) | Krakow 2017"},"2235":{"market_hash_name":"Sticker | Zeus | Krakow 2017"},"2236":{"market_hash_name":"Sticker | Zeus (Foil) | Krakow 2017"},"2237":{"market_hash_name":"Sticker | Zeus (Gold) | Krakow 2017"},"2238":{"market_hash_name":"Sticker | aizy | Krakow 2017"},"2239":{"market_hash_name":"Sticker | aizy (Foil) | Krakow 2017"},"224":{"market_hash_name":"Sticker | HellRaisers | DreamHack 2014"},"2240":{"market_hash_name":"Sticker | aizy (Gold) | Krakow 2017"},"2241":{"market_hash_name":"Sticker | cajunb | Krakow 2017"},"2242":{"market_hash_name":"Sticker | cajunb (Foil) | Krakow 2017"},"2243":{"market_hash_name":"Sticker | cajunb (Gold) | Krakow 2017"},"2244":{"market_hash_name":"Sticker | k0nfig | Krakow 2017"},"2245":{"market_hash_name":"Sticker | k0nfig (Foil) | Krakow 2017"},"2246":{"market_hash_name":"Sticker | k0nfig (Gold) | Krakow 2017"},"2247":{"market_hash_name":"Sticker | Magisk | Krakow 2017"},"2248":{"market_hash_name":"Sticker | Magisk (Foil) | Krakow 2017"},"2249":{"market_hash_name":"Sticker | Magisk (Gold) | Krakow 2017"},"225":{"market_hash_name":"Sticker | iBUYPOWER | DreamHack 2014"},"2250":{"market_hash_name":"Sticker | MSL | Krakow 2017"},"2251":{"market_hash_name":"Sticker | MSL (Foil) | Krakow 2017"},"2252":{"market_hash_name":"Sticker | MSL (Gold) | Krakow 2017"},"2253":{"market_hash_name":"Sticker | allu | Krakow 2017"},"2254":{"market_hash_name":"Sticker | allu (Foil) | Krakow 2017"},"2255":{"market_hash_name":"Sticker | allu (Gold) | Krakow 2017"},"2256":{"market_hash_name":"Sticker | karrigan | Krakow 2017"},"2257":{"market_hash_name":"Sticker | karrigan (Foil) | Krakow 2017"},"2258":{"market_hash_name":"Sticker | karrigan (Gold) | Krakow 2017"},"2259":{"market_hash_name":"Sticker | kioShiMa | Krakow 2017"},"226":{"market_hash_name":"Sticker | PENTA Sports | DreamHack 2014"},"2260":{"market_hash_name":"Sticker | kioShiMa (Foil) | Krakow 2017"},"2261":{"market_hash_name":"Sticker | kioShiMa (Gold) | Krakow 2017"},"2262":{"market_hash_name":"Sticker | NiKo | Krakow 2017"},"2263":{"market_hash_name":"Sticker | NiKo (Foil) | Krakow 2017"},"2264":{"market_hash_name":"Sticker | NiKo (Gold) | Krakow 2017"},"2265":{"market_hash_name":"Sticker | rain | Krakow 2017"},"2266":{"market_hash_name":"Sticker | rain (Foil) | Krakow 2017"},"2267":{"market_hash_name":"Sticker | rain (Gold) | Krakow 2017"},"2268":{"market_hash_name":"Sticker | chrisJ | Krakow 2017"},"2269":{"market_hash_name":"Sticker | chrisJ (Foil) | Krakow 2017"},"227":{"market_hash_name":"Sticker | Planetkey Dynamics | DreamHack 2014"},"2270":{"market_hash_name":"Sticker | chrisJ (Gold) | Krakow 2017"},"2271":{"market_hash_name":"Sticker | denis | Krakow 2017"},"2272":{"market_hash_name":"Sticker | denis (Foil) | Krakow 2017"},"2273":{"market_hash_name":"Sticker | denis (Gold) | Krakow 2017"},"2274":{"market_hash_name":"Sticker | loWel | Krakow 2017"},"2275":{"market_hash_name":"Sticker | loWel (Foil) | Krakow 2017"},"2276":{"market_hash_name":"Sticker | loWel (Gold) | Krakow 2017"},"2277":{"market_hash_name":"Sticker | oskar | Krakow 2017"},"2278":{"market_hash_name":"Sticker | oskar (Foil) | Krakow 2017"},"2279":{"market_hash_name":"Sticker | oskar (Gold) | Krakow 2017"},"228":{"market_hash_name":"Sticker | Team LDLC.com | DreamHack 2014"},"2280":{"market_hash_name":"Sticker | ropz | Krakow 2017"},"2281":{"market_hash_name":"Sticker | ropz (Foil) | Krakow 2017"},"2282":{"market_hash_name":"Sticker | ropz (Gold) | Krakow 2017"},"2283":{"market_hash_name":"Sticker | apEX | Krakow 2017"},"2284":{"market_hash_name":"Sticker | apEX (Foil) | Krakow 2017"},"2285":{"market_hash_name":"Sticker | apEX (Gold) | Krakow 2017"},"2286":{"market_hash_name":"Sticker | bodyy | Krakow 2017"},"2287":{"market_hash_name":"Sticker | bodyy (Foil) | Krakow 2017"},"2288":{"market_hash_name":"Sticker | bodyy (Gold) | Krakow 2017"},"2289":{"market_hash_name":"Sticker | kennyS | Krakow 2017"},"229":{"market_hash_name":"Sticker | myXMG | DreamHack 2014"},"2290":{"market_hash_name":"Sticker | kennyS (Foil) | Krakow 2017"},"2291":{"market_hash_name":"Sticker | kennyS (Gold) | Krakow 2017"},"2292":{"market_hash_name":"Sticker | NBK- | Krakow 2017"},"2293":{"market_hash_name":"Sticker | NBK- (Foil) | Krakow 2017"},"2294":{"market_hash_name":"Sticker | NBK- (Gold) | Krakow 2017"},"2295":{"market_hash_name":"Sticker | shox | Krakow 2017"},"2296":{"market_hash_name":"Sticker | shox (Foil) | Krakow 2017"},"2297":{"market_hash_name":"Sticker | shox (Gold) | Krakow 2017"},"2298":{"market_hash_name":"Sticker | gob b | Krakow 2017"},"2299":{"market_hash_name":"Sticker | gob b (Foil) | Krakow 2017"},"23":{"market_hash_name":"Sticker | Luck Skill"},"230":{"market_hash_name":"Sticker | DreamHack Winter 2014"},"2300":{"market_hash_name":"Sticker | gob b (Gold) | Krakow 2017"},"2301":{"market_hash_name":"Sticker | keev | Krakow 2017"},"2302":{"market_hash_name":"Sticker | keev (Foil) | Krakow 2017"},"2303":{"market_hash_name":"Sticker | keev (Gold) | Krakow 2017"},"2304":{"market_hash_name":"Sticker | LEGIJA | Krakow 2017"},"2305":{"market_hash_name":"Sticker | LEGIJA (Foil) | Krakow 2017"},"2306":{"market_hash_name":"Sticker | LEGIJA (Gold) | Krakow 2017"},"2307":{"market_hash_name":"Sticker | nex | Krakow 2017"},"2308":{"market_hash_name":"Sticker | nex (Foil) | Krakow 2017"},"2309":{"market_hash_name":"Sticker | nex (Gold) | Krakow 2017"},"231":{"market_hash_name":"Sticker | DreamHack Winter 2014 (Foil)"},"2310":{"market_hash_name":"Sticker | tabseN | Krakow 2017"},"2311":{"market_hash_name":"Sticker | tabseN (Foil) | Krakow 2017"},"2312":{"market_hash_name":"Sticker | tabseN (Gold) | Krakow 2017"},"2313":{"market_hash_name":"Sticker | autimatic | Krakow 2017"},"2314":{"market_hash_name":"Sticker | autimatic (Foil) | Krakow 2017"},"2315":{"market_hash_name":"Sticker | autimatic (Gold) | Krakow 2017"},"2316":{"market_hash_name":"Sticker | n0thing | Krakow 2017"},"2317":{"market_hash_name":"Sticker | n0thing (Foil) | Krakow 2017"},"2318":{"market_hash_name":"Sticker | n0thing (Gold) | Krakow 2017"},"2319":{"market_hash_name":"Sticker | shroud | Krakow 2017"},"232":{"market_hash_name":"Sticker | 3DMAX | DreamHack 2014"},"2320":{"market_hash_name":"Sticker | shroud (Foil) | Krakow 2017"},"2321":{"market_hash_name":"Sticker | shroud (Gold) | Krakow 2017"},"2322":{"market_hash_name":"Sticker | Skadoodle | Krakow 2017"},"2323":{"market_hash_name":"Sticker | Skadoodle (Foil) | Krakow 2017"},"2324":{"market_hash_name":"Sticker | Skadoodle (Gold) | Krakow 2017"},"2325":{"market_hash_name":"Sticker | Stewie2K | Krakow 2017"},"2326":{"market_hash_name":"Sticker | Stewie2K (Foil) | Krakow 2017"},"2327":{"market_hash_name":"Sticker | Stewie2K (Gold) | Krakow 2017"},"2328":{"market_hash_name":"Sticker | HS | Krakow 2017"},"2329":{"market_hash_name":"Sticker | HS (Foil) | Krakow 2017"},"233":{"market_hash_name":"Sticker | Copenhagen Wolves | DreamHack 2014"},"2330":{"market_hash_name":"Sticker | HS (Gold) | Krakow 2017"},"2331":{"market_hash_name":"Sticker | innocent | Krakow 2017"},"2332":{"market_hash_name":"Sticker | innocent (Foil) | Krakow 2017"},"2333":{"market_hash_name":"Sticker | innocent (Gold) | Krakow 2017"},"2334":{"market_hash_name":"Sticker | kRYSTAL | Krakow 2017"},"2335":{"market_hash_name":"Sticker | kRYSTAL (Foil) | Krakow 2017"},"2336":{"market_hash_name":"Sticker | kRYSTAL (Gold) | Krakow 2017"},"2337":{"market_hash_name":"Sticker | suNny | Krakow 2017"},"2338":{"market_hash_name":"Sticker | suNny (Foil) | Krakow 2017"},"2339":{"market_hash_name":"Sticker | suNny (Gold) | Krakow 2017"},"234":{"market_hash_name":"Sticker | dAT team | DreamHack 2014"},"2340":{"market_hash_name":"Sticker | zehN | Krakow 2017"},"2341":{"market_hash_name":"Sticker | zehN (Foil) | Krakow 2017"},"2342":{"market_hash_name":"Sticker | zehN (Gold) | Krakow 2017"},"2343":{"market_hash_name":"Sticker | B1ad3 | Krakow 2017"},"2344":{"market_hash_name":"Sticker | B1ad3 (Foil) | Krakow 2017"},"2345":{"market_hash_name":"Sticker | B1ad3 (Gold) | Krakow 2017"},"2346":{"market_hash_name":"Sticker | electronic | Krakow 2017"},"2347":{"market_hash_name":"Sticker | electronic (Foil) | Krakow 2017"},"2348":{"market_hash_name":"Sticker | electronic (Gold) | Krakow 2017"},"2349":{"market_hash_name":"Sticker | markeloff | Krakow 2017"},"235":{"market_hash_name":"Sticker | London Conspiracy | DreamHack 2014"},"2350":{"market_hash_name":"Sticker | markeloff (Foil) | Krakow 2017"},"2351":{"market_hash_name":"Sticker | markeloff (Gold) | Krakow 2017"},"2352":{"market_hash_name":"Sticker | wayLander | Krakow 2017"},"2353":{"market_hash_name":"Sticker | wayLander (Foil) | Krakow 2017"},"2354":{"market_hash_name":"Sticker | wayLander (Gold) | Krakow 2017"},"2355":{"market_hash_name":"Sticker | WorldEdit | Krakow 2017"},"2356":{"market_hash_name":"Sticker | WorldEdit (Foil) | Krakow 2017"},"2357":{"market_hash_name":"Sticker | WorldEdit (Gold) | Krakow 2017"},"2358":{"market_hash_name":"Sticker | boltz | Krakow 2017"},"2359":{"market_hash_name":"Sticker | boltz (Foil) | Krakow 2017"},"236":{"market_hash_name":"Sticker | mousesports | DreamHack 2014"},"2360":{"market_hash_name":"Sticker | boltz (Gold) | Krakow 2017"},"2361":{"market_hash_name":"Sticker | HEN1 | Krakow 2017"},"2362":{"market_hash_name":"Sticker | HEN1 (Foil) | Krakow 2017"},"2363":{"market_hash_name":"Sticker | HEN1 (Gold) | Krakow 2017"},"2364":{"market_hash_name":"Sticker | kNgV- | Krakow 2017"},"2365":{"market_hash_name":"Sticker | kNgV- (Foil) | Krakow 2017"},"2366":{"market_hash_name":"Sticker | kNgV- (Gold) | Krakow 2017"},"2367":{"market_hash_name":"Sticker | LUCAS1 | Krakow 2017"},"2368":{"market_hash_name":"Sticker | LUCAS1 (Foil) | Krakow 2017"},"2369":{"market_hash_name":"Sticker | LUCAS1 (Gold) | Krakow 2017"},"237":{"market_hash_name":"Sticker | 3DMAX (Gold) | DreamHack 2014"},"2370":{"market_hash_name":"Sticker | steel | Krakow 2017"},"2371":{"market_hash_name":"Sticker | steel (Foil) | Krakow 2017"},"2372":{"market_hash_name":"Sticker | steel (Gold) | Krakow 2017"},"2373":{"market_hash_name":"Sticker | chopper | Krakow 2017"},"2374":{"market_hash_name":"Sticker | chopper (Foil) | Krakow 2017"},"2375":{"market_hash_name":"Sticker | chopper (Gold) | Krakow 2017"},"2376":{"market_hash_name":"Sticker | hutji | Krakow 2017"},"2377":{"market_hash_name":"Sticker | hutji (Foil) | Krakow 2017"},"2378":{"market_hash_name":"Sticker | hutji (Gold) | Krakow 2017"},"2379":{"market_hash_name":"Sticker | jR | Krakow 2017"},"238":{"market_hash_name":"Sticker | Bravado Gaming (Gold) | DreamHack 2014"},"2380":{"market_hash_name":"Sticker | jR (Foil) | Krakow 2017"},"2381":{"market_hash_name":"Sticker | jR (Gold) | Krakow 2017"},"2382":{"market_hash_name":"Sticker | keshandr | Krakow 2017"},"2383":{"market_hash_name":"Sticker | keshandr (Foil) | Krakow 2017"},"2384":{"market_hash_name":"Sticker | keshandr (Gold) | Krakow 2017"},"2385":{"market_hash_name":"Sticker | mir | Krakow 2017"},"2386":{"market_hash_name":"Sticker | mir (Foil) | Krakow 2017"},"2387":{"market_hash_name":"Sticker | mir (Gold) | Krakow 2017"},"2388":{"market_hash_name":"Sticker | Water Gun"},"2389":{"market_hash_name":"Sticker | Cheongsam"},"239":{"market_hash_name":"Sticker | Cloud9 (Gold) | DreamHack 2014"},"2390":{"market_hash_name":"Sticker | Cheongsam (Holo)"},"2391":{"market_hash_name":"Sticker | Fancy Koi"},"2392":{"market_hash_name":"Sticker | Fancy Koi (Foil)"},"2393":{"market_hash_name":"Sticker | Guardian Dragon"},"2394":{"market_hash_name":"Sticker | Guardian Dragon (Foil)"},"2395":{"market_hash_name":"Sticker | Hotpot"},"2396":{"market_hash_name":"Sticker | Noodles"},"2397":{"market_hash_name":"Sticker | Rice Bomb"},"2398":{"market_hash_name":"Sticker | Terror Rice"},"2399":{"market_hash_name":"Sticker | Mahjong Fa"},"24":{"market_hash_name":"Sticker | Vigilance"},"240":{"market_hash_name":"Sticker | Copenhagen Wolves (Gold) | DreamHack 2014"},"2400":{"market_hash_name":"Sticker | Mahjong Rooster"},"2401":{"market_hash_name":"Sticker | Mahjong Zhong"},"2402":{"market_hash_name":"Sticker | Toy Tiger"},"2403":{"market_hash_name":"Sticker | God of Fortune"},"2404":{"market_hash_name":"Sticker | Huaji"},"2405":{"market_hash_name":"Sticker | Nezha"},"2406":{"market_hash_name":"Sticker | Rage"},"2407":{"market_hash_name":"Sticker | Longevity"},"2408":{"market_hash_name":"Sticker | Longevity (Foil)"},"2409":{"market_hash_name":"Sticker | Non-Veg"},"241":{"market_hash_name":"Sticker | dAT team (Gold) | DreamHack 2014"},"2410":{"market_hash_name":"Sticker | Pixiu"},"2411":{"market_hash_name":"Sticker | Pixiu (Foil)"},"2412":{"market_hash_name":"Sticker | Twin Koi"},"2413":{"market_hash_name":"Sticker | Twin Koi (Holo)"},"2414":{"market_hash_name":"Sticker | Shaolin"},"2415":{"market_hash_name":"Sticker | Green Swallow"},"2416":{"market_hash_name":"Sticker | Blue Swallow"},"2417":{"market_hash_name":"Sticker | Zombie Hop"},"242":{"market_hash_name":"Sticker | Team Dignitas (Gold) | DreamHack 2014"},"243":{"market_hash_name":"Sticker | ESC Gaming (Gold) | DreamHack 2014"},"2436":{"market_hash_name":"Sticker | Gambit Esports | Boston 2018"},"2437":{"market_hash_name":"Sticker | Gambit Esports (Holo) | Boston 2018"},"2438":{"market_hash_name":"Sticker | Gambit Esports (Foil) | Boston 2018"},"2439":{"market_hash_name":"Sticker | Gambit Esports (Gold) | Boston 2018"},"244":{"market_hash_name":"Sticker | Fnatic (Gold) | DreamHack 2014"},"2440":{"market_hash_name":"Sticker | 100 Thieves | Boston 2018"},"2441":{"market_hash_name":"Sticker | 100 Thieves (Holo) | Boston 2018"},"2442":{"market_hash_name":"Sticker | 100 Thieves (Foil) | Boston 2018"},"2443":{"market_hash_name":"Sticker | 100 Thieves (Gold) | Boston 2018"},"2444":{"market_hash_name":"Sticker | Astralis | Boston 2018"},"2445":{"market_hash_name":"Sticker | Astralis (Holo) | Boston 2018"},"2446":{"market_hash_name":"Sticker | Astralis (Foil) | Boston 2018"},"2447":{"market_hash_name":"Sticker | Astralis (Gold) | Boston 2018"},"2448":{"market_hash_name":"Sticker | Virtus.Pro | Boston 2018"},"2449":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Boston 2018"},"245":{"market_hash_name":"Sticker | HellRaisers (Gold) | DreamHack 2014"},"2450":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Boston 2018"},"2451":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Boston 2018"},"2452":{"market_hash_name":"Sticker | Fnatic | Boston 2018"},"2453":{"market_hash_name":"Sticker | Fnatic (Holo) | Boston 2018"},"2454":{"market_hash_name":"Sticker | Fnatic (Foil) | Boston 2018"},"2455":{"market_hash_name":"Sticker | Fnatic (Gold) | Boston 2018"},"2456":{"market_hash_name":"Sticker | SK Gaming | Boston 2018"},"2457":{"market_hash_name":"Sticker | SK Gaming (Holo) | Boston 2018"},"2458":{"market_hash_name":"Sticker | SK Gaming (Foil) | Boston 2018"},"2459":{"market_hash_name":"Sticker | SK Gaming (Gold) | Boston 2018"},"246":{"market_hash_name":"Sticker | iBUYPOWER (Gold) | DreamHack 2014"},"2460":{"market_hash_name":"Sticker | BIG | Boston 2018"},"2461":{"market_hash_name":"Sticker | BIG (Holo) | Boston 2018"},"2462":{"market_hash_name":"Sticker | BIG (Foil) | Boston 2018"},"2463":{"market_hash_name":"Sticker | BIG (Gold) | Boston 2018"},"2464":{"market_hash_name":"Sticker | North | Boston 2018"},"2465":{"market_hash_name":"Sticker | North (Holo) | Boston 2018"},"2466":{"market_hash_name":"Sticker | North (Foil) | Boston 2018"},"2467":{"market_hash_name":"Sticker | North (Gold) | Boston 2018"},"2468":{"market_hash_name":"Sticker | G2 Esports | Boston 2018"},"2469":{"market_hash_name":"Sticker | G2 Esports (Holo) | Boston 2018"},"247":{"market_hash_name":"Sticker | London Conspiracy (Gold) | DreamHack 2014"},"2470":{"market_hash_name":"Sticker | G2 Esports (Foil) | Boston 2018"},"2471":{"market_hash_name":"Sticker | G2 Esports (Gold) | Boston 2018"},"2472":{"market_hash_name":"Sticker | Cloud9 | Boston 2018"},"2473":{"market_hash_name":"Sticker | Cloud9 (Holo) | Boston 2018"},"2474":{"market_hash_name":"Sticker | Cloud9 (Foil) | Boston 2018"},"2475":{"market_hash_name":"Sticker | Cloud9 (Gold) | Boston 2018"},"2476":{"market_hash_name":"Sticker | Flipsid3 Tactics | Boston 2018"},"2477":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Boston 2018"},"2478":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Boston 2018"},"2479":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Boston 2018"},"248":{"market_hash_name":"Sticker | mousesports (Gold) | DreamHack 2014"},"2480":{"market_hash_name":"Sticker | Natus Vincere | Boston 2018"},"2481":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Boston 2018"},"2482":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Boston 2018"},"2483":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Boston 2018"},"2484":{"market_hash_name":"Sticker | mousesports | Boston 2018"},"2485":{"market_hash_name":"Sticker | mousesports (Holo) | Boston 2018"},"2486":{"market_hash_name":"Sticker | mousesports (Foil) | Boston 2018"},"2487":{"market_hash_name":"Sticker | mousesports (Gold) | Boston 2018"},"2488":{"market_hash_name":"Sticker | Sprout Esports | Boston 2018"},"2489":{"market_hash_name":"Sticker | Sprout Esports (Holo) | Boston 2018"},"249":{"market_hash_name":"Sticker | myXMG (Gold) | DreamHack 2014"},"2490":{"market_hash_name":"Sticker | Sprout Esports (Foil) | Boston 2018"},"2491":{"market_hash_name":"Sticker | Sprout Esports (Gold) | Boston 2018"},"2492":{"market_hash_name":"Sticker | FaZe Clan | Boston 2018"},"2493":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Boston 2018"},"2494":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Boston 2018"},"2495":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Boston 2018"},"2496":{"market_hash_name":"Sticker | Vega Squadron | Boston 2018"},"2497":{"market_hash_name":"Sticker | Vega Squadron (Holo) | Boston 2018"},"2498":{"market_hash_name":"Sticker | Vega Squadron (Foil) | Boston 2018"},"2499":{"market_hash_name":"Sticker | Vega Squadron (Gold) | Boston 2018"},"25":{"market_hash_name":"Sticker | Vigilance (Holo)"},"250":{"market_hash_name":"Sticker | Natus Vincere (Gold) | DreamHack 2014"},"2500":{"market_hash_name":"Sticker | Space Soldiers | Boston 2018"},"2501":{"market_hash_name":"Sticker | Space Soldiers (Holo) | Boston 2018"},"2502":{"market_hash_name":"Sticker | Space Soldiers (Foil) | Boston 2018"},"2503":{"market_hash_name":"Sticker | Space Soldiers (Gold) | Boston 2018"},"2504":{"market_hash_name":"Sticker | Team Liquid | Boston 2018"},"2505":{"market_hash_name":"Sticker | Team Liquid (Holo) | Boston 2018"},"2506":{"market_hash_name":"Sticker | Team Liquid (Foil) | Boston 2018"},"2507":{"market_hash_name":"Sticker | Team Liquid (Gold) | Boston 2018"},"2508":{"market_hash_name":"Sticker | Avangar | Boston 2018"},"2509":{"market_hash_name":"Sticker | Avangar (Holo) | Boston 2018"},"251":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | DreamHack 2014"},"2510":{"market_hash_name":"Sticker | Avangar (Foil) | Boston 2018"},"2511":{"market_hash_name":"Sticker | Avangar (Gold) | Boston 2018"},"2512":{"market_hash_name":"Sticker | Renegades | Boston 2018"},"2513":{"market_hash_name":"Sticker | Renegades (Holo) | Boston 2018"},"2514":{"market_hash_name":"Sticker | Renegades (Foil) | Boston 2018"},"2515":{"market_hash_name":"Sticker | Renegades (Gold) | Boston 2018"},"2516":{"market_hash_name":"Sticker | Team EnVyUs | Boston 2018"},"2517":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Boston 2018"},"2518":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Boston 2018"},"2519":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Boston 2018"},"252":{"market_hash_name":"Sticker | PENTA Sports (Gold) | DreamHack 2014"},"2520":{"market_hash_name":"Sticker | Misfits Gaming | Boston 2018"},"2521":{"market_hash_name":"Sticker | Misfits Gaming (Holo) | Boston 2018"},"2522":{"market_hash_name":"Sticker | Misfits Gaming (Foil) | Boston 2018"},"2523":{"market_hash_name":"Sticker | Misfits Gaming (Gold) | Boston 2018"},"2524":{"market_hash_name":"Sticker | Quantum Bellator Fire | Boston 2018"},"2525":{"market_hash_name":"Sticker | Quantum Bellator Fire (Holo) | Boston 2018"},"2526":{"market_hash_name":"Sticker | Quantum Bellator Fire (Foil) | Boston 2018"},"2527":{"market_hash_name":"Sticker | Quantum Bellator Fire (Gold) | Boston 2018"},"2528":{"market_hash_name":"Sticker | Tyloo | Boston 2018"},"2529":{"market_hash_name":"Sticker | Tyloo (Holo) | Boston 2018"},"253":{"market_hash_name":"Sticker | Planetkey Dynamics (Gold) | DreamHack 2014"},"2530":{"market_hash_name":"Sticker | Tyloo (Foil) | Boston 2018"},"2531":{"market_hash_name":"Sticker | Tyloo (Gold) | Boston 2018"},"2532":{"market_hash_name":"Sticker | ELEAGUE | Boston 2018"},"2533":{"market_hash_name":"Sticker | ELEAGUE (Holo) | Boston 2018"},"2534":{"market_hash_name":"Sticker | ELEAGUE (Foil) | Boston 2018"},"2535":{"market_hash_name":"Sticker | ELEAGUE (Gold) | Boston 2018"},"254":{"market_hash_name":"Sticker | Team LDLC.com (Gold) | DreamHack 2014"},"255":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | DreamHack 2014"},"256":{"market_hash_name":"Sticker | Flipsid3 Tactics | DreamHack 2014"},"2561":{"market_hash_name":"Sticker | AdreN | Boston 2018"},"2562":{"market_hash_name":"Sticker | AdreN (Foil) | Boston 2018"},"2563":{"market_hash_name":"Sticker | AdreN (Gold) | Boston 2018"},"2564":{"market_hash_name":"Sticker | Dosia | Boston 2018"},"2565":{"market_hash_name":"Sticker | Dosia (Foil) | Boston 2018"},"2566":{"market_hash_name":"Sticker | Dosia (Gold) | Boston 2018"},"2567":{"market_hash_name":"Sticker | fitch | Boston 2018"},"2568":{"market_hash_name":"Sticker | fitch (Foil) | Boston 2018"},"2569":{"market_hash_name":"Sticker | fitch (Gold) | Boston 2018"},"257":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | DreamHack 2014"},"2570":{"market_hash_name":"Sticker | Hobbit | Boston 2018"},"2571":{"market_hash_name":"Sticker | Hobbit (Foil) | Boston 2018"},"2572":{"market_hash_name":"Sticker | Hobbit (Gold) | Boston 2018"},"2573":{"market_hash_name":"Sticker | mou | Boston 2018"},"2574":{"market_hash_name":"Sticker | mou (Foil) | Boston 2018"},"2575":{"market_hash_name":"Sticker | mou (Gold) | Boston 2018"},"2576":{"market_hash_name":"Sticker | BIT | Boston 2018"},"2577":{"market_hash_name":"Sticker | BIT (Foil) | Boston 2018"},"2578":{"market_hash_name":"Sticker | BIT (Gold) | Boston 2018"},"2579":{"market_hash_name":"Sticker | fnx | Boston 2018"},"258":{"market_hash_name":"Sticker | Blood Boiler"},"2580":{"market_hash_name":"Sticker | fnx (Foil) | Boston 2018"},"2581":{"market_hash_name":"Sticker | fnx (Gold) | Boston 2018"},"2582":{"market_hash_name":"Sticker | HEN1 | Boston 2018"},"2583":{"market_hash_name":"Sticker | HEN1 (Foil) | Boston 2018"},"2584":{"market_hash_name":"Sticker | HEN1 (Gold) | Boston 2018"},"2585":{"market_hash_name":"Sticker | kNgV- | Boston 2018"},"2586":{"market_hash_name":"Sticker | kNgV- (Foil) | Boston 2018"},"2587":{"market_hash_name":"Sticker | kNgV- (Gold) | Boston 2018"},"2588":{"market_hash_name":"Sticker | LUCAS1 | Boston 2018"},"2589":{"market_hash_name":"Sticker | LUCAS1 (Foil) | Boston 2018"},"259":{"market_hash_name":"Sticker | Dinked"},"2590":{"market_hash_name":"Sticker | LUCAS1 (Gold) | Boston 2018"},"2591":{"market_hash_name":"Sticker | device | Boston 2018"},"2592":{"market_hash_name":"Sticker | device (Foil) | Boston 2018"},"2593":{"market_hash_name":"Sticker | device (Gold) | Boston 2018"},"2594":{"market_hash_name":"Sticker | dupreeh | Boston 2018"},"2595":{"market_hash_name":"Sticker | dupreeh (Foil) | Boston 2018"},"2596":{"market_hash_name":"Sticker | dupreeh (Gold) | Boston 2018"},"2597":{"market_hash_name":"Sticker | gla1ve | Boston 2018"},"2598":{"market_hash_name":"Sticker | gla1ve (Foil) | Boston 2018"},"2599":{"market_hash_name":"Sticker | gla1ve (Gold) | Boston 2018"},"26":{"market_hash_name":"Sticker | Lucky 13 (Foil)"},"260":{"market_hash_name":"Sticker | Drug War Veteran"},"2600":{"market_hash_name":"Sticker | Kjaerbye | Boston 2018"},"2601":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Boston 2018"},"2602":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Boston 2018"},"2603":{"market_hash_name":"Sticker | Xyp9x | Boston 2018"},"2604":{"market_hash_name":"Sticker | Xyp9x (Foil) | Boston 2018"},"2605":{"market_hash_name":"Sticker | Xyp9x (Gold) | Boston 2018"},"2606":{"market_hash_name":"Sticker | byali | Boston 2018"},"2607":{"market_hash_name":"Sticker | byali (Foil) | Boston 2018"},"2608":{"market_hash_name":"Sticker | byali (Gold) | Boston 2018"},"2609":{"market_hash_name":"Sticker | NEO | Boston 2018"},"261":{"market_hash_name":"Sticker | Ho Ho Ho"},"2610":{"market_hash_name":"Sticker | NEO (Foil) | Boston 2018"},"2611":{"market_hash_name":"Sticker | NEO (Gold) | Boston 2018"},"2612":{"market_hash_name":"Sticker | pashaBiceps | Boston 2018"},"2613":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Boston 2018"},"2614":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Boston 2018"},"2615":{"market_hash_name":"Sticker | Snax | Boston 2018"},"2616":{"market_hash_name":"Sticker | Snax (Foil) | Boston 2018"},"2617":{"market_hash_name":"Sticker | Snax (Gold) | Boston 2018"},"2618":{"market_hash_name":"Sticker | TaZ | Boston 2018"},"2619":{"market_hash_name":"Sticker | TaZ (Foil) | Boston 2018"},"262":{"market_hash_name":"Sticker | Massive Pear"},"2620":{"market_hash_name":"Sticker | TaZ (Gold) | Boston 2018"},"2621":{"market_hash_name":"Sticker | flusha | Boston 2018"},"2622":{"market_hash_name":"Sticker | flusha (Foil) | Boston 2018"},"2623":{"market_hash_name":"Sticker | flusha (Gold) | Boston 2018"},"2624":{"market_hash_name":"Sticker | Golden | Boston 2018"},"2625":{"market_hash_name":"Sticker | Golden (Foil) | Boston 2018"},"2626":{"market_hash_name":"Sticker | Golden (Gold) | Boston 2018"},"2627":{"market_hash_name":"Sticker | JW | Boston 2018"},"2628":{"market_hash_name":"Sticker | JW (Foil) | Boston 2018"},"2629":{"market_hash_name":"Sticker | JW (Gold) | Boston 2018"},"263":{"market_hash_name":"Sticker | My Little Friend"},"2630":{"market_hash_name":"Sticker | KRIMZ | Boston 2018"},"2631":{"market_hash_name":"Sticker | KRIMZ (Foil) | Boston 2018"},"2632":{"market_hash_name":"Sticker | KRIMZ (Gold) | Boston 2018"},"2633":{"market_hash_name":"Sticker | Lekr0 | Boston 2018"},"2634":{"market_hash_name":"Sticker | Lekr0 (Foil) | Boston 2018"},"2635":{"market_hash_name":"Sticker | Lekr0 (Gold) | Boston 2018"},"2636":{"market_hash_name":"Sticker | coldzera | Boston 2018"},"2637":{"market_hash_name":"Sticker | coldzera (Foil) | Boston 2018"},"2638":{"market_hash_name":"Sticker | coldzera (Gold) | Boston 2018"},"2639":{"market_hash_name":"Sticker | FalleN | Boston 2018"},"264":{"market_hash_name":"Sticker | Pandamonium"},"2640":{"market_hash_name":"Sticker | FalleN (Foil) | Boston 2018"},"2641":{"market_hash_name":"Sticker | FalleN (Gold) | Boston 2018"},"2642":{"market_hash_name":"Sticker | felps | Boston 2018"},"2643":{"market_hash_name":"Sticker | felps (Foil) | Boston 2018"},"2644":{"market_hash_name":"Sticker | felps (Gold) | Boston 2018"},"2645":{"market_hash_name":"Sticker | fer | Boston 2018"},"2646":{"market_hash_name":"Sticker | fer (Foil) | Boston 2018"},"2647":{"market_hash_name":"Sticker | fer (Gold) | Boston 2018"},"2648":{"market_hash_name":"Sticker | TACO | Boston 2018"},"2649":{"market_hash_name":"Sticker | TACO (Foil) | Boston 2018"},"265":{"market_hash_name":"Sticker | Piece Of Cake"},"2650":{"market_hash_name":"Sticker | TACO (Gold) | Boston 2018"},"2651":{"market_hash_name":"Sticker | gob b | Boston 2018"},"2652":{"market_hash_name":"Sticker | gob b (Foil) | Boston 2018"},"2653":{"market_hash_name":"Sticker | gob b (Gold) | Boston 2018"},"2654":{"market_hash_name":"Sticker | keev | Boston 2018"},"2655":{"market_hash_name":"Sticker | keev (Foil) | Boston 2018"},"2656":{"market_hash_name":"Sticker | keev (Gold) | Boston 2018"},"2657":{"market_hash_name":"Sticker | LEGIJA | Boston 2018"},"2658":{"market_hash_name":"Sticker | LEGIJA (Foil) | Boston 2018"},"2659":{"market_hash_name":"Sticker | LEGIJA (Gold) | Boston 2018"},"266":{"market_hash_name":"Sticker | SAS Chicken"},"2660":{"market_hash_name":"Sticker | nex | Boston 2018"},"2661":{"market_hash_name":"Sticker | nex (Foil) | Boston 2018"},"2662":{"market_hash_name":"Sticker | nex (Gold) | Boston 2018"},"2663":{"market_hash_name":"Sticker | tabseN | Boston 2018"},"2664":{"market_hash_name":"Sticker | tabseN (Foil) | Boston 2018"},"2665":{"market_hash_name":"Sticker | tabseN (Gold) | Boston 2018"},"2666":{"market_hash_name":"Sticker | aizy | Boston 2018"},"2667":{"market_hash_name":"Sticker | aizy (Foil) | Boston 2018"},"2668":{"market_hash_name":"Sticker | aizy (Gold) | Boston 2018"},"2669":{"market_hash_name":"Sticker | cajunb | Boston 2018"},"267":{"market_hash_name":"Sticker | Thug Life"},"2670":{"market_hash_name":"Sticker | cajunb (Foil) | Boston 2018"},"2671":{"market_hash_name":"Sticker | cajunb (Gold) | Boston 2018"},"2672":{"market_hash_name":"Sticker | k0nfig | Boston 2018"},"2673":{"market_hash_name":"Sticker | k0nfig (Foil) | Boston 2018"},"2674":{"market_hash_name":"Sticker | k0nfig (Gold) | Boston 2018"},"2675":{"market_hash_name":"Sticker | MSL | Boston 2018"},"2676":{"market_hash_name":"Sticker | MSL (Foil) | Boston 2018"},"2677":{"market_hash_name":"Sticker | MSL (Gold) | Boston 2018"},"2678":{"market_hash_name":"Sticker | v4lde | Boston 2018"},"2679":{"market_hash_name":"Sticker | v4lde (Foil) | Boston 2018"},"268":{"market_hash_name":"Sticker | T-Rekt"},"2680":{"market_hash_name":"Sticker | v4lde (Gold) | Boston 2018"},"2681":{"market_hash_name":"Sticker | apEX | Boston 2018"},"2682":{"market_hash_name":"Sticker | apEX (Foil) | Boston 2018"},"2683":{"market_hash_name":"Sticker | apEX (Gold) | Boston 2018"},"2684":{"market_hash_name":"Sticker | bodyy | Boston 2018"},"2685":{"market_hash_name":"Sticker | bodyy (Foil) | Boston 2018"},"2686":{"market_hash_name":"Sticker | bodyy (Gold) | Boston 2018"},"2687":{"market_hash_name":"Sticker | kennyS | Boston 2018"},"2688":{"market_hash_name":"Sticker | kennyS (Foil) | Boston 2018"},"2689":{"market_hash_name":"Sticker | kennyS (Gold) | Boston 2018"},"269":{"market_hash_name":"Sticker | Warowl"},"2690":{"market_hash_name":"Sticker | NBK- | Boston 2018"},"2691":{"market_hash_name":"Sticker | NBK- (Foil) | Boston 2018"},"2692":{"market_hash_name":"Sticker | NBK- (Gold) | Boston 2018"},"2693":{"market_hash_name":"Sticker | shox | Boston 2018"},"2694":{"market_hash_name":"Sticker | shox (Foil) | Boston 2018"},"2695":{"market_hash_name":"Sticker | shox (Gold) | Boston 2018"},"2696":{"market_hash_name":"Sticker | autimatic | Boston 2018"},"2697":{"market_hash_name":"Sticker | autimatic (Foil) | Boston 2018"},"2698":{"market_hash_name":"Sticker | autimatic (Gold) | Boston 2018"},"2699":{"market_hash_name":"Sticker | RUSH | Boston 2018"},"27":{"market_hash_name":"Sticker | Luck Skill (Foil)"},"270":{"market_hash_name":"Sticker | Work For Ammo"},"2700":{"market_hash_name":"Sticker | RUSH (Foil) | Boston 2018"},"2701":{"market_hash_name":"Sticker | RUSH (Gold) | Boston 2018"},"2702":{"market_hash_name":"Sticker | Skadoodle | Boston 2018"},"2703":{"market_hash_name":"Sticker | Skadoodle (Foil) | Boston 2018"},"2704":{"market_hash_name":"Sticker | Skadoodle (Gold) | Boston 2018"},"2705":{"market_hash_name":"Sticker | Stewie2K | Boston 2018"},"2706":{"market_hash_name":"Sticker | Stewie2K (Foil) | Boston 2018"},"2707":{"market_hash_name":"Sticker | Stewie2K (Gold) | Boston 2018"},"2708":{"market_hash_name":"Sticker | tarik | Boston 2018"},"2709":{"market_hash_name":"Sticker | tarik (Foil) | Boston 2018"},"271":{"market_hash_name":"Sticker | Phoenix (Foil)"},"2710":{"market_hash_name":"Sticker | tarik (Gold) | Boston 2018"},"2711":{"market_hash_name":"Sticker | B1ad3 | Boston 2018"},"2712":{"market_hash_name":"Sticker | B1ad3 (Foil) | Boston 2018"},"2713":{"market_hash_name":"Sticker | B1ad3 (Gold) | Boston 2018"},"2714":{"market_hash_name":"Sticker | markeloff | Boston 2018"},"2715":{"market_hash_name":"Sticker | markeloff (Foil) | Boston 2018"},"2716":{"market_hash_name":"Sticker | markeloff (Gold) | Boston 2018"},"2717":{"market_hash_name":"Sticker | seized | Boston 2018"},"2718":{"market_hash_name":"Sticker | seized (Foil) | Boston 2018"},"2719":{"market_hash_name":"Sticker | seized (Gold) | Boston 2018"},"272":{"market_hash_name":"Sticker | Bomb Squad (Foil)"},"2720":{"market_hash_name":"Sticker | wayLander | Boston 2018"},"2721":{"market_hash_name":"Sticker | wayLander (Foil) | Boston 2018"},"2722":{"market_hash_name":"Sticker | wayLander (Gold) | Boston 2018"},"2723":{"market_hash_name":"Sticker | WorldEdit | Boston 2018"},"2724":{"market_hash_name":"Sticker | WorldEdit (Foil) | Boston 2018"},"2725":{"market_hash_name":"Sticker | WorldEdit (Gold) | Boston 2018"},"2726":{"market_hash_name":"Sticker | Edward | Boston 2018"},"2727":{"market_hash_name":"Sticker | Edward (Foil) | Boston 2018"},"2728":{"market_hash_name":"Sticker | Edward (Gold) | Boston 2018"},"2729":{"market_hash_name":"Sticker | electronic | Boston 2018"},"273":{"market_hash_name":"Sticker | Flickshot"},"2730":{"market_hash_name":"Sticker | electronic (Foil) | Boston 2018"},"2731":{"market_hash_name":"Sticker | electronic (Gold) | Boston 2018"},"2732":{"market_hash_name":"Sticker | flamie | Boston 2018"},"2733":{"market_hash_name":"Sticker | flamie (Foil) | Boston 2018"},"2734":{"market_hash_name":"Sticker | flamie (Gold) | Boston 2018"},"2735":{"market_hash_name":"Sticker | s1mple | Boston 2018"},"2736":{"market_hash_name":"Sticker | s1mple (Foil) | Boston 2018"},"2737":{"market_hash_name":"Sticker | s1mple (Gold) | Boston 2018"},"2738":{"market_hash_name":"Sticker | Zeus | Boston 2018"},"2739":{"market_hash_name":"Sticker | Zeus (Foil) | Boston 2018"},"274":{"market_hash_name":"Sticker | Headshot Guarantee"},"2740":{"market_hash_name":"Sticker | Zeus (Gold) | Boston 2018"},"2741":{"market_hash_name":"Sticker | chrisJ | Boston 2018"},"2742":{"market_hash_name":"Sticker | chrisJ (Foil) | Boston 2018"},"2743":{"market_hash_name":"Sticker | chrisJ (Gold) | Boston 2018"},"2744":{"market_hash_name":"Sticker | oskar | Boston 2018"},"2745":{"market_hash_name":"Sticker | oskar (Foil) | Boston 2018"},"2746":{"market_hash_name":"Sticker | oskar (Gold) | Boston 2018"},"2747":{"market_hash_name":"Sticker | ropz | Boston 2018"},"2748":{"market_hash_name":"Sticker | ropz (Foil) | Boston 2018"},"2749":{"market_hash_name":"Sticker | ropz (Gold) | Boston 2018"},"275":{"market_hash_name":"Sticker | Eco Rush"},"2750":{"market_hash_name":"Sticker | STYKO | Boston 2018"},"2751":{"market_hash_name":"Sticker | STYKO (Foil) | Boston 2018"},"2752":{"market_hash_name":"Sticker | STYKO (Gold) | Boston 2018"},"2753":{"market_hash_name":"Sticker | suNny | Boston 2018"},"2754":{"market_hash_name":"Sticker | suNny (Foil) | Boston 2018"},"2755":{"market_hash_name":"Sticker | suNny (Gold) | Boston 2018"},"2756":{"market_hash_name":"Sticker | denis | Boston 2018"},"2757":{"market_hash_name":"Sticker | denis (Foil) | Boston 2018"},"2758":{"market_hash_name":"Sticker | denis (Gold) | Boston 2018"},"2759":{"market_hash_name":"Sticker | innocent | Boston 2018"},"276":{"market_hash_name":"Sticker | Just Trolling"},"2760":{"market_hash_name":"Sticker | innocent (Foil) | Boston 2018"},"2761":{"market_hash_name":"Sticker | innocent (Gold) | Boston 2018"},"2762":{"market_hash_name":"Sticker | kRYSTAL | Boston 2018"},"2763":{"market_hash_name":"Sticker | kRYSTAL (Foil) | Boston 2018"},"2764":{"market_hash_name":"Sticker | kRYSTAL (Gold) | Boston 2018"},"2765":{"market_hash_name":"Sticker | Spiidi | Boston 2018"},"2766":{"market_hash_name":"Sticker | Spiidi (Foil) | Boston 2018"},"2767":{"market_hash_name":"Sticker | Spiidi (Gold) | Boston 2018"},"2768":{"market_hash_name":"Sticker | zehN | Boston 2018"},"2769":{"market_hash_name":"Sticker | zehN (Foil) | Boston 2018"},"2770":{"market_hash_name":"Sticker | zehN (Gold) | Boston 2018"},"2771":{"market_hash_name":"Sticker | GuardiaN | Boston 2018"},"2772":{"market_hash_name":"Sticker | GuardiaN (Foil) | Boston 2018"},"2773":{"market_hash_name":"Sticker | GuardiaN (Gold) | Boston 2018"},"2774":{"market_hash_name":"Sticker | karrigan | Boston 2018"},"2775":{"market_hash_name":"Sticker | karrigan (Foil) | Boston 2018"},"2776":{"market_hash_name":"Sticker | karrigan (Gold) | Boston 2018"},"2777":{"market_hash_name":"Sticker | NiKo | Boston 2018"},"2778":{"market_hash_name":"Sticker | NiKo (Foil) | Boston 2018"},"2779":{"market_hash_name":"Sticker | NiKo (Gold) | Boston 2018"},"278":{"market_hash_name":"Sticker | Firestarter (Holo)"},"2780":{"market_hash_name":"Sticker | olofmeister | Boston 2018"},"2781":{"market_hash_name":"Sticker | olofmeister (Foil) | Boston 2018"},"2782":{"market_hash_name":"Sticker | olofmeister (Gold) | Boston 2018"},"2783":{"market_hash_name":"Sticker | rain | Boston 2018"},"2784":{"market_hash_name":"Sticker | rain (Foil) | Boston 2018"},"2785":{"market_hash_name":"Sticker | rain (Gold) | Boston 2018"},"2786":{"market_hash_name":"Sticker | chopper | Boston 2018"},"2787":{"market_hash_name":"Sticker | chopper (Foil) | Boston 2018"},"2788":{"market_hash_name":"Sticker | chopper (Gold) | Boston 2018"},"2789":{"market_hash_name":"Sticker | hutji | Boston 2018"},"279":{"market_hash_name":"Sticker | Lucky Cat (Foil)"},"2790":{"market_hash_name":"Sticker | hutji (Foil) | Boston 2018"},"2791":{"market_hash_name":"Sticker | hutji (Gold) | Boston 2018"},"2792":{"market_hash_name":"Sticker | jR | Boston 2018"},"2793":{"market_hash_name":"Sticker | jR (Foil) | Boston 2018"},"2794":{"market_hash_name":"Sticker | jR (Gold) | Boston 2018"},"2795":{"market_hash_name":"Sticker | keshandr | Boston 2018"},"2796":{"market_hash_name":"Sticker | keshandr (Foil) | Boston 2018"},"2797":{"market_hash_name":"Sticker | keshandr (Gold) | Boston 2018"},"2798":{"market_hash_name":"Sticker | mir | Boston 2018"},"2799":{"market_hash_name":"Sticker | mir (Foil) | Boston 2018"},"28":{"market_hash_name":"Sticker | Blacksite (Foil)"},"280":{"market_hash_name":"Sticker | Robo"},"2800":{"market_hash_name":"Sticker | mir (Gold) | Boston 2018"},"2801":{"market_hash_name":"Sticker | Calyx | Boston 2018"},"2802":{"market_hash_name":"Sticker | Calyx (Foil) | Boston 2018"},"2803":{"market_hash_name":"Sticker | Calyx (Gold) | Boston 2018"},"2804":{"market_hash_name":"Sticker | MAJ3R | Boston 2018"},"2805":{"market_hash_name":"Sticker | MAJ3R (Foil) | Boston 2018"},"2806":{"market_hash_name":"Sticker | MAJ3R (Gold) | Boston 2018"},"2807":{"market_hash_name":"Sticker | ngiN | Boston 2018"},"2808":{"market_hash_name":"Sticker | ngiN (Foil) | Boston 2018"},"2809":{"market_hash_name":"Sticker | ngiN (Gold) | Boston 2018"},"281":{"market_hash_name":"Sticker | Witchcraft"},"2810":{"market_hash_name":"Sticker | paz | Boston 2018"},"2811":{"market_hash_name":"Sticker | paz (Foil) | Boston 2018"},"2812":{"market_hash_name":"Sticker | paz (Gold) | Boston 2018"},"2813":{"market_hash_name":"Sticker | XANTARES | Boston 2018"},"2814":{"market_hash_name":"Sticker | XANTARES (Foil) | Boston 2018"},"2815":{"market_hash_name":"Sticker | XANTARES (Gold) | Boston 2018"},"2816":{"market_hash_name":"Sticker | EliGE | Boston 2018"},"2817":{"market_hash_name":"Sticker | EliGE (Foil) | Boston 2018"},"2818":{"market_hash_name":"Sticker | EliGE (Gold) | Boston 2018"},"2819":{"market_hash_name":"Sticker | jdm64 | Boston 2018"},"282":{"market_hash_name":"Sticker | Wanna Fight"},"2820":{"market_hash_name":"Sticker | jdm64 (Foil) | Boston 2018"},"2821":{"market_hash_name":"Sticker | jdm64 (Gold) | Boston 2018"},"2822":{"market_hash_name":"Sticker | nitr0 | Boston 2018"},"2823":{"market_hash_name":"Sticker | nitr0 (Foil) | Boston 2018"},"2824":{"market_hash_name":"Sticker | nitr0 (Gold) | Boston 2018"},"2825":{"market_hash_name":"Sticker | stanislaw | Boston 2018"},"2826":{"market_hash_name":"Sticker | stanislaw (Foil) | Boston 2018"},"2827":{"market_hash_name":"Sticker | stanislaw (Gold) | Boston 2018"},"2828":{"market_hash_name":"Sticker | Twistzz | Boston 2018"},"2829":{"market_hash_name":"Sticker | Twistzz (Foil) | Boston 2018"},"283":{"market_hash_name":"Sticker | Hostage Rescue"},"2830":{"market_hash_name":"Sticker | Twistzz (Gold) | Boston 2018"},"2831":{"market_hash_name":"Sticker | buster | Boston 2018"},"2832":{"market_hash_name":"Sticker | buster (Foil) | Boston 2018"},"2833":{"market_hash_name":"Sticker | buster (Gold) | Boston 2018"},"2834":{"market_hash_name":"Sticker | dimasick | Boston 2018"},"2835":{"market_hash_name":"Sticker | dimasick (Foil) | Boston 2018"},"2836":{"market_hash_name":"Sticker | dimasick (Gold) | Boston 2018"},"2837":{"market_hash_name":"Sticker | Jame | Boston 2018"},"2838":{"market_hash_name":"Sticker | Jame (Foil) | Boston 2018"},"2839":{"market_hash_name":"Sticker | Jame (Gold) | Boston 2018"},"284":{"market_hash_name":"Sticker | Hamster Hawk"},"2840":{"market_hash_name":"Sticker | KrizzeN | Boston 2018"},"2841":{"market_hash_name":"Sticker | KrizzeN (Foil) | Boston 2018"},"2842":{"market_hash_name":"Sticker | KrizzeN (Gold) | Boston 2018"},"2843":{"market_hash_name":"Sticker | qikert | Boston 2018"},"2844":{"market_hash_name":"Sticker | qikert (Foil) | Boston 2018"},"2845":{"market_hash_name":"Sticker | qikert (Gold) | Boston 2018"},"2846":{"market_hash_name":"Sticker | AZR | Boston 2018"},"2847":{"market_hash_name":"Sticker | AZR (Foil) | Boston 2018"},"2848":{"market_hash_name":"Sticker | AZR (Gold) | Boston 2018"},"2849":{"market_hash_name":"Sticker | jks | Boston 2018"},"285":{"market_hash_name":"Sticker | Headless Chicken"},"2850":{"market_hash_name":"Sticker | jks (Foil) | Boston 2018"},"2851":{"market_hash_name":"Sticker | jks (Gold) | Boston 2018"},"2852":{"market_hash_name":"Sticker | NAF | Boston 2018"},"2853":{"market_hash_name":"Sticker | NAF (Foil) | Boston 2018"},"2854":{"market_hash_name":"Sticker | NAF (Gold) | Boston 2018"},"2855":{"market_hash_name":"Sticker | Nifty | Boston 2018"},"2856":{"market_hash_name":"Sticker | Nifty (Foil) | Boston 2018"},"2857":{"market_hash_name":"Sticker | Nifty (Gold) | Boston 2018"},"2858":{"market_hash_name":"Sticker | USTILO | Boston 2018"},"2859":{"market_hash_name":"Sticker | USTILO (Foil) | Boston 2018"},"286":{"market_hash_name":"Sticker | 3DMAX | Katowice 2015"},"2860":{"market_hash_name":"Sticker | USTILO (Gold) | Boston 2018"},"2861":{"market_hash_name":"Sticker | Happy | Boston 2018"},"2862":{"market_hash_name":"Sticker | Happy (Foil) | Boston 2018"},"2863":{"market_hash_name":"Sticker | Happy (Gold) | Boston 2018"},"2864":{"market_hash_name":"Sticker | RpK | Boston 2018"},"2865":{"market_hash_name":"Sticker | RpK (Foil) | Boston 2018"},"2866":{"market_hash_name":"Sticker | RpK (Gold) | Boston 2018"},"2867":{"market_hash_name":"Sticker | ScreaM | Boston 2018"},"2868":{"market_hash_name":"Sticker | ScreaM (Foil) | Boston 2018"},"2869":{"market_hash_name":"Sticker | ScreaM (Gold) | Boston 2018"},"287":{"market_hash_name":"Sticker | 3DMAX (Holo) | Katowice 2015"},"2870":{"market_hash_name":"Sticker | SIXER | Boston 2018"},"2871":{"market_hash_name":"Sticker | SIXER (Foil) | Boston 2018"},"2872":{"market_hash_name":"Sticker | SIXER (Gold) | Boston 2018"},"2873":{"market_hash_name":"Sticker | xms | Boston 2018"},"2874":{"market_hash_name":"Sticker | xms (Foil) | Boston 2018"},"2875":{"market_hash_name":"Sticker | xms (Gold) | Boston 2018"},"2876":{"market_hash_name":"Sticker | AmaNEk | Boston 2018"},"2877":{"market_hash_name":"Sticker | AmaNEk (Foil) | Boston 2018"},"2878":{"market_hash_name":"Sticker | AmaNEk (Gold) | Boston 2018"},"2879":{"market_hash_name":"Sticker | devoduvek | Boston 2018"},"288":{"market_hash_name":"Sticker | 3DMAX (Foil) | Katowice 2015"},"2880":{"market_hash_name":"Sticker | devoduvek (Foil) | Boston 2018"},"2881":{"market_hash_name":"Sticker | devoduvek (Gold) | Boston 2018"},"2882":{"market_hash_name":"Sticker | seang@res | Boston 2018"},"2883":{"market_hash_name":"Sticker | seang@res (Foil) | Boston 2018"},"2884":{"market_hash_name":"Sticker | seang@res (Gold) | Boston 2018"},"2885":{"market_hash_name":"Sticker | ShahZaM | Boston 2018"},"2886":{"market_hash_name":"Sticker | ShahZaM (Foil) | Boston 2018"},"2887":{"market_hash_name":"Sticker | ShahZaM (Gold) | Boston 2018"},"2888":{"market_hash_name":"Sticker | SicK | Boston 2018"},"2889":{"market_hash_name":"Sticker | SicK (Foil) | Boston 2018"},"289":{"market_hash_name":"Sticker | 3DMAX (Gold) | Katowice 2015"},"2890":{"market_hash_name":"Sticker | SicK (Gold) | Boston 2018"},"2891":{"market_hash_name":"Sticker | balblna | Boston 2018"},"2892":{"market_hash_name":"Sticker | balblna (Foil) | Boston 2018"},"2893":{"market_hash_name":"Sticker | balblna (Gold) | Boston 2018"},"2894":{"market_hash_name":"Sticker | Boombl4 | Boston 2018"},"2895":{"market_hash_name":"Sticker | Boombl4 (Foil) | Boston 2018"},"2896":{"market_hash_name":"Sticker | Boombl4 (Gold) | Boston 2018"},"2897":{"market_hash_name":"Sticker | jmqa | Boston 2018"},"2898":{"market_hash_name":"Sticker | jmqa (Foil) | Boston 2018"},"2899":{"market_hash_name":"Sticker | jmqa (Gold) | Boston 2018"},"290":{"market_hash_name":"Sticker | Cloud9 G2A | Katowice 2015"},"2900":{"market_hash_name":"Sticker | Kvik | Boston 2018"},"2901":{"market_hash_name":"Sticker | Kvik (Foil) | Boston 2018"},"2902":{"market_hash_name":"Sticker | Kvik (Gold) | Boston 2018"},"2903":{"market_hash_name":"Sticker | waterfaLLZ | Boston 2018"},"2904":{"market_hash_name":"Sticker | waterfaLLZ (Foil) | Boston 2018"},"2905":{"market_hash_name":"Sticker | waterfaLLZ (Gold) | Boston 2018"},"2906":{"market_hash_name":"Sticker | BnTeT | Boston 2018"},"2907":{"market_hash_name":"Sticker | BnTeT (Foil) | Boston 2018"},"2908":{"market_hash_name":"Sticker | BnTeT (Gold) | Boston 2018"},"2909":{"market_hash_name":"Sticker | bondik | Boston 2018"},"291":{"market_hash_name":"Sticker | Cloud9 G2A (Holo) | Katowice 2015"},"2910":{"market_hash_name":"Sticker | bondik (Foil) | Boston 2018"},"2911":{"market_hash_name":"Sticker | bondik (Gold) | Boston 2018"},"2912":{"market_hash_name":"Sticker | captainMo | Boston 2018"},"2913":{"market_hash_name":"Sticker | captainMo (Foil) | Boston 2018"},"2914":{"market_hash_name":"Sticker | captainMo (Gold) | Boston 2018"},"2915":{"market_hash_name":"Sticker | DD | Boston 2018"},"2916":{"market_hash_name":"Sticker | DD (Foil) | Boston 2018"},"2917":{"market_hash_name":"Sticker | DD (Gold) | Boston 2018"},"2918":{"market_hash_name":"Sticker | somebody | Boston 2018"},"2919":{"market_hash_name":"Sticker | somebody (Foil) | Boston 2018"},"292":{"market_hash_name":"Sticker | Cloud9 G2A (Foil) | Katowice 2015"},"2920":{"market_hash_name":"Sticker | somebody (Gold) | Boston 2018"},"2921":{"market_hash_name":"Sticker | Bullet Rain"},"2922":{"market_hash_name":"Sticker | Camper"},"2923":{"market_hash_name":"Sticker | Dessert Eagle"},"2924":{"market_hash_name":"Sticker | Devouring Flame"},"2925":{"market_hash_name":"Sticker | Entry Fragger"},"2926":{"market_hash_name":"Sticker | Friendly Fire"},"2927":{"market_hash_name":"Sticker | Retake Expert"},"2928":{"market_hash_name":"Sticker | Small Arms"},"2929":{"market_hash_name":"Sticker | Devouring Flame (Holo)"},"293":{"market_hash_name":"Sticker | Cloud9 G2A (Gold) | Katowice 2015"},"2930":{"market_hash_name":"Sticker | Friendly Fire (Holo)"},"2931":{"market_hash_name":"Sticker | Retake Expert (Holo)"},"2932":{"market_hash_name":"Sticker | Small Arms (Holo)"},"2933":{"market_hash_name":"Sticker | Bullet Rain (Foil)"},"2934":{"market_hash_name":"Sticker | Camper (Foil)"},"2935":{"market_hash_name":"Sticker | Flash Gaming | Boston 2018"},"2936":{"market_hash_name":"Sticker | Flash Gaming (Holo) | Boston 2018"},"2937":{"market_hash_name":"Sticker | Flash Gaming (Foil) | Boston 2018"},"2938":{"market_hash_name":"Sticker | Flash Gaming (Gold) | Boston 2018"},"294":{"market_hash_name":"Sticker | Counter Logic Gaming | Katowice 2015"},"2940":{"market_hash_name":"Sticker | Attacker | Boston 2018"},"2941":{"market_hash_name":"Sticker | Attacker (Foil) | Boston 2018"},"2942":{"market_hash_name":"Sticker | Attacker (Gold) | Boston 2018"},"2943":{"market_hash_name":"Sticker | Karsa | Boston 2018"},"2944":{"market_hash_name":"Sticker | Karsa (Foil) | Boston 2018"},"2945":{"market_hash_name":"Sticker | Karsa (Gold) | Boston 2018"},"2946":{"market_hash_name":"Sticker | Kaze | Boston 2018"},"2947":{"market_hash_name":"Sticker | Kaze (Foil) | Boston 2018"},"2948":{"market_hash_name":"Sticker | Kaze (Gold) | Boston 2018"},"2949":{"market_hash_name":"Sticker | LoveYY | Boston 2018"},"295":{"market_hash_name":"Sticker | Counter Logic Gaming (Holo) | Katowice 2015"},"2950":{"market_hash_name":"Sticker | LoveYY (Foil) | Boston 2018"},"2951":{"market_hash_name":"Sticker | LoveYY (Gold) | Boston 2018"},"2952":{"market_hash_name":"Sticker | Summer | Boston 2018"},"2953":{"market_hash_name":"Sticker | Summer (Foil) | Boston 2018"},"2954":{"market_hash_name":"Sticker | Summer (Gold) | Boston 2018"},"2955":{"market_hash_name":"Sticker | Cloud9 | London 2018"},"2956":{"market_hash_name":"Sticker | Cloud9 (Holo) | London 2018"},"2957":{"market_hash_name":"Sticker | Cloud9 (Foil) | London 2018"},"2958":{"market_hash_name":"Sticker | Cloud9 (Gold) | London 2018"},"2959":{"market_hash_name":"Sticker | FaZe Clan | London 2018"},"296":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Katowice 2015"},"2960":{"market_hash_name":"Sticker | FaZe Clan (Holo) | London 2018"},"2961":{"market_hash_name":"Sticker | FaZe Clan (Foil) | London 2018"},"2962":{"market_hash_name":"Sticker | FaZe Clan (Gold) | London 2018"},"2963":{"market_hash_name":"Sticker | Natus Vincere | London 2018"},"2964":{"market_hash_name":"Sticker | Natus Vincere (Holo) | London 2018"},"2965":{"market_hash_name":"Sticker | Natus Vincere (Foil) | London 2018"},"2966":{"market_hash_name":"Sticker | Natus Vincere (Gold) | London 2018"},"2967":{"market_hash_name":"Sticker | MIBR | London 2018"},"2968":{"market_hash_name":"Sticker | MIBR (Holo) | London 2018"},"2969":{"market_hash_name":"Sticker | MIBR (Foil) | London 2018"},"297":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Katowice 2015"},"2970":{"market_hash_name":"Sticker | MIBR (Gold) | London 2018"},"2971":{"market_hash_name":"Sticker | mousesports | London 2018"},"2972":{"market_hash_name":"Sticker | mousesports (Holo) | London 2018"},"2973":{"market_hash_name":"Sticker | mousesports (Foil) | London 2018"},"2974":{"market_hash_name":"Sticker | mousesports (Gold) | London 2018"},"2975":{"market_hash_name":"Sticker | Winstrike Team | London 2018"},"2976":{"market_hash_name":"Sticker | Winstrike Team (Holo) | London 2018"},"2977":{"market_hash_name":"Sticker | Winstrike Team (Foil) | London 2018"},"2978":{"market_hash_name":"Sticker | Winstrike Team (Gold) | London 2018"},"2979":{"market_hash_name":"Sticker | G2 Esports | London 2018"},"2980":{"market_hash_name":"Sticker | G2 Esports (Holo) | London 2018"},"2981":{"market_hash_name":"Sticker | G2 Esports (Foil) | London 2018"},"2982":{"market_hash_name":"Sticker | G2 Esports (Gold) | London 2018"},"2983":{"market_hash_name":"Sticker | Fnatic | London 2018"},"2984":{"market_hash_name":"Sticker | Fnatic (Holo) | London 2018"},"2985":{"market_hash_name":"Sticker | Fnatic (Foil) | London 2018"},"2986":{"market_hash_name":"Sticker | Fnatic (Gold) | London 2018"},"2987":{"market_hash_name":"Sticker | Gambit Esports | London 2018"},"2988":{"market_hash_name":"Sticker | Gambit Esports (Holo) | London 2018"},"2989":{"market_hash_name":"Sticker | Gambit Esports (Foil) | London 2018"},"2990":{"market_hash_name":"Sticker | Gambit Esports (Gold) | London 2018"},"2991":{"market_hash_name":"Sticker | Vega Squadron | London 2018"},"2992":{"market_hash_name":"Sticker | Vega Squadron (Holo) | London 2018"},"2993":{"market_hash_name":"Sticker | Vega Squadron (Foil) | London 2018"},"2994":{"market_hash_name":"Sticker | Vega Squadron (Gold) | London 2018"},"2995":{"market_hash_name":"Sticker | Space Soldiers | London 2018"},"2996":{"market_hash_name":"Sticker | Space Soldiers (Holo) | London 2018"},"2997":{"market_hash_name":"Sticker | Space Soldiers (Foil) | London 2018"},"2998":{"market_hash_name":"Sticker | Space Soldiers (Gold) | London 2018"},"2999":{"market_hash_name":"Sticker | BIG | London 2018"},"3":{"market_hash_name":"Sticker | Shooter Close"},"300":{"market_hash_name":"Sticker | ESL One (Foil) | Katowice 2015"},"3000":{"market_hash_name":"Sticker | BIG (Holo) | London 2018"},"3001":{"market_hash_name":"Sticker | BIG (Foil) | London 2018"},"3002":{"market_hash_name":"Sticker | BIG (Gold) | London 2018"},"3003":{"market_hash_name":"Sticker | Astralis | London 2018"},"3004":{"market_hash_name":"Sticker | Astralis (Holo) | London 2018"},"3005":{"market_hash_name":"Sticker | Astralis (Foil) | London 2018"},"3006":{"market_hash_name":"Sticker | Astralis (Gold) | London 2018"},"3007":{"market_hash_name":"Sticker | Team Liquid | London 2018"},"3008":{"market_hash_name":"Sticker | Team Liquid (Holo) | London 2018"},"3009":{"market_hash_name":"Sticker | Team Liquid (Foil) | London 2018"},"301":{"market_hash_name":"Sticker | ESL One (Gold) | Katowice 2015"},"3010":{"market_hash_name":"Sticker | Team Liquid (Gold) | London 2018"},"3011":{"market_hash_name":"Sticker | North | London 2018"},"3012":{"market_hash_name":"Sticker | North (Holo) | London 2018"},"3013":{"market_hash_name":"Sticker | North (Foil) | London 2018"},"3014":{"market_hash_name":"Sticker | North (Gold) | London 2018"},"3015":{"market_hash_name":"Sticker | Virtus.Pro | London 2018"},"3016":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | London 2018"},"3017":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | London 2018"},"3018":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | London 2018"},"3019":{"market_hash_name":"Sticker | Ninjas in Pyjamas | London 2018"},"302":{"market_hash_name":"Sticker | Flipsid3 Tactics | Katowice 2015"},"3020":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | London 2018"},"3021":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | London 2018"},"3022":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | London 2018"},"3023":{"market_hash_name":"Sticker | compLexity Gaming | London 2018"},"3024":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | London 2018"},"3025":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | London 2018"},"3026":{"market_hash_name":"Sticker | compLexity Gaming (Gold) | London 2018"},"3027":{"market_hash_name":"Sticker | HellRaisers | London 2018"},"3028":{"market_hash_name":"Sticker | HellRaisers (Holo) | London 2018"},"3029":{"market_hash_name":"Sticker | HellRaisers (Foil) | London 2018"},"303":{"market_hash_name":"Sticker | Flipsid3 Tactics (Holo) | Katowice 2015"},"3030":{"market_hash_name":"Sticker | HellRaisers (Gold) | London 2018"},"3031":{"market_hash_name":"Sticker | Renegades | London 2018"},"3032":{"market_hash_name":"Sticker | Renegades (Holo) | London 2018"},"3033":{"market_hash_name":"Sticker | Renegades (Foil) | London 2018"},"3034":{"market_hash_name":"Sticker | Renegades (Gold) | London 2018"},"3035":{"market_hash_name":"Sticker | OpTic Gaming | London 2018"},"3036":{"market_hash_name":"Sticker | OpTic Gaming (Holo) | London 2018"},"3037":{"market_hash_name":"Sticker | OpTic Gaming (Foil) | London 2018"},"3038":{"market_hash_name":"Sticker | OpTic Gaming (Gold) | London 2018"},"3039":{"market_hash_name":"Sticker | Rogue | London 2018"},"304":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Katowice 2015"},"3040":{"market_hash_name":"Sticker | Rogue (Holo) | London 2018"},"3041":{"market_hash_name":"Sticker | Rogue (Foil) | London 2018"},"3042":{"market_hash_name":"Sticker | Rogue (Gold) | London 2018"},"3043":{"market_hash_name":"Sticker | Team Spirit | London 2018"},"3044":{"market_hash_name":"Sticker | Team Spirit (Holo) | London 2018"},"3045":{"market_hash_name":"Sticker | Team Spirit (Foil) | London 2018"},"3046":{"market_hash_name":"Sticker | Team Spirit (Gold) | London 2018"},"3047":{"market_hash_name":"Sticker | Tyloo | London 2018"},"3048":{"market_hash_name":"Sticker | Tyloo (Holo) | London 2018"},"3049":{"market_hash_name":"Sticker | Tyloo (Foil) | London 2018"},"305":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Katowice 2015"},"3050":{"market_hash_name":"Sticker | Tyloo (Gold) | London 2018"},"3051":{"market_hash_name":"Sticker | FACEIT | London 2018"},"3052":{"market_hash_name":"Sticker | FACEIT (Holo) | London 2018"},"3053":{"market_hash_name":"Sticker | FACEIT (Foil) | London 2018"},"3054":{"market_hash_name":"Sticker | FACEIT (Gold) | London 2018"},"306":{"market_hash_name":"Sticker | Fnatic | Katowice 2015"},"307":{"market_hash_name":"Sticker | Fnatic (Holo) | Katowice 2015"},"308":{"market_hash_name":"Sticker | Fnatic (Foil) | Katowice 2015"},"3080":{"market_hash_name":"Sticker | Golden | London 2018"},"3081":{"market_hash_name":"Sticker | Golden (Foil) | London 2018"},"3082":{"market_hash_name":"Sticker | Golden (Gold) | London 2018"},"3083":{"market_hash_name":"Sticker | autimatic | London 2018"},"3084":{"market_hash_name":"Sticker | autimatic (Foil) | London 2018"},"3085":{"market_hash_name":"Sticker | autimatic (Gold) | London 2018"},"3086":{"market_hash_name":"Sticker | RUSH | London 2018"},"3087":{"market_hash_name":"Sticker | RUSH (Foil) | London 2018"},"3088":{"market_hash_name":"Sticker | RUSH (Gold) | London 2018"},"3089":{"market_hash_name":"Sticker | STYKO | London 2018"},"309":{"market_hash_name":"Sticker | Fnatic (Gold) | Katowice 2015"},"3090":{"market_hash_name":"Sticker | STYKO (Foil) | London 2018"},"3091":{"market_hash_name":"Sticker | STYKO (Gold) | London 2018"},"3092":{"market_hash_name":"Sticker | Skadoodle | London 2018"},"3093":{"market_hash_name":"Sticker | Skadoodle (Foil) | London 2018"},"3094":{"market_hash_name":"Sticker | Skadoodle (Gold) | London 2018"},"3095":{"market_hash_name":"Sticker | GuardiaN | London 2018"},"3096":{"market_hash_name":"Sticker | GuardiaN (Foil) | London 2018"},"3097":{"market_hash_name":"Sticker | GuardiaN (Gold) | London 2018"},"3098":{"market_hash_name":"Sticker | olofmeister | London 2018"},"3099":{"market_hash_name":"Sticker | olofmeister (Foil) | London 2018"},"31":{"market_hash_name":"Sticker | Bish (Holo)"},"310":{"market_hash_name":"Sticker | HellRaisers | Katowice 2015"},"3100":{"market_hash_name":"Sticker | olofmeister (Gold) | London 2018"},"3101":{"market_hash_name":"Sticker | karrigan | London 2018"},"3102":{"market_hash_name":"Sticker | karrigan (Foil) | London 2018"},"3103":{"market_hash_name":"Sticker | karrigan (Gold) | London 2018"},"3104":{"market_hash_name":"Sticker | rain | London 2018"},"3105":{"market_hash_name":"Sticker | rain (Foil) | London 2018"},"3106":{"market_hash_name":"Sticker | rain (Gold) | London 2018"},"3107":{"market_hash_name":"Sticker | NiKo | London 2018"},"3108":{"market_hash_name":"Sticker | NiKo (Foil) | London 2018"},"3109":{"market_hash_name":"Sticker | NiKo (Gold) | London 2018"},"311":{"market_hash_name":"Sticker | HellRaisers (Holo) | Katowice 2015"},"3110":{"market_hash_name":"Sticker | electronic | London 2018"},"3111":{"market_hash_name":"Sticker | electronic (Foil) | London 2018"},"3112":{"market_hash_name":"Sticker | electronic (Gold) | London 2018"},"3113":{"market_hash_name":"Sticker | Zeus | London 2018"},"3114":{"market_hash_name":"Sticker | Zeus (Foil) | London 2018"},"3115":{"market_hash_name":"Sticker | Zeus (Gold) | London 2018"},"3116":{"market_hash_name":"Sticker | s1mple | London 2018"},"3117":{"market_hash_name":"Sticker | s1mple (Foil) | London 2018"},"3118":{"market_hash_name":"Sticker | s1mple (Gold) | London 2018"},"3119":{"market_hash_name":"Sticker | Edward | London 2018"},"312":{"market_hash_name":"Sticker | HellRaisers (Foil) | Katowice 2015"},"3120":{"market_hash_name":"Sticker | Edward (Foil) | London 2018"},"3121":{"market_hash_name":"Sticker | Edward (Gold) | London 2018"},"3122":{"market_hash_name":"Sticker | flamie | London 2018"},"3123":{"market_hash_name":"Sticker | flamie (Foil) | London 2018"},"3124":{"market_hash_name":"Sticker | flamie (Gold) | London 2018"},"3125":{"market_hash_name":"Sticker | coldzera | London 2018"},"3126":{"market_hash_name":"Sticker | coldzera (Foil) | London 2018"},"3127":{"market_hash_name":"Sticker | coldzera (Gold) | London 2018"},"3128":{"market_hash_name":"Sticker | FalleN | London 2018"},"3129":{"market_hash_name":"Sticker | FalleN (Foil) | London 2018"},"313":{"market_hash_name":"Sticker | HellRaisers (Gold) | Katowice 2015"},"3130":{"market_hash_name":"Sticker | FalleN (Gold) | London 2018"},"3131":{"market_hash_name":"Sticker | tarik | London 2018"},"3132":{"market_hash_name":"Sticker | tarik (Foil) | London 2018"},"3133":{"market_hash_name":"Sticker | tarik (Gold) | London 2018"},"3134":{"market_hash_name":"Sticker | Stewie2K | London 2018"},"3135":{"market_hash_name":"Sticker | Stewie2K (Foil) | London 2018"},"3136":{"market_hash_name":"Sticker | Stewie2K (Gold) | London 2018"},"3137":{"market_hash_name":"Sticker | fer | London 2018"},"3138":{"market_hash_name":"Sticker | fer (Foil) | London 2018"},"3139":{"market_hash_name":"Sticker | fer (Gold) | London 2018"},"314":{"market_hash_name":"Sticker | Keyd Stars | Katowice 2015"},"3140":{"market_hash_name":"Sticker | Snax | London 2018"},"3141":{"market_hash_name":"Sticker | Snax (Foil) | London 2018"},"3142":{"market_hash_name":"Sticker | Snax (Gold) | London 2018"},"3143":{"market_hash_name":"Sticker | chrisJ | London 2018"},"3144":{"market_hash_name":"Sticker | chrisJ (Foil) | London 2018"},"3145":{"market_hash_name":"Sticker | chrisJ (Gold) | London 2018"},"3146":{"market_hash_name":"Sticker | ropz | London 2018"},"3147":{"market_hash_name":"Sticker | ropz (Foil) | London 2018"},"3148":{"market_hash_name":"Sticker | ropz (Gold) | London 2018"},"3149":{"market_hash_name":"Sticker | suNny | London 2018"},"315":{"market_hash_name":"Sticker | Keyd Stars (Holo) | Katowice 2015"},"3150":{"market_hash_name":"Sticker | suNny (Foil) | London 2018"},"3151":{"market_hash_name":"Sticker | suNny (Gold) | London 2018"},"3152":{"market_hash_name":"Sticker | oskar | London 2018"},"3153":{"market_hash_name":"Sticker | oskar (Foil) | London 2018"},"3154":{"market_hash_name":"Sticker | oskar (Gold) | London 2018"},"3155":{"market_hash_name":"Sticker | jmqa | London 2018"},"3156":{"market_hash_name":"Sticker | jmqa (Foil) | London 2018"},"3157":{"market_hash_name":"Sticker | jmqa (Gold) | London 2018"},"3158":{"market_hash_name":"Sticker | Kvik | London 2018"},"3159":{"market_hash_name":"Sticker | Kvik (Foil) | London 2018"},"316":{"market_hash_name":"Sticker | Keyd Stars (Foil) | Katowice 2015"},"3160":{"market_hash_name":"Sticker | Kvik (Gold) | London 2018"},"3161":{"market_hash_name":"Sticker | balblna | London 2018"},"3162":{"market_hash_name":"Sticker | balblna (Foil) | London 2018"},"3163":{"market_hash_name":"Sticker | balblna (Gold) | London 2018"},"3164":{"market_hash_name":"Sticker | waterfaLLZ | London 2018"},"3165":{"market_hash_name":"Sticker | waterfaLLZ (Foil) | London 2018"},"3166":{"market_hash_name":"Sticker | waterfaLLZ (Gold) | London 2018"},"3167":{"market_hash_name":"Sticker | Boombl4 | London 2018"},"3168":{"market_hash_name":"Sticker | Boombl4 (Foil) | London 2018"},"3169":{"market_hash_name":"Sticker | Boombl4 (Gold) | London 2018"},"317":{"market_hash_name":"Sticker | Keyd Stars (Gold) | Katowice 2015"},"3170":{"market_hash_name":"Sticker | kennyS | London 2018"},"3171":{"market_hash_name":"Sticker | kennyS (Foil) | London 2018"},"3172":{"market_hash_name":"Sticker | kennyS (Gold) | London 2018"},"3173":{"market_hash_name":"Sticker | bodyy | London 2018"},"3174":{"market_hash_name":"Sticker | bodyy (Foil) | London 2018"},"3175":{"market_hash_name":"Sticker | bodyy (Gold) | London 2018"},"3176":{"market_hash_name":"Sticker | shox | London 2018"},"3177":{"market_hash_name":"Sticker | shox (Foil) | London 2018"},"3178":{"market_hash_name":"Sticker | shox (Gold) | London 2018"},"3179":{"market_hash_name":"Sticker | Ex6TenZ | London 2018"},"318":{"market_hash_name":"Sticker | LGB eSports | Katowice 2015"},"3180":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | London 2018"},"3181":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | London 2018"},"3182":{"market_hash_name":"Sticker | SmithZz | London 2018"},"3183":{"market_hash_name":"Sticker | SmithZz (Foil) | London 2018"},"3184":{"market_hash_name":"Sticker | SmithZz (Gold) | London 2018"},"3185":{"market_hash_name":"Sticker | draken | London 2018"},"3186":{"market_hash_name":"Sticker | draken (Foil) | London 2018"},"3187":{"market_hash_name":"Sticker | draken (Gold) | London 2018"},"3188":{"market_hash_name":"Sticker | JW | London 2018"},"3189":{"market_hash_name":"Sticker | JW (Foil) | London 2018"},"319":{"market_hash_name":"Sticker | LGB eSports (Holo) | Katowice 2015"},"3190":{"market_hash_name":"Sticker | JW (Gold) | London 2018"},"3191":{"market_hash_name":"Sticker | KRIMZ | London 2018"},"3192":{"market_hash_name":"Sticker | KRIMZ (Foil) | London 2018"},"3193":{"market_hash_name":"Sticker | KRIMZ (Gold) | London 2018"},"3194":{"market_hash_name":"Sticker | flusha | London 2018"},"3195":{"market_hash_name":"Sticker | flusha (Foil) | London 2018"},"3196":{"market_hash_name":"Sticker | flusha (Gold) | London 2018"},"3197":{"market_hash_name":"Sticker | Xizt | London 2018"},"3198":{"market_hash_name":"Sticker | Xizt (Foil) | London 2018"},"3199":{"market_hash_name":"Sticker | Xizt (Gold) | London 2018"},"32":{"market_hash_name":"Sticker | Bash (Holo)"},"320":{"market_hash_name":"Sticker | LGB eSports (Foil) | Katowice 2015"},"3200":{"market_hash_name":"Sticker | mir | London 2018"},"3201":{"market_hash_name":"Sticker | mir (Foil) | London 2018"},"3202":{"market_hash_name":"Sticker | mir (Gold) | London 2018"},"3203":{"market_hash_name":"Sticker | Dosia | London 2018"},"3204":{"market_hash_name":"Sticker | Dosia (Foil) | London 2018"},"3205":{"market_hash_name":"Sticker | Dosia (Gold) | London 2018"},"3206":{"market_hash_name":"Sticker | Hobbit | London 2018"},"3207":{"market_hash_name":"Sticker | Hobbit (Foil) | London 2018"},"3208":{"market_hash_name":"Sticker | Hobbit (Gold) | London 2018"},"3209":{"market_hash_name":"Sticker | mou | London 2018"},"321":{"market_hash_name":"Sticker | LGB eSports (Gold) | Katowice 2015"},"3210":{"market_hash_name":"Sticker | mou (Foil) | London 2018"},"3211":{"market_hash_name":"Sticker | mou (Gold) | London 2018"},"3212":{"market_hash_name":"Sticker | AdreN | London 2018"},"3213":{"market_hash_name":"Sticker | AdreN (Foil) | London 2018"},"3214":{"market_hash_name":"Sticker | AdreN (Gold) | London 2018"},"3215":{"market_hash_name":"Sticker | tonyblack | London 2018"},"3216":{"market_hash_name":"Sticker | tonyblack (Foil) | London 2018"},"3217":{"market_hash_name":"Sticker | tonyblack (Gold) | London 2018"},"3218":{"market_hash_name":"Sticker | crush | London 2018"},"3219":{"market_hash_name":"Sticker | crush (Foil) | London 2018"},"322":{"market_hash_name":"Sticker | Natus Vincere | Katowice 2015"},"3220":{"market_hash_name":"Sticker | crush (Gold) | London 2018"},"3221":{"market_hash_name":"Sticker | hutji | London 2018"},"3222":{"market_hash_name":"Sticker | hutji (Foil) | London 2018"},"3223":{"market_hash_name":"Sticker | hutji (Gold) | London 2018"},"3224":{"market_hash_name":"Sticker | jR | London 2018"},"3225":{"market_hash_name":"Sticker | jR (Foil) | London 2018"},"3226":{"market_hash_name":"Sticker | jR (Gold) | London 2018"},"3227":{"market_hash_name":"Sticker | chopper | London 2018"},"3228":{"market_hash_name":"Sticker | chopper (Foil) | London 2018"},"3229":{"market_hash_name":"Sticker | chopper (Gold) | London 2018"},"323":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Katowice 2015"},"3230":{"market_hash_name":"Sticker | XANTARES | London 2018"},"3231":{"market_hash_name":"Sticker | XANTARES (Foil) | London 2018"},"3232":{"market_hash_name":"Sticker | XANTARES (Gold) | London 2018"},"3233":{"market_hash_name":"Sticker | Calyx | London 2018"},"3234":{"market_hash_name":"Sticker | Calyx (Foil) | London 2018"},"3235":{"market_hash_name":"Sticker | Calyx (Gold) | London 2018"},"3236":{"market_hash_name":"Sticker | paz | London 2018"},"3237":{"market_hash_name":"Sticker | paz (Foil) | London 2018"},"3238":{"market_hash_name":"Sticker | paz (Gold) | London 2018"},"3239":{"market_hash_name":"Sticker | ngiN | London 2018"},"324":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Katowice 2015"},"3240":{"market_hash_name":"Sticker | ngiN (Foil) | London 2018"},"3241":{"market_hash_name":"Sticker | ngiN (Gold) | London 2018"},"3242":{"market_hash_name":"Sticker | MAJ3R | London 2018"},"3243":{"market_hash_name":"Sticker | MAJ3R (Foil) | London 2018"},"3244":{"market_hash_name":"Sticker | MAJ3R (Gold) | London 2018"},"3245":{"market_hash_name":"Sticker | tiziaN | London 2018"},"3246":{"market_hash_name":"Sticker | tiziaN (Foil) | London 2018"},"3247":{"market_hash_name":"Sticker | tiziaN (Gold) | London 2018"},"3248":{"market_hash_name":"Sticker | gob b | London 2018"},"3249":{"market_hash_name":"Sticker | gob b (Foil) | London 2018"},"325":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Katowice 2015"},"3250":{"market_hash_name":"Sticker | gob b (Gold) | London 2018"},"3251":{"market_hash_name":"Sticker | tabseN | London 2018"},"3252":{"market_hash_name":"Sticker | tabseN (Foil) | London 2018"},"3253":{"market_hash_name":"Sticker | tabseN (Gold) | London 2018"},"3254":{"market_hash_name":"Sticker | nex | London 2018"},"3255":{"market_hash_name":"Sticker | nex (Foil) | London 2018"},"3256":{"market_hash_name":"Sticker | nex (Gold) | London 2018"},"3257":{"market_hash_name":"Sticker | smooya | London 2018"},"3258":{"market_hash_name":"Sticker | smooya (Foil) | London 2018"},"3259":{"market_hash_name":"Sticker | smooya (Gold) | London 2018"},"326":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Katowice 2015"},"3260":{"market_hash_name":"Sticker | dupreeh | London 2018"},"3261":{"market_hash_name":"Sticker | dupreeh (Foil) | London 2018"},"3262":{"market_hash_name":"Sticker | dupreeh (Gold) | London 2018"},"3263":{"market_hash_name":"Sticker | gla1ve | London 2018"},"3264":{"market_hash_name":"Sticker | gla1ve (Foil) | London 2018"},"3265":{"market_hash_name":"Sticker | gla1ve (Gold) | London 2018"},"3266":{"market_hash_name":"Sticker | device | London 2018"},"3267":{"market_hash_name":"Sticker | device (Foil) | London 2018"},"3268":{"market_hash_name":"Sticker | device (Gold) | London 2018"},"3269":{"market_hash_name":"Sticker | Magisk | London 2018"},"327":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Katowice 2015"},"3270":{"market_hash_name":"Sticker | Magisk (Foil) | London 2018"},"3271":{"market_hash_name":"Sticker | Magisk (Gold) | London 2018"},"3272":{"market_hash_name":"Sticker | Xyp9x | London 2018"},"3273":{"market_hash_name":"Sticker | Xyp9x (Foil) | London 2018"},"3274":{"market_hash_name":"Sticker | Xyp9x (Gold) | London 2018"},"3275":{"market_hash_name":"Sticker | EliGE | London 2018"},"3276":{"market_hash_name":"Sticker | EliGE (Foil) | London 2018"},"3277":{"market_hash_name":"Sticker | EliGE (Gold) | London 2018"},"3278":{"market_hash_name":"Sticker | TACO | London 2018"},"3279":{"market_hash_name":"Sticker | TACO (Foil) | London 2018"},"328":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Katowice 2015"},"3280":{"market_hash_name":"Sticker | TACO (Gold) | London 2018"},"3281":{"market_hash_name":"Sticker | Twistzz | London 2018"},"3282":{"market_hash_name":"Sticker | Twistzz (Foil) | London 2018"},"3283":{"market_hash_name":"Sticker | Twistzz (Gold) | London 2018"},"3284":{"market_hash_name":"Sticker | NAF | London 2018"},"3285":{"market_hash_name":"Sticker | NAF (Foil) | London 2018"},"3286":{"market_hash_name":"Sticker | NAF (Gold) | London 2018"},"3287":{"market_hash_name":"Sticker | nitr0 | London 2018"},"3288":{"market_hash_name":"Sticker | nitr0 (Foil) | London 2018"},"3289":{"market_hash_name":"Sticker | nitr0 (Gold) | London 2018"},"329":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Katowice 2015"},"3290":{"market_hash_name":"Sticker | MSL | London 2018"},"3291":{"market_hash_name":"Sticker | MSL (Foil) | London 2018"},"3292":{"market_hash_name":"Sticker | MSL (Gold) | London 2018"},"3293":{"market_hash_name":"Sticker | niko | London 2018"},"3294":{"market_hash_name":"Sticker | niko (Foil) | London 2018"},"3295":{"market_hash_name":"Sticker | niko (Gold) | London 2018"},"3296":{"market_hash_name":"Sticker | Kjaerbye | London 2018"},"3297":{"market_hash_name":"Sticker | Kjaerbye (Foil) | London 2018"},"3298":{"market_hash_name":"Sticker | Kjaerbye (Gold) | London 2018"},"3299":{"market_hash_name":"Sticker | aizy | London 2018"},"33":{"market_hash_name":"Sticker | Bosh (Holo)"},"330":{"market_hash_name":"Sticker | PENTA Sports | Katowice 2015"},"3300":{"market_hash_name":"Sticker | aizy (Foil) | London 2018"},"3301":{"market_hash_name":"Sticker | aizy (Gold) | London 2018"},"3302":{"market_hash_name":"Sticker | v4lde | London 2018"},"3303":{"market_hash_name":"Sticker | v4lde (Foil) | London 2018"},"3304":{"market_hash_name":"Sticker | v4lde (Gold) | London 2018"},"3305":{"market_hash_name":"Sticker | byali | London 2018"},"3306":{"market_hash_name":"Sticker | byali (Foil) | London 2018"},"3307":{"market_hash_name":"Sticker | byali (Gold) | London 2018"},"3308":{"market_hash_name":"Sticker | pashaBiceps | London 2018"},"3309":{"market_hash_name":"Sticker | pashaBiceps (Foil) | London 2018"},"331":{"market_hash_name":"Sticker | PENTA Sports (Holo) | Katowice 2015"},"3310":{"market_hash_name":"Sticker | pashaBiceps (Gold) | London 2018"},"3311":{"market_hash_name":"Sticker | NEO | London 2018"},"3312":{"market_hash_name":"Sticker | NEO (Foil) | London 2018"},"3313":{"market_hash_name":"Sticker | NEO (Gold) | London 2018"},"3314":{"market_hash_name":"Sticker | MICHU | London 2018"},"3315":{"market_hash_name":"Sticker | MICHU (Foil) | London 2018"},"3316":{"market_hash_name":"Sticker | MICHU (Gold) | London 2018"},"3317":{"market_hash_name":"Sticker | snatchie | London 2018"},"3318":{"market_hash_name":"Sticker | snatchie (Foil) | London 2018"},"3319":{"market_hash_name":"Sticker | snatchie (Gold) | London 2018"},"332":{"market_hash_name":"Sticker | PENTA Sports (Foil) | Katowice 2015"},"3320":{"market_hash_name":"Sticker | GeT_RiGhT | London 2018"},"3321":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | London 2018"},"3322":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | London 2018"},"3323":{"market_hash_name":"Sticker | f0rest | London 2018"},"3324":{"market_hash_name":"Sticker | f0rest (Foil) | London 2018"},"3325":{"market_hash_name":"Sticker | f0rest (Gold) | London 2018"},"3326":{"market_hash_name":"Sticker | Lekr0 | London 2018"},"3327":{"market_hash_name":"Sticker | Lekr0 (Foil) | London 2018"},"3328":{"market_hash_name":"Sticker | Lekr0 (Gold) | London 2018"},"3329":{"market_hash_name":"Sticker | REZ | London 2018"},"333":{"market_hash_name":"Sticker | PENTA Sports (Gold) | Katowice 2015"},"3330":{"market_hash_name":"Sticker | REZ (Foil) | London 2018"},"3331":{"market_hash_name":"Sticker | REZ (Gold) | London 2018"},"3332":{"market_hash_name":"Sticker | dennis | London 2018"},"3333":{"market_hash_name":"Sticker | dennis (Foil) | London 2018"},"3334":{"market_hash_name":"Sticker | dennis (Gold) | London 2018"},"3335":{"market_hash_name":"Sticker | ANDROID | London 2018"},"3336":{"market_hash_name":"Sticker | ANDROID (Foil) | London 2018"},"3337":{"market_hash_name":"Sticker | ANDROID (Gold) | London 2018"},"3338":{"market_hash_name":"Sticker | stanislaw | London 2018"},"3339":{"market_hash_name":"Sticker | stanislaw (Foil) | London 2018"},"334":{"market_hash_name":"Sticker | Team EnVyUs | Katowice 2015"},"3340":{"market_hash_name":"Sticker | stanislaw (Gold) | London 2018"},"3341":{"market_hash_name":"Sticker | dephh | London 2018"},"3342":{"market_hash_name":"Sticker | dephh (Foil) | London 2018"},"3343":{"market_hash_name":"Sticker | dephh (Gold) | London 2018"},"3344":{"market_hash_name":"Sticker | yay | London 2018"},"3345":{"market_hash_name":"Sticker | yay (Foil) | London 2018"},"3346":{"market_hash_name":"Sticker | yay (Gold) | London 2018"},"3347":{"market_hash_name":"Sticker | ShahZaM | London 2018"},"3348":{"market_hash_name":"Sticker | ShahZaM (Foil) | London 2018"},"3349":{"market_hash_name":"Sticker | ShahZaM (Gold) | London 2018"},"335":{"market_hash_name":"Sticker | Team EnVyUs (Holo) | Katowice 2015"},"3350":{"market_hash_name":"Sticker | woxic | London 2018"},"3351":{"market_hash_name":"Sticker | woxic (Foil) | London 2018"},"3352":{"market_hash_name":"Sticker | woxic (Gold) | London 2018"},"3353":{"market_hash_name":"Sticker | ISSAA | London 2018"},"3354":{"market_hash_name":"Sticker | ISSAA (Foil) | London 2018"},"3355":{"market_hash_name":"Sticker | ISSAA (Gold) | London 2018"},"3356":{"market_hash_name":"Sticker | bondik | London 2018"},"3357":{"market_hash_name":"Sticker | bondik (Foil) | London 2018"},"3358":{"market_hash_name":"Sticker | bondik (Gold) | London 2018"},"3359":{"market_hash_name":"Sticker | ANGE1 | London 2018"},"336":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Katowice 2015"},"3360":{"market_hash_name":"Sticker | ANGE1 (Foil) | London 2018"},"3361":{"market_hash_name":"Sticker | ANGE1 (Gold) | London 2018"},"3362":{"market_hash_name":"Sticker | DeadFox | London 2018"},"3363":{"market_hash_name":"Sticker | DeadFox (Foil) | London 2018"},"3364":{"market_hash_name":"Sticker | DeadFox (Gold) | London 2018"},"3365":{"market_hash_name":"Sticker | Nifty | London 2018"},"3366":{"market_hash_name":"Sticker | Nifty (Foil) | London 2018"},"3367":{"market_hash_name":"Sticker | Nifty (Gold) | London 2018"},"3368":{"market_hash_name":"Sticker | jkaem | London 2018"},"3369":{"market_hash_name":"Sticker | jkaem (Foil) | London 2018"},"337":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Katowice 2015"},"3370":{"market_hash_name":"Sticker | jkaem (Gold) | London 2018"},"3371":{"market_hash_name":"Sticker | jks | London 2018"},"3372":{"market_hash_name":"Sticker | jks (Foil) | London 2018"},"3373":{"market_hash_name":"Sticker | jks (Gold) | London 2018"},"3374":{"market_hash_name":"Sticker | USTILO | London 2018"},"3375":{"market_hash_name":"Sticker | USTILO (Foil) | London 2018"},"3376":{"market_hash_name":"Sticker | USTILO (Gold) | London 2018"},"3377":{"market_hash_name":"Sticker | AZR | London 2018"},"3378":{"market_hash_name":"Sticker | AZR (Foil) | London 2018"},"3379":{"market_hash_name":"Sticker | AZR (Gold) | London 2018"},"338":{"market_hash_name":"Sticker | TSM Kinguin | Katowice 2015"},"3380":{"market_hash_name":"Sticker | cajunb | London 2018"},"3381":{"market_hash_name":"Sticker | cajunb (Foil) | London 2018"},"3382":{"market_hash_name":"Sticker | cajunb (Gold) | London 2018"},"3383":{"market_hash_name":"Sticker | k0nfig | London 2018"},"3384":{"market_hash_name":"Sticker | k0nfig (Foil) | London 2018"},"3385":{"market_hash_name":"Sticker | k0nfig (Gold) | London 2018"},"3386":{"market_hash_name":"Sticker | gade | London 2018"},"3387":{"market_hash_name":"Sticker | gade (Foil) | London 2018"},"3388":{"market_hash_name":"Sticker | gade (Gold) | London 2018"},"3389":{"market_hash_name":"Sticker | Snappi | London 2018"},"339":{"market_hash_name":"Sticker | TSM Kinguin (Holo) | Katowice 2015"},"3390":{"market_hash_name":"Sticker | Snappi (Foil) | London 2018"},"3391":{"market_hash_name":"Sticker | Snappi (Gold) | London 2018"},"3392":{"market_hash_name":"Sticker | JUGi | London 2018"},"3393":{"market_hash_name":"Sticker | JUGi (Foil) | London 2018"},"3394":{"market_hash_name":"Sticker | JUGi (Gold) | London 2018"},"3395":{"market_hash_name":"Sticker | SicK | London 2018"},"3396":{"market_hash_name":"Sticker | SicK (Foil) | London 2018"},"3397":{"market_hash_name":"Sticker | SicK (Gold) | London 2018"},"3398":{"market_hash_name":"Sticker | Hiko | London 2018"},"3399":{"market_hash_name":"Sticker | Hiko (Foil) | London 2018"},"34":{"market_hash_name":"Sticker | Banana"},"340":{"market_hash_name":"Sticker | TSM Kinguin (Foil) | Katowice 2015"},"3400":{"market_hash_name":"Sticker | Hiko (Gold) | London 2018"},"3401":{"market_hash_name":"Sticker | Rickeh | London 2018"},"3402":{"market_hash_name":"Sticker | Rickeh (Foil) | London 2018"},"3403":{"market_hash_name":"Sticker | Rickeh (Gold) | London 2018"},"3404":{"market_hash_name":"Sticker | cadiaN | London 2018"},"3405":{"market_hash_name":"Sticker | cadiaN (Foil) | London 2018"},"3406":{"market_hash_name":"Sticker | cadiaN (Gold) | London 2018"},"3407":{"market_hash_name":"Sticker | vice | London 2018"},"3408":{"market_hash_name":"Sticker | vice (Foil) | London 2018"},"3409":{"market_hash_name":"Sticker | vice (Gold) | London 2018"},"341":{"market_hash_name":"Sticker | TSM Kinguin (Gold) | Katowice 2015"},"3410":{"market_hash_name":"Sticker | COLDYY1 | London 2018"},"3411":{"market_hash_name":"Sticker | COLDYY1 (Foil) | London 2018"},"3412":{"market_hash_name":"Sticker | COLDYY1 (Gold) | London 2018"},"3413":{"market_hash_name":"Sticker | Dima | London 2018"},"3414":{"market_hash_name":"Sticker | Dima (Foil) | London 2018"},"3415":{"market_hash_name":"Sticker | Dima (Gold) | London 2018"},"3416":{"market_hash_name":"Sticker | sdy | London 2018"},"3417":{"market_hash_name":"Sticker | sdy (Foil) | London 2018"},"3418":{"market_hash_name":"Sticker | sdy (Gold) | London 2018"},"3419":{"market_hash_name":"Sticker | S0tF1k | London 2018"},"342":{"market_hash_name":"Sticker | Titan | Katowice 2015"},"3420":{"market_hash_name":"Sticker | S0tF1k (Foil) | London 2018"},"3421":{"market_hash_name":"Sticker | S0tF1k (Gold) | London 2018"},"3422":{"market_hash_name":"Sticker | DavCost | London 2018"},"3423":{"market_hash_name":"Sticker | DavCost (Foil) | London 2018"},"3424":{"market_hash_name":"Sticker | DavCost (Gold) | London 2018"},"3425":{"market_hash_name":"Sticker | somebody | London 2018"},"3426":{"market_hash_name":"Sticker | somebody (Foil) | London 2018"},"3427":{"market_hash_name":"Sticker | somebody (Gold) | London 2018"},"3428":{"market_hash_name":"Sticker | captainMo | London 2018"},"3429":{"market_hash_name":"Sticker | captainMo (Foil) | London 2018"},"343":{"market_hash_name":"Sticker | Titan (Holo) | Katowice 2015"},"3430":{"market_hash_name":"Sticker | captainMo (Gold) | London 2018"},"3431":{"market_hash_name":"Sticker | BnTeT | London 2018"},"3432":{"market_hash_name":"Sticker | BnTeT (Foil) | London 2018"},"3433":{"market_hash_name":"Sticker | BnTeT (Gold) | London 2018"},"3434":{"market_hash_name":"Sticker | DD | London 2018"},"3435":{"market_hash_name":"Sticker | DD (Foil) | London 2018"},"3436":{"market_hash_name":"Sticker | DD (Gold) | London 2018"},"3437":{"market_hash_name":"Sticker | xccurate | London 2018"},"3438":{"market_hash_name":"Sticker | xccurate (Foil) | London 2018"},"3439":{"market_hash_name":"Sticker | xccurate (Gold) | London 2018"},"344":{"market_hash_name":"Sticker | Titan (Foil) | Katowice 2015"},"3440":{"market_hash_name":"Sticker | Silver"},"3441":{"market_hash_name":"Sticker | Silver (Foil)"},"3442":{"market_hash_name":"Sticker | Gold Nova"},"3443":{"market_hash_name":"Sticker | Gold Nova (Holo)"},"3444":{"market_hash_name":"Sticker | Master Guardian"},"3445":{"market_hash_name":"Sticker | Master Guardian (Holo)"},"3446":{"market_hash_name":"Sticker | Master Guardian Elite"},"3447":{"market_hash_name":"Sticker | Master Guardian Elite (Holo)"},"3448":{"market_hash_name":"Sticker | Distinguished Master Guardian"},"3449":{"market_hash_name":"Sticker | Distinguished Master Guardian (Holo)"},"345":{"market_hash_name":"Sticker | Titan (Gold) | Katowice 2015"},"3450":{"market_hash_name":"Sticker | Legendary Eagle"},"3451":{"market_hash_name":"Sticker | Legendary Eagle (Holo)"},"3452":{"market_hash_name":"Sticker | Legendary Eagle Master"},"3453":{"market_hash_name":"Sticker | Legendary Eagle Master (Holo)"},"3454":{"market_hash_name":"Sticker | Supreme Master First Class"},"3455":{"market_hash_name":"Sticker | Supreme Master First Class (Holo)"},"3456":{"market_hash_name":"Sticker | Global Elite"},"3457":{"market_hash_name":"Sticker | Global Elite (Foil)"},"346":{"market_hash_name":"Sticker | Virtus.pro | Katowice 2015"},"3460":{"market_hash_name":"Sticker | Astralis | Katowice 2019"},"3461":{"market_hash_name":"Sticker | Astralis (Holo) | Katowice 2019"},"3462":{"market_hash_name":"Sticker | Astralis (Foil) | Katowice 2019"},"3463":{"market_hash_name":"Sticker | Astralis (Gold) | Katowice 2019"},"3464":{"market_hash_name":"Sticker | Avangar | Katowice 2019"},"3465":{"market_hash_name":"Sticker | Avangar (Holo) | Katowice 2019"},"3466":{"market_hash_name":"Sticker | Avangar (Foil) | Katowice 2019"},"3467":{"market_hash_name":"Sticker | Avangar (Gold) | Katowice 2019"},"3468":{"market_hash_name":"Sticker | BIG | Katowice 2019"},"3469":{"market_hash_name":"Sticker | BIG (Holo) | Katowice 2019"},"347":{"market_hash_name":"Sticker | Virtus.pro (Holo) | Katowice 2015"},"3470":{"market_hash_name":"Sticker | BIG (Foil) | Katowice 2019"},"3471":{"market_hash_name":"Sticker | BIG (Gold) | Katowice 2019"},"3472":{"market_hash_name":"Sticker | Cloud9 | Katowice 2019"},"3473":{"market_hash_name":"Sticker | Cloud9 (Holo) | Katowice 2019"},"3474":{"market_hash_name":"Sticker | Cloud9 (Foil) | Katowice 2019"},"3475":{"market_hash_name":"Sticker | Cloud9 (Gold) | Katowice 2019"},"3476":{"market_hash_name":"Sticker | compLexity Gaming | Katowice 2019"},"3477":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | Katowice 2019"},"3478":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | Katowice 2019"},"3479":{"market_hash_name":"Sticker | compLexity Gaming (Gold) | Katowice 2019"},"348":{"market_hash_name":"Sticker | Virtus.pro (Foil) | Katowice 2015"},"3480":{"market_hash_name":"Sticker | ENCE | Katowice 2019"},"3481":{"market_hash_name":"Sticker | ENCE (Holo) | Katowice 2019"},"3482":{"market_hash_name":"Sticker | ENCE (Foil) | Katowice 2019"},"3483":{"market_hash_name":"Sticker | ENCE (Gold) | Katowice 2019"},"3484":{"market_hash_name":"Sticker | FaZe Clan | Katowice 2019"},"3485":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Katowice 2019"},"3486":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Katowice 2019"},"3487":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Katowice 2019"},"3488":{"market_hash_name":"Sticker | Fnatic | Katowice 2019"},"3489":{"market_hash_name":"Sticker | Fnatic (Holo) | Katowice 2019"},"349":{"market_hash_name":"Sticker | Virtus.pro (Gold) | Katowice 2015"},"3490":{"market_hash_name":"Sticker | Fnatic (Foil) | Katowice 2019"},"3491":{"market_hash_name":"Sticker | Fnatic (Gold) | Katowice 2019"},"3492":{"market_hash_name":"Sticker | FURIA | Katowice 2019"},"3493":{"market_hash_name":"Sticker | FURIA (Holo) | Katowice 2019"},"3494":{"market_hash_name":"Sticker | FURIA (Foil) | Katowice 2019"},"3495":{"market_hash_name":"Sticker | FURIA (Gold) | Katowice 2019"},"3496":{"market_hash_name":"Sticker | G2 Esports | Katowice 2019"},"3497":{"market_hash_name":"Sticker | G2 Esports (Holo) | Katowice 2019"},"3498":{"market_hash_name":"Sticker | G2 Esports (Foil) | Katowice 2019"},"3499":{"market_hash_name":"Sticker | G2 Esports (Gold) | Katowice 2019"},"35":{"market_hash_name":"Sticker | Bomb Code"},"350":{"market_hash_name":"Sticker | Vox Eminor | Katowice 2015"},"3500":{"market_hash_name":"Sticker | Grayhound Gaming | Katowice 2019"},"3501":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Katowice 2019"},"3502":{"market_hash_name":"Sticker | Grayhound Gaming (Foil) | Katowice 2019"},"3503":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Katowice 2019"},"3504":{"market_hash_name":"Sticker | HellRaisers | Katowice 2019"},"3505":{"market_hash_name":"Sticker | HellRaisers (Holo) | Katowice 2019"},"3506":{"market_hash_name":"Sticker | HellRaisers (Foil) | Katowice 2019"},"3507":{"market_hash_name":"Sticker | HellRaisers (Gold) | Katowice 2019"},"3508":{"market_hash_name":"Sticker | MIBR | Katowice 2019"},"3509":{"market_hash_name":"Sticker | MIBR (Holo) | Katowice 2019"},"351":{"market_hash_name":"Sticker | Vox Eminor (Holo) | Katowice 2015"},"3510":{"market_hash_name":"Sticker | MIBR (Foil) | Katowice 2019"},"3511":{"market_hash_name":"Sticker | MIBR (Gold) | Katowice 2019"},"3512":{"market_hash_name":"Sticker | Natus Vincere | Katowice 2019"},"3513":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Katowice 2019"},"3514":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Katowice 2019"},"3515":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Katowice 2019"},"3516":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Katowice 2019"},"3517":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Katowice 2019"},"3518":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Katowice 2019"},"3519":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Katowice 2019"},"352":{"market_hash_name":"Sticker | Vox Eminor (Foil) | Katowice 2015"},"3520":{"market_hash_name":"Sticker | NRG | Katowice 2019"},"3521":{"market_hash_name":"Sticker | NRG (Holo) | Katowice 2019"},"3522":{"market_hash_name":"Sticker | NRG (Foil) | Katowice 2019"},"3523":{"market_hash_name":"Sticker | NRG (Gold) | Katowice 2019"},"3524":{"market_hash_name":"Sticker | Renegades | Katowice 2019"},"3525":{"market_hash_name":"Sticker | Renegades (Holo) | Katowice 2019"},"3526":{"market_hash_name":"Sticker | Renegades (Foil) | Katowice 2019"},"3527":{"market_hash_name":"Sticker | Renegades (Gold) | Katowice 2019"},"3528":{"market_hash_name":"Sticker | Team Liquid | Katowice 2019"},"3529":{"market_hash_name":"Sticker | Team Liquid (Holo) | Katowice 2019"},"353":{"market_hash_name":"Sticker | Vox Eminor (Gold) | Katowice 2015"},"3530":{"market_hash_name":"Sticker | Team Liquid (Foil) | Katowice 2019"},"3531":{"market_hash_name":"Sticker | Team Liquid (Gold) | Katowice 2019"},"3532":{"market_hash_name":"Sticker | Team Spirit | Katowice 2019"},"3533":{"market_hash_name":"Sticker | Team Spirit (Holo) | Katowice 2019"},"3534":{"market_hash_name":"Sticker | Team Spirit (Foil) | Katowice 2019"},"3535":{"market_hash_name":"Sticker | Team Spirit (Gold) | Katowice 2019"},"3536":{"market_hash_name":"Sticker | Tyloo | Katowice 2019"},"3537":{"market_hash_name":"Sticker | Tyloo (Holo) | Katowice 2019"},"3538":{"market_hash_name":"Sticker | Tyloo (Foil) | Katowice 2019"},"3539":{"market_hash_name":"Sticker | Tyloo (Gold) | Katowice 2019"},"354":{"market_hash_name":"Sticker | ESL One | Katowice 2015"},"3540":{"market_hash_name":"Sticker | Vega Squadron | Katowice 2019"},"3541":{"market_hash_name":"Sticker | Vega Squadron (Holo) | Katowice 2019"},"3542":{"market_hash_name":"Sticker | Vega Squadron (Foil) | Katowice 2019"},"3543":{"market_hash_name":"Sticker | Vega Squadron (Gold) | Katowice 2019"},"3544":{"market_hash_name":"Sticker | ViCi Gaming | Katowice 2019"},"3545":{"market_hash_name":"Sticker | ViCi Gaming (Holo) | Katowice 2019"},"3546":{"market_hash_name":"Sticker | ViCi Gaming (Foil) | Katowice 2019"},"3547":{"market_hash_name":"Sticker | ViCi Gaming (Gold) | Katowice 2019"},"3548":{"market_hash_name":"Sticker | Vitality | Katowice 2019"},"3549":{"market_hash_name":"Sticker | Vitality (Holo) | Katowice 2019"},"355":{"market_hash_name":"Sticker | Chabo"},"3550":{"market_hash_name":"Sticker | Vitality (Foil) | Katowice 2019"},"3551":{"market_hash_name":"Sticker | Vitality (Gold) | Katowice 2019"},"3552":{"market_hash_name":"Sticker | Winstrike Team | Katowice 2019"},"3553":{"market_hash_name":"Sticker | Winstrike Team (Holo) | Katowice 2019"},"3554":{"market_hash_name":"Sticker | Winstrike Team (Foil) | Katowice 2019"},"3555":{"market_hash_name":"Sticker | Winstrike Team (Gold) | Katowice 2019"},"3556":{"market_hash_name":"Sticker | IEM | Katowice 2019"},"3557":{"market_hash_name":"Sticker | IEM (Holo) | Katowice 2019"},"3558":{"market_hash_name":"Sticker | IEM (Foil) | Katowice 2019"},"3559":{"market_hash_name":"Sticker | IEM (Gold) | Katowice 2019"},"356":{"market_hash_name":"Sticker | Bombsquad"},"357":{"market_hash_name":"Sticker | Bombsquad (Foil)"},"358":{"market_hash_name":"Sticker | The Guru"},"3585":{"market_hash_name":"Sticker | Magisk | Katowice 2019"},"3586":{"market_hash_name":"Sticker | Magisk (Foil) | Katowice 2019"},"3587":{"market_hash_name":"Sticker | Magisk (Gold) | Katowice 2019"},"3588":{"market_hash_name":"Sticker | device | Katowice 2019"},"3589":{"market_hash_name":"Sticker | device (Foil) | Katowice 2019"},"359":{"market_hash_name":"Sticker | Silent Ninja"},"3590":{"market_hash_name":"Sticker | device (Gold) | Katowice 2019"},"3591":{"market_hash_name":"Sticker | Xyp9x | Katowice 2019"},"3592":{"market_hash_name":"Sticker | Xyp9x (Foil) | Katowice 2019"},"3593":{"market_hash_name":"Sticker | Xyp9x (Gold) | Katowice 2019"},"3594":{"market_hash_name":"Sticker | dupreeh | Katowice 2019"},"3595":{"market_hash_name":"Sticker | dupreeh (Foil) | Katowice 2019"},"3596":{"market_hash_name":"Sticker | dupreeh (Gold) | Katowice 2019"},"3597":{"market_hash_name":"Sticker | gla1ve | Katowice 2019"},"3598":{"market_hash_name":"Sticker | gla1ve (Foil) | Katowice 2019"},"3599":{"market_hash_name":"Sticker | gla1ve (Gold) | Katowice 2019"},"36":{"market_hash_name":"Sticker | Chicken Lover"},"360":{"market_hash_name":"Sticker | Silent Ninja (Foil)"},"3600":{"market_hash_name":"Sticker | fitch | Katowice 2019"},"3601":{"market_hash_name":"Sticker | fitch (Foil) | Katowice 2019"},"3602":{"market_hash_name":"Sticker | fitch (Gold) | Katowice 2019"},"3603":{"market_hash_name":"Sticker | Jame | Katowice 2019"},"3604":{"market_hash_name":"Sticker | Jame (Foil) | Katowice 2019"},"3605":{"market_hash_name":"Sticker | Jame (Gold) | Katowice 2019"},"3606":{"market_hash_name":"Sticker | KrizzeN | Katowice 2019"},"3607":{"market_hash_name":"Sticker | KrizzeN (Foil) | Katowice 2019"},"3608":{"market_hash_name":"Sticker | KrizzeN (Gold) | Katowice 2019"},"3609":{"market_hash_name":"Sticker | qikert | Katowice 2019"},"361":{"market_hash_name":"Sticker | The Samurai"},"3610":{"market_hash_name":"Sticker | qikert (Foil) | Katowice 2019"},"3611":{"market_hash_name":"Sticker | qikert (Gold) | Katowice 2019"},"3612":{"market_hash_name":"Sticker | buster | Katowice 2019"},"3613":{"market_hash_name":"Sticker | buster (Foil) | Katowice 2019"},"3614":{"market_hash_name":"Sticker | buster (Gold) | Katowice 2019"},"3615":{"market_hash_name":"Sticker | gob b | Katowice 2019"},"3616":{"market_hash_name":"Sticker | gob b (Foil) | Katowice 2019"},"3617":{"market_hash_name":"Sticker | gob b (Gold) | Katowice 2019"},"3618":{"market_hash_name":"Sticker | tabseN | Katowice 2019"},"3619":{"market_hash_name":"Sticker | tabseN (Foil) | Katowice 2019"},"362":{"market_hash_name":"Sticker | Skull Lil Boney"},"3620":{"market_hash_name":"Sticker | tabseN (Gold) | Katowice 2019"},"3621":{"market_hash_name":"Sticker | tiziaN | Katowice 2019"},"3622":{"market_hash_name":"Sticker | tiziaN (Foil) | Katowice 2019"},"3623":{"market_hash_name":"Sticker | tiziaN (Gold) | Katowice 2019"},"3624":{"market_hash_name":"Sticker | XANTARES | Katowice 2019"},"3625":{"market_hash_name":"Sticker | XANTARES (Foil) | Katowice 2019"},"3626":{"market_hash_name":"Sticker | XANTARES (Gold) | Katowice 2019"},"3627":{"market_hash_name":"Sticker | smooya | Katowice 2019"},"3628":{"market_hash_name":"Sticker | smooya (Foil) | Katowice 2019"},"3629":{"market_hash_name":"Sticker | smooya (Gold) | Katowice 2019"},"363":{"market_hash_name":"Sticker | Skulltorgeist"},"3630":{"market_hash_name":"Sticker | flusha | Katowice 2019"},"3631":{"market_hash_name":"Sticker | flusha (Foil) | Katowice 2019"},"3632":{"market_hash_name":"Sticker | flusha (Gold) | Katowice 2019"},"3633":{"market_hash_name":"Sticker | kioShiMa | Katowice 2019"},"3634":{"market_hash_name":"Sticker | kioShiMa (Foil) | Katowice 2019"},"3635":{"market_hash_name":"Sticker | kioShiMa (Gold) | Katowice 2019"},"3636":{"market_hash_name":"Sticker | RUSH | Katowice 2019"},"3637":{"market_hash_name":"Sticker | RUSH (Foil) | Katowice 2019"},"3638":{"market_hash_name":"Sticker | RUSH (Gold) | Katowice 2019"},"3639":{"market_hash_name":"Sticker | autimatic | Katowice 2019"},"364":{"market_hash_name":"Sticker | Skull Troop"},"3640":{"market_hash_name":"Sticker | autimatic (Foil) | Katowice 2019"},"3641":{"market_hash_name":"Sticker | autimatic (Gold) | Katowice 2019"},"3642":{"market_hash_name":"Sticker | Golden | Katowice 2019"},"3643":{"market_hash_name":"Sticker | Golden (Foil) | Katowice 2019"},"3644":{"market_hash_name":"Sticker | Golden (Gold) | Katowice 2019"},"3645":{"market_hash_name":"Sticker | n0thing | Katowice 2019"},"3646":{"market_hash_name":"Sticker | n0thing (Foil) | Katowice 2019"},"3647":{"market_hash_name":"Sticker | n0thing (Gold) | Katowice 2019"},"3648":{"market_hash_name":"Sticker | Rickeh | Katowice 2019"},"3649":{"market_hash_name":"Sticker | Rickeh (Foil) | Katowice 2019"},"365":{"market_hash_name":"Sticker | Salute!"},"3650":{"market_hash_name":"Sticker | Rickeh (Gold) | Katowice 2019"},"3651":{"market_hash_name":"Sticker | stanislaw | Katowice 2019"},"3652":{"market_hash_name":"Sticker | stanislaw (Foil) | Katowice 2019"},"3653":{"market_hash_name":"Sticker | stanislaw (Gold) | Katowice 2019"},"3654":{"market_hash_name":"Sticker | dephh | Katowice 2019"},"3655":{"market_hash_name":"Sticker | dephh (Foil) | Katowice 2019"},"3656":{"market_hash_name":"Sticker | dephh (Gold) | Katowice 2019"},"3657":{"market_hash_name":"Sticker | ShahZaM | Katowice 2019"},"3658":{"market_hash_name":"Sticker | ShahZaM (Foil) | Katowice 2019"},"3659":{"market_hash_name":"Sticker | ShahZaM (Gold) | Katowice 2019"},"366":{"market_hash_name":"Sticker | The Spartan"},"3660":{"market_hash_name":"Sticker | allu | Katowice 2019"},"3661":{"market_hash_name":"Sticker | allu (Foil) | Katowice 2019"},"3662":{"market_hash_name":"Sticker | allu (Gold) | Katowice 2019"},"3663":{"market_hash_name":"Sticker | Aerial | Katowice 2019"},"3664":{"market_hash_name":"Sticker | Aerial (Foil) | Katowice 2019"},"3665":{"market_hash_name":"Sticker | Aerial (Gold) | Katowice 2019"},"3666":{"market_hash_name":"Sticker | xseveN | Katowice 2019"},"3667":{"market_hash_name":"Sticker | xseveN (Foil) | Katowice 2019"},"3668":{"market_hash_name":"Sticker | xseveN (Gold) | Katowice 2019"},"3669":{"market_hash_name":"Sticker | Aleksib | Katowice 2019"},"367":{"market_hash_name":"Sticker | Unicorn"},"3670":{"market_hash_name":"Sticker | Aleksib (Foil) | Katowice 2019"},"3671":{"market_hash_name":"Sticker | Aleksib (Gold) | Katowice 2019"},"3672":{"market_hash_name":"Sticker | sergej | Katowice 2019"},"3673":{"market_hash_name":"Sticker | sergej (Foil) | Katowice 2019"},"3674":{"market_hash_name":"Sticker | sergej (Gold) | Katowice 2019"},"3675":{"market_hash_name":"Sticker | GuardiaN | Katowice 2019"},"3676":{"market_hash_name":"Sticker | GuardiaN (Foil) | Katowice 2019"},"3677":{"market_hash_name":"Sticker | GuardiaN (Gold) | Katowice 2019"},"3678":{"market_hash_name":"Sticker | olofmeister | Katowice 2019"},"3679":{"market_hash_name":"Sticker | olofmeister (Foil) | Katowice 2019"},"368":{"market_hash_name":"Sticker | Unicorn (Holo)"},"3680":{"market_hash_name":"Sticker | olofmeister (Gold) | Katowice 2019"},"3681":{"market_hash_name":"Sticker | rain | Katowice 2019"},"3682":{"market_hash_name":"Sticker | rain (Foil) | Katowice 2019"},"3683":{"market_hash_name":"Sticker | rain (Gold) | Katowice 2019"},"3684":{"market_hash_name":"Sticker | AdreN | Katowice 2019"},"3685":{"market_hash_name":"Sticker | AdreN (Foil) | Katowice 2019"},"3686":{"market_hash_name":"Sticker | AdreN (Gold) | Katowice 2019"},"3687":{"market_hash_name":"Sticker | NiKo | Katowice 2019"},"3688":{"market_hash_name":"Sticker | NiKo (Foil) | Katowice 2019"},"3689":{"market_hash_name":"Sticker | NiKo (Gold) | Katowice 2019"},"369":{"market_hash_name":"Sticker | The Zombie"},"3690":{"market_hash_name":"Sticker | twist | Katowice 2019"},"3691":{"market_hash_name":"Sticker | twist (Foil) | Katowice 2019"},"3692":{"market_hash_name":"Sticker | twist (Gold) | Katowice 2019"},"3693":{"market_hash_name":"Sticker | Xizt | Katowice 2019"},"3694":{"market_hash_name":"Sticker | Xizt (Foil) | Katowice 2019"},"3695":{"market_hash_name":"Sticker | Xizt (Gold) | Katowice 2019"},"3696":{"market_hash_name":"Sticker | JW | Katowice 2019"},"3697":{"market_hash_name":"Sticker | JW (Foil) | Katowice 2019"},"3698":{"market_hash_name":"Sticker | JW (Gold) | Katowice 2019"},"3699":{"market_hash_name":"Sticker | KRIMZ | Katowice 2019"},"37":{"market_hash_name":"Sticker | Crown (Foil)"},"370":{"market_hash_name":"Sticker | Awp Country"},"3700":{"market_hash_name":"Sticker | KRIMZ (Foil) | Katowice 2019"},"3701":{"market_hash_name":"Sticker | KRIMZ (Gold) | Katowice 2019"},"3702":{"market_hash_name":"Sticker | Brollan | Katowice 2019"},"3703":{"market_hash_name":"Sticker | Brollan (Foil) | Katowice 2019"},"3704":{"market_hash_name":"Sticker | Brollan (Gold) | Katowice 2019"},"3705":{"market_hash_name":"Sticker | VINI | Katowice 2019"},"3706":{"market_hash_name":"Sticker | VINI (Foil) | Katowice 2019"},"3707":{"market_hash_name":"Sticker | VINI (Gold) | Katowice 2019"},"3708":{"market_hash_name":"Sticker | ableJ | Katowice 2019"},"3709":{"market_hash_name":"Sticker | ableJ (Foil) | Katowice 2019"},"371":{"market_hash_name":"Sticker | Chi Bomb"},"3710":{"market_hash_name":"Sticker | ableJ (Gold) | Katowice 2019"},"3711":{"market_hash_name":"Sticker | arT | Katowice 2019"},"3712":{"market_hash_name":"Sticker | arT (Foil) | Katowice 2019"},"3713":{"market_hash_name":"Sticker | arT (Gold) | Katowice 2019"},"3714":{"market_hash_name":"Sticker | KSCERATO | Katowice 2019"},"3715":{"market_hash_name":"Sticker | KSCERATO (Foil) | Katowice 2019"},"3716":{"market_hash_name":"Sticker | KSCERATO (Gold) | Katowice 2019"},"3717":{"market_hash_name":"Sticker | yuurih | Katowice 2019"},"3718":{"market_hash_name":"Sticker | yuurih (Foil) | Katowice 2019"},"3719":{"market_hash_name":"Sticker | yuurih (Gold) | Katowice 2019"},"372":{"market_hash_name":"Sticker | Doru The Fox"},"3720":{"market_hash_name":"Sticker | JaCkz | Katowice 2019"},"3721":{"market_hash_name":"Sticker | JaCkz (Foil) | Katowice 2019"},"3722":{"market_hash_name":"Sticker | JaCkz (Gold) | Katowice 2019"},"3723":{"market_hash_name":"Sticker | shox | Katowice 2019"},"3724":{"market_hash_name":"Sticker | shox (Foil) | Katowice 2019"},"3725":{"market_hash_name":"Sticker | shox (Gold) | Katowice 2019"},"3726":{"market_hash_name":"Sticker | bodyy | Katowice 2019"},"3727":{"market_hash_name":"Sticker | bodyy (Foil) | Katowice 2019"},"3728":{"market_hash_name":"Sticker | bodyy (Gold) | Katowice 2019"},"3729":{"market_hash_name":"Sticker | kennyS | Katowice 2019"},"373":{"market_hash_name":"Sticker | Knife Club"},"3730":{"market_hash_name":"Sticker | kennyS (Foil) | Katowice 2019"},"3731":{"market_hash_name":"Sticker | kennyS (Gold) | Katowice 2019"},"3732":{"market_hash_name":"Sticker | Lucky | Katowice 2019"},"3733":{"market_hash_name":"Sticker | Lucky (Foil) | Katowice 2019"},"3734":{"market_hash_name":"Sticker | Lucky (Gold) | Katowice 2019"},"3735":{"market_hash_name":"Sticker | sterling | Katowice 2019"},"3736":{"market_hash_name":"Sticker | sterling (Foil) | Katowice 2019"},"3737":{"market_hash_name":"Sticker | sterling (Gold) | Katowice 2019"},"3738":{"market_hash_name":"Sticker | dexter | Katowice 2019"},"3739":{"market_hash_name":"Sticker | dexter (Foil) | Katowice 2019"},"374":{"market_hash_name":"Sticker | CS On The Mind"},"3740":{"market_hash_name":"Sticker | dexter (Gold) | Katowice 2019"},"3741":{"market_hash_name":"Sticker | erkaSt | Katowice 2019"},"3742":{"market_hash_name":"Sticker | erkaSt (Foil) | Katowice 2019"},"3743":{"market_hash_name":"Sticker | erkaSt (Gold) | Katowice 2019"},"3744":{"market_hash_name":"Sticker | malta | Katowice 2019"},"3745":{"market_hash_name":"Sticker | malta (Foil) | Katowice 2019"},"3746":{"market_hash_name":"Sticker | malta (Gold) | Katowice 2019"},"3747":{"market_hash_name":"Sticker | DickStacy | Katowice 2019"},"3748":{"market_hash_name":"Sticker | DickStacy (Foil) | Katowice 2019"},"3749":{"market_hash_name":"Sticker | DickStacy (Gold) | Katowice 2019"},"375":{"market_hash_name":"Sticker | Ninja Defuse"},"3750":{"market_hash_name":"Sticker | DeadFox | Katowice 2019"},"3751":{"market_hash_name":"Sticker | DeadFox (Foil) | Katowice 2019"},"3752":{"market_hash_name":"Sticker | DeadFox (Gold) | Katowice 2019"},"3753":{"market_hash_name":"Sticker | ANGE1 | Katowice 2019"},"3754":{"market_hash_name":"Sticker | ANGE1 (Foil) | Katowice 2019"},"3755":{"market_hash_name":"Sticker | ANGE1 (Gold) | Katowice 2019"},"3756":{"market_hash_name":"Sticker | Hobbit | Katowice 2019"},"3757":{"market_hash_name":"Sticker | Hobbit (Foil) | Katowice 2019"},"3758":{"market_hash_name":"Sticker | Hobbit (Gold) | Katowice 2019"},"3759":{"market_hash_name":"Sticker | ISSAA | Katowice 2019"},"376":{"market_hash_name":"Sticker | Pros Don't Fake"},"3760":{"market_hash_name":"Sticker | ISSAA (Foil) | Katowice 2019"},"3761":{"market_hash_name":"Sticker | ISSAA (Gold) | Katowice 2019"},"3762":{"market_hash_name":"Sticker | woxic | Katowice 2019"},"3763":{"market_hash_name":"Sticker | woxic (Foil) | Katowice 2019"},"3764":{"market_hash_name":"Sticker | woxic (Gold) | Katowice 2019"},"3765":{"market_hash_name":"Sticker | FalleN | Katowice 2019"},"3766":{"market_hash_name":"Sticker | FalleN (Foil) | Katowice 2019"},"3767":{"market_hash_name":"Sticker | FalleN (Gold) | Katowice 2019"},"3768":{"market_hash_name":"Sticker | felps | Katowice 2019"},"3769":{"market_hash_name":"Sticker | felps (Foil) | Katowice 2019"},"377":{"market_hash_name":"Sticker | Kawaii Killer Terrorist"},"3770":{"market_hash_name":"Sticker | felps (Gold) | Katowice 2019"},"3771":{"market_hash_name":"Sticker | fer | Katowice 2019"},"3772":{"market_hash_name":"Sticker | fer (Foil) | Katowice 2019"},"3773":{"market_hash_name":"Sticker | fer (Gold) | Katowice 2019"},"3774":{"market_hash_name":"Sticker | TACO | Katowice 2019"},"3775":{"market_hash_name":"Sticker | TACO (Foil) | Katowice 2019"},"3776":{"market_hash_name":"Sticker | TACO (Gold) | Katowice 2019"},"3777":{"market_hash_name":"Sticker | coldzera | Katowice 2019"},"3778":{"market_hash_name":"Sticker | coldzera (Foil) | Katowice 2019"},"3779":{"market_hash_name":"Sticker | coldzera (Gold) | Katowice 2019"},"378":{"market_hash_name":"Sticker | Baaa-ckstabber!"},"3780":{"market_hash_name":"Sticker | Edward | Katowice 2019"},"3781":{"market_hash_name":"Sticker | Edward (Foil) | Katowice 2019"},"3782":{"market_hash_name":"Sticker | Edward (Gold) | Katowice 2019"},"3783":{"market_hash_name":"Sticker | Zeus | Katowice 2019"},"3784":{"market_hash_name":"Sticker | Zeus (Foil) | Katowice 2019"},"3785":{"market_hash_name":"Sticker | Zeus (Gold) | Katowice 2019"},"3786":{"market_hash_name":"Sticker | s1mple | Katowice 2019"},"3787":{"market_hash_name":"Sticker | s1mple (Foil) | Katowice 2019"},"3788":{"market_hash_name":"Sticker | s1mple (Gold) | Katowice 2019"},"3789":{"market_hash_name":"Sticker | electronic | Katowice 2019"},"379":{"market_hash_name":"Sticker | Delicious Tears"},"3790":{"market_hash_name":"Sticker | electronic (Foil) | Katowice 2019"},"3791":{"market_hash_name":"Sticker | electronic (Gold) | Katowice 2019"},"3792":{"market_hash_name":"Sticker | flamie | Katowice 2019"},"3793":{"market_hash_name":"Sticker | flamie (Foil) | Katowice 2019"},"3794":{"market_hash_name":"Sticker | flamie (Gold) | Katowice 2019"},"3795":{"market_hash_name":"Sticker | f0rest | Katowice 2019"},"3796":{"market_hash_name":"Sticker | f0rest (Foil) | Katowice 2019"},"3797":{"market_hash_name":"Sticker | f0rest (Gold) | Katowice 2019"},"3798":{"market_hash_name":"Sticker | Lekr0 | Katowice 2019"},"3799":{"market_hash_name":"Sticker | Lekr0 (Foil) | Katowice 2019"},"38":{"market_hash_name":"Sticker | Good Game"},"380":{"market_hash_name":"Sticker | pronax | Cologne 2015"},"3800":{"market_hash_name":"Sticker | Lekr0 (Gold) | Katowice 2019"},"3801":{"market_hash_name":"Sticker | GeT_RiGhT | Katowice 2019"},"3802":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Katowice 2019"},"3803":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Katowice 2019"},"3804":{"market_hash_name":"Sticker | REZ | Katowice 2019"},"3805":{"market_hash_name":"Sticker | REZ (Foil) | Katowice 2019"},"3806":{"market_hash_name":"Sticker | REZ (Gold) | Katowice 2019"},"3807":{"market_hash_name":"Sticker | dennis | Katowice 2019"},"3808":{"market_hash_name":"Sticker | dennis (Foil) | Katowice 2019"},"3809":{"market_hash_name":"Sticker | dennis (Gold) | Katowice 2019"},"381":{"market_hash_name":"Sticker | pronax (Foil) | Cologne 2015"},"3810":{"market_hash_name":"Sticker | daps | Katowice 2019"},"3811":{"market_hash_name":"Sticker | daps (Foil) | Katowice 2019"},"3812":{"market_hash_name":"Sticker | daps (Gold) | Katowice 2019"},"3813":{"market_hash_name":"Sticker | Brehze | Katowice 2019"},"3814":{"market_hash_name":"Sticker | Brehze (Foil) | Katowice 2019"},"3815":{"market_hash_name":"Sticker | Brehze (Gold) | Katowice 2019"},"3816":{"market_hash_name":"Sticker | FugLy | Katowice 2019"},"3817":{"market_hash_name":"Sticker | FugLy (Foil) | Katowice 2019"},"3818":{"market_hash_name":"Sticker | FugLy (Gold) | Katowice 2019"},"3819":{"market_hash_name":"Sticker | Ethan | Katowice 2019"},"382":{"market_hash_name":"Sticker | pronax (Gold) | Cologne 2015"},"3820":{"market_hash_name":"Sticker | Ethan (Foil) | Katowice 2019"},"3821":{"market_hash_name":"Sticker | Ethan (Gold) | Katowice 2019"},"3822":{"market_hash_name":"Sticker | CeRq | Katowice 2019"},"3823":{"market_hash_name":"Sticker | CeRq (Foil) | Katowice 2019"},"3824":{"market_hash_name":"Sticker | CeRq (Gold) | Katowice 2019"},"3825":{"market_hash_name":"Sticker | Gratisfaction | Katowice 2019"},"3826":{"market_hash_name":"Sticker | Gratisfaction (Foil) | Katowice 2019"},"3827":{"market_hash_name":"Sticker | Gratisfaction (Gold) | Katowice 2019"},"3828":{"market_hash_name":"Sticker | jks | Katowice 2019"},"3829":{"market_hash_name":"Sticker | jks (Foil) | Katowice 2019"},"383":{"market_hash_name":"Sticker | flusha | Cologne 2015"},"3830":{"market_hash_name":"Sticker | jks (Gold) | Katowice 2019"},"3831":{"market_hash_name":"Sticker | AZR | Katowice 2019"},"3832":{"market_hash_name":"Sticker | AZR (Foil) | Katowice 2019"},"3833":{"market_hash_name":"Sticker | AZR (Gold) | Katowice 2019"},"3834":{"market_hash_name":"Sticker | jkaem | Katowice 2019"},"3835":{"market_hash_name":"Sticker | jkaem (Foil) | Katowice 2019"},"3836":{"market_hash_name":"Sticker | jkaem (Gold) | Katowice 2019"},"3837":{"market_hash_name":"Sticker | Liazz | Katowice 2019"},"3838":{"market_hash_name":"Sticker | Liazz (Foil) | Katowice 2019"},"3839":{"market_hash_name":"Sticker | Liazz (Gold) | Katowice 2019"},"384":{"market_hash_name":"Sticker | flusha (Foil) | Cologne 2015"},"3840":{"market_hash_name":"Sticker | nitr0 | Katowice 2019"},"3841":{"market_hash_name":"Sticker | nitr0 (Foil) | Katowice 2019"},"3842":{"market_hash_name":"Sticker | nitr0 (Gold) | Katowice 2019"},"3843":{"market_hash_name":"Sticker | Stewie2K | Katowice 2019"},"3844":{"market_hash_name":"Sticker | Stewie2K (Foil) | Katowice 2019"},"3845":{"market_hash_name":"Sticker | Stewie2K (Gold) | Katowice 2019"},"3846":{"market_hash_name":"Sticker | NAF | Katowice 2019"},"3847":{"market_hash_name":"Sticker | NAF (Foil) | Katowice 2019"},"3848":{"market_hash_name":"Sticker | NAF (Gold) | Katowice 2019"},"3849":{"market_hash_name":"Sticker | Twistzz | Katowice 2019"},"385":{"market_hash_name":"Sticker | flusha (Gold) | Cologne 2015"},"3850":{"market_hash_name":"Sticker | Twistzz (Foil) | Katowice 2019"},"3851":{"market_hash_name":"Sticker | Twistzz (Gold) | Katowice 2019"},"3852":{"market_hash_name":"Sticker | EliGE | Katowice 2019"},"3853":{"market_hash_name":"Sticker | EliGE (Foil) | Katowice 2019"},"3854":{"market_hash_name":"Sticker | EliGE (Gold) | Katowice 2019"},"3855":{"market_hash_name":"Sticker | DavCost | Katowice 2019"},"3856":{"market_hash_name":"Sticker | DavCost (Foil) | Katowice 2019"},"3857":{"market_hash_name":"Sticker | DavCost (Gold) | Katowice 2019"},"3858":{"market_hash_name":"Sticker | COLDYY1 | Katowice 2019"},"3859":{"market_hash_name":"Sticker | COLDYY1 (Foil) | Katowice 2019"},"386":{"market_hash_name":"Sticker | JW | Cologne 2015"},"3860":{"market_hash_name":"Sticker | COLDYY1 (Gold) | Katowice 2019"},"3861":{"market_hash_name":"Sticker | Dima | Katowice 2019"},"3862":{"market_hash_name":"Sticker | Dima (Foil) | Katowice 2019"},"3863":{"market_hash_name":"Sticker | Dima (Gold) | Katowice 2019"},"3864":{"market_hash_name":"Sticker | sdy | Katowice 2019"},"3865":{"market_hash_name":"Sticker | sdy (Foil) | Katowice 2019"},"3866":{"market_hash_name":"Sticker | sdy (Gold) | Katowice 2019"},"3867":{"market_hash_name":"Sticker | S0tF1k | Katowice 2019"},"3868":{"market_hash_name":"Sticker | S0tF1k (Foil) | Katowice 2019"},"3869":{"market_hash_name":"Sticker | S0tF1k (Gold) | Katowice 2019"},"387":{"market_hash_name":"Sticker | JW (Foil) | Cologne 2015"},"3870":{"market_hash_name":"Sticker | Summer | Katowice 2019"},"3871":{"market_hash_name":"Sticker | Summer (Foil) | Katowice 2019"},"3872":{"market_hash_name":"Sticker | Summer (Gold) | Katowice 2019"},"3873":{"market_hash_name":"Sticker | somebody | Katowice 2019"},"3874":{"market_hash_name":"Sticker | somebody (Foil) | Katowice 2019"},"3875":{"market_hash_name":"Sticker | somebody (Gold) | Katowice 2019"},"3876":{"market_hash_name":"Sticker | Attacker | Katowice 2019"},"3877":{"market_hash_name":"Sticker | Attacker (Foil) | Katowice 2019"},"3878":{"market_hash_name":"Sticker | Attacker (Gold) | Katowice 2019"},"3879":{"market_hash_name":"Sticker | BnTeT | Katowice 2019"},"388":{"market_hash_name":"Sticker | JW (Gold) | Cologne 2015"},"3880":{"market_hash_name":"Sticker | BnTeT (Foil) | Katowice 2019"},"3881":{"market_hash_name":"Sticker | BnTeT (Gold) | Katowice 2019"},"3882":{"market_hash_name":"Sticker | xccurate | Katowice 2019"},"3883":{"market_hash_name":"Sticker | xccurate (Foil) | Katowice 2019"},"3884":{"market_hash_name":"Sticker | xccurate (Gold) | Katowice 2019"},"3885":{"market_hash_name":"Sticker | tonyblack | Katowice 2019"},"3886":{"market_hash_name":"Sticker | tonyblack (Foil) | Katowice 2019"},"3887":{"market_hash_name":"Sticker | tonyblack (Gold) | Katowice 2019"},"3888":{"market_hash_name":"Sticker | crush | Katowice 2019"},"3889":{"market_hash_name":"Sticker | crush (Foil) | Katowice 2019"},"389":{"market_hash_name":"Sticker | KRIMZ | Cologne 2015"},"3890":{"market_hash_name":"Sticker | crush (Gold) | Katowice 2019"},"3891":{"market_hash_name":"Sticker | jR | Katowice 2019"},"3892":{"market_hash_name":"Sticker | jR (Foil) | Katowice 2019"},"3893":{"market_hash_name":"Sticker | jR (Gold) | Katowice 2019"},"3894":{"market_hash_name":"Sticker | hutji | Katowice 2019"},"3895":{"market_hash_name":"Sticker | hutji (Foil) | Katowice 2019"},"3896":{"market_hash_name":"Sticker | hutji (Gold) | Katowice 2019"},"3897":{"market_hash_name":"Sticker | chopper | Katowice 2019"},"3898":{"market_hash_name":"Sticker | chopper (Foil) | Katowice 2019"},"3899":{"market_hash_name":"Sticker | chopper (Gold) | Katowice 2019"},"39":{"market_hash_name":"Sticker | Good Luck"},"390":{"market_hash_name":"Sticker | KRIMZ (Foil) | Cologne 2015"},"3900":{"market_hash_name":"Sticker | Kaze | Katowice 2019"},"3901":{"market_hash_name":"Sticker | Kaze (Foil) | Katowice 2019"},"3902":{"market_hash_name":"Sticker | Kaze (Gold) | Katowice 2019"},"3903":{"market_hash_name":"Sticker | advent | Katowice 2019"},"3904":{"market_hash_name":"Sticker | advent (Foil) | Katowice 2019"},"3905":{"market_hash_name":"Sticker | advent (Gold) | Katowice 2019"},"3906":{"market_hash_name":"Sticker | aumaN | Katowice 2019"},"3907":{"market_hash_name":"Sticker | aumaN (Foil) | Katowice 2019"},"3908":{"market_hash_name":"Sticker | aumaN (Gold) | Katowice 2019"},"3909":{"market_hash_name":"Sticker | zhokiNg | Katowice 2019"},"391":{"market_hash_name":"Sticker | KRIMZ (Gold) | Cologne 2015"},"3910":{"market_hash_name":"Sticker | zhokiNg (Foil) | Katowice 2019"},"3911":{"market_hash_name":"Sticker | zhokiNg (Gold) | Katowice 2019"},"3912":{"market_hash_name":"Sticker | Freeman | Katowice 2019"},"3913":{"market_hash_name":"Sticker | Freeman (Foil) | Katowice 2019"},"3914":{"market_hash_name":"Sticker | Freeman (Gold) | Katowice 2019"},"3915":{"market_hash_name":"Sticker | NBK- | Katowice 2019"},"3916":{"market_hash_name":"Sticker | NBK- (Foil) | Katowice 2019"},"3917":{"market_hash_name":"Sticker | NBK- (Gold) | Katowice 2019"},"3918":{"market_hash_name":"Sticker | apEX | Katowice 2019"},"3919":{"market_hash_name":"Sticker | apEX (Foil) | Katowice 2019"},"392":{"market_hash_name":"Sticker | olofmeister | Cologne 2015"},"3920":{"market_hash_name":"Sticker | apEX (Gold) | Katowice 2019"},"3921":{"market_hash_name":"Sticker | ALEX | Katowice 2019"},"3922":{"market_hash_name":"Sticker | ALEX (Foil) | Katowice 2019"},"3923":{"market_hash_name":"Sticker | ALEX (Gold) | Katowice 2019"},"3924":{"market_hash_name":"Sticker | RpK | Katowice 2019"},"3925":{"market_hash_name":"Sticker | RpK (Foil) | Katowice 2019"},"3926":{"market_hash_name":"Sticker | RpK (Gold) | Katowice 2019"},"3927":{"market_hash_name":"Sticker | ZywOo | Katowice 2019"},"3928":{"market_hash_name":"Sticker | ZywOo (Foil) | Katowice 2019"},"3929":{"market_hash_name":"Sticker | ZywOo (Gold) | Katowice 2019"},"393":{"market_hash_name":"Sticker | olofmeister (Foil) | Cologne 2015"},"3930":{"market_hash_name":"Sticker | WorldEdit | Katowice 2019"},"3931":{"market_hash_name":"Sticker | WorldEdit (Foil) | Katowice 2019"},"3932":{"market_hash_name":"Sticker | WorldEdit (Gold) | Katowice 2019"},"3933":{"market_hash_name":"Sticker | wayLander | Katowice 2019"},"3934":{"market_hash_name":"Sticker | wayLander (Foil) | Katowice 2019"},"3935":{"market_hash_name":"Sticker | wayLander (Gold) | Katowice 2019"},"3936":{"market_hash_name":"Sticker | Kvik | Katowice 2019"},"3937":{"market_hash_name":"Sticker | Kvik (Foil) | Katowice 2019"},"3938":{"market_hash_name":"Sticker | Kvik (Gold) | Katowice 2019"},"3939":{"market_hash_name":"Sticker | Boombl4 | Katowice 2019"},"394":{"market_hash_name":"Sticker | olofmeister (Gold) | Cologne 2015"},"3940":{"market_hash_name":"Sticker | Boombl4 (Foil) | Katowice 2019"},"3941":{"market_hash_name":"Sticker | Boombl4 (Gold) | Katowice 2019"},"3942":{"market_hash_name":"Sticker | n0rb3r7 | Katowice 2019"},"3943":{"market_hash_name":"Sticker | n0rb3r7 (Foil) | Katowice 2019"},"3944":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Katowice 2019"},"3945":{"market_hash_name":"Sticker | Baited"},"3946":{"market_hash_name":"Sticker | Baited (Holo)"},"3947":{"market_hash_name":"Sticker | Bite Me"},"3949":{"market_hash_name":"Sticker | Bite Me (Foil)"},"395":{"market_hash_name":"Sticker | FalleN | Cologne 2015"},"3950":{"market_hash_name":"Sticker | Cluck"},"3951":{"market_hash_name":"Sticker | Cluck (Holo)"},"3952":{"market_hash_name":"Sticker | First Blood"},"3953":{"market_hash_name":"Sticker | First Blood (Holo)"},"3954":{"market_hash_name":"Sticker | Free Hugs"},"3955":{"market_hash_name":"Sticker | Free Hugs (Holo)"},"3956":{"market_hash_name":"Sticker | Lurker"},"3958":{"market_hash_name":"Sticker | Lurker (Foil)"},"3959":{"market_hash_name":"Sticker | One Sting"},"396":{"market_hash_name":"Sticker | FalleN (Foil) | Cologne 2015"},"3960":{"market_hash_name":"Sticker | One Sting (Holo)"},"3961":{"market_hash_name":"Sticker | Scavenger"},"3962":{"market_hash_name":"Sticker | Scavenger (Holo)"},"3963":{"market_hash_name":"Sticker | Toxic"},"3965":{"market_hash_name":"Sticker | Toxic (Foil)"},"3966":{"market_hash_name":"Sticker | Big Clucks"},"3967":{"market_hash_name":"Sticker | Bonehead"},"3968":{"market_hash_name":"Sticker | BukAWP"},"3969":{"market_hash_name":"Sticker | Double Dip"},"397":{"market_hash_name":"Sticker | FalleN (Gold) | Cologne 2015"},"3970":{"market_hash_name":"Sticker | Fowl Play"},"3971":{"market_hash_name":"Sticker | Heads Up"},"3972":{"market_hash_name":"Sticker | Hot Wings"},"3973":{"market_hash_name":"Sticker | Nest Egg"},"3974":{"market_hash_name":"Sticker | Roosty Boosty"},"3975":{"market_hash_name":"Sticker | What What"},"3976":{"market_hash_name":"Sticker | Bonehead (Holo)"},"3977":{"market_hash_name":"Sticker | Double Dip (Holo)"},"3978":{"market_hash_name":"Sticker | Fowl Play (Holo)"},"3979":{"market_hash_name":"Sticker | Hot Wings (Holo)"},"398":{"market_hash_name":"Sticker | steel | Cologne 2015"},"3980":{"market_hash_name":"Sticker | Nest Egg (Holo)"},"3981":{"market_hash_name":"Sticker | Big Clucks (Foil)"},"3982":{"market_hash_name":"Sticker | Roosty Boosty (Foil)"},"399":{"market_hash_name":"Sticker | steel (Foil) | Cologne 2015"},"4":{"market_hash_name":"Sticker | Shooter Close (Foil)"},"40":{"market_hash_name":"Sticker | Have Fun"},"400":{"market_hash_name":"Sticker | steel (Gold) | Cologne 2015"},"401":{"market_hash_name":"Sticker | fer | Cologne 2015"},"4019":{"market_hash_name":"Sticker | Astralis | Berlin 2019"},"402":{"market_hash_name":"Sticker | fer (Foil) | Cologne 2015"},"4020":{"market_hash_name":"Sticker | Astralis (Holo) | Berlin 2019"},"4021":{"market_hash_name":"Sticker | Astralis (Foil) | Berlin 2019"},"4022":{"market_hash_name":"Sticker | Astralis (Gold) | Berlin 2019"},"4023":{"market_hash_name":"Sticker | ENCE | Berlin 2019"},"4024":{"market_hash_name":"Sticker | ENCE (Holo) | Berlin 2019"},"4025":{"market_hash_name":"Sticker | ENCE (Foil) | Berlin 2019"},"4026":{"market_hash_name":"Sticker | ENCE (Gold) | Berlin 2019"},"4027":{"market_hash_name":"Sticker | MIBR | Berlin 2019"},"4028":{"market_hash_name":"Sticker | MIBR (Holo) | Berlin 2019"},"4029":{"market_hash_name":"Sticker | MIBR (Foil) | Berlin 2019"},"403":{"market_hash_name":"Sticker | fer (Gold) | Cologne 2015"},"4030":{"market_hash_name":"Sticker | MIBR (Gold) | Berlin 2019"},"4031":{"market_hash_name":"Sticker | Natus Vincere | Berlin 2019"},"4032":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Berlin 2019"},"4033":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Berlin 2019"},"4034":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Berlin 2019"},"4035":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Berlin 2019"},"4036":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Berlin 2019"},"4037":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Berlin 2019"},"4038":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Berlin 2019"},"4039":{"market_hash_name":"Sticker | FaZe Clan | Berlin 2019"},"404":{"market_hash_name":"Sticker | boltz | Cologne 2015"},"4040":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Berlin 2019"},"4041":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Berlin 2019"},"4042":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Berlin 2019"},"4043":{"market_hash_name":"Sticker | Team Liquid | Berlin 2019"},"4044":{"market_hash_name":"Sticker | Team Liquid (Holo) | Berlin 2019"},"4045":{"market_hash_name":"Sticker | Team Liquid (Foil) | Berlin 2019"},"4046":{"market_hash_name":"Sticker | Team Liquid (Gold) | Berlin 2019"},"4047":{"market_hash_name":"Sticker | Renegades | Berlin 2019"},"4048":{"market_hash_name":"Sticker | Renegades (Holo) | Berlin 2019"},"4049":{"market_hash_name":"Sticker | Renegades (Foil) | Berlin 2019"},"405":{"market_hash_name":"Sticker | boltz (Foil) | Cologne 2015"},"4050":{"market_hash_name":"Sticker | Renegades (Gold) | Berlin 2019"},"4051":{"market_hash_name":"Sticker | compLexity Gaming | Berlin 2019"},"4052":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | Berlin 2019"},"4053":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | Berlin 2019"},"4054":{"market_hash_name":"Sticker | compLexity Gaming (Gold) | Berlin 2019"},"4055":{"market_hash_name":"Sticker | HellRaisers | Berlin 2019"},"4056":{"market_hash_name":"Sticker | HellRaisers (Holo) | Berlin 2019"},"4057":{"market_hash_name":"Sticker | HellRaisers (Foil) | Berlin 2019"},"4058":{"market_hash_name":"Sticker | HellRaisers (Gold) | Berlin 2019"},"4059":{"market_hash_name":"Sticker | Avangar | Berlin 2019"},"406":{"market_hash_name":"Sticker | boltz (Gold) | Cologne 2015"},"4060":{"market_hash_name":"Sticker | Avangar (Holo) | Berlin 2019"},"4061":{"market_hash_name":"Sticker | Avangar (Foil) | Berlin 2019"},"4062":{"market_hash_name":"Sticker | Avangar (Gold) | Berlin 2019"},"4063":{"market_hash_name":"Sticker | G2 Esports | Berlin 2019"},"4064":{"market_hash_name":"Sticker | G2 Esports (Holo) | Berlin 2019"},"4065":{"market_hash_name":"Sticker | G2 Esports (Foil) | Berlin 2019"},"4066":{"market_hash_name":"Sticker | G2 Esports (Gold) | Berlin 2019"},"4067":{"market_hash_name":"Sticker | Vitality | Berlin 2019"},"4068":{"market_hash_name":"Sticker | Vitality (Holo) | Berlin 2019"},"4069":{"market_hash_name":"Sticker | Vitality (Foil) | Berlin 2019"},"407":{"market_hash_name":"Sticker | coldzera | Cologne 2015"},"4070":{"market_hash_name":"Sticker | Vitality (Gold) | Berlin 2019"},"4071":{"market_hash_name":"Sticker | Grayhound Gaming | Berlin 2019"},"4072":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Berlin 2019"},"4073":{"market_hash_name":"Sticker | Grayhound Gaming (Foil) | Berlin 2019"},"4074":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Berlin 2019"},"4075":{"market_hash_name":"Sticker | mousesports | Berlin 2019"},"4076":{"market_hash_name":"Sticker | mousesports (Holo) | Berlin 2019"},"4077":{"market_hash_name":"Sticker | mousesports (Foil) | Berlin 2019"},"4078":{"market_hash_name":"Sticker | mousesports (Gold) | Berlin 2019"},"4079":{"market_hash_name":"Sticker | forZe eSports | Berlin 2019"},"408":{"market_hash_name":"Sticker | coldzera (Foil) | Cologne 2015"},"4080":{"market_hash_name":"Sticker | forZe eSports (Holo) | Berlin 2019"},"4081":{"market_hash_name":"Sticker | forZe eSports (Foil) | Berlin 2019"},"4082":{"market_hash_name":"Sticker | forZe eSports (Gold) | Berlin 2019"},"4083":{"market_hash_name":"Sticker | NRG | Berlin 2019"},"4084":{"market_hash_name":"Sticker | NRG (Holo) | Berlin 2019"},"4085":{"market_hash_name":"Sticker | NRG (Foil) | Berlin 2019"},"4086":{"market_hash_name":"Sticker | NRG (Gold) | Berlin 2019"},"4087":{"market_hash_name":"Sticker | Tyloo | Berlin 2019"},"4088":{"market_hash_name":"Sticker | Tyloo (Holo) | Berlin 2019"},"4089":{"market_hash_name":"Sticker | Tyloo (Foil) | Berlin 2019"},"409":{"market_hash_name":"Sticker | coldzera (Gold) | Cologne 2015"},"4090":{"market_hash_name":"Sticker | Tyloo (Gold) | Berlin 2019"},"4091":{"market_hash_name":"Sticker | FURIA | Berlin 2019"},"4092":{"market_hash_name":"Sticker | FURIA (Holo) | Berlin 2019"},"4093":{"market_hash_name":"Sticker | FURIA (Foil) | Berlin 2019"},"4094":{"market_hash_name":"Sticker | FURIA (Gold) | Berlin 2019"},"4095":{"market_hash_name":"Sticker | CR4ZY | Berlin 2019"},"4096":{"market_hash_name":"Sticker | CR4ZY (Holo) | Berlin 2019"},"4097":{"market_hash_name":"Sticker | CR4ZY (Foil) | Berlin 2019"},"4098":{"market_hash_name":"Sticker | CR4ZY (Gold) | Berlin 2019"},"4099":{"market_hash_name":"Sticker | Syman Gaming | Berlin 2019"},"41":{"market_hash_name":"Sticker | Let's Roll-oll"},"410":{"market_hash_name":"Sticker | GuardiaN | Cologne 2015"},"4100":{"market_hash_name":"Sticker | Syman Gaming (Holo) | Berlin 2019"},"4101":{"market_hash_name":"Sticker | Syman Gaming (Foil) | Berlin 2019"},"4102":{"market_hash_name":"Sticker | Syman Gaming (Gold) | Berlin 2019"},"4103":{"market_hash_name":"Sticker | North | Berlin 2019"},"4104":{"market_hash_name":"Sticker | North (Holo) | Berlin 2019"},"4105":{"market_hash_name":"Sticker | North (Foil) | Berlin 2019"},"4106":{"market_hash_name":"Sticker | North (Gold) | Berlin 2019"},"4107":{"market_hash_name":"Sticker | DreamEaters | Berlin 2019"},"4108":{"market_hash_name":"Sticker | DreamEaters (Holo) | Berlin 2019"},"4109":{"market_hash_name":"Sticker | DreamEaters (Foil) | Berlin 2019"},"411":{"market_hash_name":"Sticker | GuardiaN (Foil) | Cologne 2015"},"4110":{"market_hash_name":"Sticker | DreamEaters (Gold) | Berlin 2019"},"4111":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB | Berlin 2019"},"4112":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB (Holo) | Berlin 2019"},"4113":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB (Foil) | Berlin 2019"},"4114":{"market_hash_name":"Sticker | INTZ E-SPORTS CLUB (Gold) | Berlin 2019"},"4115":{"market_hash_name":"Sticker | StarLadder | Berlin 2019"},"4116":{"market_hash_name":"Sticker | StarLadder (Holo) | Berlin 2019"},"4117":{"market_hash_name":"Sticker | StarLadder (Foil) | Berlin 2019"},"4118":{"market_hash_name":"Sticker | StarLadder (Gold) | Berlin 2019"},"412":{"market_hash_name":"Sticker | GuardiaN (Gold) | Cologne 2015"},"413":{"market_hash_name":"Sticker | Zeus | Cologne 2015"},"414":{"market_hash_name":"Sticker | Zeus (Foil) | Cologne 2015"},"4144":{"market_hash_name":"Sticker | Magisk | Berlin 2019"},"4145":{"market_hash_name":"Sticker | Magisk (Foil) | Berlin 2019"},"4146":{"market_hash_name":"Sticker | Magisk (Gold) | Berlin 2019"},"4147":{"market_hash_name":"Sticker | device | Berlin 2019"},"4148":{"market_hash_name":"Sticker | device (Foil) | Berlin 2019"},"4149":{"market_hash_name":"Sticker | device (Gold) | Berlin 2019"},"415":{"market_hash_name":"Sticker | Zeus (Gold) | Cologne 2015"},"4150":{"market_hash_name":"Sticker | Xyp9x | Berlin 2019"},"4151":{"market_hash_name":"Sticker | Xyp9x (Foil) | Berlin 2019"},"4152":{"market_hash_name":"Sticker | Xyp9x (Gold) | Berlin 2019"},"4153":{"market_hash_name":"Sticker | dupreeh | Berlin 2019"},"4154":{"market_hash_name":"Sticker | dupreeh (Foil) | Berlin 2019"},"4155":{"market_hash_name":"Sticker | dupreeh (Gold) | Berlin 2019"},"4156":{"market_hash_name":"Sticker | gla1ve | Berlin 2019"},"4157":{"market_hash_name":"Sticker | gla1ve (Foil) | Berlin 2019"},"4158":{"market_hash_name":"Sticker | gla1ve (Gold) | Berlin 2019"},"4159":{"market_hash_name":"Sticker | allu | Berlin 2019"},"416":{"market_hash_name":"Sticker | seized | Cologne 2015"},"4160":{"market_hash_name":"Sticker | allu (Foil) | Berlin 2019"},"4161":{"market_hash_name":"Sticker | allu (Gold) | Berlin 2019"},"4162":{"market_hash_name":"Sticker | Aerial | Berlin 2019"},"4163":{"market_hash_name":"Sticker | Aerial (Foil) | Berlin 2019"},"4164":{"market_hash_name":"Sticker | Aerial (Gold) | Berlin 2019"},"4165":{"market_hash_name":"Sticker | xseveN | Berlin 2019"},"4166":{"market_hash_name":"Sticker | xseveN (Foil) | Berlin 2019"},"4167":{"market_hash_name":"Sticker | xseveN (Gold) | Berlin 2019"},"4168":{"market_hash_name":"Sticker | Aleksib | Berlin 2019"},"4169":{"market_hash_name":"Sticker | Aleksib (Foil) | Berlin 2019"},"417":{"market_hash_name":"Sticker | seized (Foil) | Cologne 2015"},"4170":{"market_hash_name":"Sticker | Aleksib (Gold) | Berlin 2019"},"4171":{"market_hash_name":"Sticker | sergej | Berlin 2019"},"4172":{"market_hash_name":"Sticker | sergej (Foil) | Berlin 2019"},"4173":{"market_hash_name":"Sticker | sergej (Gold) | Berlin 2019"},"4174":{"market_hash_name":"Sticker | FalleN | Berlin 2019"},"4175":{"market_hash_name":"Sticker | FalleN (Foil) | Berlin 2019"},"4176":{"market_hash_name":"Sticker | FalleN (Gold) | Berlin 2019"},"4177":{"market_hash_name":"Sticker | LUCAS1 | Berlin 2019"},"4178":{"market_hash_name":"Sticker | LUCAS1 (Foil) | Berlin 2019"},"4179":{"market_hash_name":"Sticker | LUCAS1 (Gold) | Berlin 2019"},"418":{"market_hash_name":"Sticker | seized (Gold) | Cologne 2015"},"4180":{"market_hash_name":"Sticker | fer | Berlin 2019"},"4181":{"market_hash_name":"Sticker | fer (Foil) | Berlin 2019"},"4182":{"market_hash_name":"Sticker | fer (Gold) | Berlin 2019"},"4183":{"market_hash_name":"Sticker | TACO | Berlin 2019"},"4184":{"market_hash_name":"Sticker | TACO (Foil) | Berlin 2019"},"4185":{"market_hash_name":"Sticker | TACO (Gold) | Berlin 2019"},"4186":{"market_hash_name":"Sticker | coldzera | Berlin 2019"},"4187":{"market_hash_name":"Sticker | coldzera (Foil) | Berlin 2019"},"4188":{"market_hash_name":"Sticker | coldzera (Gold) | Berlin 2019"},"4189":{"market_hash_name":"Sticker | Zeus | Berlin 2019"},"419":{"market_hash_name":"Sticker | Edward | Cologne 2015"},"4190":{"market_hash_name":"Sticker | Zeus (Foil) | Berlin 2019"},"4191":{"market_hash_name":"Sticker | Zeus (Gold) | Berlin 2019"},"4192":{"market_hash_name":"Sticker | s1mple | Berlin 2019"},"4193":{"market_hash_name":"Sticker | s1mple (Foil) | Berlin 2019"},"4194":{"market_hash_name":"Sticker | s1mple (Gold) | Berlin 2019"},"4195":{"market_hash_name":"Sticker | electronic | Berlin 2019"},"4196":{"market_hash_name":"Sticker | electronic (Foil) | Berlin 2019"},"4197":{"market_hash_name":"Sticker | electronic (Gold) | Berlin 2019"},"4198":{"market_hash_name":"Sticker | flamie | Berlin 2019"},"4199":{"market_hash_name":"Sticker | flamie (Foil) | Berlin 2019"},"42":{"market_hash_name":"Sticker | Let's Roll-oll (Holo)"},"420":{"market_hash_name":"Sticker | Edward (Foil) | Cologne 2015"},"4200":{"market_hash_name":"Sticker | flamie (Gold) | Berlin 2019"},"4201":{"market_hash_name":"Sticker | Boombl4 | Berlin 2019"},"4202":{"market_hash_name":"Sticker | Boombl4 (Foil) | Berlin 2019"},"4203":{"market_hash_name":"Sticker | Boombl4 (Gold) | Berlin 2019"},"4204":{"market_hash_name":"Sticker | f0rest | Berlin 2019"},"4205":{"market_hash_name":"Sticker | f0rest (Foil) | Berlin 2019"},"4206":{"market_hash_name":"Sticker | f0rest (Gold) | Berlin 2019"},"4207":{"market_hash_name":"Sticker | Lekr0 | Berlin 2019"},"4208":{"market_hash_name":"Sticker | Lekr0 (Foil) | Berlin 2019"},"4209":{"market_hash_name":"Sticker | Lekr0 (Gold) | Berlin 2019"},"421":{"market_hash_name":"Sticker | Edward (Gold) | Cologne 2015"},"4210":{"market_hash_name":"Sticker | GeT_RiGhT | Berlin 2019"},"4211":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Berlin 2019"},"4212":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Berlin 2019"},"4213":{"market_hash_name":"Sticker | REZ | Berlin 2019"},"4214":{"market_hash_name":"Sticker | REZ (Foil) | Berlin 2019"},"4215":{"market_hash_name":"Sticker | REZ (Gold) | Berlin 2019"},"4216":{"market_hash_name":"Sticker | Golden | Berlin 2019"},"4217":{"market_hash_name":"Sticker | Golden (Foil) | Berlin 2019"},"4218":{"market_hash_name":"Sticker | Golden (Gold) | Berlin 2019"},"4219":{"market_hash_name":"Sticker | NEO | Berlin 2019"},"422":{"market_hash_name":"Sticker | flamie | Cologne 2015"},"4220":{"market_hash_name":"Sticker | NEO (Foil) | Berlin 2019"},"4221":{"market_hash_name":"Sticker | NEO (Gold) | Berlin 2019"},"4222":{"market_hash_name":"Sticker | GuardiaN | Berlin 2019"},"4223":{"market_hash_name":"Sticker | GuardiaN (Foil) | Berlin 2019"},"4224":{"market_hash_name":"Sticker | GuardiaN (Gold) | Berlin 2019"},"4225":{"market_hash_name":"Sticker | olofmeister | Berlin 2019"},"4226":{"market_hash_name":"Sticker | olofmeister (Foil) | Berlin 2019"},"4227":{"market_hash_name":"Sticker | olofmeister (Gold) | Berlin 2019"},"4228":{"market_hash_name":"Sticker | rain | Berlin 2019"},"4229":{"market_hash_name":"Sticker | rain (Foil) | Berlin 2019"},"423":{"market_hash_name":"Sticker | flamie (Foil) | Cologne 2015"},"4230":{"market_hash_name":"Sticker | rain (Gold) | Berlin 2019"},"4231":{"market_hash_name":"Sticker | NiKo | Berlin 2019"},"4232":{"market_hash_name":"Sticker | NiKo (Foil) | Berlin 2019"},"4233":{"market_hash_name":"Sticker | NiKo (Gold) | Berlin 2019"},"4234":{"market_hash_name":"Sticker | nitr0 | Berlin 2019"},"4235":{"market_hash_name":"Sticker | nitr0 (Foil) | Berlin 2019"},"4236":{"market_hash_name":"Sticker | nitr0 (Gold) | Berlin 2019"},"4237":{"market_hash_name":"Sticker | Stewie2K | Berlin 2019"},"4238":{"market_hash_name":"Sticker | Stewie2K (Foil) | Berlin 2019"},"4239":{"market_hash_name":"Sticker | Stewie2K (Gold) | Berlin 2019"},"424":{"market_hash_name":"Sticker | flamie (Gold) | Cologne 2015"},"4240":{"market_hash_name":"Sticker | NAF | Berlin 2019"},"4241":{"market_hash_name":"Sticker | NAF (Foil) | Berlin 2019"},"4242":{"market_hash_name":"Sticker | NAF (Gold) | Berlin 2019"},"4243":{"market_hash_name":"Sticker | Twistzz | Berlin 2019"},"4244":{"market_hash_name":"Sticker | Twistzz (Foil) | Berlin 2019"},"4245":{"market_hash_name":"Sticker | Twistzz (Gold) | Berlin 2019"},"4246":{"market_hash_name":"Sticker | EliGE | Berlin 2019"},"4247":{"market_hash_name":"Sticker | EliGE (Foil) | Berlin 2019"},"4248":{"market_hash_name":"Sticker | EliGE (Gold) | Berlin 2019"},"4249":{"market_hash_name":"Sticker | Gratisfaction | Berlin 2019"},"425":{"market_hash_name":"Sticker | Xizt | Cologne 2015"},"4250":{"market_hash_name":"Sticker | Gratisfaction (Foil) | Berlin 2019"},"4251":{"market_hash_name":"Sticker | Gratisfaction (Gold) | Berlin 2019"},"4252":{"market_hash_name":"Sticker | jks | Berlin 2019"},"4253":{"market_hash_name":"Sticker | jks (Foil) | Berlin 2019"},"4254":{"market_hash_name":"Sticker | jks (Gold) | Berlin 2019"},"4255":{"market_hash_name":"Sticker | AZR | Berlin 2019"},"4256":{"market_hash_name":"Sticker | AZR (Foil) | Berlin 2019"},"4257":{"market_hash_name":"Sticker | AZR (Gold) | Berlin 2019"},"4258":{"market_hash_name":"Sticker | jkaem | Berlin 2019"},"4259":{"market_hash_name":"Sticker | jkaem (Foil) | Berlin 2019"},"426":{"market_hash_name":"Sticker | Xizt (Foil) | Cologne 2015"},"4260":{"market_hash_name":"Sticker | jkaem (Gold) | Berlin 2019"},"4261":{"market_hash_name":"Sticker | Liazz | Berlin 2019"},"4262":{"market_hash_name":"Sticker | Liazz (Foil) | Berlin 2019"},"4263":{"market_hash_name":"Sticker | Liazz (Gold) | Berlin 2019"},"4264":{"market_hash_name":"Sticker | Rickeh | Berlin 2019"},"4265":{"market_hash_name":"Sticker | Rickeh (Foil) | Berlin 2019"},"4266":{"market_hash_name":"Sticker | Rickeh (Gold) | Berlin 2019"},"4267":{"market_hash_name":"Sticker | SicK | Berlin 2019"},"4268":{"market_hash_name":"Sticker | SicK (Foil) | Berlin 2019"},"4269":{"market_hash_name":"Sticker | SicK (Gold) | Berlin 2019"},"427":{"market_hash_name":"Sticker | Xizt (Gold) | Cologne 2015"},"4270":{"market_hash_name":"Sticker | dephh | Berlin 2019"},"4271":{"market_hash_name":"Sticker | dephh (Foil) | Berlin 2019"},"4272":{"market_hash_name":"Sticker | dephh (Gold) | Berlin 2019"},"4273":{"market_hash_name":"Sticker | ShahZaM | Berlin 2019"},"4274":{"market_hash_name":"Sticker | ShahZaM (Foil) | Berlin 2019"},"4275":{"market_hash_name":"Sticker | ShahZaM (Gold) | Berlin 2019"},"4276":{"market_hash_name":"Sticker | oBo | Berlin 2019"},"4277":{"market_hash_name":"Sticker | oBo (Foil) | Berlin 2019"},"4278":{"market_hash_name":"Sticker | oBo (Gold) | Berlin 2019"},"4279":{"market_hash_name":"Sticker | DeadFox | Berlin 2019"},"428":{"market_hash_name":"Sticker | f0rest | Cologne 2015"},"4280":{"market_hash_name":"Sticker | DeadFox (Foil) | Berlin 2019"},"4281":{"market_hash_name":"Sticker | DeadFox (Gold) | Berlin 2019"},"4282":{"market_hash_name":"Sticker | loWel | Berlin 2019"},"4283":{"market_hash_name":"Sticker | loWel (Foil) | Berlin 2019"},"4284":{"market_hash_name":"Sticker | loWel (Gold) | Berlin 2019"},"4285":{"market_hash_name":"Sticker | ANGE1 | Berlin 2019"},"4286":{"market_hash_name":"Sticker | ANGE1 (Foil) | Berlin 2019"},"4287":{"market_hash_name":"Sticker | ANGE1 (Gold) | Berlin 2019"},"4288":{"market_hash_name":"Sticker | ISSAA | Berlin 2019"},"4289":{"market_hash_name":"Sticker | ISSAA (Foil) | Berlin 2019"},"429":{"market_hash_name":"Sticker | f0rest (Foil) | Cologne 2015"},"4290":{"market_hash_name":"Sticker | ISSAA (Gold) | Berlin 2019"},"4291":{"market_hash_name":"Sticker | oskar | Berlin 2019"},"4292":{"market_hash_name":"Sticker | oskar (Foil) | Berlin 2019"},"4293":{"market_hash_name":"Sticker | oskar (Gold) | Berlin 2019"},"4294":{"market_hash_name":"Sticker | AdreN | Berlin 2019"},"4295":{"market_hash_name":"Sticker | AdreN (Foil) | Berlin 2019"},"4296":{"market_hash_name":"Sticker | AdreN (Gold) | Berlin 2019"},"4297":{"market_hash_name":"Sticker | Jame | Berlin 2019"},"4298":{"market_hash_name":"Sticker | Jame (Foil) | Berlin 2019"},"4299":{"market_hash_name":"Sticker | Jame (Gold) | Berlin 2019"},"43":{"market_hash_name":"Sticker | Metal"},"430":{"market_hash_name":"Sticker | f0rest (Gold) | Cologne 2015"},"4300":{"market_hash_name":"Sticker | qikert | Berlin 2019"},"4301":{"market_hash_name":"Sticker | qikert (Foil) | Berlin 2019"},"4302":{"market_hash_name":"Sticker | qikert (Gold) | Berlin 2019"},"4303":{"market_hash_name":"Sticker | buster | Berlin 2019"},"4304":{"market_hash_name":"Sticker | buster (Foil) | Berlin 2019"},"4305":{"market_hash_name":"Sticker | buster (Gold) | Berlin 2019"},"4306":{"market_hash_name":"Sticker | SANJI | Berlin 2019"},"4307":{"market_hash_name":"Sticker | SANJI (Foil) | Berlin 2019"},"4308":{"market_hash_name":"Sticker | SANJI (Gold) | Berlin 2019"},"4309":{"market_hash_name":"Sticker | JaCkz | Berlin 2019"},"431":{"market_hash_name":"Sticker | GeT_RiGhT | Cologne 2015"},"4310":{"market_hash_name":"Sticker | JaCkz (Foil) | Berlin 2019"},"4311":{"market_hash_name":"Sticker | JaCkz (Gold) | Berlin 2019"},"4312":{"market_hash_name":"Sticker | shox | Berlin 2019"},"4313":{"market_hash_name":"Sticker | shox (Foil) | Berlin 2019"},"4314":{"market_hash_name":"Sticker | shox (Gold) | Berlin 2019"},"4315":{"market_hash_name":"Sticker | kennyS | Berlin 2019"},"4316":{"market_hash_name":"Sticker | kennyS (Foil) | Berlin 2019"},"4317":{"market_hash_name":"Sticker | kennyS (Gold) | Berlin 2019"},"4318":{"market_hash_name":"Sticker | Lucky | Berlin 2019"},"4319":{"market_hash_name":"Sticker | Lucky (Foil) | Berlin 2019"},"432":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Cologne 2015"},"4320":{"market_hash_name":"Sticker | Lucky (Gold) | Berlin 2019"},"4321":{"market_hash_name":"Sticker | AmaNEk | Berlin 2019"},"4322":{"market_hash_name":"Sticker | AmaNEk (Foil) | Berlin 2019"},"4323":{"market_hash_name":"Sticker | AmaNEk (Gold) | Berlin 2019"},"4324":{"market_hash_name":"Sticker | NBK- | Berlin 2019"},"4325":{"market_hash_name":"Sticker | NBK- (Foil) | Berlin 2019"},"4326":{"market_hash_name":"Sticker | NBK- (Gold) | Berlin 2019"},"4327":{"market_hash_name":"Sticker | apEX | Berlin 2019"},"4328":{"market_hash_name":"Sticker | apEX (Foil) | Berlin 2019"},"4329":{"market_hash_name":"Sticker | apEX (Gold) | Berlin 2019"},"433":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Cologne 2015"},"4330":{"market_hash_name":"Sticker | ALEX | Berlin 2019"},"4331":{"market_hash_name":"Sticker | ALEX (Foil) | Berlin 2019"},"4332":{"market_hash_name":"Sticker | ALEX (Gold) | Berlin 2019"},"4333":{"market_hash_name":"Sticker | RpK | Berlin 2019"},"4334":{"market_hash_name":"Sticker | RpK (Foil) | Berlin 2019"},"4335":{"market_hash_name":"Sticker | RpK (Gold) | Berlin 2019"},"4336":{"market_hash_name":"Sticker | ZywOo | Berlin 2019"},"4337":{"market_hash_name":"Sticker | ZywOo (Foil) | Berlin 2019"},"4338":{"market_hash_name":"Sticker | ZywOo (Gold) | Berlin 2019"},"4339":{"market_hash_name":"Sticker | Sico | Berlin 2019"},"434":{"market_hash_name":"Sticker | friberg | Cologne 2015"},"4340":{"market_hash_name":"Sticker | Sico (Foil) | Berlin 2019"},"4341":{"market_hash_name":"Sticker | Sico (Gold) | Berlin 2019"},"4342":{"market_hash_name":"Sticker | dexter | Berlin 2019"},"4343":{"market_hash_name":"Sticker | dexter (Foil) | Berlin 2019"},"4344":{"market_hash_name":"Sticker | dexter (Gold) | Berlin 2019"},"4345":{"market_hash_name":"Sticker | erkaSt | Berlin 2019"},"4346":{"market_hash_name":"Sticker | erkaSt (Foil) | Berlin 2019"},"4347":{"market_hash_name":"Sticker | erkaSt (Gold) | Berlin 2019"},"4348":{"market_hash_name":"Sticker | malta | Berlin 2019"},"4349":{"market_hash_name":"Sticker | malta (Foil) | Berlin 2019"},"435":{"market_hash_name":"Sticker | friberg (Foil) | Cologne 2015"},"4350":{"market_hash_name":"Sticker | malta (Gold) | Berlin 2019"},"4351":{"market_hash_name":"Sticker | DickStacy | Berlin 2019"},"4352":{"market_hash_name":"Sticker | DickStacy (Foil) | Berlin 2019"},"4353":{"market_hash_name":"Sticker | DickStacy (Gold) | Berlin 2019"},"4354":{"market_hash_name":"Sticker | chrisJ | Berlin 2019"},"4355":{"market_hash_name":"Sticker | chrisJ (Foil) | Berlin 2019"},"4356":{"market_hash_name":"Sticker | chrisJ (Gold) | Berlin 2019"},"4357":{"market_hash_name":"Sticker | karrigan | Berlin 2019"},"4358":{"market_hash_name":"Sticker | karrigan (Foil) | Berlin 2019"},"4359":{"market_hash_name":"Sticker | karrigan (Gold) | Berlin 2019"},"436":{"market_hash_name":"Sticker | friberg (Gold) | Cologne 2015"},"4360":{"market_hash_name":"Sticker | ropz | Berlin 2019"},"4361":{"market_hash_name":"Sticker | ropz (Foil) | Berlin 2019"},"4362":{"market_hash_name":"Sticker | ropz (Gold) | Berlin 2019"},"4363":{"market_hash_name":"Sticker | frozen | Berlin 2019"},"4364":{"market_hash_name":"Sticker | frozen (Foil) | Berlin 2019"},"4365":{"market_hash_name":"Sticker | frozen (Gold) | Berlin 2019"},"4366":{"market_hash_name":"Sticker | woxic | Berlin 2019"},"4367":{"market_hash_name":"Sticker | woxic (Foil) | Berlin 2019"},"4368":{"market_hash_name":"Sticker | woxic (Gold) | Berlin 2019"},"4369":{"market_hash_name":"Sticker | FL1T | Berlin 2019"},"437":{"market_hash_name":"Sticker | allu | Cologne 2015"},"4370":{"market_hash_name":"Sticker | FL1T (Foil) | Berlin 2019"},"4371":{"market_hash_name":"Sticker | FL1T (Gold) | Berlin 2019"},"4372":{"market_hash_name":"Sticker | Jerry | Berlin 2019"},"4373":{"market_hash_name":"Sticker | Jerry (Foil) | Berlin 2019"},"4374":{"market_hash_name":"Sticker | Jerry (Gold) | Berlin 2019"},"4375":{"market_hash_name":"Sticker | almazer | Berlin 2019"},"4376":{"market_hash_name":"Sticker | almazer (Foil) | Berlin 2019"},"4377":{"market_hash_name":"Sticker | almazer (Gold) | Berlin 2019"},"4378":{"market_hash_name":"Sticker | xsepower | Berlin 2019"},"4379":{"market_hash_name":"Sticker | xsepower (Foil) | Berlin 2019"},"438":{"market_hash_name":"Sticker | allu (Foil) | Cologne 2015"},"4380":{"market_hash_name":"Sticker | xsepower (Gold) | Berlin 2019"},"4381":{"market_hash_name":"Sticker | facecrack | Berlin 2019"},"4382":{"market_hash_name":"Sticker | facecrack (Foil) | Berlin 2019"},"4383":{"market_hash_name":"Sticker | facecrack (Gold) | Berlin 2019"},"4384":{"market_hash_name":"Sticker | tarik | Berlin 2019"},"4385":{"market_hash_name":"Sticker | tarik (Foil) | Berlin 2019"},"4386":{"market_hash_name":"Sticker | tarik (Gold) | Berlin 2019"},"4387":{"market_hash_name":"Sticker | stanislaw | Berlin 2019"},"4388":{"market_hash_name":"Sticker | stanislaw (Foil) | Berlin 2019"},"4389":{"market_hash_name":"Sticker | stanislaw (Gold) | Berlin 2019"},"439":{"market_hash_name":"Sticker | allu (Gold) | Cologne 2015"},"4390":{"market_hash_name":"Sticker | Brehze | Berlin 2019"},"4391":{"market_hash_name":"Sticker | Brehze (Foil) | Berlin 2019"},"4392":{"market_hash_name":"Sticker | Brehze (Gold) | Berlin 2019"},"4393":{"market_hash_name":"Sticker | Ethan | Berlin 2019"},"4394":{"market_hash_name":"Sticker | Ethan (Foil) | Berlin 2019"},"4395":{"market_hash_name":"Sticker | Ethan (Gold) | Berlin 2019"},"4396":{"market_hash_name":"Sticker | CeRq | Berlin 2019"},"4397":{"market_hash_name":"Sticker | CeRq (Foil) | Berlin 2019"},"4398":{"market_hash_name":"Sticker | CeRq (Gold) | Berlin 2019"},"4399":{"market_hash_name":"Sticker | Summer | Berlin 2019"},"44":{"market_hash_name":"Sticker | Nice Shot"},"440":{"market_hash_name":"Sticker | kennyS | Cologne 2015"},"4400":{"market_hash_name":"Sticker | Summer (Foil) | Berlin 2019"},"4401":{"market_hash_name":"Sticker | Summer (Gold) | Berlin 2019"},"4402":{"market_hash_name":"Sticker | somebody | Berlin 2019"},"4403":{"market_hash_name":"Sticker | somebody (Foil) | Berlin 2019"},"4404":{"market_hash_name":"Sticker | somebody (Gold) | Berlin 2019"},"4405":{"market_hash_name":"Sticker | Attacker | Berlin 2019"},"4406":{"market_hash_name":"Sticker | Attacker (Foil) | Berlin 2019"},"4407":{"market_hash_name":"Sticker | Attacker (Gold) | Berlin 2019"},"4408":{"market_hash_name":"Sticker | BnTeT | Berlin 2019"},"4409":{"market_hash_name":"Sticker | BnTeT (Foil) | Berlin 2019"},"441":{"market_hash_name":"Sticker | kennyS (Foil) | Cologne 2015"},"4410":{"market_hash_name":"Sticker | BnTeT (Gold) | Berlin 2019"},"4411":{"market_hash_name":"Sticker | Freeman | Berlin 2019"},"4412":{"market_hash_name":"Sticker | Freeman (Foil) | Berlin 2019"},"4413":{"market_hash_name":"Sticker | Freeman (Gold) | Berlin 2019"},"4414":{"market_hash_name":"Sticker | VINI | Berlin 2019"},"4415":{"market_hash_name":"Sticker | VINI (Foil) | Berlin 2019"},"4416":{"market_hash_name":"Sticker | VINI (Gold) | Berlin 2019"},"4417":{"market_hash_name":"Sticker | ableJ | Berlin 2019"},"4418":{"market_hash_name":"Sticker | ableJ (Foil) | Berlin 2019"},"4419":{"market_hash_name":"Sticker | ableJ (Gold) | Berlin 2019"},"442":{"market_hash_name":"Sticker | kennyS (Gold) | Cologne 2015"},"4420":{"market_hash_name":"Sticker | arT | Berlin 2019"},"4421":{"market_hash_name":"Sticker | arT (Foil) | Berlin 2019"},"4422":{"market_hash_name":"Sticker | arT (Gold) | Berlin 2019"},"4423":{"market_hash_name":"Sticker | KSCERATO | Berlin 2019"},"4424":{"market_hash_name":"Sticker | KSCERATO (Foil) | Berlin 2019"},"4425":{"market_hash_name":"Sticker | KSCERATO (Gold) | Berlin 2019"},"4426":{"market_hash_name":"Sticker | yuurih | Berlin 2019"},"4427":{"market_hash_name":"Sticker | yuurih (Foil) | Berlin 2019"},"4428":{"market_hash_name":"Sticker | yuurih (Gold) | Berlin 2019"},"4429":{"market_hash_name":"Sticker | nexa | Berlin 2019"},"443":{"market_hash_name":"Sticker | kioShiMa | Cologne 2015"},"4430":{"market_hash_name":"Sticker | nexa (Foil) | Berlin 2019"},"4431":{"market_hash_name":"Sticker | nexa (Gold) | Berlin 2019"},"4432":{"market_hash_name":"Sticker | huNter- | Berlin 2019"},"4433":{"market_hash_name":"Sticker | huNter- (Foil) | Berlin 2019"},"4434":{"market_hash_name":"Sticker | huNter- (Gold) | Berlin 2019"},"4435":{"market_hash_name":"Sticker | ottoNd | Berlin 2019"},"4436":{"market_hash_name":"Sticker | ottoNd (Foil) | Berlin 2019"},"4437":{"market_hash_name":"Sticker | ottoNd (Gold) | Berlin 2019"},"4438":{"market_hash_name":"Sticker | LETN1 | Berlin 2019"},"4439":{"market_hash_name":"Sticker | LETN1 (Foil) | Berlin 2019"},"444":{"market_hash_name":"Sticker | kioShiMa (Foil) | Cologne 2015"},"4440":{"market_hash_name":"Sticker | LETN1 (Gold) | Berlin 2019"},"4441":{"market_hash_name":"Sticker | EspiranTo | Berlin 2019"},"4442":{"market_hash_name":"Sticker | EspiranTo (Foil) | Berlin 2019"},"4443":{"market_hash_name":"Sticker | EspiranTo (Gold) | Berlin 2019"},"4444":{"market_hash_name":"Sticker | t0rick | Berlin 2019"},"4445":{"market_hash_name":"Sticker | t0rick (Foil) | Berlin 2019"},"4446":{"market_hash_name":"Sticker | t0rick (Gold) | Berlin 2019"},"4447":{"market_hash_name":"Sticker | neaLaN | Berlin 2019"},"4448":{"market_hash_name":"Sticker | neaLaN (Foil) | Berlin 2019"},"4449":{"market_hash_name":"Sticker | neaLaN (Gold) | Berlin 2019"},"445":{"market_hash_name":"Sticker | kioShiMa (Gold) | Cologne 2015"},"4450":{"market_hash_name":"Sticker | Keoz | Berlin 2019"},"4451":{"market_hash_name":"Sticker | Keoz (Foil) | Berlin 2019"},"4452":{"market_hash_name":"Sticker | Keoz (Gold) | Berlin 2019"},"4453":{"market_hash_name":"Sticker | Ramz1kBO$$ | Berlin 2019"},"4454":{"market_hash_name":"Sticker | Ramz1kBO$$ (Foil) | Berlin 2019"},"4455":{"market_hash_name":"Sticker | Ramz1kBO$$ (Gold) | Berlin 2019"},"4456":{"market_hash_name":"Sticker | Perfecto | Berlin 2019"},"4457":{"market_hash_name":"Sticker | Perfecto (Foil) | Berlin 2019"},"4458":{"market_hash_name":"Sticker | Perfecto (Gold) | Berlin 2019"},"4459":{"market_hash_name":"Sticker | gade | Berlin 2019"},"446":{"market_hash_name":"Sticker | Happy | Cologne 2015"},"4460":{"market_hash_name":"Sticker | gade (Foil) | Berlin 2019"},"4461":{"market_hash_name":"Sticker | gade (Gold) | Berlin 2019"},"4462":{"market_hash_name":"Sticker | Kjaerbye | Berlin 2019"},"4463":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Berlin 2019"},"4464":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Berlin 2019"},"4465":{"market_hash_name":"Sticker | JUGi | Berlin 2019"},"4466":{"market_hash_name":"Sticker | JUGi (Foil) | Berlin 2019"},"4467":{"market_hash_name":"Sticker | JUGi (Gold) | Berlin 2019"},"4468":{"market_hash_name":"Sticker | aizy | Berlin 2019"},"4469":{"market_hash_name":"Sticker | aizy (Foil) | Berlin 2019"},"447":{"market_hash_name":"Sticker | Happy (Foil) | Cologne 2015"},"4470":{"market_hash_name":"Sticker | aizy (Gold) | Berlin 2019"},"4471":{"market_hash_name":"Sticker | v4lde | Berlin 2019"},"4472":{"market_hash_name":"Sticker | v4lde (Foil) | Berlin 2019"},"4473":{"market_hash_name":"Sticker | v4lde (Gold) | Berlin 2019"},"4474":{"market_hash_name":"Sticker | svyat | Berlin 2019"},"4475":{"market_hash_name":"Sticker | svyat (Foil) | Berlin 2019"},"4476":{"market_hash_name":"Sticker | svyat (Gold) | Berlin 2019"},"4477":{"market_hash_name":"Sticker | kinqie | Berlin 2019"},"4478":{"market_hash_name":"Sticker | kinqie (Foil) | Berlin 2019"},"4479":{"market_hash_name":"Sticker | kinqie (Gold) | Berlin 2019"},"448":{"market_hash_name":"Sticker | Happy (Gold) | Cologne 2015"},"4480":{"market_hash_name":"Sticker | Forester | Berlin 2019"},"4481":{"market_hash_name":"Sticker | Forester (Foil) | Berlin 2019"},"4482":{"market_hash_name":"Sticker | Forester (Gold) | Berlin 2019"},"4483":{"market_hash_name":"Sticker | Krad | Berlin 2019"},"4484":{"market_hash_name":"Sticker | Krad (Foil) | Berlin 2019"},"4485":{"market_hash_name":"Sticker | Krad (Gold) | Berlin 2019"},"4486":{"market_hash_name":"Sticker | speed4k | Berlin 2019"},"4487":{"market_hash_name":"Sticker | speed4k (Foil) | Berlin 2019"},"4488":{"market_hash_name":"Sticker | speed4k (Gold) | Berlin 2019"},"4489":{"market_hash_name":"Sticker | kNgV- | Berlin 2019"},"449":{"market_hash_name":"Sticker | apEX | Cologne 2015"},"4490":{"market_hash_name":"Sticker | kNgV- (Foil) | Berlin 2019"},"4491":{"market_hash_name":"Sticker | kNgV- (Gold) | Berlin 2019"},"4492":{"market_hash_name":"Sticker | DeStiNy | Berlin 2019"},"4493":{"market_hash_name":"Sticker | DeStiNy (Foil) | Berlin 2019"},"4494":{"market_hash_name":"Sticker | DeStiNy (Gold) | Berlin 2019"},"4495":{"market_hash_name":"Sticker | yel | Berlin 2019"},"4496":{"market_hash_name":"Sticker | yel (Foil) | Berlin 2019"},"4497":{"market_hash_name":"Sticker | yel (Gold) | Berlin 2019"},"4498":{"market_hash_name":"Sticker | chelo | Berlin 2019"},"4499":{"market_hash_name":"Sticker | chelo (Foil) | Berlin 2019"},"450":{"market_hash_name":"Sticker | apEX (Foil) | Cologne 2015"},"4500":{"market_hash_name":"Sticker | chelo (Gold) | Berlin 2019"},"4501":{"market_hash_name":"Sticker | xand | Berlin 2019"},"4502":{"market_hash_name":"Sticker | xand (Foil) | Berlin 2019"},"4503":{"market_hash_name":"Sticker | xand (Gold) | Berlin 2019"},"4504":{"market_hash_name":"Sticker | Counter-Tech"},"4505":{"market_hash_name":"Sticker | Gold Web"},"4506":{"market_hash_name":"Sticker | Mastermind"},"4507":{"market_hash_name":"Sticker | Shattered Web"},"4508":{"market_hash_name":"Sticker | Terrorist-Tech"},"4509":{"market_hash_name":"Sticker | Web Stuck"},"451":{"market_hash_name":"Sticker | apEX (Gold) | Cologne 2015"},"4510":{"market_hash_name":"Sticker | Mastermind (Holo)"},"4511":{"market_hash_name":"Sticker | Web Stuck (Holo)"},"4512":{"market_hash_name":"Sticker | Gold Web (Foil)"},"4513":{"market_hash_name":"Sticker | CS20 Classic (Holo)"},"4514":{"market_hash_name":"Sticker | Too Old for This"},"4515":{"market_hash_name":"Sticker | Pixel Avenger"},"4516":{"market_hash_name":"Sticker | Aztec"},"4517":{"market_hash_name":"Sticker | Too Late"},"4518":{"market_hash_name":"Sticker | Friend Code"},"4519":{"market_hash_name":"Sticker | Clutchman (Holo)"},"452":{"market_hash_name":"Sticker | NBK- | Cologne 2015"},"4520":{"market_hash_name":"Sticker | All Hail the King (Foil)"},"4521":{"market_hash_name":"Sticker | Door Stuck (Foil)"},"4522":{"market_hash_name":"Sticker | Dragon Lore (Foil)"},"4523":{"market_hash_name":"Sticker | Guinea Pig (Holo)"},"4524":{"market_hash_name":"Sticker | Obey SAS"},"4525":{"market_hash_name":"Sticker | Fire in the Hole (Holo)"},"4526":{"market_hash_name":"Sticker | Nuke Beast"},"4527":{"market_hash_name":"Sticker | Mondays"},"4528":{"market_hash_name":"Sticker | Boost (Holo)"},"4529":{"market_hash_name":"Sticker | Rush 4x20 (Holo)"},"453":{"market_hash_name":"Sticker | NBK- (Foil) | Cologne 2015"},"4530":{"market_hash_name":"Sticker | Separate Pixels"},"4531":{"market_hash_name":"Sticker | Surf's Up"},"4532":{"market_hash_name":"Sticker | Temperance"},"4533":{"market_hash_name":"Sticker | Assassin"},"4534":{"market_hash_name":"Sticker | Chief"},"4535":{"market_hash_name":"Sticker | Dirty Money"},"4536":{"market_hash_name":"Sticker | Extermination"},"4537":{"market_hash_name":"Sticker | Incineration"},"4538":{"market_hash_name":"Sticker | Killjoy"},"4539":{"market_hash_name":"Sticker | Legendary"},"454":{"market_hash_name":"Sticker | NBK- (Gold) | Cologne 2015"},"4540":{"market_hash_name":"Sticker | Mister Chief"},"4541":{"market_hash_name":"Sticker | Noble"},"4542":{"market_hash_name":"Sticker | Spartan"},"4543":{"market_hash_name":"Sticker | Assassin (Holo)"},"4544":{"market_hash_name":"Sticker | Chief (Holo)"},"4545":{"market_hash_name":"Sticker | Incineration (Holo)"},"4546":{"market_hash_name":"Sticker | Killjoy (Holo)"},"4547":{"market_hash_name":"Sticker | Noble (Holo)"},"4548":{"market_hash_name":"Sticker | Chief (Foil)"},"4549":{"market_hash_name":"Sticker | Legendary (Foil)"},"455":{"market_hash_name":"Sticker | karrigan | Cologne 2015"},"4550":{"market_hash_name":"Patch | Crazy Banana","is_patch":true},"4551":{"market_hash_name":"Patch | The Boss","is_patch":true},"4552":{"market_hash_name":"Patch | Chicken Lover","is_patch":true},"4553":{"market_hash_name":"Patch | Welcome to the Clutch","is_patch":true},"4554":{"market_hash_name":"Patch | Dragon","is_patch":true},"4555":{"market_hash_name":"Patch | Easy Peasy","is_patch":true},"4556":{"market_hash_name":"Patch | Rage","is_patch":true},"4557":{"market_hash_name":"Patch | Howl","is_patch":true},"4558":{"market_hash_name":"Patch | Koi","is_patch":true},"4559":{"market_hash_name":"Patch | Longevity","is_patch":true},"456":{"market_hash_name":"Sticker | karrigan (Foil) | Cologne 2015"},"4560":{"market_hash_name":"Patch | Wildfire","is_patch":true},"4561":{"market_hash_name":"Patch | Vigilance","is_patch":true},"4562":{"market_hash_name":"Patch | Bloodhound","is_patch":true},"4563":{"market_hash_name":"Patch | Bravo","is_patch":true},"4564":{"market_hash_name":"Patch | Breakout","is_patch":true},"4565":{"market_hash_name":"Patch | Danger Zone","is_patch":true},"4566":{"market_hash_name":"Patch | Hydra","is_patch":true},"4567":{"market_hash_name":"Patch | Payback","is_patch":true},"4568":{"market_hash_name":"Patch | Phoenix","is_patch":true},"4569":{"market_hash_name":"Patch | Shattered Web","is_patch":true},"457":{"market_hash_name":"Sticker | karrigan (Gold) | Cologne 2015"},"4570":{"market_hash_name":"Patch | Vanguard","is_patch":true},"4571":{"market_hash_name":"Patch | Metal Silver","is_patch":true},"4572":{"market_hash_name":"Patch | Metal Gold Nova I","is_patch":true},"4575":{"market_hash_name":"Patch | Metal Gold Nova Master","is_patch":true},"4576":{"market_hash_name":"Patch | Metal Master Guardian I","is_patch":true},"4577":{"market_hash_name":"Sticker | Blinky"},"4578":{"market_hash_name":"Patch | Metal Master Guardian Elite","is_patch":true},"4579":{"market_hash_name":"Patch | Metal Distinguished Master Guardian ★","is_patch":true},"458":{"market_hash_name":"Sticker | device | Cologne 2015"},"4580":{"market_hash_name":"Sticker | Chompers"},"4581":{"market_hash_name":"Patch | Metal Legendary Eagle Master ★","is_patch":true},"4582":{"market_hash_name":"Patch | Metal Supreme Master First Class","is_patch":true},"4583":{"market_hash_name":"Patch | Metal The Global Elite ★","is_patch":true},"4584":{"market_hash_name":"Patch | Metal Distinguished Master Guardian","is_patch":true},"4585":{"market_hash_name":"Patch | Metal Legendary Eagle","is_patch":true},"4586":{"market_hash_name":"Patch | Metal Legendary Eagle Master","is_patch":true},"4587":{"market_hash_name":"Patch | Metal Silver Demon","is_patch":true},"4588":{"market_hash_name":"Patch | Metal Supreme Master","is_patch":true},"4589":{"market_hash_name":"Patch | Alyx","is_patch":true},"459":{"market_hash_name":"Sticker | device (Foil) | Cologne 2015"},"4590":{"market_hash_name":"Sticker | Fly High"},"4591":{"market_hash_name":"Patch | Sustenance!","is_patch":true},"4592":{"market_hash_name":"Patch | Vortigaunt","is_patch":true},"4593":{"market_hash_name":"Patch | Headcrab Glyph","is_patch":true},"4594":{"market_hash_name":"Patch | Copper Lambda","is_patch":true},"4595":{"market_hash_name":"Patch | Health","is_patch":true},"4596":{"market_hash_name":"Patch | Combine Helmet","is_patch":true},"4597":{"market_hash_name":"Patch | Black Mesa","is_patch":true},"4598":{"market_hash_name":"Patch | CMB","is_patch":true},"4599":{"market_hash_name":"Patch | Lambda","is_patch":true},"46":{"market_hash_name":"Sticker | Stupid Banana (Foil)"},"460":{"market_hash_name":"Sticker | device (Gold) | Cologne 2015"},"4600":{"market_hash_name":"Patch | City 17","is_patch":true},"4601":{"market_hash_name":"Sticker | Last Vance"},"4602":{"market_hash_name":"Sticker | Vortigaunt the Painter"},"4603":{"market_hash_name":"Sticker | Big Hugs"},"4604":{"market_hash_name":"Sticker | Combine Helmet"},"4605":{"market_hash_name":"Sticker | Gnome Mercy"},"4606":{"market_hash_name":"Sticker | Greetings"},"4607":{"market_hash_name":"Sticker | Lambda"},"4608":{"market_hash_name":"Sticker | Vortigaunt (Holo)"},"4609":{"market_hash_name":"Sticker | Big Hugs (Holo)"},"461":{"market_hash_name":"Sticker | dupreeh | Cologne 2015"},"4610":{"market_hash_name":"Sticker | Combine Helmet (Holo)"},"4611":{"market_hash_name":"Sticker | Lambda (Holo)"},"4612":{"market_hash_name":"Sticker | Last Vance (Gold)"},"4613":{"market_hash_name":"Sticker | Health (Gold)"},"4614":{"market_hash_name":"Sticker | Adepta Sororitas"},"4615":{"market_hash_name":"Sticker | Aeldari Avatar"},"4616":{"market_hash_name":"Sticker | Full Buy"},"4617":{"market_hash_name":"Sticker | Heresy"},"4618":{"market_hash_name":"Sticker | Necron"},"4619":{"market_hash_name":"Sticker | Ork Waaagh!"},"462":{"market_hash_name":"Sticker | dupreeh (Foil) | Cologne 2015"},"4620":{"market_hash_name":"Sticker | Primaris Keychain"},"4621":{"market_hash_name":"Sticker | Repulsor"},"4622":{"market_hash_name":"Sticker | Space Marine"},"4623":{"market_hash_name":"Sticker | Tyranids Ravener"},"4624":{"market_hash_name":"Sticker | Heresy (Holo)"},"4625":{"market_hash_name":"Sticker | Lord of Skulls (Holo)"},"4626":{"market_hash_name":"Sticker | Space Marine (Holo)"},"4627":{"market_hash_name":"Sticker | Tyranids Hive Tyrant (Holo)"},"4628":{"market_hash_name":"Sticker | Bloodthirster (Foil)"},"4629":{"market_hash_name":"Sticker | Chaos Marine (Foil)"},"463":{"market_hash_name":"Sticker | dupreeh (Gold) | Cologne 2015"},"4630":{"market_hash_name":"Sticker | Emperor (Foil)"},"464":{"market_hash_name":"Sticker | Xyp9x | Cologne 2015"},"4647":{"market_hash_name":"Sticker | From The Deep"},"4648":{"market_hash_name":"Sticker | Glare"},"4649":{"market_hash_name":"Sticker | Hello AK-47"},"465":{"market_hash_name":"Sticker | Xyp9x (Foil) | Cologne 2015"},"4650":{"market_hash_name":"Sticker | Hello AK-47 (Gold)"},"4651":{"market_hash_name":"Sticker | Hello AUG"},"4652":{"market_hash_name":"Sticker | Hello AUG (Gold)"},"4653":{"market_hash_name":"Sticker | Hello AWP"},"4654":{"market_hash_name":"Sticker | Hello AWP (Gold)"},"4655":{"market_hash_name":"Sticker | Hello PP-Bizon"},"4656":{"market_hash_name":"Sticker | Hello PP-Bizon (Gold)"},"4657":{"market_hash_name":"Sticker | Hello CZ75-Auto"},"4658":{"market_hash_name":"Sticker | Hello CZ75-Auto (Gold)"},"4659":{"market_hash_name":"Sticker | Hello FAMAS"},"466":{"market_hash_name":"Sticker | Xyp9x (Gold) | Cologne 2015"},"4660":{"market_hash_name":"Sticker | Hello FAMAS (Gold)"},"4661":{"market_hash_name":"Sticker | Hello Galil AR"},"4662":{"market_hash_name":"Sticker | Hello Galil AR (Gold)"},"4663":{"market_hash_name":"Sticker | Hello M4A1-S"},"4664":{"market_hash_name":"Sticker | Hello M4A1-S (Gold)"},"4665":{"market_hash_name":"Sticker | Hello M4A4"},"4666":{"market_hash_name":"Sticker | Hello M4A4 (Gold)"},"4667":{"market_hash_name":"Sticker | Hello MAC-10"},"4668":{"market_hash_name":"Sticker | Hello MAC-10 (Gold)"},"4669":{"market_hash_name":"Sticker | Hello MP7"},"467":{"market_hash_name":"Sticker | cajunb | Cologne 2015"},"4670":{"market_hash_name":"Sticker | Hello MP7 (Gold)"},"4671":{"market_hash_name":"Sticker | Hello MP9"},"4672":{"market_hash_name":"Sticker | Hello MP9 (Gold)"},"4673":{"market_hash_name":"Sticker | Hello P90"},"4674":{"market_hash_name":"Sticker | Hello P90 (Gold)"},"4675":{"market_hash_name":"Sticker | Hello SG 553"},"4676":{"market_hash_name":"Sticker | Hello SG 553 (Gold)"},"4677":{"market_hash_name":"Sticker | Hello UMP-45"},"4678":{"market_hash_name":"Sticker | Hello UMP-45 (Gold)"},"4679":{"market_hash_name":"Sticker | Hello XM1014"},"468":{"market_hash_name":"Sticker | cajunb (Foil) | Cologne 2015"},"4680":{"market_hash_name":"Sticker | Hello XM1014 (Gold)"},"4681":{"market_hash_name":"Sticker | Ancient Beast"},"4682":{"market_hash_name":"Sticker | Ancient Marauder"},"4683":{"market_hash_name":"Sticker | Ancient Protector"},"4684":{"market_hash_name":"Sticker | Badge of Service"},"4685":{"market_hash_name":"Sticker | Battle Scarred"},"4686":{"market_hash_name":"Sticker | Broken Fang"},"4687":{"market_hash_name":"Sticker | Coiled Strike"},"4688":{"market_hash_name":"Sticker | Enemy Spotted"},"4689":{"market_hash_name":"Sticker | Stalking Prey"},"469":{"market_hash_name":"Sticker | cajunb (Gold) | Cologne 2015"},"4690":{"market_hash_name":"Sticker | Stone Scales"},"4691":{"market_hash_name":"Sticker | Battle Scarred (Holo)"},"4692":{"market_hash_name":"Sticker | Broken Fang (Holo)"},"4693":{"market_hash_name":"Sticker | Coiled Strike (Holo)"},"4694":{"market_hash_name":"Sticker | Enemy Spotted (Holo)"},"4695":{"market_hash_name":"Sticker | Ancient Beast (Foil)"},"4696":{"market_hash_name":"Sticker | Stone Scales (Foil)"},"4697":{"market_hash_name":"Patch | Metal The Global Elite","is_patch":true},"4698":{"market_hash_name":"Sticker | Lefty (CT)"},"4699":{"market_hash_name":"Patch | Metal Master Guardian","is_patch":true},"47":{"market_hash_name":"Sticker | Welcome to the Clutch"},"470":{"market_hash_name":"Sticker | NEO | Cologne 2015"},"4700":{"market_hash_name":"Patch | Metal Gold Nova","is_patch":true},"4701":{"market_hash_name":"Sticker | Vitality | 2020 RMR"},"4702":{"market_hash_name":"Sticker | Vitality (Holo) | 2020 RMR"},"4703":{"market_hash_name":"Sticker | Vitality (Foil) | 2020 RMR"},"4704":{"market_hash_name":"Sticker | Vitality (Gold) | 2020 RMR"},"4705":{"market_hash_name":"Sticker | Heroic | 2020 RMR"},"4706":{"market_hash_name":"Sticker | Heroic (Holo) | 2020 RMR"},"4707":{"market_hash_name":"Sticker | Heroic (Foil) | 2020 RMR"},"4708":{"market_hash_name":"Sticker | Heroic (Gold) | 2020 RMR"},"4709":{"market_hash_name":"Sticker | Ninjas in Pyjamas | 2020 RMR"},"471":{"market_hash_name":"Sticker | NEO (Foil) | Cologne 2015"},"4710":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | 2020 RMR"},"4711":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | 2020 RMR"},"4712":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | 2020 RMR"},"4713":{"market_hash_name":"Sticker | Astralis | 2020 RMR"},"4714":{"market_hash_name":"Sticker | Astralis (Holo) | 2020 RMR"},"4715":{"market_hash_name":"Sticker | Astralis (Foil) | 2020 RMR"},"4716":{"market_hash_name":"Sticker | Astralis (Gold) | 2020 RMR"},"4717":{"market_hash_name":"Sticker | BIG | 2020 RMR"},"4718":{"market_hash_name":"Sticker | BIG (Holo) | 2020 RMR"},"4719":{"market_hash_name":"Sticker | BIG (Foil) | 2020 RMR"},"472":{"market_hash_name":"Sticker | NEO (Gold) | Cologne 2015"},"4720":{"market_hash_name":"Sticker | BIG (Gold) | 2020 RMR"},"4721":{"market_hash_name":"Sticker | Fnatic | 2020 RMR"},"4722":{"market_hash_name":"Sticker | Fnatic (Holo) | 2020 RMR"},"4723":{"market_hash_name":"Sticker | Fnatic (Foil) | 2020 RMR"},"4724":{"market_hash_name":"Sticker | Fnatic (Gold) | 2020 RMR"},"4725":{"market_hash_name":"Sticker | G2 | 2020 RMR"},"4726":{"market_hash_name":"Sticker | G2 (Holo) | 2020 RMR"},"4727":{"market_hash_name":"Sticker | G2 (Foil) | 2020 RMR"},"4728":{"market_hash_name":"Sticker | G2 (Gold) | 2020 RMR"},"4729":{"market_hash_name":"Sticker | OG | 2020 RMR"},"473":{"market_hash_name":"Sticker | pashaBiceps | Cologne 2015"},"4730":{"market_hash_name":"Sticker | OG (Holo) | 2020 RMR"},"4731":{"market_hash_name":"Sticker | OG (Foil) | 2020 RMR"},"4732":{"market_hash_name":"Sticker | OG (Gold) | 2020 RMR"},"4733":{"market_hash_name":"Sticker | GODSENT | 2020 RMR"},"4734":{"market_hash_name":"Sticker | GODSENT (Holo) | 2020 RMR"},"4735":{"market_hash_name":"Sticker | GODSENT (Foil) | 2020 RMR"},"4736":{"market_hash_name":"Sticker | GODSENT (Gold) | 2020 RMR"},"4737":{"market_hash_name":"Sticker | FaZe | 2020 RMR"},"4738":{"market_hash_name":"Sticker | FaZe (Holo) | 2020 RMR"},"4739":{"market_hash_name":"Sticker | FaZe (Foil) | 2020 RMR"},"474":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Cologne 2015"},"4740":{"market_hash_name":"Sticker | FaZe (Gold) | 2020 RMR"},"4741":{"market_hash_name":"Sticker | North | 2020 RMR"},"4742":{"market_hash_name":"Sticker | North (Holo) | 2020 RMR"},"4743":{"market_hash_name":"Sticker | North (Foil) | 2020 RMR"},"4744":{"market_hash_name":"Sticker | North (Gold) | 2020 RMR"},"4745":{"market_hash_name":"Sticker | Spirit | 2020 RMR"},"4746":{"market_hash_name":"Sticker | Spirit (Holo) | 2020 RMR"},"4747":{"market_hash_name":"Sticker | Spirit (Foil) | 2020 RMR"},"4748":{"market_hash_name":"Sticker | Spirit (Gold) | 2020 RMR"},"4749":{"market_hash_name":"Sticker | Natus Vincere | 2020 RMR"},"475":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Cologne 2015"},"4750":{"market_hash_name":"Sticker | Natus Vincere (Holo) | 2020 RMR"},"4751":{"market_hash_name":"Sticker | Natus Vincere (Foil) | 2020 RMR"},"4752":{"market_hash_name":"Sticker | Natus Vincere (Gold) | 2020 RMR"},"4753":{"market_hash_name":"Sticker | Nemiga | 2020 RMR"},"4754":{"market_hash_name":"Sticker | Nemiga (Holo) | 2020 RMR"},"4755":{"market_hash_name":"Sticker | Nemiga (Foil) | 2020 RMR"},"4756":{"market_hash_name":"Sticker | Nemiga (Gold) | 2020 RMR"},"4757":{"market_hash_name":"Sticker | Virtus.pro | 2020 RMR"},"4758":{"market_hash_name":"Sticker | Virtus.pro (Holo) | 2020 RMR"},"4759":{"market_hash_name":"Sticker | Virtus.pro (Foil) | 2020 RMR"},"476":{"market_hash_name":"Sticker | TaZ | Cologne 2015"},"4760":{"market_hash_name":"Sticker | Virtus.pro (Gold) | 2020 RMR"},"4761":{"market_hash_name":"Sticker | ESPADA | 2020 RMR"},"4762":{"market_hash_name":"Sticker | ESPADA (Holo) | 2020 RMR"},"4763":{"market_hash_name":"Sticker | ESPADA (Foil) | 2020 RMR"},"4764":{"market_hash_name":"Sticker | ESPADA (Gold) | 2020 RMR"},"4765":{"market_hash_name":"Sticker | Evil Geniuses | 2020 RMR"},"4766":{"market_hash_name":"Sticker | Evil Geniuses (Holo) | 2020 RMR"},"4767":{"market_hash_name":"Sticker | Evil Geniuses (Foil) | 2020 RMR"},"4768":{"market_hash_name":"Sticker | Evil Geniuses (Gold) | 2020 RMR"},"4769":{"market_hash_name":"Sticker | 100 Thieves | 2020 RMR"},"477":{"market_hash_name":"Sticker | TaZ (Foil) | Cologne 2015"},"4770":{"market_hash_name":"Sticker | 100 Thieves (Holo) | 2020 RMR"},"4771":{"market_hash_name":"Sticker | 100 Thieves (Foil) | 2020 RMR"},"4772":{"market_hash_name":"Sticker | 100 Thieves (Gold) | 2020 RMR"},"4773":{"market_hash_name":"Sticker | FURIA | 2020 RMR"},"4774":{"market_hash_name":"Sticker | FURIA (Holo) | 2020 RMR"},"4775":{"market_hash_name":"Sticker | FURIA (Foil) | 2020 RMR"},"4776":{"market_hash_name":"Sticker | FURIA (Gold) | 2020 RMR"},"4777":{"market_hash_name":"Sticker | Liquid | 2020 RMR"},"4778":{"market_hash_name":"Sticker | Liquid (Holo) | 2020 RMR"},"4779":{"market_hash_name":"Sticker | Liquid (Foil) | 2020 RMR"},"478":{"market_hash_name":"Sticker | TaZ (Gold) | Cologne 2015"},"4780":{"market_hash_name":"Sticker | Liquid (Gold) | 2020 RMR"},"4781":{"market_hash_name":"Sticker | Gen.G | 2020 RMR"},"4782":{"market_hash_name":"Sticker | Gen.G (Holo) | 2020 RMR"},"4783":{"market_hash_name":"Sticker | Gen.G (Foil) | 2020 RMR"},"4784":{"market_hash_name":"Sticker | Gen.G (Gold) | 2020 RMR"},"4785":{"market_hash_name":"Sticker | Boom | 2020 RMR"},"4786":{"market_hash_name":"Sticker | Boom (Holo) | 2020 RMR"},"4787":{"market_hash_name":"Sticker | Boom (Foil) | 2020 RMR"},"4788":{"market_hash_name":"Sticker | Boom (Gold) | 2020 RMR"},"4789":{"market_hash_name":"Sticker | Renegades | 2020 RMR"},"479":{"market_hash_name":"Sticker | Snax | Cologne 2015"},"4790":{"market_hash_name":"Sticker | Renegades (Holo) | 2020 RMR"},"4791":{"market_hash_name":"Sticker | Renegades (Foil) | 2020 RMR"},"4792":{"market_hash_name":"Sticker | Renegades (Gold) | 2020 RMR"},"4793":{"market_hash_name":"Sticker | TYLOO | 2020 RMR"},"4794":{"market_hash_name":"Sticker | TYLOO (Holo) | 2020 RMR"},"4795":{"market_hash_name":"Sticker | TYLOO (Foil) | 2020 RMR"},"4796":{"market_hash_name":"Sticker | TYLOO (Gold) | 2020 RMR"},"4797":{"market_hash_name":"Sticker | Poorly Drawn Ava"},"4798":{"market_hash_name":"Sticker | Poorly Drawn Balkan"},"4799":{"market_hash_name":"Sticker | Poorly Drawn Bloody Darryl"},"48":{"market_hash_name":"Sticker | 3DMAX | Katowice 2014"},"480":{"market_hash_name":"Sticker | Snax (Foil) | Cologne 2015"},"4800":{"market_hash_name":"Sticker | Poorly Drawn Chicken"},"4801":{"market_hash_name":"Sticker | Poorly Drawn FBI"},"4802":{"market_hash_name":"Sticker | Poorly Drawn IDF"},"4803":{"market_hash_name":"Sticker | Poorly Drawn Leet Crew"},"4804":{"market_hash_name":"Sticker | Poorly Drawn Number K"},"4805":{"market_hash_name":"Sticker | Poorly Drawn SAS"},"4806":{"market_hash_name":"Sticker | Poorly Drawn Terrorist"},"4807":{"market_hash_name":"Sticker | Poorly Drawn Ava (Holo)"},"4808":{"market_hash_name":"Sticker | Poorly Drawn Balkan (Holo)"},"4809":{"market_hash_name":"Sticker | Poorly Drawn Bloody Darryl (Holo)"},"481":{"market_hash_name":"Sticker | Snax (Gold) | Cologne 2015"},"4810":{"market_hash_name":"Sticker | Poorly Drawn Chicken (Holo)"},"4811":{"market_hash_name":"Sticker | Poorly Drawn FBI (Holo)"},"4812":{"market_hash_name":"Sticker | Poorly Drawn IDF (Holo)"},"4813":{"market_hash_name":"Sticker | Poorly Drawn Leet Crew (Holo)"},"4814":{"market_hash_name":"Sticker | Poorly Drawn Number K (Holo)"},"4815":{"market_hash_name":"Sticker | Poorly Drawn SAS (Holo)"},"4816":{"market_hash_name":"Sticker | Poorly Drawn Terrorist (Holo)"},"4817":{"market_hash_name":"Sticker | Orange Gnar"},"4818":{"market_hash_name":"Sticker | Blue Gnar"},"4819":{"market_hash_name":"Sticker | Green Gnar"},"482":{"market_hash_name":"Sticker | byali | Cologne 2015"},"4820":{"market_hash_name":"Sticker | Purple Gnar"},"4821":{"market_hash_name":"Sticker | Yellow Jaggyfish"},"4822":{"market_hash_name":"Sticker | Pink Jaggyfish"},"4823":{"market_hash_name":"Sticker | Purple Jaggyfish"},"4824":{"market_hash_name":"Sticker | Black Jaggyfish"},"4825":{"market_hash_name":"Sticker | Blue Lethal"},"4826":{"market_hash_name":"Sticker | Green Lethal"},"4827":{"market_hash_name":"Sticker | Fade Lethal"},"4828":{"market_hash_name":"Sticker | Yellow Lethal"},"4829":{"market_hash_name":"Sticker | Green Shark Shooter"},"483":{"market_hash_name":"Sticker | byali (Foil) | Cologne 2015"},"4830":{"market_hash_name":"Sticker | Black Shark Shooter"},"4831":{"market_hash_name":"Sticker | Blue Shark Shooter"},"4832":{"market_hash_name":"Sticker | Red Shark Shooter"},"4833":{"market_hash_name":"Sticker | Green Cyclawps"},"4834":{"market_hash_name":"Sticker | Red Cyclawps"},"4835":{"market_hash_name":"Sticker | Purple Cyclawps"},"4836":{"market_hash_name":"Sticker | Yellow Cyclawps"},"4837":{"market_hash_name":"Sticker | Purple Bombster"},"4838":{"market_hash_name":"Sticker | White Bombster"},"4839":{"market_hash_name":"Sticker | Green Bombster"},"484":{"market_hash_name":"Sticker | byali (Gold) | Cologne 2015"},"4840":{"market_hash_name":"Sticker | Yellow Bombster"},"4841":{"market_hash_name":"Sticker | Watermelon Tentaskull"},"4842":{"market_hash_name":"Sticker | Blood Moon Tentaskull"},"4843":{"market_hash_name":"Sticker | Sunset Ocean Tentaskull"},"4844":{"market_hash_name":"Sticker | Toxic Tentaskull"},"4845":{"market_hash_name":"Sticker | Watermelon Stabbyfish"},"4846":{"market_hash_name":"Sticker | Miami Stabbyfish"},"4847":{"market_hash_name":"Sticker | After Hours Stabbyfish"},"4848":{"market_hash_name":"Sticker | Ocean Sunset Stabbyfish"},"4849":{"market_hash_name":"Sticker | Miami Wave Rider"},"485":{"market_hash_name":"Sticker | chrisJ | Cologne 2015"},"4850":{"market_hash_name":"Sticker | Blood Moon Wave Rider"},"4851":{"market_hash_name":"Sticker | Toxic Wave Rider"},"4852":{"market_hash_name":"Sticker | Fools Gold Wave Rider"},"4853":{"market_hash_name":"Sticker | Candy Buttery (Holo)"},"4854":{"market_hash_name":"Sticker | Flame Buttery (Holo)"},"4855":{"market_hash_name":"Sticker | Watermelon Buttery (Holo)"},"4856":{"market_hash_name":"Sticker | Miami Buttery (Holo)"},"4857":{"market_hash_name":"Sticker | Opal Flick (Holo)"},"4858":{"market_hash_name":"Sticker | Ocean Sunset Flick (Holo)"},"4859":{"market_hash_name":"Sticker | Mercury Flick (Holo)"},"486":{"market_hash_name":"Sticker | chrisJ (Foil) | Cologne 2015"},"4860":{"market_hash_name":"Sticker | Miami Flick (Holo)"},"4861":{"market_hash_name":"Sticker | Watermelon Flow (Holo)"},"4862":{"market_hash_name":"Sticker | Toxic Flow (Holo)"},"4863":{"market_hash_name":"Sticker | Cotton Candy Flow (Holo)"},"4864":{"market_hash_name":"Sticker | Miami Flow (Holo)"},"4865":{"market_hash_name":"Sticker | Miami Skill Surf (Holo)"},"4866":{"market_hash_name":"Sticker | Ocean Sunset Skill Surf (Holo)"},"4867":{"market_hash_name":"Sticker | Coral Skill Surf (Holo)"},"4868":{"market_hash_name":"Sticker | Bubble Gum Skill Surf (Holo)"},"4869":{"market_hash_name":"Sticker | Abalone Strafe (Holo)"},"487":{"market_hash_name":"Sticker | chrisJ (Gold) | Cologne 2015"},"4870":{"market_hash_name":"Sticker | Watermelon Strafe (Holo)"},"4871":{"market_hash_name":"Sticker | Mood Ring Strafe (Holo)"},"4872":{"market_hash_name":"Sticker | Neon Opal Strafe (Holo)"},"4873":{"market_hash_name":"Sticker | Flame Tier6 (Holo)"},"4874":{"market_hash_name":"Sticker | Watermelon Tier6 (Holo)"},"4875":{"market_hash_name":"Sticker | Miami Tier6 (Holo)"},"4876":{"market_hash_name":"Sticker | Forge Tier6 (Holo)"},"4877":{"market_hash_name":"Sticker | Sticker Bomb Surf Ava (Foil)"},"4878":{"market_hash_name":"Sticker | Dragon Lore Surf Ava (Foil)"},"4879":{"market_hash_name":"Sticker | Akihabara Accept Surf Ava (Foil)"},"488":{"market_hash_name":"Sticker | gob b | Cologne 2015"},"4880":{"market_hash_name":"Sticker | Dark Water Surf Ava (Foil)"},"4881":{"market_hash_name":"Sticker | Ultraviolet Poison Frog (Foil)"},"4882":{"market_hash_name":"Sticker | Clutch Or Kick"},"4883":{"market_hash_name":"Sticker | Dr. Dazzles"},"4884":{"market_hash_name":"Sticker | EZ"},"4885":{"market_hash_name":"Sticker | Fast Banana"},"4886":{"market_hash_name":"Sticker | Hard Carry"},"4887":{"market_hash_name":"Sticker | Kitted Out"},"4888":{"market_hash_name":"Sticker | Nademan"},"4889":{"market_hash_name":"Sticker | No Time"},"489":{"market_hash_name":"Sticker | gob b (Foil) | Cologne 2015"},"4890":{"market_hash_name":"Sticker | Retro Leet"},"4891":{"market_hash_name":"Sticker | Speedy T"},"4892":{"market_hash_name":"Sticker | This Is Fine (CT)"},"4893":{"market_hash_name":"Sticker | War"},"4894":{"market_hash_name":"Sticker | Cyber Romanov (Holo)"},"4895":{"market_hash_name":"Sticker | Eye Contact (Holo)"},"4896":{"market_hash_name":"Sticker | Handle With Care (Holo)"},"4897":{"market_hash_name":"Sticker | I See You (Holo)"},"4898":{"market_hash_name":"Sticker | Nice Clutch (Holo)"},"4899":{"market_hash_name":"Sticker | Runtime (Holo)"},"49":{"market_hash_name":"Sticker | 3DMAX (Holo) | Katowice 2014"},"490":{"market_hash_name":"Sticker | gob b (Gold) | Cologne 2015"},"4900":{"market_hash_name":"Sticker | Ace Devil (Foil)"},"4901":{"market_hash_name":"Sticker | Bullet Hell (Foil)"},"4902":{"market_hash_name":"Sticker | Purrurists (Foil)"},"4903":{"market_hash_name":"Sticker | Battlefield Portal"},"4904":{"market_hash_name":"Sticker | BF 2042"},"4905":{"market_hash_name":"Sticker | Come Here Boy"},"4906":{"market_hash_name":"Sticker | Forty Two"},"4907":{"market_hash_name":"Sticker | Knives Out"},"4908":{"market_hash_name":"Sticker | Mr. Chompy"},"4909":{"market_hash_name":"Sticker | No Pats"},"491":{"market_hash_name":"Sticker | denis | Cologne 2015"},"4910":{"market_hash_name":"Sticker | PAC AI"},"4911":{"market_hash_name":"Sticker | PTFO"},"4912":{"market_hash_name":"Sticker | Ready For Battle"},"4913":{"market_hash_name":"Sticker | No Pats (Holo)"},"4914":{"market_hash_name":"Sticker | PTFO (Holo)"},"4915":{"market_hash_name":"Sticker | Ready For Battle (Holo)"},"4916":{"market_hash_name":"Sticker | Wingsuit (Holo)"},"4917":{"market_hash_name":"Sticker | Mr. Chompy (Foil)"},"4918":{"market_hash_name":"Sticker | PAC AI (Foil)"},"4919":{"market_hash_name":"Sticker | Tornado Chaos (Foil)"},"492":{"market_hash_name":"Sticker | denis (Foil) | Cologne 2015"},"4920":{"market_hash_name":"Sticker | Lore Poison Frog (Foil)"},"4921":{"market_hash_name":"Sticker | Crimson Web Poison Frog (Foil)"},"4922":{"market_hash_name":"Sticker | Doppler Poison Frog (Foil)"},"4923":{"market_hash_name":"Sticker | Seeing Red"},"4924":{"market_hash_name":"Sticker | Dead Eye"},"4925":{"market_hash_name":"Sticker | Great Wave"},"4926":{"market_hash_name":"Sticker | Gutted"},"4927":{"market_hash_name":"Sticker | Kill Count"},"4928":{"market_hash_name":"Sticker | Operation Riptide"},"4929":{"market_hash_name":"Sticker | Liquid Fire"},"493":{"market_hash_name":"Sticker | denis (Gold) | Cologne 2015"},"4930":{"market_hash_name":"Sticker | Chicken of the Sky"},"4931":{"market_hash_name":"Sticker | Dead Eye (Holo)"},"4932":{"market_hash_name":"Sticker | Great Wave (Holo)"},"4933":{"market_hash_name":"Sticker | Kill Count (Holo)"},"4934":{"market_hash_name":"Sticker | Liquid Fire (Holo)"},"4935":{"market_hash_name":"Sticker | Seeing Red (Foil)"},"4936":{"market_hash_name":"Sticker | Great Wave (Foil)"},"4937":{"market_hash_name":"Patch | Abandon Hope","is_patch":true},"4938":{"market_hash_name":"Patch | Anchors Aweigh","is_patch":true},"4939":{"market_hash_name":"Patch | Cruising Ray","is_patch":true},"494":{"market_hash_name":"Sticker | nex | Cologne 2015"},"4940":{"market_hash_name":"Patch | Bayonet Frog","is_patch":true},"4941":{"market_hash_name":"Patch | Mad Sushi","is_patch":true},"4942":{"market_hash_name":"Patch | Giant Squid","is_patch":true},"4943":{"market_hash_name":"Patch | El Pirata","is_patch":true},"4944":{"market_hash_name":"Patch | Death From Below","is_patch":true},"4945":{"market_hash_name":"Patch | Dead Men","is_patch":true},"4946":{"market_hash_name":"Patch | Sunset Wave","is_patch":true},"4947":{"market_hash_name":"Patch | Aquatic Offensive","is_patch":true},"4948":{"market_hash_name":"Patch | Elder God","is_patch":true},"4949":{"market_hash_name":"Patch | Meal Time","is_patch":true},"495":{"market_hash_name":"Sticker | nex (Foil) | Cologne 2015"},"4950":{"market_hash_name":"Sticker | Sticker Bomb Surf K (Foil)"},"4951":{"market_hash_name":"Sticker | Hypnotic Surf K (Foil)"},"4952":{"market_hash_name":"Sticker | Fire Serpent Surf K (Foil)"},"4953":{"market_hash_name":"Sticker | Blaze Surf K (Foil)"},"4954":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Stockholm 2021"},"4955":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Stockholm 2021"},"4956":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Stockholm 2021"},"4957":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Stockholm 2021"},"4958":{"market_hash_name":"Sticker | FURIA | Stockholm 2021"},"4959":{"market_hash_name":"Sticker | FURIA (Holo) | Stockholm 2021"},"496":{"market_hash_name":"Sticker | nex (Gold) | Cologne 2015"},"4960":{"market_hash_name":"Sticker | FURIA (Foil) | Stockholm 2021"},"4961":{"market_hash_name":"Sticker | FURIA (Gold) | Stockholm 2021"},"4962":{"market_hash_name":"Sticker | Natus Vincere | Stockholm 2021"},"4963":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Stockholm 2021"},"4964":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Stockholm 2021"},"4965":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Stockholm 2021"},"4966":{"market_hash_name":"Sticker | Vitality | Stockholm 2021"},"4967":{"market_hash_name":"Sticker | Vitality (Holo) | Stockholm 2021"},"4968":{"market_hash_name":"Sticker | Vitality (Foil) | Stockholm 2021"},"4969":{"market_hash_name":"Sticker | Vitality (Gold) | Stockholm 2021"},"497":{"market_hash_name":"Sticker | Spiidi | Cologne 2015"},"4970":{"market_hash_name":"Sticker | Team Liquid | Stockholm 2021"},"4971":{"market_hash_name":"Sticker | Team Liquid (Holo) | Stockholm 2021"},"4972":{"market_hash_name":"Sticker | Team Liquid (Foil) | Stockholm 2021"},"4973":{"market_hash_name":"Sticker | Team Liquid (Gold) | Stockholm 2021"},"4974":{"market_hash_name":"Sticker | Gambit Gaming | Stockholm 2021"},"4975":{"market_hash_name":"Sticker | Gambit Gaming (Holo) | Stockholm 2021"},"4976":{"market_hash_name":"Sticker | Gambit Gaming (Foil) | Stockholm 2021"},"4977":{"market_hash_name":"Sticker | Gambit Gaming (Gold) | Stockholm 2021"},"4978":{"market_hash_name":"Sticker | G2 Esports | Stockholm 2021"},"4979":{"market_hash_name":"Sticker | G2 Esports (Holo) | Stockholm 2021"},"498":{"market_hash_name":"Sticker | Spiidi (Foil) | Cologne 2015"},"4980":{"market_hash_name":"Sticker | G2 Esports (Foil) | Stockholm 2021"},"4981":{"market_hash_name":"Sticker | G2 Esports (Gold) | Stockholm 2021"},"4982":{"market_hash_name":"Sticker | Evil Geniuses | Stockholm 2021"},"4983":{"market_hash_name":"Sticker | Evil Geniuses (Holo) | Stockholm 2021"},"4984":{"market_hash_name":"Sticker | Evil Geniuses (Foil) | Stockholm 2021"},"4985":{"market_hash_name":"Sticker | Evil Geniuses (Gold) | Stockholm 2021"},"4986":{"market_hash_name":"Sticker | Team Spirit | Stockholm 2021"},"4987":{"market_hash_name":"Sticker | Team Spirit (Holo) | Stockholm 2021"},"4988":{"market_hash_name":"Sticker | Team Spirit (Foil) | Stockholm 2021"},"4989":{"market_hash_name":"Sticker | Team Spirit (Gold) | Stockholm 2021"},"499":{"market_hash_name":"Sticker | Spiidi (Gold) | Cologne 2015"},"4990":{"market_hash_name":"Sticker | Astralis | Stockholm 2021"},"4991":{"market_hash_name":"Sticker | Astralis (Holo) | Stockholm 2021"},"4992":{"market_hash_name":"Sticker | Astralis (Foil) | Stockholm 2021"},"4993":{"market_hash_name":"Sticker | Astralis (Gold) | Stockholm 2021"},"4994":{"market_hash_name":"Sticker | paiN Gaming | Stockholm 2021"},"4995":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Stockholm 2021"},"4996":{"market_hash_name":"Sticker | paiN Gaming (Foil) | Stockholm 2021"},"4997":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Stockholm 2021"},"4998":{"market_hash_name":"Sticker | ENCE | Stockholm 2021"},"4999":{"market_hash_name":"Sticker | ENCE (Holo) | Stockholm 2021"},"5":{"market_hash_name":"Sticker | Blue Snowflake"},"50":{"market_hash_name":"Sticker | compLexity Gaming | Katowice 2014"},"500":{"market_hash_name":"Sticker | AZR | Cologne 2015"},"5000":{"market_hash_name":"Sticker | ENCE (Foil) | Stockholm 2021"},"5001":{"market_hash_name":"Sticker | ENCE (Gold) | Stockholm 2021"},"5002":{"market_hash_name":"Sticker | BIG | Stockholm 2021"},"5003":{"market_hash_name":"Sticker | BIG (Holo) | Stockholm 2021"},"5004":{"market_hash_name":"Sticker | BIG (Foil) | Stockholm 2021"},"5005":{"market_hash_name":"Sticker | BIG (Gold) | Stockholm 2021"},"5006":{"market_hash_name":"Sticker | Movistar Riders | Stockholm 2021"},"5007":{"market_hash_name":"Sticker | Movistar Riders (Holo) | Stockholm 2021"},"5008":{"market_hash_name":"Sticker | Movistar Riders (Foil) | Stockholm 2021"},"5009":{"market_hash_name":"Sticker | Movistar Riders (Gold) | Stockholm 2021"},"501":{"market_hash_name":"Sticker | AZR (Foil) | Cologne 2015"},"5010":{"market_hash_name":"Sticker | Heroic | Stockholm 2021"},"5011":{"market_hash_name":"Sticker | Heroic (Holo) | Stockholm 2021"},"5012":{"market_hash_name":"Sticker | Heroic (Foil) | Stockholm 2021"},"5013":{"market_hash_name":"Sticker | Heroic (Gold) | Stockholm 2021"},"5014":{"market_hash_name":"Sticker | MOUZ | Stockholm 2021"},"5015":{"market_hash_name":"Sticker | MOUZ (Holo) | Stockholm 2021"},"5016":{"market_hash_name":"Sticker | MOUZ (Foil) | Stockholm 2021"},"5017":{"market_hash_name":"Sticker | MOUZ (Gold) | Stockholm 2021"},"5018":{"market_hash_name":"Sticker | Sharks Esports | Stockholm 2021"},"5019":{"market_hash_name":"Sticker | Sharks Esports (Holo) | Stockholm 2021"},"502":{"market_hash_name":"Sticker | AZR (Gold) | Cologne 2015"},"5020":{"market_hash_name":"Sticker | Sharks Esports (Foil) | Stockholm 2021"},"5021":{"market_hash_name":"Sticker | Sharks Esports (Gold) | Stockholm 2021"},"5022":{"market_hash_name":"Sticker | Tyloo | Stockholm 2021"},"5023":{"market_hash_name":"Sticker | Tyloo (Holo) | Stockholm 2021"},"5024":{"market_hash_name":"Sticker | Tyloo (Foil) | Stockholm 2021"},"5025":{"market_hash_name":"Sticker | Tyloo (Gold) | Stockholm 2021"},"5026":{"market_hash_name":"Sticker | Renegades | Stockholm 2021"},"5027":{"market_hash_name":"Sticker | Renegades (Holo) | Stockholm 2021"},"5028":{"market_hash_name":"Sticker | Renegades (Foil) | Stockholm 2021"},"5029":{"market_hash_name":"Sticker | Renegades (Gold) | Stockholm 2021"},"503":{"market_hash_name":"Sticker | Havoc | Cologne 2015"},"5030":{"market_hash_name":"Sticker | Entropiq | Stockholm 2021"},"5031":{"market_hash_name":"Sticker | Entropiq (Holo) | Stockholm 2021"},"5032":{"market_hash_name":"Sticker | Entropiq (Foil) | Stockholm 2021"},"5033":{"market_hash_name":"Sticker | Entropiq (Gold) | Stockholm 2021"},"5034":{"market_hash_name":"Sticker | GODSENT | Stockholm 2021"},"5035":{"market_hash_name":"Sticker | GODSENT (Holo) | Stockholm 2021"},"5036":{"market_hash_name":"Sticker | GODSENT (Foil) | Stockholm 2021"},"5037":{"market_hash_name":"Sticker | GODSENT (Gold) | Stockholm 2021"},"5038":{"market_hash_name":"Sticker | Virtus.Pro | Stockholm 2021"},"5039":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Stockholm 2021"},"504":{"market_hash_name":"Sticker | Havoc (Foil) | Cologne 2015"},"5040":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Stockholm 2021"},"5041":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Stockholm 2021"},"5042":{"market_hash_name":"Sticker | Copenhagen Flames | Stockholm 2021"},"5043":{"market_hash_name":"Sticker | Copenhagen Flames (Holo) | Stockholm 2021"},"5044":{"market_hash_name":"Sticker | Copenhagen Flames (Foil) | Stockholm 2021"},"5045":{"market_hash_name":"Sticker | Copenhagen Flames (Gold) | Stockholm 2021"},"5046":{"market_hash_name":"Sticker | FaZe Clan | Stockholm 2021"},"5047":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Stockholm 2021"},"5048":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Stockholm 2021"},"5049":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Stockholm 2021"},"505":{"market_hash_name":"Sticker | Havoc (Gold) | Cologne 2015"},"5050":{"market_hash_name":"Sticker | PGL | Stockholm 2021"},"5051":{"market_hash_name":"Sticker | PGL (Holo) | Stockholm 2021"},"5052":{"market_hash_name":"Sticker | PGL (Foil) | Stockholm 2021"},"5053":{"market_hash_name":"Sticker | PGL (Gold) | Stockholm 2021"},"506":{"market_hash_name":"Sticker | jks | Cologne 2015"},"507":{"market_hash_name":"Sticker | jks (Foil) | Cologne 2015"},"5079":{"market_hash_name":"Patch | Ninjas in Pyjamas | Stockholm 2021","is_patch":true},"508":{"market_hash_name":"Sticker | jks (Gold) | Cologne 2015"},"5080":{"market_hash_name":"Patch | Ninjas in Pyjamas (Gold) | Stockholm 2021","is_patch":true},"5081":{"market_hash_name":"Patch | FURIA | Stockholm 2021","is_patch":true},"5082":{"market_hash_name":"Patch | FURIA (Gold) | Stockholm 2021","is_patch":true},"5083":{"market_hash_name":"Patch | Natus Vincere | Stockholm 2021","is_patch":true},"5084":{"market_hash_name":"Patch | Natus Vincere (Gold) | Stockholm 2021","is_patch":true},"5085":{"market_hash_name":"Patch | Vitality | Stockholm 2021","is_patch":true},"5086":{"market_hash_name":"Patch | Vitality (Gold) | Stockholm 2021","is_patch":true},"5087":{"market_hash_name":"Patch | Team Liquid | Stockholm 2021","is_patch":true},"5088":{"market_hash_name":"Patch | Team Liquid (Gold) | Stockholm 2021","is_patch":true},"5089":{"market_hash_name":"Patch | Gambit Gaming | Stockholm 2021","is_patch":true},"509":{"market_hash_name":"Sticker | SPUNJ | Cologne 2015"},"5090":{"market_hash_name":"Patch | Gambit Gaming (Gold) | Stockholm 2021","is_patch":true},"5091":{"market_hash_name":"Patch | G2 Esports | Stockholm 2021","is_patch":true},"5092":{"market_hash_name":"Patch | G2 Esports (Gold) | Stockholm 2021","is_patch":true},"5093":{"market_hash_name":"Patch | Evil Geniuses | Stockholm 2021","is_patch":true},"5094":{"market_hash_name":"Patch | Evil Geniuses (Gold) | Stockholm 2021","is_patch":true},"5095":{"market_hash_name":"Patch | Team Spirit | Stockholm 2021","is_patch":true},"5096":{"market_hash_name":"Patch | Team Spirit (Gold) | Stockholm 2021","is_patch":true},"5097":{"market_hash_name":"Patch | Astralis | Stockholm 2021","is_patch":true},"5098":{"market_hash_name":"Patch | Astralis (Gold) | Stockholm 2021","is_patch":true},"5099":{"market_hash_name":"Patch | paiN Gaming | Stockholm 2021","is_patch":true},"51":{"market_hash_name":"Sticker | compLexity Gaming (Holo) | Katowice 2014"},"510":{"market_hash_name":"Sticker | SPUNJ (Foil) | Cologne 2015"},"5100":{"market_hash_name":"Patch | paiN Gaming (Gold) | Stockholm 2021","is_patch":true},"5101":{"market_hash_name":"Patch | ENCE | Stockholm 2021","is_patch":true},"5102":{"market_hash_name":"Patch | ENCE (Gold) | Stockholm 2021","is_patch":true},"5103":{"market_hash_name":"Patch | BIG | Stockholm 2021","is_patch":true},"5104":{"market_hash_name":"Patch | BIG (Gold) | Stockholm 2021","is_patch":true},"5105":{"market_hash_name":"Patch | Movistar Riders | Stockholm 2021","is_patch":true},"5106":{"market_hash_name":"Patch | Movistar Riders (Gold) | Stockholm 2021","is_patch":true},"5107":{"market_hash_name":"Patch | Heroic | Stockholm 2021","is_patch":true},"5108":{"market_hash_name":"Patch | Heroic (Gold) | Stockholm 2021","is_patch":true},"5109":{"market_hash_name":"Patch | MOUZ | Stockholm 2021","is_patch":true},"511":{"market_hash_name":"Sticker | SPUNJ (Gold) | Cologne 2015"},"5110":{"market_hash_name":"Patch | MOUZ (Gold) | Stockholm 2021","is_patch":true},"5111":{"market_hash_name":"Patch | Sharks Esports | Stockholm 2021","is_patch":true},"5112":{"market_hash_name":"Patch | Sharks Esports (Gold) | Stockholm 2021","is_patch":true},"5113":{"market_hash_name":"Patch | Tyloo | Stockholm 2021","is_patch":true},"5114":{"market_hash_name":"Patch | Tyloo (Gold) | Stockholm 2021","is_patch":true},"5115":{"market_hash_name":"Patch | Renegades | Stockholm 2021","is_patch":true},"5116":{"market_hash_name":"Patch | Renegades (Gold) | Stockholm 2021","is_patch":true},"5117":{"market_hash_name":"Patch | Entropiq | Stockholm 2021","is_patch":true},"5118":{"market_hash_name":"Patch | Entropiq (Gold) | Stockholm 2021","is_patch":true},"5119":{"market_hash_name":"Patch | GODSENT | Stockholm 2021","is_patch":true},"512":{"market_hash_name":"Sticker | yam | Cologne 2015"},"5120":{"market_hash_name":"Patch | GODSENT (Gold) | Stockholm 2021","is_patch":true},"5121":{"market_hash_name":"Patch | Virtus.Pro | Stockholm 2021","is_patch":true},"5122":{"market_hash_name":"Patch | Virtus.Pro (Gold) | Stockholm 2021","is_patch":true},"5123":{"market_hash_name":"Patch | Copenhagen Flames | Stockholm 2021","is_patch":true},"5124":{"market_hash_name":"Patch | Copenhagen Flames (Gold) | Stockholm 2021","is_patch":true},"5125":{"market_hash_name":"Patch | FaZe Clan | Stockholm 2021","is_patch":true},"5126":{"market_hash_name":"Patch | FaZe Clan (Gold) | Stockholm 2021","is_patch":true},"5127":{"market_hash_name":"Patch | PGL | Stockholm 2021","is_patch":true},"5128":{"market_hash_name":"Patch | PGL (Gold) | Stockholm 2021","is_patch":true},"5129":{"market_hash_name":"Sticker | s1mple | Stockholm 2021"},"513":{"market_hash_name":"Sticker | yam (Foil) | Cologne 2015"},"5130":{"market_hash_name":"Sticker | s1mple (Holo) | Stockholm 2021"},"5131":{"market_hash_name":"Sticker | s1mple (Gold) | Stockholm 2021"},"5132":{"market_hash_name":"Sticker | Perfecto | Stockholm 2021"},"5133":{"market_hash_name":"Sticker | Perfecto (Holo) | Stockholm 2021"},"5134":{"market_hash_name":"Sticker | Perfecto (Gold) | Stockholm 2021"},"5135":{"market_hash_name":"Sticker | Boombl4 | Stockholm 2021"},"5136":{"market_hash_name":"Sticker | Boombl4 (Holo) | Stockholm 2021"},"5137":{"market_hash_name":"Sticker | Boombl4 (Gold) | Stockholm 2021"},"5138":{"market_hash_name":"Sticker | b1t | Stockholm 2021"},"5139":{"market_hash_name":"Sticker | b1t (Holo) | Stockholm 2021"},"514":{"market_hash_name":"Sticker | yam (Gold) | Cologne 2015"},"5140":{"market_hash_name":"Sticker | b1t (Gold) | Stockholm 2021"},"5141":{"market_hash_name":"Sticker | electroNic | Stockholm 2021"},"5142":{"market_hash_name":"Sticker | electroNic (Holo) | Stockholm 2021"},"5143":{"market_hash_name":"Sticker | electroNic (Gold) | Stockholm 2021"},"5144":{"market_hash_name":"Sticker | NiKo | Stockholm 2021"},"5145":{"market_hash_name":"Sticker | NiKo (Holo) | Stockholm 2021"},"5146":{"market_hash_name":"Sticker | NiKo (Gold) | Stockholm 2021"},"5147":{"market_hash_name":"Sticker | nexa | Stockholm 2021"},"5148":{"market_hash_name":"Sticker | nexa (Holo) | Stockholm 2021"},"5149":{"market_hash_name":"Sticker | nexa (Gold) | Stockholm 2021"},"515":{"market_hash_name":"Sticker | USTILO | Cologne 2015"},"5150":{"market_hash_name":"Sticker | huNter- | Stockholm 2021"},"5151":{"market_hash_name":"Sticker | huNter- (Holo) | Stockholm 2021"},"5152":{"market_hash_name":"Sticker | huNter- (Gold) | Stockholm 2021"},"5153":{"market_hash_name":"Sticker | JACKZ | Stockholm 2021"},"5154":{"market_hash_name":"Sticker | JACKZ (Holo) | Stockholm 2021"},"5155":{"market_hash_name":"Sticker | JACKZ (Gold) | Stockholm 2021"},"5156":{"market_hash_name":"Sticker | AMANEK | Stockholm 2021"},"5157":{"market_hash_name":"Sticker | AMANEK (Holo) | Stockholm 2021"},"5158":{"market_hash_name":"Sticker | AMANEK (Gold) | Stockholm 2021"},"5159":{"market_hash_name":"Sticker | TeSeS | Stockholm 2021"},"516":{"market_hash_name":"Sticker | USTILO (Foil) | Cologne 2015"},"5160":{"market_hash_name":"Sticker | TeSeS (Holo) | Stockholm 2021"},"5161":{"market_hash_name":"Sticker | TeSeS (Gold) | Stockholm 2021"},"5162":{"market_hash_name":"Sticker | stavn | Stockholm 2021"},"5163":{"market_hash_name":"Sticker | stavn (Holo) | Stockholm 2021"},"5164":{"market_hash_name":"Sticker | stavn (Gold) | Stockholm 2021"},"5165":{"market_hash_name":"Sticker | sjuush | Stockholm 2021"},"5166":{"market_hash_name":"Sticker | sjuush (Holo) | Stockholm 2021"},"5167":{"market_hash_name":"Sticker | sjuush (Gold) | Stockholm 2021"},"5168":{"market_hash_name":"Sticker | refrezh | Stockholm 2021"},"5169":{"market_hash_name":"Sticker | refrezh (Holo) | Stockholm 2021"},"517":{"market_hash_name":"Sticker | USTILO (Gold) | Cologne 2015"},"5170":{"market_hash_name":"Sticker | refrezh (Gold) | Stockholm 2021"},"5171":{"market_hash_name":"Sticker | cadiaN | Stockholm 2021"},"5172":{"market_hash_name":"Sticker | cadiaN (Holo) | Stockholm 2021"},"5173":{"market_hash_name":"Sticker | cadiaN (Gold) | Stockholm 2021"},"5174":{"market_hash_name":"Sticker | nafany | Stockholm 2021"},"5175":{"market_hash_name":"Sticker | nafany (Holo) | Stockholm 2021"},"5176":{"market_hash_name":"Sticker | nafany (Gold) | Stockholm 2021"},"5177":{"market_hash_name":"Sticker | Ax1Le | Stockholm 2021"},"5178":{"market_hash_name":"Sticker | Ax1Le (Holo) | Stockholm 2021"},"5179":{"market_hash_name":"Sticker | Ax1Le (Gold) | Stockholm 2021"},"518":{"market_hash_name":"Sticker | Rickeh | Cologne 2015"},"5180":{"market_hash_name":"Sticker | interz | Stockholm 2021"},"5181":{"market_hash_name":"Sticker | interz (Holo) | Stockholm 2021"},"5182":{"market_hash_name":"Sticker | interz (Gold) | Stockholm 2021"},"5183":{"market_hash_name":"Sticker | sh1ro | Stockholm 2021"},"5184":{"market_hash_name":"Sticker | sh1ro (Holo) | Stockholm 2021"},"5185":{"market_hash_name":"Sticker | sh1ro (Gold) | Stockholm 2021"},"5186":{"market_hash_name":"Sticker | HObbit | Stockholm 2021"},"5187":{"market_hash_name":"Sticker | HObbit (Holo) | Stockholm 2021"},"5188":{"market_hash_name":"Sticker | HObbit (Gold) | Stockholm 2021"},"5189":{"market_hash_name":"Sticker | drop | Stockholm 2021"},"519":{"market_hash_name":"Sticker | Rickeh (Foil) | Cologne 2015"},"5190":{"market_hash_name":"Sticker | drop (Holo) | Stockholm 2021"},"5191":{"market_hash_name":"Sticker | drop (Gold) | Stockholm 2021"},"5192":{"market_hash_name":"Sticker | KSCERATO | Stockholm 2021"},"5193":{"market_hash_name":"Sticker | KSCERATO (Holo) | Stockholm 2021"},"5194":{"market_hash_name":"Sticker | KSCERATO (Gold) | Stockholm 2021"},"5195":{"market_hash_name":"Sticker | VINI | Stockholm 2021"},"5196":{"market_hash_name":"Sticker | VINI (Holo) | Stockholm 2021"},"5197":{"market_hash_name":"Sticker | VINI (Gold) | Stockholm 2021"},"5198":{"market_hash_name":"Sticker | arT | Stockholm 2021"},"5199":{"market_hash_name":"Sticker | arT (Holo) | Stockholm 2021"},"52":{"market_hash_name":"Sticker | Team Dignitas | Katowice 2014"},"520":{"market_hash_name":"Sticker | Rickeh (Gold) | Cologne 2015"},"5200":{"market_hash_name":"Sticker | arT (Gold) | Stockholm 2021"},"5201":{"market_hash_name":"Sticker | yuurih | Stockholm 2021"},"5202":{"market_hash_name":"Sticker | yuurih (Holo) | Stockholm 2021"},"5203":{"market_hash_name":"Sticker | yuurih (Gold) | Stockholm 2021"},"5204":{"market_hash_name":"Sticker | Qikert | Stockholm 2021"},"5205":{"market_hash_name":"Sticker | Qikert (Holo) | Stockholm 2021"},"5206":{"market_hash_name":"Sticker | Qikert (Gold) | Stockholm 2021"},"5207":{"market_hash_name":"Sticker | buster | Stockholm 2021"},"5208":{"market_hash_name":"Sticker | buster (Holo) | Stockholm 2021"},"5209":{"market_hash_name":"Sticker | buster (Gold) | Stockholm 2021"},"521":{"market_hash_name":"Sticker | emagine | Cologne 2015"},"5210":{"market_hash_name":"Sticker | YEKINDAR | Stockholm 2021"},"5211":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Stockholm 2021"},"5212":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Stockholm 2021"},"5213":{"market_hash_name":"Sticker | Jame | Stockholm 2021"},"5214":{"market_hash_name":"Sticker | Jame (Holo) | Stockholm 2021"},"5215":{"market_hash_name":"Sticker | Jame (Gold) | Stockholm 2021"},"5216":{"market_hash_name":"Sticker | FL1T | Stockholm 2021"},"5217":{"market_hash_name":"Sticker | FL1T (Holo) | Stockholm 2021"},"5218":{"market_hash_name":"Sticker | FL1T (Gold) | Stockholm 2021"},"5219":{"market_hash_name":"Sticker | hampus | Stockholm 2021"},"522":{"market_hash_name":"Sticker | emagine (Foil) | Cologne 2015"},"5220":{"market_hash_name":"Sticker | hampus (Holo) | Stockholm 2021"},"5221":{"market_hash_name":"Sticker | hampus (Gold) | Stockholm 2021"},"5222":{"market_hash_name":"Sticker | LNZ | Stockholm 2021"},"5223":{"market_hash_name":"Sticker | LNZ (Holo) | Stockholm 2021"},"5224":{"market_hash_name":"Sticker | LNZ (Gold) | Stockholm 2021"},"5225":{"market_hash_name":"Sticker | REZ | Stockholm 2021"},"5226":{"market_hash_name":"Sticker | REZ (Holo) | Stockholm 2021"},"5227":{"market_hash_name":"Sticker | REZ (Gold) | Stockholm 2021"},"5228":{"market_hash_name":"Sticker | Plopski | Stockholm 2021"},"5229":{"market_hash_name":"Sticker | Plopski (Holo) | Stockholm 2021"},"523":{"market_hash_name":"Sticker | emagine (Gold) | Cologne 2015"},"5230":{"market_hash_name":"Sticker | Plopski (Gold) | Stockholm 2021"},"5231":{"market_hash_name":"Sticker | device | Stockholm 2021"},"5232":{"market_hash_name":"Sticker | device (Holo) | Stockholm 2021"},"5233":{"market_hash_name":"Sticker | device (Gold) | Stockholm 2021"},"5234":{"market_hash_name":"Sticker | ZywOo | Stockholm 2021"},"5235":{"market_hash_name":"Sticker | ZywOo (Holo) | Stockholm 2021"},"5236":{"market_hash_name":"Sticker | ZywOo (Gold) | Stockholm 2021"},"5237":{"market_hash_name":"Sticker | misutaaa | Stockholm 2021"},"5238":{"market_hash_name":"Sticker | misutaaa (Holo) | Stockholm 2021"},"5239":{"market_hash_name":"Sticker | misutaaa (Gold) | Stockholm 2021"},"524":{"market_hash_name":"Sticker | SnypeR | Cologne 2015"},"5240":{"market_hash_name":"Sticker | Kyojin | Stockholm 2021"},"5241":{"market_hash_name":"Sticker | Kyojin (Holo) | Stockholm 2021"},"5242":{"market_hash_name":"Sticker | Kyojin (Gold) | Stockholm 2021"},"5243":{"market_hash_name":"Sticker | shox | Stockholm 2021"},"5244":{"market_hash_name":"Sticker | shox (Holo) | Stockholm 2021"},"5245":{"market_hash_name":"Sticker | shox (Gold) | Stockholm 2021"},"5246":{"market_hash_name":"Sticker | apEX | Stockholm 2021"},"5247":{"market_hash_name":"Sticker | apEX (Holo) | Stockholm 2021"},"5248":{"market_hash_name":"Sticker | apEX (Gold) | Stockholm 2021"},"5249":{"market_hash_name":"Sticker | B Hop"},"525":{"market_hash_name":"Sticker | SnypeR (Foil) | Cologne 2015"},"5250":{"market_hash_name":"Sticker | Flick Shotter"},"5251":{"market_hash_name":"Sticker | Get Clucked"},"5252":{"market_hash_name":"Sticker | I'm Lit"},"5253":{"market_hash_name":"Sticker | Little Mischief"},"5254":{"market_hash_name":"Sticker | Hi, My Game Is"},"5255":{"market_hash_name":"Sticker | Run CT, Run"},"5256":{"market_hash_name":"Sticker | Smoke Criminal"},"5257":{"market_hash_name":"Sticker | Squeaky Door"},"5258":{"market_hash_name":"Sticker | Rat Pack"},"5259":{"market_hash_name":"Sticker | This Is Fine (T)"},"526":{"market_hash_name":"Sticker | SnypeR (Gold) | Cologne 2015"},"5260":{"market_hash_name":"Sticker | Wallbang"},"5261":{"market_hash_name":"Sticker | Flashblack (Holo)"},"5262":{"market_hash_name":"Sticker | Infinite Diamond (Holo)"},"5263":{"market_hash_name":"Sticker | Phoenix Balaclava Co. (Holo)"},"5264":{"market_hash_name":"Sticker | Sneaky Beaky Dept. (Holo)"},"5265":{"market_hash_name":"Sticker | T Rush (Holo)"},"5266":{"market_hash_name":"Sticker | V For Victory (Holo)"},"5267":{"market_hash_name":"Sticker | Face Me (Foil)"},"5268":{"market_hash_name":"Sticker | Inferno Diorama (Foil)"},"5269":{"market_hash_name":"Sticker | The Real MVP (Foil)"},"527":{"market_hash_name":"Sticker | James | Cologne 2015"},"5270":{"market_hash_name":"Sticker | Rock, Paper, Scissors (Foil)"},"5271":{"market_hash_name":"Sticker | Heroic | Antwerp 2022"},"5272":{"market_hash_name":"Sticker | Heroic (Glitter) | Antwerp 2022"},"5273":{"market_hash_name":"Sticker | Heroic (Holo) | Antwerp 2022"},"5274":{"market_hash_name":"Sticker | Heroic (Gold) | Antwerp 2022"},"5275":{"market_hash_name":"Sticker | Copenhagen Flames | Antwerp 2022"},"5276":{"market_hash_name":"Sticker | Copenhagen Flames (Glitter) | Antwerp 2022"},"5277":{"market_hash_name":"Sticker | Copenhagen Flames (Holo) | Antwerp 2022"},"5278":{"market_hash_name":"Sticker | Copenhagen Flames (Gold) | Antwerp 2022"},"5279":{"market_hash_name":"Sticker | BIG | Antwerp 2022"},"528":{"market_hash_name":"Sticker | James (Foil) | Cologne 2015"},"5280":{"market_hash_name":"Sticker | BIG (Glitter) | Antwerp 2022"},"5281":{"market_hash_name":"Sticker | BIG (Holo) | Antwerp 2022"},"5282":{"market_hash_name":"Sticker | BIG (Gold) | Antwerp 2022"},"5283":{"market_hash_name":"Sticker | Cloud9 | Antwerp 2022"},"5284":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Antwerp 2022"},"5285":{"market_hash_name":"Sticker | Cloud9 (Holo) | Antwerp 2022"},"5286":{"market_hash_name":"Sticker | Cloud9 (Gold) | Antwerp 2022"},"5287":{"market_hash_name":"Sticker | FURIA | Antwerp 2022"},"5288":{"market_hash_name":"Sticker | FURIA (Glitter) | Antwerp 2022"},"5289":{"market_hash_name":"Sticker | FURIA (Holo) | Antwerp 2022"},"529":{"market_hash_name":"Sticker | James (Gold) | Cologne 2015"},"5290":{"market_hash_name":"Sticker | FURIA (Gold) | Antwerp 2022"},"5291":{"market_hash_name":"Sticker | FaZe Clan | Antwerp 2022"},"5292":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Antwerp 2022"},"5293":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Antwerp 2022"},"5294":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Antwerp 2022"},"5295":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Antwerp 2022"},"5296":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Glitter) | Antwerp 2022"},"5297":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Antwerp 2022"},"5298":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Antwerp 2022"},"5299":{"market_hash_name":"Sticker | Natus Vincere | Antwerp 2022"},"53":{"market_hash_name":"Sticker | Team Dignitas (Holo) | Katowice 2014"},"530":{"market_hash_name":"Sticker | markeloff | Cologne 2015"},"5300":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Antwerp 2022"},"5301":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Antwerp 2022"},"5302":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Antwerp 2022"},"5303":{"market_hash_name":"Sticker | ENCE | Antwerp 2022"},"5304":{"market_hash_name":"Sticker | ENCE (Glitter) | Antwerp 2022"},"5305":{"market_hash_name":"Sticker | ENCE (Holo) | Antwerp 2022"},"5306":{"market_hash_name":"Sticker | ENCE (Gold) | Antwerp 2022"},"5307":{"market_hash_name":"Sticker | G2 Esports | Antwerp 2022"},"5308":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Antwerp 2022"},"5309":{"market_hash_name":"Sticker | G2 Esports (Holo) | Antwerp 2022"},"531":{"market_hash_name":"Sticker | markeloff (Foil) | Cologne 2015"},"5310":{"market_hash_name":"Sticker | G2 Esports (Gold) | Antwerp 2022"},"5311":{"market_hash_name":"Sticker | forZe eSports | Antwerp 2022"},"5312":{"market_hash_name":"Sticker | forZe eSports (Glitter) | Antwerp 2022"},"5313":{"market_hash_name":"Sticker | forZe eSports (Holo) | Antwerp 2022"},"5314":{"market_hash_name":"Sticker | forZe eSports (Gold) | Antwerp 2022"},"5315":{"market_hash_name":"Sticker | Astralis | Antwerp 2022"},"5316":{"market_hash_name":"Sticker | Astralis (Glitter) | Antwerp 2022"},"5317":{"market_hash_name":"Sticker | Astralis (Holo) | Antwerp 2022"},"5318":{"market_hash_name":"Sticker | Astralis (Gold) | Antwerp 2022"},"5319":{"market_hash_name":"Sticker | Vitality | Antwerp 2022"},"532":{"market_hash_name":"Sticker | markeloff (Gold) | Cologne 2015"},"5320":{"market_hash_name":"Sticker | Vitality (Glitter) | Antwerp 2022"},"5321":{"market_hash_name":"Sticker | Vitality (Holo) | Antwerp 2022"},"5322":{"market_hash_name":"Sticker | Vitality (Gold) | Antwerp 2022"},"5323":{"market_hash_name":"Sticker | MIBR | Antwerp 2022"},"5324":{"market_hash_name":"Sticker | MIBR (Glitter) | Antwerp 2022"},"5325":{"market_hash_name":"Sticker | MIBR (Holo) | Antwerp 2022"},"5326":{"market_hash_name":"Sticker | MIBR (Gold) | Antwerp 2022"},"5327":{"market_hash_name":"Sticker | Imperial Esports | Antwerp 2022"},"5328":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Antwerp 2022"},"5329":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Antwerp 2022"},"533":{"market_hash_name":"Sticker | B1ad3 | Cologne 2015"},"5330":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Antwerp 2022"},"5331":{"market_hash_name":"Sticker | Bad News Eagles | Antwerp 2022"},"5332":{"market_hash_name":"Sticker | Bad News Eagles (Glitter) | Antwerp 2022"},"5333":{"market_hash_name":"Sticker | Bad News Eagles (Holo) | Antwerp 2022"},"5334":{"market_hash_name":"Sticker | Bad News Eagles (Gold) | Antwerp 2022"},"5335":{"market_hash_name":"Sticker | Eternal Fire | Antwerp 2022"},"5336":{"market_hash_name":"Sticker | Eternal Fire (Glitter) | Antwerp 2022"},"5337":{"market_hash_name":"Sticker | Eternal Fire (Holo) | Antwerp 2022"},"5338":{"market_hash_name":"Sticker | Eternal Fire (Gold) | Antwerp 2022"},"5339":{"market_hash_name":"Sticker | Team Spirit | Antwerp 2022"},"534":{"market_hash_name":"Sticker | B1ad3 (Foil) | Cologne 2015"},"5340":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Antwerp 2022"},"5341":{"market_hash_name":"Sticker | Team Spirit (Holo) | Antwerp 2022"},"5342":{"market_hash_name":"Sticker | Team Spirit (Gold) | Antwerp 2022"},"5343":{"market_hash_name":"Sticker | Outsiders | Antwerp 2022"},"5344":{"market_hash_name":"Sticker | Outsiders (Glitter) | Antwerp 2022"},"5345":{"market_hash_name":"Sticker | Outsiders (Holo) | Antwerp 2022"},"5346":{"market_hash_name":"Sticker | Outsiders (Gold) | Antwerp 2022"},"5347":{"market_hash_name":"Sticker | Complexity Gaming | Antwerp 2022"},"5348":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Antwerp 2022"},"5349":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Antwerp 2022"},"535":{"market_hash_name":"Sticker | B1ad3 (Gold) | Cologne 2015"},"5350":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Antwerp 2022"},"5351":{"market_hash_name":"Sticker | IHC Esports | Antwerp 2022"},"5352":{"market_hash_name":"Sticker | IHC Esports (Glitter) | Antwerp 2022"},"5353":{"market_hash_name":"Sticker | IHC Esports (Holo) | Antwerp 2022"},"5354":{"market_hash_name":"Sticker | IHC Esports (Gold) | Antwerp 2022"},"5355":{"market_hash_name":"Sticker | Renegades | Antwerp 2022"},"5356":{"market_hash_name":"Sticker | Renegades (Glitter) | Antwerp 2022"},"5357":{"market_hash_name":"Sticker | Renegades (Holo) | Antwerp 2022"},"5358":{"market_hash_name":"Sticker | Renegades (Gold) | Antwerp 2022"},"5359":{"market_hash_name":"Sticker | Team Liquid | Antwerp 2022"},"536":{"market_hash_name":"Sticker | bondik | Cologne 2015"},"5360":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Antwerp 2022"},"5361":{"market_hash_name":"Sticker | Team Liquid (Holo) | Antwerp 2022"},"5362":{"market_hash_name":"Sticker | Team Liquid (Gold) | Antwerp 2022"},"5363":{"market_hash_name":"Sticker | 9z Team | Antwerp 2022"},"5364":{"market_hash_name":"Sticker | 9z Team (Glitter) | Antwerp 2022"},"5365":{"market_hash_name":"Sticker | 9z Team (Holo) | Antwerp 2022"},"5366":{"market_hash_name":"Sticker | 9z Team (Gold) | Antwerp 2022"},"5367":{"market_hash_name":"Sticker | PGL | Antwerp 2022"},"5368":{"market_hash_name":"Sticker | PGL (Glitter) | Antwerp 2022"},"5369":{"market_hash_name":"Sticker | PGL (Holo) | Antwerp 2022"},"537":{"market_hash_name":"Sticker | bondik (Foil) | Cologne 2015"},"5370":{"market_hash_name":"Sticker | PGL (Gold) | Antwerp 2022"},"538":{"market_hash_name":"Sticker | bondik (Gold) | Cologne 2015"},"539":{"market_hash_name":"Sticker | WorldEdit | Cologne 2015"},"5396":{"market_hash_name":"Sticker | stavn | Antwerp 2022"},"5397":{"market_hash_name":"Sticker | stavn (Glitter) | Antwerp 2022"},"5398":{"market_hash_name":"Sticker | stavn (Holo) | Antwerp 2022"},"5399":{"market_hash_name":"Sticker | stavn (Gold) | Antwerp 2022"},"540":{"market_hash_name":"Sticker | WorldEdit (Foil) | Cologne 2015"},"5400":{"market_hash_name":"Sticker | cadiaN | Antwerp 2022"},"5401":{"market_hash_name":"Sticker | cadiaN (Glitter) | Antwerp 2022"},"5402":{"market_hash_name":"Sticker | cadiaN (Holo) | Antwerp 2022"},"5403":{"market_hash_name":"Sticker | cadiaN (Gold) | Antwerp 2022"},"5404":{"market_hash_name":"Sticker | TeSeS | Antwerp 2022"},"5405":{"market_hash_name":"Sticker | TeSeS (Glitter) | Antwerp 2022"},"5406":{"market_hash_name":"Sticker | TeSeS (Holo) | Antwerp 2022"},"5407":{"market_hash_name":"Sticker | TeSeS (Gold) | Antwerp 2022"},"5408":{"market_hash_name":"Sticker | refrezh | Antwerp 2022"},"5409":{"market_hash_name":"Sticker | refrezh (Glitter) | Antwerp 2022"},"541":{"market_hash_name":"Sticker | WorldEdit (Gold) | Cologne 2015"},"5410":{"market_hash_name":"Sticker | refrezh (Holo) | Antwerp 2022"},"5411":{"market_hash_name":"Sticker | refrezh (Gold) | Antwerp 2022"},"5412":{"market_hash_name":"Sticker | sjuush | Antwerp 2022"},"5413":{"market_hash_name":"Sticker | sjuush (Glitter) | Antwerp 2022"},"5414":{"market_hash_name":"Sticker | sjuush (Holo) | Antwerp 2022"},"5415":{"market_hash_name":"Sticker | sjuush (Gold) | Antwerp 2022"},"5416":{"market_hash_name":"Sticker | roeJ | Antwerp 2022"},"5417":{"market_hash_name":"Sticker | roeJ (Glitter) | Antwerp 2022"},"5418":{"market_hash_name":"Sticker | roeJ (Holo) | Antwerp 2022"},"5419":{"market_hash_name":"Sticker | roeJ (Gold) | Antwerp 2022"},"542":{"market_hash_name":"Sticker | DavCost | Cologne 2015"},"5420":{"market_hash_name":"Sticker | Zyphon | Antwerp 2022"},"5421":{"market_hash_name":"Sticker | Zyphon (Glitter) | Antwerp 2022"},"5422":{"market_hash_name":"Sticker | Zyphon (Holo) | Antwerp 2022"},"5423":{"market_hash_name":"Sticker | Zyphon (Gold) | Antwerp 2022"},"5424":{"market_hash_name":"Sticker | HooXi | Antwerp 2022"},"5425":{"market_hash_name":"Sticker | HooXi (Glitter) | Antwerp 2022"},"5426":{"market_hash_name":"Sticker | HooXi (Holo) | Antwerp 2022"},"5427":{"market_hash_name":"Sticker | HooXi (Gold) | Antwerp 2022"},"5428":{"market_hash_name":"Sticker | jabbi | Antwerp 2022"},"5429":{"market_hash_name":"Sticker | jabbi (Glitter) | Antwerp 2022"},"543":{"market_hash_name":"Sticker | DavCost (Foil) | Cologne 2015"},"5430":{"market_hash_name":"Sticker | jabbi (Holo) | Antwerp 2022"},"5431":{"market_hash_name":"Sticker | jabbi (Gold) | Antwerp 2022"},"5432":{"market_hash_name":"Sticker | nicoodoz | Antwerp 2022"},"5433":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Antwerp 2022"},"5434":{"market_hash_name":"Sticker | nicoodoz (Holo) | Antwerp 2022"},"5435":{"market_hash_name":"Sticker | nicoodoz (Gold) | Antwerp 2022"},"5436":{"market_hash_name":"Sticker | tabseN | Antwerp 2022"},"5437":{"market_hash_name":"Sticker | tabseN (Glitter) | Antwerp 2022"},"5438":{"market_hash_name":"Sticker | tabseN (Holo) | Antwerp 2022"},"5439":{"market_hash_name":"Sticker | tabseN (Gold) | Antwerp 2022"},"544":{"market_hash_name":"Sticker | DavCost (Gold) | Cologne 2015"},"5440":{"market_hash_name":"Sticker | tiziaN | Antwerp 2022"},"5441":{"market_hash_name":"Sticker | tiziaN (Glitter) | Antwerp 2022"},"5442":{"market_hash_name":"Sticker | tiziaN (Holo) | Antwerp 2022"},"5443":{"market_hash_name":"Sticker | tiziaN (Gold) | Antwerp 2022"},"5444":{"market_hash_name":"Sticker | faveN | Antwerp 2022"},"5445":{"market_hash_name":"Sticker | faveN (Glitter) | Antwerp 2022"},"5446":{"market_hash_name":"Sticker | faveN (Holo) | Antwerp 2022"},"5447":{"market_hash_name":"Sticker | faveN (Gold) | Antwerp 2022"},"5448":{"market_hash_name":"Sticker | Krimbo | Antwerp 2022"},"5449":{"market_hash_name":"Sticker | Krimbo (Glitter) | Antwerp 2022"},"545":{"market_hash_name":"Sticker | dennis | Cologne 2015"},"5450":{"market_hash_name":"Sticker | Krimbo (Holo) | Antwerp 2022"},"5451":{"market_hash_name":"Sticker | Krimbo (Gold) | Antwerp 2022"},"5452":{"market_hash_name":"Sticker | syrsoN | Antwerp 2022"},"5453":{"market_hash_name":"Sticker | syrsoN (Glitter) | Antwerp 2022"},"5454":{"market_hash_name":"Sticker | syrsoN (Holo) | Antwerp 2022"},"5455":{"market_hash_name":"Sticker | syrsoN (Gold) | Antwerp 2022"},"5456":{"market_hash_name":"Sticker | interz | Antwerp 2022"},"5457":{"market_hash_name":"Sticker | interz (Glitter) | Antwerp 2022"},"5458":{"market_hash_name":"Sticker | interz (Holo) | Antwerp 2022"},"5459":{"market_hash_name":"Sticker | interz (Gold) | Antwerp 2022"},"546":{"market_hash_name":"Sticker | dennis (Foil) | Cologne 2015"},"5460":{"market_hash_name":"Sticker | sh1ro | Antwerp 2022"},"5461":{"market_hash_name":"Sticker | sh1ro (Glitter) | Antwerp 2022"},"5462":{"market_hash_name":"Sticker | sh1ro (Holo) | Antwerp 2022"},"5463":{"market_hash_name":"Sticker | sh1ro (Gold) | Antwerp 2022"},"5464":{"market_hash_name":"Sticker | nafany | Antwerp 2022"},"5465":{"market_hash_name":"Sticker | nafany (Glitter) | Antwerp 2022"},"5466":{"market_hash_name":"Sticker | nafany (Holo) | Antwerp 2022"},"5467":{"market_hash_name":"Sticker | nafany (Gold) | Antwerp 2022"},"5468":{"market_hash_name":"Sticker | Ax1Le | Antwerp 2022"},"5469":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Antwerp 2022"},"547":{"market_hash_name":"Sticker | dennis (Gold) | Cologne 2015"},"5470":{"market_hash_name":"Sticker | Ax1Le (Holo) | Antwerp 2022"},"5471":{"market_hash_name":"Sticker | Ax1Le (Gold) | Antwerp 2022"},"5472":{"market_hash_name":"Sticker | Hobbit | Antwerp 2022"},"5473":{"market_hash_name":"Sticker | Hobbit (Glitter) | Antwerp 2022"},"5474":{"market_hash_name":"Sticker | Hobbit (Holo) | Antwerp 2022"},"5475":{"market_hash_name":"Sticker | Hobbit (Gold) | Antwerp 2022"},"5476":{"market_hash_name":"Sticker | yuurih | Antwerp 2022"},"5477":{"market_hash_name":"Sticker | yuurih (Glitter) | Antwerp 2022"},"5478":{"market_hash_name":"Sticker | yuurih (Holo) | Antwerp 2022"},"5479":{"market_hash_name":"Sticker | yuurih (Gold) | Antwerp 2022"},"548":{"market_hash_name":"Sticker | ScreaM | Cologne 2015"},"5480":{"market_hash_name":"Sticker | arT | Antwerp 2022"},"5481":{"market_hash_name":"Sticker | arT (Glitter) | Antwerp 2022"},"5482":{"market_hash_name":"Sticker | arT (Holo) | Antwerp 2022"},"5483":{"market_hash_name":"Sticker | arT (Gold) | Antwerp 2022"},"5484":{"market_hash_name":"Sticker | KSCERATO | Antwerp 2022"},"5485":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Antwerp 2022"},"5486":{"market_hash_name":"Sticker | KSCERATO (Holo) | Antwerp 2022"},"5487":{"market_hash_name":"Sticker | KSCERATO (Gold) | Antwerp 2022"},"5488":{"market_hash_name":"Sticker | drop | Antwerp 2022"},"5489":{"market_hash_name":"Sticker | drop (Glitter) | Antwerp 2022"},"549":{"market_hash_name":"Sticker | ScreaM (Foil) | Cologne 2015"},"5490":{"market_hash_name":"Sticker | drop (Holo) | Antwerp 2022"},"5491":{"market_hash_name":"Sticker | drop (Gold) | Antwerp 2022"},"5492":{"market_hash_name":"Sticker | saffee | Antwerp 2022"},"5493":{"market_hash_name":"Sticker | saffee (Glitter) | Antwerp 2022"},"5494":{"market_hash_name":"Sticker | saffee (Holo) | Antwerp 2022"},"5495":{"market_hash_name":"Sticker | saffee (Gold) | Antwerp 2022"},"5496":{"market_hash_name":"Sticker | rain | Antwerp 2022"},"5497":{"market_hash_name":"Sticker | rain (Glitter) | Antwerp 2022"},"5498":{"market_hash_name":"Sticker | rain (Holo) | Antwerp 2022"},"5499":{"market_hash_name":"Sticker | rain (Gold) | Antwerp 2022"},"55":{"market_hash_name":"Sticker | Fnatic | Katowice 2014"},"550":{"market_hash_name":"Sticker | ScreaM (Gold) | Cologne 2015"},"5500":{"market_hash_name":"Sticker | karrigan | Antwerp 2022"},"5501":{"market_hash_name":"Sticker | karrigan (Glitter) | Antwerp 2022"},"5502":{"market_hash_name":"Sticker | karrigan (Holo) | Antwerp 2022"},"5503":{"market_hash_name":"Sticker | karrigan (Gold) | Antwerp 2022"},"5504":{"market_hash_name":"Sticker | Twistzz | Antwerp 2022"},"5505":{"market_hash_name":"Sticker | Twistzz (Glitter) | Antwerp 2022"},"5506":{"market_hash_name":"Sticker | Twistzz (Holo) | Antwerp 2022"},"5507":{"market_hash_name":"Sticker | Twistzz (Gold) | Antwerp 2022"},"5508":{"market_hash_name":"Sticker | broky | Antwerp 2022"},"5509":{"market_hash_name":"Sticker | broky (Glitter) | Antwerp 2022"},"551":{"market_hash_name":"Sticker | rain | Cologne 2015"},"5510":{"market_hash_name":"Sticker | broky (Holo) | Antwerp 2022"},"5511":{"market_hash_name":"Sticker | broky (Gold) | Antwerp 2022"},"5512":{"market_hash_name":"Sticker | ropz | Antwerp 2022"},"5513":{"market_hash_name":"Sticker | ropz (Glitter) | Antwerp 2022"},"5514":{"market_hash_name":"Sticker | ropz (Holo) | Antwerp 2022"},"5515":{"market_hash_name":"Sticker | ropz (Gold) | Antwerp 2022"},"5516":{"market_hash_name":"Sticker | REZ | Antwerp 2022"},"5517":{"market_hash_name":"Sticker | REZ (Glitter) | Antwerp 2022"},"5518":{"market_hash_name":"Sticker | REZ (Holo) | Antwerp 2022"},"5519":{"market_hash_name":"Sticker | REZ (Gold) | Antwerp 2022"},"552":{"market_hash_name":"Sticker | rain (Foil) | Cologne 2015"},"5520":{"market_hash_name":"Sticker | hampus | Antwerp 2022"},"5521":{"market_hash_name":"Sticker | hampus (Glitter) | Antwerp 2022"},"5522":{"market_hash_name":"Sticker | hampus (Holo) | Antwerp 2022"},"5523":{"market_hash_name":"Sticker | hampus (Gold) | Antwerp 2022"},"5524":{"market_hash_name":"Sticker | Plopski | Antwerp 2022"},"5525":{"market_hash_name":"Sticker | Plopski (Glitter) | Antwerp 2022"},"5526":{"market_hash_name":"Sticker | Plopski (Holo) | Antwerp 2022"},"5527":{"market_hash_name":"Sticker | Plopski (Gold) | Antwerp 2022"},"5528":{"market_hash_name":"Sticker | es3tag | Antwerp 2022"},"5529":{"market_hash_name":"Sticker | es3tag (Glitter) | Antwerp 2022"},"553":{"market_hash_name":"Sticker | rain (Gold) | Cologne 2015"},"5530":{"market_hash_name":"Sticker | es3tag (Holo) | Antwerp 2022"},"5531":{"market_hash_name":"Sticker | es3tag (Gold) | Antwerp 2022"},"5532":{"market_hash_name":"Sticker | Brollan | Antwerp 2022"},"5533":{"market_hash_name":"Sticker | Brollan (Glitter) | Antwerp 2022"},"5534":{"market_hash_name":"Sticker | Brollan (Holo) | Antwerp 2022"},"5535":{"market_hash_name":"Sticker | Brollan (Gold) | Antwerp 2022"},"5536":{"market_hash_name":"Sticker | s1mple | Antwerp 2022"},"5537":{"market_hash_name":"Sticker | s1mple (Glitter) | Antwerp 2022"},"5538":{"market_hash_name":"Sticker | s1mple (Holo) | Antwerp 2022"},"5539":{"market_hash_name":"Sticker | s1mple (Gold) | Antwerp 2022"},"554":{"market_hash_name":"Sticker | Maikelele | Cologne 2015"},"5540":{"market_hash_name":"Sticker | Boombl4 | Antwerp 2022"},"5541":{"market_hash_name":"Sticker | Boombl4 (Glitter) | Antwerp 2022"},"5542":{"market_hash_name":"Sticker | Boombl4 (Holo) | Antwerp 2022"},"5543":{"market_hash_name":"Sticker | Boombl4 (Gold) | Antwerp 2022"},"5544":{"market_hash_name":"Sticker | Perfecto | Antwerp 2022"},"5545":{"market_hash_name":"Sticker | Perfecto (Glitter) | Antwerp 2022"},"5546":{"market_hash_name":"Sticker | Perfecto (Holo) | Antwerp 2022"},"5547":{"market_hash_name":"Sticker | Perfecto (Gold) | Antwerp 2022"},"5548":{"market_hash_name":"Sticker | electronic | Antwerp 2022"},"5549":{"market_hash_name":"Sticker | electronic (Glitter) | Antwerp 2022"},"555":{"market_hash_name":"Sticker | Maikelele (Foil) | Cologne 2015"},"5550":{"market_hash_name":"Sticker | electronic (Holo) | Antwerp 2022"},"5551":{"market_hash_name":"Sticker | electronic (Gold) | Antwerp 2022"},"5552":{"market_hash_name":"Sticker | b1t | Antwerp 2022"},"5553":{"market_hash_name":"Sticker | b1t (Glitter) | Antwerp 2022"},"5554":{"market_hash_name":"Sticker | b1t (Holo) | Antwerp 2022"},"5555":{"market_hash_name":"Sticker | b1t (Gold) | Antwerp 2022"},"5556":{"market_hash_name":"Sticker | Snappi | Antwerp 2022"},"5557":{"market_hash_name":"Sticker | Snappi (Glitter) | Antwerp 2022"},"5558":{"market_hash_name":"Sticker | Snappi (Holo) | Antwerp 2022"},"5559":{"market_hash_name":"Sticker | Snappi (Gold) | Antwerp 2022"},"556":{"market_hash_name":"Sticker | Maikelele (Gold) | Cologne 2015"},"5560":{"market_hash_name":"Sticker | dycha | Antwerp 2022"},"5561":{"market_hash_name":"Sticker | dycha (Glitter) | Antwerp 2022"},"5562":{"market_hash_name":"Sticker | dycha (Holo) | Antwerp 2022"},"5563":{"market_hash_name":"Sticker | dycha (Gold) | Antwerp 2022"},"5564":{"market_hash_name":"Sticker | Spinx | Antwerp 2022"},"5565":{"market_hash_name":"Sticker | Spinx (Glitter) | Antwerp 2022"},"5566":{"market_hash_name":"Sticker | Spinx (Holo) | Antwerp 2022"},"5567":{"market_hash_name":"Sticker | Spinx (Gold) | Antwerp 2022"},"5568":{"market_hash_name":"Sticker | hades | Antwerp 2022"},"5569":{"market_hash_name":"Sticker | hades (Glitter) | Antwerp 2022"},"557":{"market_hash_name":"Sticker | fox | Cologne 2015"},"5570":{"market_hash_name":"Sticker | hades (Holo) | Antwerp 2022"},"5571":{"market_hash_name":"Sticker | hades (Gold) | Antwerp 2022"},"5572":{"market_hash_name":"Sticker | maden | Antwerp 2022"},"5573":{"market_hash_name":"Sticker | maden (Glitter) | Antwerp 2022"},"5574":{"market_hash_name":"Sticker | maden (Holo) | Antwerp 2022"},"5575":{"market_hash_name":"Sticker | maden (Gold) | Antwerp 2022"},"5576":{"market_hash_name":"Sticker | Aleksib | Antwerp 2022"},"5577":{"market_hash_name":"Sticker | Aleksib (Glitter) | Antwerp 2022"},"5578":{"market_hash_name":"Sticker | Aleksib (Holo) | Antwerp 2022"},"5579":{"market_hash_name":"Sticker | Aleksib (Gold) | Antwerp 2022"},"558":{"market_hash_name":"Sticker | fox (Foil) | Cologne 2015"},"5580":{"market_hash_name":"Sticker | huNter | Antwerp 2022"},"5581":{"market_hash_name":"Sticker | huNter (Glitter) | Antwerp 2022"},"5582":{"market_hash_name":"Sticker | huNter (Holo) | Antwerp 2022"},"5583":{"market_hash_name":"Sticker | huNter (Gold) | Antwerp 2022"},"5584":{"market_hash_name":"Sticker | JaCkz | Antwerp 2022"},"5585":{"market_hash_name":"Sticker | JaCkz (Glitter) | Antwerp 2022"},"5586":{"market_hash_name":"Sticker | JaCkz (Holo) | Antwerp 2022"},"5587":{"market_hash_name":"Sticker | JaCkz (Gold) | Antwerp 2022"},"5588":{"market_hash_name":"Sticker | m0NESY | Antwerp 2022"},"5589":{"market_hash_name":"Sticker | m0NESY (Glitter) | Antwerp 2022"},"559":{"market_hash_name":"Sticker | fox (Gold) | Cologne 2015"},"5590":{"market_hash_name":"Sticker | m0NESY (Holo) | Antwerp 2022"},"5591":{"market_hash_name":"Sticker | m0NESY (Gold) | Antwerp 2022"},"5592":{"market_hash_name":"Sticker | NiKo | Antwerp 2022"},"5593":{"market_hash_name":"Sticker | NiKo (Glitter) | Antwerp 2022"},"5594":{"market_hash_name":"Sticker | NiKo (Holo) | Antwerp 2022"},"5595":{"market_hash_name":"Sticker | NiKo (Gold) | Antwerp 2022"},"5596":{"market_hash_name":"Sticker | Jerry | Antwerp 2022"},"5597":{"market_hash_name":"Sticker | Jerry (Glitter) | Antwerp 2022"},"5598":{"market_hash_name":"Sticker | Jerry (Holo) | Antwerp 2022"},"5599":{"market_hash_name":"Sticker | Jerry (Gold) | Antwerp 2022"},"56":{"market_hash_name":"Sticker | Fnatic (Holo) | Katowice 2014"},"560":{"market_hash_name":"Sticker | rallen | Cologne 2015"},"5600":{"market_hash_name":"Sticker | zorte | Antwerp 2022"},"5601":{"market_hash_name":"Sticker | zorte (Glitter) | Antwerp 2022"},"5602":{"market_hash_name":"Sticker | zorte (Holo) | Antwerp 2022"},"5603":{"market_hash_name":"Sticker | zorte (Gold) | Antwerp 2022"},"5604":{"market_hash_name":"Sticker | KENSi | Antwerp 2022"},"5605":{"market_hash_name":"Sticker | KENSi (Glitter) | Antwerp 2022"},"5606":{"market_hash_name":"Sticker | KENSi (Holo) | Antwerp 2022"},"5607":{"market_hash_name":"Sticker | KENSi (Gold) | Antwerp 2022"},"5608":{"market_hash_name":"Sticker | Norwi | Antwerp 2022"},"5609":{"market_hash_name":"Sticker | Norwi (Glitter) | Antwerp 2022"},"561":{"market_hash_name":"Sticker | rallen (Foil) | Cologne 2015"},"5610":{"market_hash_name":"Sticker | Norwi (Holo) | Antwerp 2022"},"5611":{"market_hash_name":"Sticker | Norwi (Gold) | Antwerp 2022"},"5612":{"market_hash_name":"Sticker | shalfey | Antwerp 2022"},"5613":{"market_hash_name":"Sticker | shalfey (Glitter) | Antwerp 2022"},"5614":{"market_hash_name":"Sticker | shalfey (Holo) | Antwerp 2022"},"5615":{"market_hash_name":"Sticker | shalfey (Gold) | Antwerp 2022"},"5616":{"market_hash_name":"Sticker | gla1ve | Antwerp 2022"},"5617":{"market_hash_name":"Sticker | gla1ve (Glitter) | Antwerp 2022"},"5618":{"market_hash_name":"Sticker | gla1ve (Holo) | Antwerp 2022"},"5619":{"market_hash_name":"Sticker | gla1ve (Gold) | Antwerp 2022"},"562":{"market_hash_name":"Sticker | rallen (Gold) | Cologne 2015"},"5620":{"market_hash_name":"Sticker | blameF | Antwerp 2022"},"5621":{"market_hash_name":"Sticker | blameF (Glitter) | Antwerp 2022"},"5622":{"market_hash_name":"Sticker | blameF (Holo) | Antwerp 2022"},"5623":{"market_hash_name":"Sticker | blameF (Gold) | Antwerp 2022"},"5624":{"market_hash_name":"Sticker | k0nfig | Antwerp 2022"},"5625":{"market_hash_name":"Sticker | k0nfig (Glitter) | Antwerp 2022"},"5626":{"market_hash_name":"Sticker | k0nfig (Holo) | Antwerp 2022"},"5627":{"market_hash_name":"Sticker | k0nfig (Gold) | Antwerp 2022"},"5628":{"market_hash_name":"Sticker | Xyp9x | Antwerp 2022"},"5629":{"market_hash_name":"Sticker | Xyp9x (Glitter) | Antwerp 2022"},"563":{"market_hash_name":"Sticker | Hyper | Cologne 2015"},"5630":{"market_hash_name":"Sticker | Xyp9x (Holo) | Antwerp 2022"},"5631":{"market_hash_name":"Sticker | Xyp9x (Gold) | Antwerp 2022"},"5632":{"market_hash_name":"Sticker | Farlig | Antwerp 2022"},"5633":{"market_hash_name":"Sticker | Farlig (Glitter) | Antwerp 2022"},"5634":{"market_hash_name":"Sticker | Farlig (Holo) | Antwerp 2022"},"5635":{"market_hash_name":"Sticker | Farlig (Gold) | Antwerp 2022"},"5636":{"market_hash_name":"Sticker | apEX | Antwerp 2022"},"5637":{"market_hash_name":"Sticker | apEX (Glitter) | Antwerp 2022"},"5638":{"market_hash_name":"Sticker | apEX (Holo) | Antwerp 2022"},"5639":{"market_hash_name":"Sticker | apEX (Gold) | Antwerp 2022"},"564":{"market_hash_name":"Sticker | Hyper (Foil) | Cologne 2015"},"5640":{"market_hash_name":"Sticker | misutaaa | Antwerp 2022"},"5641":{"market_hash_name":"Sticker | misutaaa (Glitter) | Antwerp 2022"},"5642":{"market_hash_name":"Sticker | misutaaa (Holo) | Antwerp 2022"},"5643":{"market_hash_name":"Sticker | misutaaa (Gold) | Antwerp 2022"},"5644":{"market_hash_name":"Sticker | dupreeh | Antwerp 2022"},"5645":{"market_hash_name":"Sticker | dupreeh (Glitter) | Antwerp 2022"},"5646":{"market_hash_name":"Sticker | dupreeh (Holo) | Antwerp 2022"},"5647":{"market_hash_name":"Sticker | dupreeh (Gold) | Antwerp 2022"},"5648":{"market_hash_name":"Sticker | Magisk | Antwerp 2022"},"5649":{"market_hash_name":"Sticker | Magisk (Glitter) | Antwerp 2022"},"565":{"market_hash_name":"Sticker | Hyper (Gold) | Cologne 2015"},"5650":{"market_hash_name":"Sticker | Magisk (Holo) | Antwerp 2022"},"5651":{"market_hash_name":"Sticker | Magisk (Gold) | Antwerp 2022"},"5652":{"market_hash_name":"Sticker | ZywOo | Antwerp 2022"},"5653":{"market_hash_name":"Sticker | ZywOo (Glitter) | Antwerp 2022"},"5654":{"market_hash_name":"Sticker | ZywOo (Holo) | Antwerp 2022"},"5655":{"market_hash_name":"Sticker | ZywOo (Gold) | Antwerp 2022"},"5656":{"market_hash_name":"Sticker | WOOD7 | Antwerp 2022"},"5657":{"market_hash_name":"Sticker | WOOD7 (Glitter) | Antwerp 2022"},"5658":{"market_hash_name":"Sticker | WOOD7 (Holo) | Antwerp 2022"},"5659":{"market_hash_name":"Sticker | WOOD7 (Gold) | Antwerp 2022"},"566":{"market_hash_name":"Sticker | peet | Cologne 2015"},"5660":{"market_hash_name":"Sticker | chelo | Antwerp 2022"},"5661":{"market_hash_name":"Sticker | chelo (Glitter) | Antwerp 2022"},"5662":{"market_hash_name":"Sticker | chelo (Holo) | Antwerp 2022"},"5663":{"market_hash_name":"Sticker | chelo (Gold) | Antwerp 2022"},"5664":{"market_hash_name":"Sticker | Tuurtle | Antwerp 2022"},"5665":{"market_hash_name":"Sticker | Tuurtle (Glitter) | Antwerp 2022"},"5666":{"market_hash_name":"Sticker | Tuurtle (Holo) | Antwerp 2022"},"5667":{"market_hash_name":"Sticker | Tuurtle (Gold) | Antwerp 2022"},"5668":{"market_hash_name":"Sticker | exit | Antwerp 2022"},"5669":{"market_hash_name":"Sticker | exit (Glitter) | Antwerp 2022"},"567":{"market_hash_name":"Sticker | peet (Foil) | Cologne 2015"},"5670":{"market_hash_name":"Sticker | exit (Holo) | Antwerp 2022"},"5671":{"market_hash_name":"Sticker | exit (Gold) | Antwerp 2022"},"5672":{"market_hash_name":"Sticker | JOTA | Antwerp 2022"},"5673":{"market_hash_name":"Sticker | JOTA (Glitter) | Antwerp 2022"},"5674":{"market_hash_name":"Sticker | JOTA (Holo) | Antwerp 2022"},"5675":{"market_hash_name":"Sticker | JOTA (Gold) | Antwerp 2022"},"5676":{"market_hash_name":"Sticker | FalleN | Antwerp 2022"},"5677":{"market_hash_name":"Sticker | FalleN (Glitter) | Antwerp 2022"},"5678":{"market_hash_name":"Sticker | FalleN (Holo) | Antwerp 2022"},"5679":{"market_hash_name":"Sticker | FalleN (Gold) | Antwerp 2022"},"568":{"market_hash_name":"Sticker | peet (Gold) | Cologne 2015"},"5680":{"market_hash_name":"Sticker | fer | Antwerp 2022"},"5681":{"market_hash_name":"Sticker | fer (Glitter) | Antwerp 2022"},"5682":{"market_hash_name":"Sticker | fer (Holo) | Antwerp 2022"},"5683":{"market_hash_name":"Sticker | fer (Gold) | Antwerp 2022"},"5684":{"market_hash_name":"Sticker | fnx | Antwerp 2022"},"5685":{"market_hash_name":"Sticker | fnx (Glitter) | Antwerp 2022"},"5686":{"market_hash_name":"Sticker | fnx (Holo) | Antwerp 2022"},"5687":{"market_hash_name":"Sticker | fnx (Gold) | Antwerp 2022"},"5688":{"market_hash_name":"Sticker | boltz | Antwerp 2022"},"5689":{"market_hash_name":"Sticker | boltz (Glitter) | Antwerp 2022"},"569":{"market_hash_name":"Sticker | Furlan | Cologne 2015"},"5690":{"market_hash_name":"Sticker | boltz (Holo) | Antwerp 2022"},"5691":{"market_hash_name":"Sticker | boltz (Gold) | Antwerp 2022"},"5692":{"market_hash_name":"Sticker | VINI | Antwerp 2022"},"5693":{"market_hash_name":"Sticker | VINI (Glitter) | Antwerp 2022"},"5694":{"market_hash_name":"Sticker | VINI (Holo) | Antwerp 2022"},"5695":{"market_hash_name":"Sticker | VINI (Gold) | Antwerp 2022"},"5696":{"market_hash_name":"Sticker | rigoN | Antwerp 2022"},"5697":{"market_hash_name":"Sticker | rigoN (Glitter) | Antwerp 2022"},"5698":{"market_hash_name":"Sticker | rigoN (Holo) | Antwerp 2022"},"5699":{"market_hash_name":"Sticker | rigoN (Gold) | Antwerp 2022"},"57":{"market_hash_name":"Sticker | HellRaisers | Katowice 2014"},"570":{"market_hash_name":"Sticker | Furlan (Foil) | Cologne 2015"},"5700":{"market_hash_name":"Sticker | juanflatroo | Antwerp 2022"},"5701":{"market_hash_name":"Sticker | juanflatroo (Glitter) | Antwerp 2022"},"5702":{"market_hash_name":"Sticker | juanflatroo (Holo) | Antwerp 2022"},"5703":{"market_hash_name":"Sticker | juanflatroo (Gold) | Antwerp 2022"},"5704":{"market_hash_name":"Sticker | SENER1 | Antwerp 2022"},"5705":{"market_hash_name":"Sticker | SENER1 (Glitter) | Antwerp 2022"},"5706":{"market_hash_name":"Sticker | SENER1 (Holo) | Antwerp 2022"},"5707":{"market_hash_name":"Sticker | SENER1 (Gold) | Antwerp 2022"},"5708":{"market_hash_name":"Sticker | sinnopsyy | Antwerp 2022"},"5709":{"market_hash_name":"Sticker | sinnopsyy (Glitter) | Antwerp 2022"},"571":{"market_hash_name":"Sticker | Furlan (Gold) | Cologne 2015"},"5710":{"market_hash_name":"Sticker | sinnopsyy (Holo) | Antwerp 2022"},"5711":{"market_hash_name":"Sticker | sinnopsyy (Gold) | Antwerp 2022"},"5712":{"market_hash_name":"Sticker | gxx- | Antwerp 2022"},"5713":{"market_hash_name":"Sticker | gxx- (Glitter) | Antwerp 2022"},"5714":{"market_hash_name":"Sticker | gxx- (Holo) | Antwerp 2022"},"5715":{"market_hash_name":"Sticker | gxx- (Gold) | Antwerp 2022"},"5716":{"market_hash_name":"Sticker | XANTARES | Antwerp 2022"},"5717":{"market_hash_name":"Sticker | XANTARES (Glitter) | Antwerp 2022"},"5718":{"market_hash_name":"Sticker | XANTARES (Holo) | Antwerp 2022"},"5719":{"market_hash_name":"Sticker | XANTARES (Gold) | Antwerp 2022"},"572":{"market_hash_name":"Sticker | GruBy | Cologne 2015"},"5720":{"market_hash_name":"Sticker | woxic | Antwerp 2022"},"5721":{"market_hash_name":"Sticker | woxic (Glitter) | Antwerp 2022"},"5722":{"market_hash_name":"Sticker | woxic (Holo) | Antwerp 2022"},"5723":{"market_hash_name":"Sticker | woxic (Gold) | Antwerp 2022"},"5724":{"market_hash_name":"Sticker | imoRR | Antwerp 2022"},"5725":{"market_hash_name":"Sticker | imoRR (Glitter) | Antwerp 2022"},"5726":{"market_hash_name":"Sticker | imoRR (Holo) | Antwerp 2022"},"5727":{"market_hash_name":"Sticker | imoRR (Gold) | Antwerp 2022"},"5728":{"market_hash_name":"Sticker | Calyx | Antwerp 2022"},"5729":{"market_hash_name":"Sticker | Calyx (Glitter) | Antwerp 2022"},"573":{"market_hash_name":"Sticker | GruBy (Foil) | Cologne 2015"},"5730":{"market_hash_name":"Sticker | Calyx (Holo) | Antwerp 2022"},"5731":{"market_hash_name":"Sticker | Calyx (Gold) | Antwerp 2022"},"5732":{"market_hash_name":"Sticker | xfl0ud | Antwerp 2022"},"5733":{"market_hash_name":"Sticker | xfl0ud (Glitter) | Antwerp 2022"},"5734":{"market_hash_name":"Sticker | xfl0ud (Holo) | Antwerp 2022"},"5735":{"market_hash_name":"Sticker | xfl0ud (Gold) | Antwerp 2022"},"5736":{"market_hash_name":"Sticker | chopper | Antwerp 2022"},"5737":{"market_hash_name":"Sticker | chopper (Glitter) | Antwerp 2022"},"5738":{"market_hash_name":"Sticker | chopper (Holo) | Antwerp 2022"},"5739":{"market_hash_name":"Sticker | chopper (Gold) | Antwerp 2022"},"574":{"market_hash_name":"Sticker | GruBy (Gold) | Cologne 2015"},"5740":{"market_hash_name":"Sticker | magixx | Antwerp 2022"},"5741":{"market_hash_name":"Sticker | magixx (Glitter) | Antwerp 2022"},"5742":{"market_hash_name":"Sticker | magixx (Holo) | Antwerp 2022"},"5743":{"market_hash_name":"Sticker | magixx (Gold) | Antwerp 2022"},"5744":{"market_hash_name":"Sticker | degster | Antwerp 2022"},"5745":{"market_hash_name":"Sticker | degster (Glitter) | Antwerp 2022"},"5746":{"market_hash_name":"Sticker | degster (Holo) | Antwerp 2022"},"5747":{"market_hash_name":"Sticker | degster (Gold) | Antwerp 2022"},"5748":{"market_hash_name":"Sticker | Patsi | Antwerp 2022"},"5749":{"market_hash_name":"Sticker | Patsi (Glitter) | Antwerp 2022"},"575":{"market_hash_name":"Sticker | Maniac | Cologne 2015"},"5750":{"market_hash_name":"Sticker | Patsi (Holo) | Antwerp 2022"},"5751":{"market_hash_name":"Sticker | Patsi (Gold) | Antwerp 2022"},"5752":{"market_hash_name":"Sticker | S1ren | Antwerp 2022"},"5753":{"market_hash_name":"Sticker | S1ren (Glitter) | Antwerp 2022"},"5754":{"market_hash_name":"Sticker | S1ren (Holo) | Antwerp 2022"},"5755":{"market_hash_name":"Sticker | S1ren (Gold) | Antwerp 2022"},"5756":{"market_hash_name":"Sticker | Jame | Antwerp 2022"},"5757":{"market_hash_name":"Sticker | Jame (Glitter) | Antwerp 2022"},"5758":{"market_hash_name":"Sticker | Jame (Holo) | Antwerp 2022"},"5759":{"market_hash_name":"Sticker | Jame (Gold) | Antwerp 2022"},"576":{"market_hash_name":"Sticker | Maniac (Foil) | Cologne 2015"},"5760":{"market_hash_name":"Sticker | qikert | Antwerp 2022"},"5761":{"market_hash_name":"Sticker | qikert (Glitter) | Antwerp 2022"},"5762":{"market_hash_name":"Sticker | qikert (Holo) | Antwerp 2022"},"5763":{"market_hash_name":"Sticker | qikert (Gold) | Antwerp 2022"},"5764":{"market_hash_name":"Sticker | buster | Antwerp 2022"},"5765":{"market_hash_name":"Sticker | buster (Glitter) | Antwerp 2022"},"5766":{"market_hash_name":"Sticker | buster (Holo) | Antwerp 2022"},"5767":{"market_hash_name":"Sticker | buster (Gold) | Antwerp 2022"},"5768":{"market_hash_name":"Sticker | YEKINDAR | Antwerp 2022"},"5769":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Antwerp 2022"},"577":{"market_hash_name":"Sticker | Maniac (Gold) | Cologne 2015"},"5770":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Antwerp 2022"},"5771":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Antwerp 2022"},"5772":{"market_hash_name":"Sticker | FL1T | Antwerp 2022"},"5773":{"market_hash_name":"Sticker | FL1T (Glitter) | Antwerp 2022"},"5774":{"market_hash_name":"Sticker | FL1T (Holo) | Antwerp 2022"},"5775":{"market_hash_name":"Sticker | FL1T (Gold) | Antwerp 2022"},"5776":{"market_hash_name":"Sticker | FaNg | Antwerp 2022"},"5777":{"market_hash_name":"Sticker | FaNg (Glitter) | Antwerp 2022"},"5778":{"market_hash_name":"Sticker | FaNg (Holo) | Antwerp 2022"},"5779":{"market_hash_name":"Sticker | FaNg (Gold) | Antwerp 2022"},"578":{"market_hash_name":"Sticker | Ex6TenZ | Cologne 2015"},"5780":{"market_hash_name":"Sticker | floppy | Antwerp 2022"},"5781":{"market_hash_name":"Sticker | floppy (Glitter) | Antwerp 2022"},"5782":{"market_hash_name":"Sticker | floppy (Holo) | Antwerp 2022"},"5783":{"market_hash_name":"Sticker | floppy (Gold) | Antwerp 2022"},"5784":{"market_hash_name":"Sticker | Grim | Antwerp 2022"},"5785":{"market_hash_name":"Sticker | Grim (Glitter) | Antwerp 2022"},"5786":{"market_hash_name":"Sticker | Grim (Holo) | Antwerp 2022"},"5787":{"market_hash_name":"Sticker | Grim (Gold) | Antwerp 2022"},"5788":{"market_hash_name":"Sticker | JT | Antwerp 2022"},"5789":{"market_hash_name":"Sticker | JT (Glitter) | Antwerp 2022"},"579":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | Cologne 2015"},"5790":{"market_hash_name":"Sticker | JT (Holo) | Antwerp 2022"},"5791":{"market_hash_name":"Sticker | JT (Gold) | Antwerp 2022"},"5792":{"market_hash_name":"Sticker | junior | Antwerp 2022"},"5793":{"market_hash_name":"Sticker | junior (Glitter) | Antwerp 2022"},"5794":{"market_hash_name":"Sticker | junior (Holo) | Antwerp 2022"},"5795":{"market_hash_name":"Sticker | junior (Gold) | Antwerp 2022"},"5796":{"market_hash_name":"Sticker | bLitz | Antwerp 2022"},"5797":{"market_hash_name":"Sticker | bLitz (Glitter) | Antwerp 2022"},"5798":{"market_hash_name":"Sticker | bLitz (Holo) | Antwerp 2022"},"5799":{"market_hash_name":"Sticker | bLitz (Gold) | Antwerp 2022"},"58":{"market_hash_name":"Sticker | HellRaisers (Holo) | Katowice 2014"},"580":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | Cologne 2015"},"5800":{"market_hash_name":"Sticker | kabal | Antwerp 2022"},"5801":{"market_hash_name":"Sticker | kabal (Glitter) | Antwerp 2022"},"5802":{"market_hash_name":"Sticker | kabal (Holo) | Antwerp 2022"},"5803":{"market_hash_name":"Sticker | kabal (Gold) | Antwerp 2022"},"5804":{"market_hash_name":"Sticker | nin9 | Antwerp 2022"},"5805":{"market_hash_name":"Sticker | nin9 (Glitter) | Antwerp 2022"},"5806":{"market_hash_name":"Sticker | nin9 (Holo) | Antwerp 2022"},"5807":{"market_hash_name":"Sticker | nin9 (Gold) | Antwerp 2022"},"5808":{"market_hash_name":"Sticker | sk0R | Antwerp 2022"},"5809":{"market_hash_name":"Sticker | sk0R (Glitter) | Antwerp 2022"},"581":{"market_hash_name":"Sticker | shox | Cologne 2015"},"5810":{"market_hash_name":"Sticker | sk0R (Holo) | Antwerp 2022"},"5811":{"market_hash_name":"Sticker | sk0R (Gold) | Antwerp 2022"},"5812":{"market_hash_name":"Sticker | Techno4K | Antwerp 2022"},"5813":{"market_hash_name":"Sticker | Techno4K (Glitter) | Antwerp 2022"},"5814":{"market_hash_name":"Sticker | Techno4K (Holo) | Antwerp 2022"},"5815":{"market_hash_name":"Sticker | Techno4K (Gold) | Antwerp 2022"},"5816":{"market_hash_name":"Sticker | ins | Antwerp 2022"},"5817":{"market_hash_name":"Sticker | ins (Glitter) | Antwerp 2022"},"5818":{"market_hash_name":"Sticker | ins (Holo) | Antwerp 2022"},"5819":{"market_hash_name":"Sticker | ins (Gold) | Antwerp 2022"},"582":{"market_hash_name":"Sticker | shox (Foil) | Cologne 2015"},"5820":{"market_hash_name":"Sticker | sico | Antwerp 2022"},"5821":{"market_hash_name":"Sticker | sico (Glitter) | Antwerp 2022"},"5822":{"market_hash_name":"Sticker | sico (Holo) | Antwerp 2022"},"5823":{"market_hash_name":"Sticker | sico (Gold) | Antwerp 2022"},"5824":{"market_hash_name":"Sticker | Liazz | Antwerp 2022"},"5825":{"market_hash_name":"Sticker | Liazz (Glitter) | Antwerp 2022"},"5826":{"market_hash_name":"Sticker | Liazz (Holo) | Antwerp 2022"},"5827":{"market_hash_name":"Sticker | Liazz (Gold) | Antwerp 2022"},"5828":{"market_hash_name":"Sticker | hatz | Antwerp 2022"},"5829":{"market_hash_name":"Sticker | hatz (Glitter) | Antwerp 2022"},"583":{"market_hash_name":"Sticker | shox (Gold) | Cologne 2015"},"5830":{"market_hash_name":"Sticker | hatz (Holo) | Antwerp 2022"},"5831":{"market_hash_name":"Sticker | hatz (Gold) | Antwerp 2022"},"5832":{"market_hash_name":"Sticker | aliStair | Antwerp 2022"},"5833":{"market_hash_name":"Sticker | aliStair (Glitter) | Antwerp 2022"},"5834":{"market_hash_name":"Sticker | aliStair (Holo) | Antwerp 2022"},"5835":{"market_hash_name":"Sticker | aliStair (Gold) | Antwerp 2022"},"5836":{"market_hash_name":"Sticker | shox | Antwerp 2022"},"5837":{"market_hash_name":"Sticker | shox (Glitter) | Antwerp 2022"},"5838":{"market_hash_name":"Sticker | shox (Holo) | Antwerp 2022"},"5839":{"market_hash_name":"Sticker | shox (Gold) | Antwerp 2022"},"584":{"market_hash_name":"Sticker | SmithZz | Cologne 2015"},"5840":{"market_hash_name":"Sticker | EliGE | Antwerp 2022"},"5841":{"market_hash_name":"Sticker | EliGE (Glitter) | Antwerp 2022"},"5842":{"market_hash_name":"Sticker | EliGE (Holo) | Antwerp 2022"},"5843":{"market_hash_name":"Sticker | EliGE (Gold) | Antwerp 2022"},"5844":{"market_hash_name":"Sticker | oSee | Antwerp 2022"},"5845":{"market_hash_name":"Sticker | oSee (Glitter) | Antwerp 2022"},"5846":{"market_hash_name":"Sticker | oSee (Holo) | Antwerp 2022"},"5847":{"market_hash_name":"Sticker | oSee (Gold) | Antwerp 2022"},"5848":{"market_hash_name":"Sticker | nitr0 | Antwerp 2022"},"5849":{"market_hash_name":"Sticker | nitr0 (Glitter) | Antwerp 2022"},"585":{"market_hash_name":"Sticker | SmithZz (Foil) | Cologne 2015"},"5850":{"market_hash_name":"Sticker | nitr0 (Holo) | Antwerp 2022"},"5851":{"market_hash_name":"Sticker | nitr0 (Gold) | Antwerp 2022"},"5852":{"market_hash_name":"Sticker | NAF | Antwerp 2022"},"5853":{"market_hash_name":"Sticker | NAF (Glitter) | Antwerp 2022"},"5854":{"market_hash_name":"Sticker | NAF (Holo) | Antwerp 2022"},"5855":{"market_hash_name":"Sticker | NAF (Gold) | Antwerp 2022"},"5856":{"market_hash_name":"Sticker | rox | Antwerp 2022"},"5857":{"market_hash_name":"Sticker | rox (Glitter) | Antwerp 2022"},"5858":{"market_hash_name":"Sticker | rox (Holo) | Antwerp 2022"},"5859":{"market_hash_name":"Sticker | rox (Gold) | Antwerp 2022"},"586":{"market_hash_name":"Sticker | SmithZz (Gold) | Cologne 2015"},"5860":{"market_hash_name":"Sticker | luken | Antwerp 2022"},"5861":{"market_hash_name":"Sticker | luken (Glitter) | Antwerp 2022"},"5862":{"market_hash_name":"Sticker | luken (Holo) | Antwerp 2022"},"5863":{"market_hash_name":"Sticker | luken (Gold) | Antwerp 2022"},"5864":{"market_hash_name":"Sticker | max | Antwerp 2022"},"5865":{"market_hash_name":"Sticker | max (Glitter) | Antwerp 2022"},"5866":{"market_hash_name":"Sticker | max (Holo) | Antwerp 2022"},"5867":{"market_hash_name":"Sticker | max (Gold) | Antwerp 2022"},"5868":{"market_hash_name":"Sticker | dgt | Antwerp 2022"},"5869":{"market_hash_name":"Sticker | dgt (Glitter) | Antwerp 2022"},"587":{"market_hash_name":"Sticker | RpK | Cologne 2015"},"5870":{"market_hash_name":"Sticker | dgt (Holo) | Antwerp 2022"},"5871":{"market_hash_name":"Sticker | dgt (Gold) | Antwerp 2022"},"5872":{"market_hash_name":"Sticker | dav1d | Antwerp 2022"},"5873":{"market_hash_name":"Sticker | dav1d (Glitter) | Antwerp 2022"},"5874":{"market_hash_name":"Sticker | dav1d (Holo) | Antwerp 2022"},"5875":{"market_hash_name":"Sticker | dav1d (Gold) | Antwerp 2022"},"5876":{"market_hash_name":"Sticker | rain (Champion) | Antwerp 2022"},"5877":{"market_hash_name":"Sticker | rain (Glitter, Champion) | Antwerp 2022"},"5878":{"market_hash_name":"Sticker | rain (Holo, Champion) | Antwerp 2022"},"5879":{"market_hash_name":"Sticker | rain (Gold, Champion) | Antwerp 2022"},"588":{"market_hash_name":"Sticker | RpK (Foil) | Cologne 2015"},"5880":{"market_hash_name":"Sticker | karrigan (Champion) | Antwerp 2022"},"5881":{"market_hash_name":"Sticker | karrigan (Glitter, Champion) | Antwerp 2022"},"5882":{"market_hash_name":"Sticker | karrigan (Holo, Champion) | Antwerp 2022"},"5883":{"market_hash_name":"Sticker | karrigan (Gold, Champion) | Antwerp 2022"},"5884":{"market_hash_name":"Sticker | Twistzz (Champion) | Antwerp 2022"},"5885":{"market_hash_name":"Sticker | Twistzz (Glitter, Champion) | Antwerp 2022"},"5886":{"market_hash_name":"Sticker | Twistzz (Holo, Champion) | Antwerp 2022"},"5887":{"market_hash_name":"Sticker | Twistzz (Gold, Champion) | Antwerp 2022"},"5888":{"market_hash_name":"Sticker | broky (Champion) | Antwerp 2022"},"5889":{"market_hash_name":"Sticker | broky (Glitter, Champion) | Antwerp 2022"},"589":{"market_hash_name":"Sticker | RpK (Gold) | Cologne 2015"},"5890":{"market_hash_name":"Sticker | broky (Holo, Champion) | Antwerp 2022"},"5891":{"market_hash_name":"Sticker | broky (Gold, Champion) | Antwerp 2022"},"5892":{"market_hash_name":"Sticker | ropz (Champion) | Antwerp 2022"},"5893":{"market_hash_name":"Sticker | ropz (Glitter, Champion) | Antwerp 2022"},"5894":{"market_hash_name":"Sticker | ropz (Holo, Champion) | Antwerp 2022"},"5895":{"market_hash_name":"Sticker | ropz (Gold, Champion) | Antwerp 2022"},"5896":{"market_hash_name":"Sticker | Arms Race"},"5897":{"market_hash_name":"Sticker | B-Day"},"5898":{"market_hash_name":"Sticker | Baby Cerberus"},"5899":{"market_hash_name":"Sticker | Baby Fire Serpent"},"59":{"market_hash_name":"Sticker | iBUYPOWER | Katowice 2014"},"590":{"market_hash_name":"Sticker | hazed | Cologne 2015"},"5900":{"market_hash_name":"Sticker | Baby Howl"},"5901":{"market_hash_name":"Sticker | Baby Lore"},"5902":{"market_hash_name":"Sticker | Baby Medusa"},"5903":{"market_hash_name":"Sticker | Beaky Decade"},"5904":{"market_hash_name":"Sticker | Booth"},"5905":{"market_hash_name":"Sticker | Call Your Flashes"},"5906":{"market_hash_name":"Sticker | Chicken Whisperer"},"5907":{"market_hash_name":"Sticker | Clicking Heads"},"5908":{"market_hash_name":"Sticker | Co Co Co"},"5909":{"market_hash_name":"Sticker | C-S On The Go"},"591":{"market_hash_name":"Sticker | hazed (Foil) | Cologne 2015"},"5910":{"market_hash_name":"Sticker | Cursed Penmanship"},"5911":{"market_hash_name":"Sticker | Dragon Tale"},"5912":{"market_hash_name":"Sticker | Dragon's Keep"},"5913":{"market_hash_name":"Sticker | Dreams And Mimics"},"5914":{"market_hash_name":"Sticker | Endless Cycle"},"5915":{"market_hash_name":"Sticker | Exo Jumper"},"5916":{"market_hash_name":"Sticker | Free Range"},"5917":{"market_hash_name":"Sticker | Good Sports"},"5918":{"market_hash_name":"Sticker | GO"},"5919":{"market_hash_name":"Sticker | Good Versus Evil"},"592":{"market_hash_name":"Sticker | hazed (Gold) | Cologne 2015"},"5920":{"market_hash_name":"Sticker | Green's Problem"},"5921":{"market_hash_name":"Sticker | Laser Beam"},"5922":{"market_hash_name":"Sticker | Monster"},"5923":{"market_hash_name":"Sticker | Noble Steed"},"5924":{"market_hash_name":"Sticker | Not For Resale"},"5925":{"market_hash_name":"Sticker | Press Start"},"5926":{"market_hash_name":"Sticker | Choose Wisely"},"5927":{"market_hash_name":"Sticker | Shifty Tactics"},"5928":{"market_hash_name":"Sticker | Rush More"},"5929":{"market_hash_name":"Sticker | Save Me"},"593":{"market_hash_name":"Sticker | FNS | Cologne 2015"},"5930":{"market_hash_name":"Sticker | Agent Select"},"5931":{"market_hash_name":"Sticker | This Is Fine (H)"},"5932":{"market_hash_name":"Sticker | TV On Mirage"},"5933":{"market_hash_name":"Sticker | Zeused"},"5934":{"market_hash_name":"Sticker | Ace Clutch Co. (Holo)"},"5935":{"market_hash_name":"Sticker | Blue Gem (Glitter)"},"5936":{"market_hash_name":"Sticker | Go Boom (Glitter)"},"5937":{"market_hash_name":"Sticker | Cbbl (Holo)"},"5938":{"market_hash_name":"Sticker | Defuse It (Holo)"},"5939":{"market_hash_name":"Sticker | Conspiracy Club (Holo)"},"594":{"market_hash_name":"Sticker | FNS (Foil) | Cologne 2015"},"5940":{"market_hash_name":"Sticker | Get Smoked (Holo)"},"5941":{"market_hash_name":"Sticker | Kawaii CT (Holo)"},"5942":{"market_hash_name":"Sticker | Kawaii T (Holo)"},"5943":{"market_hash_name":"Sticker | Leaving The Station (Holo)"},"5944":{"market_hash_name":"Sticker | Pain Train (Holo)"},"5945":{"market_hash_name":"Sticker | Vertigo's Hero (Holo)"},"5946":{"market_hash_name":"Sticker | Zeusception (Holo)"},"5947":{"market_hash_name":"Sticker | Dust FA (Foil)"},"5948":{"market_hash_name":"Sticker | In The Fire (Foil)"},"5949":{"market_hash_name":"Sticker | Approaching Site (Foil)"},"595":{"market_hash_name":"Sticker | FNS (Gold) | Cologne 2015"},"5950":{"market_hash_name":"Sticker | Overpass Diorama (Foil)"},"5951":{"market_hash_name":"Sticker | Pure Malt (Foil)"},"5952":{"market_hash_name":"Sticker | Showdown (Foil)"},"5953":{"market_hash_name":"Sticker | Ten Years (Foil)"},"5954":{"market_hash_name":"Sticker | Romanov's Fire (Foil)"},"5955":{"market_hash_name":"Sticker | Freeze (Lenticular)"},"5956":{"market_hash_name":"Sticker | Global TV (Lenticular)"},"5957":{"market_hash_name":"Sticker | Magic Rush Ball (Lenticular)"},"5958":{"market_hash_name":"Sticker | DJ Safecracker (Lenticular)"},"5959":{"market_hash_name":"Sticker | Skin Lover (Lenticular)"},"596":{"market_hash_name":"Sticker | jdm64 | Cologne 2015"},"5960":{"market_hash_name":"Sticker | TV Installation (Lenticular)"},"5961":{"market_hash_name":"Sticker | ENCE | Rio 2022"},"5962":{"market_hash_name":"Sticker | ENCE (Glitter) | Rio 2022"},"5963":{"market_hash_name":"Sticker | ENCE (Holo) | Rio 2022"},"5964":{"market_hash_name":"Sticker | ENCE (Gold) | Rio 2022"},"5965":{"market_hash_name":"Sticker | FaZe Clan | Rio 2022"},"5966":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Rio 2022"},"5967":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Rio 2022"},"5968":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Rio 2022"},"5969":{"market_hash_name":"Sticker | Heroic | Rio 2022"},"597":{"market_hash_name":"Sticker | jdm64 (Foil) | Cologne 2015"},"5970":{"market_hash_name":"Sticker | Heroic (Glitter) | Rio 2022"},"5971":{"market_hash_name":"Sticker | Heroic (Holo) | Rio 2022"},"5972":{"market_hash_name":"Sticker | Heroic (Gold) | Rio 2022"},"5973":{"market_hash_name":"Sticker | Natus Vincere | Rio 2022"},"5974":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Rio 2022"},"5975":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Rio 2022"},"5976":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Rio 2022"},"5977":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Rio 2022"},"5978":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Glitter) | Rio 2022"},"5979":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Rio 2022"},"598":{"market_hash_name":"Sticker | jdm64 (Gold) | Cologne 2015"},"5980":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Rio 2022"},"5981":{"market_hash_name":"Sticker | Sprout Esports | Rio 2022"},"5982":{"market_hash_name":"Sticker | Sprout Esports (Glitter) | Rio 2022"},"5983":{"market_hash_name":"Sticker | Sprout Esports (Holo) | Rio 2022"},"5984":{"market_hash_name":"Sticker | Sprout Esports (Gold) | Rio 2022"},"5985":{"market_hash_name":"Sticker | Team Liquid | Rio 2022"},"5986":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Rio 2022"},"5987":{"market_hash_name":"Sticker | Team Liquid (Holo) | Rio 2022"},"5988":{"market_hash_name":"Sticker | Team Liquid (Gold) | Rio 2022"},"5989":{"market_hash_name":"Sticker | Team Spirit | Rio 2022"},"599":{"market_hash_name":"Sticker | reltuC | Cologne 2015"},"5990":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Rio 2022"},"5991":{"market_hash_name":"Sticker | Team Spirit (Holo) | Rio 2022"},"5992":{"market_hash_name":"Sticker | Team Spirit (Gold) | Rio 2022"},"5993":{"market_hash_name":"Sticker | 9z Team | Rio 2022"},"5994":{"market_hash_name":"Sticker | 9z Team (Glitter) | Rio 2022"},"5995":{"market_hash_name":"Sticker | 9z Team (Holo) | Rio 2022"},"5996":{"market_hash_name":"Sticker | 9z Team (Gold) | Rio 2022"},"5997":{"market_hash_name":"Sticker | Bad News Eagles | Rio 2022"},"5998":{"market_hash_name":"Sticker | Bad News Eagles (Glitter) | Rio 2022"},"5999":{"market_hash_name":"Sticker | Bad News Eagles (Holo) | Rio 2022"},"6":{"market_hash_name":"Sticker | Blue Snowflake (Foil)"},"60":{"market_hash_name":"Sticker | iBUYPOWER (Holo) | Katowice 2014"},"600":{"market_hash_name":"Sticker | reltuC (Foil) | Cologne 2015"},"6000":{"market_hash_name":"Sticker | Bad News Eagles (Gold) | Rio 2022"},"6001":{"market_hash_name":"Sticker | BIG | Rio 2022"},"6002":{"market_hash_name":"Sticker | BIG (Glitter) | Rio 2022"},"6003":{"market_hash_name":"Sticker | BIG (Holo) | Rio 2022"},"6004":{"market_hash_name":"Sticker | BIG (Gold) | Rio 2022"},"6005":{"market_hash_name":"Sticker | Cloud9 | Rio 2022"},"6006":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Rio 2022"},"6007":{"market_hash_name":"Sticker | Cloud9 (Holo) | Rio 2022"},"6008":{"market_hash_name":"Sticker | Cloud9 (Gold) | Rio 2022"},"6009":{"market_hash_name":"Sticker | Evil Geniuses | Rio 2022"},"601":{"market_hash_name":"Sticker | reltuC (Gold) | Cologne 2015"},"6010":{"market_hash_name":"Sticker | Evil Geniuses (Glitter) | Rio 2022"},"6011":{"market_hash_name":"Sticker | Evil Geniuses (Holo) | Rio 2022"},"6012":{"market_hash_name":"Sticker | Evil Geniuses (Gold) | Rio 2022"},"6013":{"market_hash_name":"Sticker | MOUZ | Rio 2022"},"6014":{"market_hash_name":"Sticker | MOUZ (Glitter) | Rio 2022"},"6015":{"market_hash_name":"Sticker | MOUZ (Holo) | Rio 2022"},"6016":{"market_hash_name":"Sticker | MOUZ (Gold) | Rio 2022"},"6017":{"market_hash_name":"Sticker | OG | Rio 2022"},"6018":{"market_hash_name":"Sticker | OG (Glitter) | Rio 2022"},"6019":{"market_hash_name":"Sticker | OG (Holo) | Rio 2022"},"602":{"market_hash_name":"Sticker | tarik | Cologne 2015"},"6020":{"market_hash_name":"Sticker | OG (Gold) | Rio 2022"},"6021":{"market_hash_name":"Sticker | Vitality | Rio 2022"},"6022":{"market_hash_name":"Sticker | Vitality (Glitter) | Rio 2022"},"6023":{"market_hash_name":"Sticker | Vitality (Holo) | Rio 2022"},"6024":{"market_hash_name":"Sticker | Vitality (Gold) | Rio 2022"},"6025":{"market_hash_name":"Sticker | 00 Nation | Rio 2022"},"6026":{"market_hash_name":"Sticker | 00 Nation (Glitter) | Rio 2022"},"6027":{"market_hash_name":"Sticker | 00 Nation (Holo) | Rio 2022"},"6028":{"market_hash_name":"Sticker | 00 Nation (Gold) | Rio 2022"},"6029":{"market_hash_name":"Sticker | Fnatic | Rio 2022"},"603":{"market_hash_name":"Sticker | tarik (Foil) | Cologne 2015"},"6030":{"market_hash_name":"Sticker | Fnatic (Glitter) | Rio 2022"},"6031":{"market_hash_name":"Sticker | Fnatic (Holo) | Rio 2022"},"6032":{"market_hash_name":"Sticker | Fnatic (Gold) | Rio 2022"},"6033":{"market_hash_name":"Sticker | FURIA | Rio 2022"},"6034":{"market_hash_name":"Sticker | FURIA (Glitter) | Rio 2022"},"6035":{"market_hash_name":"Sticker | FURIA (Holo) | Rio 2022"},"6036":{"market_hash_name":"Sticker | FURIA (Gold) | Rio 2022"},"6037":{"market_hash_name":"Sticker | GamerLegion | Rio 2022"},"6038":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Rio 2022"},"6039":{"market_hash_name":"Sticker | GamerLegion (Holo) | Rio 2022"},"604":{"market_hash_name":"Sticker | tarik (Gold) | Cologne 2015"},"6040":{"market_hash_name":"Sticker | GamerLegion (Gold) | Rio 2022"},"6041":{"market_hash_name":"Sticker | Grayhound Gaming | Rio 2022"},"6042":{"market_hash_name":"Sticker | Grayhound Gaming (Glitter) | Rio 2022"},"6043":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Rio 2022"},"6044":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Rio 2022"},"6045":{"market_hash_name":"Sticker | IHC Esports | Rio 2022"},"6046":{"market_hash_name":"Sticker | IHC Esports (Glitter) | Rio 2022"},"6047":{"market_hash_name":"Sticker | IHC Esports (Holo) | Rio 2022"},"6048":{"market_hash_name":"Sticker | IHC Esports (Gold) | Rio 2022"},"6049":{"market_hash_name":"Sticker | Imperial Esports | Rio 2022"},"605":{"market_hash_name":"Sticker | n0thing | Cologne 2015"},"6050":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Rio 2022"},"6051":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Rio 2022"},"6052":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Rio 2022"},"6053":{"market_hash_name":"Sticker | Outsiders | Rio 2022"},"6054":{"market_hash_name":"Sticker | Outsiders (Glitter) | Rio 2022"},"6055":{"market_hash_name":"Sticker | Outsiders (Holo) | Rio 2022"},"6056":{"market_hash_name":"Sticker | Outsiders (Gold) | Rio 2022"},"6057":{"market_hash_name":"Sticker | IEM | Rio 2022"},"6058":{"market_hash_name":"Sticker | IEM (Glitter) | Rio 2022"},"6059":{"market_hash_name":"Sticker | IEM (Holo) | Rio 2022"},"606":{"market_hash_name":"Sticker | n0thing (Foil) | Cologne 2015"},"6060":{"market_hash_name":"Sticker | IEM (Gold) | Rio 2022"},"607":{"market_hash_name":"Sticker | n0thing (Gold) | Cologne 2015"},"608":{"market_hash_name":"Sticker | seang@res | Cologne 2015"},"6086":{"market_hash_name":"Sticker | Snappi | Rio 2022"},"6087":{"market_hash_name":"Sticker | Snappi (Glitter) | Rio 2022"},"6088":{"market_hash_name":"Sticker | Snappi (Holo) | Rio 2022"},"6089":{"market_hash_name":"Sticker | Snappi (Gold) | Rio 2022"},"609":{"market_hash_name":"Sticker | seang@res (Foil) | Cologne 2015"},"6090":{"market_hash_name":"Sticker | Dycha | Rio 2022"},"6091":{"market_hash_name":"Sticker | Dycha (Glitter) | Rio 2022"},"6092":{"market_hash_name":"Sticker | Dycha (Holo) | Rio 2022"},"6093":{"market_hash_name":"Sticker | Dycha (Gold) | Rio 2022"},"6094":{"market_hash_name":"Sticker | maden | Rio 2022"},"6095":{"market_hash_name":"Sticker | maden (Glitter) | Rio 2022"},"6096":{"market_hash_name":"Sticker | maden (Holo) | Rio 2022"},"6097":{"market_hash_name":"Sticker | maden (Gold) | Rio 2022"},"6098":{"market_hash_name":"Sticker | v4lde | Rio 2022"},"6099":{"market_hash_name":"Sticker | v4lde (Glitter) | Rio 2022"},"61":{"market_hash_name":"Sticker | Team LDLC.com | Katowice 2014"},"610":{"market_hash_name":"Sticker | seang@res (Gold) | Cologne 2015"},"6100":{"market_hash_name":"Sticker | v4lde (Holo) | Rio 2022"},"6101":{"market_hash_name":"Sticker | v4lde (Gold) | Rio 2022"},"6102":{"market_hash_name":"Sticker | SunPayus | Rio 2022"},"6103":{"market_hash_name":"Sticker | SunPayus (Glitter) | Rio 2022"},"6104":{"market_hash_name":"Sticker | SunPayus (Holo) | Rio 2022"},"6105":{"market_hash_name":"Sticker | SunPayus (Gold) | Rio 2022"},"6106":{"market_hash_name":"Sticker | karrigan | Rio 2022"},"6107":{"market_hash_name":"Sticker | karrigan (Glitter) | Rio 2022"},"6108":{"market_hash_name":"Sticker | karrigan (Holo) | Rio 2022"},"6109":{"market_hash_name":"Sticker | karrigan (Gold) | Rio 2022"},"611":{"market_hash_name":"Sticker | shroud | Cologne 2015"},"6110":{"market_hash_name":"Sticker | rain | Rio 2022"},"6111":{"market_hash_name":"Sticker | rain (Glitter) | Rio 2022"},"6112":{"market_hash_name":"Sticker | rain (Holo) | Rio 2022"},"6113":{"market_hash_name":"Sticker | rain (Gold) | Rio 2022"},"6114":{"market_hash_name":"Sticker | Twistzz | Rio 2022"},"6115":{"market_hash_name":"Sticker | Twistzz (Glitter) | Rio 2022"},"6116":{"market_hash_name":"Sticker | Twistzz (Holo) | Rio 2022"},"6117":{"market_hash_name":"Sticker | Twistzz (Gold) | Rio 2022"},"6118":{"market_hash_name":"Sticker | ropz | Rio 2022"},"6119":{"market_hash_name":"Sticker | ropz (Glitter) | Rio 2022"},"612":{"market_hash_name":"Sticker | shroud (Foil) | Cologne 2015"},"6120":{"market_hash_name":"Sticker | ropz (Holo) | Rio 2022"},"6121":{"market_hash_name":"Sticker | ropz (Gold) | Rio 2022"},"6122":{"market_hash_name":"Sticker | broky | Rio 2022"},"6123":{"market_hash_name":"Sticker | broky (Glitter) | Rio 2022"},"6124":{"market_hash_name":"Sticker | broky (Holo) | Rio 2022"},"6125":{"market_hash_name":"Sticker | broky (Gold) | Rio 2022"},"6126":{"market_hash_name":"Sticker | cadiaN | Rio 2022"},"6127":{"market_hash_name":"Sticker | cadiaN (Glitter) | Rio 2022"},"6128":{"market_hash_name":"Sticker | cadiaN (Holo) | Rio 2022"},"6129":{"market_hash_name":"Sticker | cadiaN (Gold) | Rio 2022"},"613":{"market_hash_name":"Sticker | shroud (Gold) | Cologne 2015"},"6130":{"market_hash_name":"Sticker | TeSeS | Rio 2022"},"6131":{"market_hash_name":"Sticker | TeSeS (Glitter) | Rio 2022"},"6132":{"market_hash_name":"Sticker | TeSeS (Holo) | Rio 2022"},"6133":{"market_hash_name":"Sticker | TeSeS (Gold) | Rio 2022"},"6134":{"market_hash_name":"Sticker | sjuush | Rio 2022"},"6135":{"market_hash_name":"Sticker | sjuush (Glitter) | Rio 2022"},"6136":{"market_hash_name":"Sticker | sjuush (Holo) | Rio 2022"},"6137":{"market_hash_name":"Sticker | sjuush (Gold) | Rio 2022"},"6138":{"market_hash_name":"Sticker | jabbi | Rio 2022"},"6139":{"market_hash_name":"Sticker | jabbi (Glitter) | Rio 2022"},"614":{"market_hash_name":"Sticker | freakazoid | Cologne 2015"},"6140":{"market_hash_name":"Sticker | jabbi (Holo) | Rio 2022"},"6141":{"market_hash_name":"Sticker | jabbi (Gold) | Rio 2022"},"6142":{"market_hash_name":"Sticker | stavn | Rio 2022"},"6143":{"market_hash_name":"Sticker | stavn (Glitter) | Rio 2022"},"6144":{"market_hash_name":"Sticker | stavn (Holo) | Rio 2022"},"6145":{"market_hash_name":"Sticker | stavn (Gold) | Rio 2022"},"6146":{"market_hash_name":"Sticker | b1t | Rio 2022"},"6147":{"market_hash_name":"Sticker | b1t (Glitter) | Rio 2022"},"6148":{"market_hash_name":"Sticker | b1t (Holo) | Rio 2022"},"6149":{"market_hash_name":"Sticker | b1t (Gold) | Rio 2022"},"615":{"market_hash_name":"Sticker | freakazoid (Foil) | Cologne 2015"},"6150":{"market_hash_name":"Sticker | electronic | Rio 2022"},"6151":{"market_hash_name":"Sticker | electronic (Glitter) | Rio 2022"},"6152":{"market_hash_name":"Sticker | electronic (Holo) | Rio 2022"},"6153":{"market_hash_name":"Sticker | electronic (Gold) | Rio 2022"},"6154":{"market_hash_name":"Sticker | sdy | Rio 2022"},"6155":{"market_hash_name":"Sticker | sdy (Glitter) | Rio 2022"},"6156":{"market_hash_name":"Sticker | sdy (Holo) | Rio 2022"},"6157":{"market_hash_name":"Sticker | sdy (Gold) | Rio 2022"},"6158":{"market_hash_name":"Sticker | Perfecto | Rio 2022"},"6159":{"market_hash_name":"Sticker | Perfecto (Glitter) | Rio 2022"},"616":{"market_hash_name":"Sticker | freakazoid (Gold) | Cologne 2015"},"6160":{"market_hash_name":"Sticker | Perfecto (Holo) | Rio 2022"},"6161":{"market_hash_name":"Sticker | Perfecto (Gold) | Rio 2022"},"6162":{"market_hash_name":"Sticker | s1mple | Rio 2022"},"6163":{"market_hash_name":"Sticker | s1mple (Glitter) | Rio 2022"},"6164":{"market_hash_name":"Sticker | s1mple (Holo) | Rio 2022"},"6165":{"market_hash_name":"Sticker | s1mple (Gold) | Rio 2022"},"6166":{"market_hash_name":"Sticker | es3tag | Rio 2022"},"6167":{"market_hash_name":"Sticker | es3tag (Glitter) | Rio 2022"},"6168":{"market_hash_name":"Sticker | es3tag (Holo) | Rio 2022"},"6169":{"market_hash_name":"Sticker | es3tag (Gold) | Rio 2022"},"617":{"market_hash_name":"Sticker | Skadoodle | Cologne 2015"},"6170":{"market_hash_name":"Sticker | Aleksib | Rio 2022"},"6171":{"market_hash_name":"Sticker | Aleksib (Glitter) | Rio 2022"},"6172":{"market_hash_name":"Sticker | Aleksib (Holo) | Rio 2022"},"6173":{"market_hash_name":"Sticker | Aleksib (Gold) | Rio 2022"},"6174":{"market_hash_name":"Sticker | REZ | Rio 2022"},"6175":{"market_hash_name":"Sticker | REZ (Glitter) | Rio 2022"},"6176":{"market_hash_name":"Sticker | REZ (Holo) | Rio 2022"},"6177":{"market_hash_name":"Sticker | REZ (Gold) | Rio 2022"},"6178":{"market_hash_name":"Sticker | hampus | Rio 2022"},"6179":{"market_hash_name":"Sticker | hampus (Glitter) | Rio 2022"},"618":{"market_hash_name":"Sticker | Skadoodle (Foil) | Cologne 2015"},"6180":{"market_hash_name":"Sticker | hampus (Holo) | Rio 2022"},"6181":{"market_hash_name":"Sticker | hampus (Gold) | Rio 2022"},"6182":{"market_hash_name":"Sticker | Brollan | Rio 2022"},"6183":{"market_hash_name":"Sticker | Brollan (Glitter) | Rio 2022"},"6184":{"market_hash_name":"Sticker | Brollan (Holo) | Rio 2022"},"6185":{"market_hash_name":"Sticker | Brollan (Gold) | Rio 2022"},"6186":{"market_hash_name":"Sticker | slaxz- | Rio 2022"},"6187":{"market_hash_name":"Sticker | slaxz- (Glitter) | Rio 2022"},"6188":{"market_hash_name":"Sticker | slaxz- (Holo) | Rio 2022"},"6189":{"market_hash_name":"Sticker | slaxz- (Gold) | Rio 2022"},"619":{"market_hash_name":"Sticker | Skadoodle (Gold) | Cologne 2015"},"6190":{"market_hash_name":"Sticker | lauNX | Rio 2022"},"6191":{"market_hash_name":"Sticker | lauNX (Glitter) | Rio 2022"},"6192":{"market_hash_name":"Sticker | lauNX (Holo) | Rio 2022"},"6193":{"market_hash_name":"Sticker | lauNX (Gold) | Rio 2022"},"6194":{"market_hash_name":"Sticker | refrezh | Rio 2022"},"6195":{"market_hash_name":"Sticker | refrezh (Glitter) | Rio 2022"},"6196":{"market_hash_name":"Sticker | refrezh (Holo) | Rio 2022"},"6197":{"market_hash_name":"Sticker | refrezh (Gold) | Rio 2022"},"6198":{"market_hash_name":"Sticker | Staehr | Rio 2022"},"6199":{"market_hash_name":"Sticker | Staehr (Glitter) | Rio 2022"},"62":{"market_hash_name":"Sticker | Team LDLC.com (Holo) | Katowice 2014"},"620":{"market_hash_name":"Sticker | Fnatic | Cologne 2015"},"6200":{"market_hash_name":"Sticker | Staehr (Holo) | Rio 2022"},"6201":{"market_hash_name":"Sticker | Staehr (Gold) | Rio 2022"},"6202":{"market_hash_name":"Sticker | Zyphon | Rio 2022"},"6203":{"market_hash_name":"Sticker | Zyphon (Glitter) | Rio 2022"},"6204":{"market_hash_name":"Sticker | Zyphon (Holo) | Rio 2022"},"6205":{"market_hash_name":"Sticker | Zyphon (Gold) | Rio 2022"},"6206":{"market_hash_name":"Sticker | YEKINDAR | Rio 2022"},"6207":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Rio 2022"},"6208":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Rio 2022"},"6209":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Rio 2022"},"621":{"market_hash_name":"Sticker | Fnatic (Foil) | Cologne 2015"},"6210":{"market_hash_name":"Sticker | oSee | Rio 2022"},"6211":{"market_hash_name":"Sticker | oSee (Glitter) | Rio 2022"},"6212":{"market_hash_name":"Sticker | oSee (Holo) | Rio 2022"},"6213":{"market_hash_name":"Sticker | oSee (Gold) | Rio 2022"},"6214":{"market_hash_name":"Sticker | nitr0 | Rio 2022"},"6215":{"market_hash_name":"Sticker | nitr0 (Glitter) | Rio 2022"},"6216":{"market_hash_name":"Sticker | nitr0 (Holo) | Rio 2022"},"6217":{"market_hash_name":"Sticker | nitr0 (Gold) | Rio 2022"},"6218":{"market_hash_name":"Sticker | NAF | Rio 2022"},"6219":{"market_hash_name":"Sticker | NAF (Glitter) | Rio 2022"},"622":{"market_hash_name":"Sticker | Fnatic (Gold) | Cologne 2015"},"6220":{"market_hash_name":"Sticker | NAF (Holo) | Rio 2022"},"6221":{"market_hash_name":"Sticker | NAF (Gold) | Rio 2022"},"6222":{"market_hash_name":"Sticker | EliGE | Rio 2022"},"6223":{"market_hash_name":"Sticker | EliGE (Glitter) | Rio 2022"},"6224":{"market_hash_name":"Sticker | EliGE (Holo) | Rio 2022"},"6225":{"market_hash_name":"Sticker | EliGE (Gold) | Rio 2022"},"6226":{"market_hash_name":"Sticker | chopper | Rio 2022"},"6227":{"market_hash_name":"Sticker | chopper (Glitter) | Rio 2022"},"6228":{"market_hash_name":"Sticker | chopper (Holo) | Rio 2022"},"6229":{"market_hash_name":"Sticker | chopper (Gold) | Rio 2022"},"623":{"market_hash_name":"Sticker | Virtus.Pro | Cologne 2015"},"6230":{"market_hash_name":"Sticker | magixx | Rio 2022"},"6231":{"market_hash_name":"Sticker | magixx (Glitter) | Rio 2022"},"6232":{"market_hash_name":"Sticker | magixx (Holo) | Rio 2022"},"6233":{"market_hash_name":"Sticker | magixx (Gold) | Rio 2022"},"6234":{"market_hash_name":"Sticker | Patsi | Rio 2022"},"6235":{"market_hash_name":"Sticker | Patsi (Glitter) | Rio 2022"},"6236":{"market_hash_name":"Sticker | Patsi (Holo) | Rio 2022"},"6237":{"market_hash_name":"Sticker | Patsi (Gold) | Rio 2022"},"6238":{"market_hash_name":"Sticker | S1ren | Rio 2022"},"6239":{"market_hash_name":"Sticker | S1ren (Glitter) | Rio 2022"},"624":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cologne 2015"},"6240":{"market_hash_name":"Sticker | S1ren (Holo) | Rio 2022"},"6241":{"market_hash_name":"Sticker | S1ren (Gold) | Rio 2022"},"6242":{"market_hash_name":"Sticker | w0nderful | Rio 2022"},"6243":{"market_hash_name":"Sticker | w0nderful (Glitter) | Rio 2022"},"6244":{"market_hash_name":"Sticker | w0nderful (Holo) | Rio 2022"},"6245":{"market_hash_name":"Sticker | w0nderful (Gold) | Rio 2022"},"6246":{"market_hash_name":"Sticker | NQZ | Rio 2022"},"6247":{"market_hash_name":"Sticker | NQZ (Glitter) | Rio 2022"},"6248":{"market_hash_name":"Sticker | NQZ (Holo) | Rio 2022"},"6249":{"market_hash_name":"Sticker | NQZ (Gold) | Rio 2022"},"625":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Cologne 2015"},"6250":{"market_hash_name":"Sticker | dav1deuS | Rio 2022"},"6251":{"market_hash_name":"Sticker | dav1deuS (Glitter) | Rio 2022"},"6252":{"market_hash_name":"Sticker | dav1deuS (Holo) | Rio 2022"},"6253":{"market_hash_name":"Sticker | dav1deuS (Gold) | Rio 2022"},"6254":{"market_hash_name":"Sticker | max | Rio 2022"},"6255":{"market_hash_name":"Sticker | max (Glitter) | Rio 2022"},"6256":{"market_hash_name":"Sticker | max (Holo) | Rio 2022"},"6257":{"market_hash_name":"Sticker | max (Gold) | Rio 2022"},"6258":{"market_hash_name":"Sticker | dgt | Rio 2022"},"6259":{"market_hash_name":"Sticker | dgt (Glitter) | Rio 2022"},"626":{"market_hash_name":"Sticker | mousesports | Cologne 2015"},"6260":{"market_hash_name":"Sticker | dgt (Holo) | Rio 2022"},"6261":{"market_hash_name":"Sticker | dgt (Gold) | Rio 2022"},"6262":{"market_hash_name":"Sticker | BUDA | Rio 2022"},"6263":{"market_hash_name":"Sticker | BUDA (Glitter) | Rio 2022"},"6264":{"market_hash_name":"Sticker | BUDA (Holo) | Rio 2022"},"6265":{"market_hash_name":"Sticker | BUDA (Gold) | Rio 2022"},"6266":{"market_hash_name":"Sticker | gxx- | Rio 2022"},"6267":{"market_hash_name":"Sticker | gxx- (Glitter) | Rio 2022"},"6268":{"market_hash_name":"Sticker | gxx- (Holo) | Rio 2022"},"6269":{"market_hash_name":"Sticker | gxx- (Gold) | Rio 2022"},"627":{"market_hash_name":"Sticker | mousesports (Foil) | Cologne 2015"},"6270":{"market_hash_name":"Sticker | SENER1 | Rio 2022"},"6271":{"market_hash_name":"Sticker | SENER1 (Glitter) | Rio 2022"},"6272":{"market_hash_name":"Sticker | SENER1 (Holo) | Rio 2022"},"6273":{"market_hash_name":"Sticker | SENER1 (Gold) | Rio 2022"},"6274":{"market_hash_name":"Sticker | juanflatroo | Rio 2022"},"6275":{"market_hash_name":"Sticker | juanflatroo (Glitter) | Rio 2022"},"6276":{"market_hash_name":"Sticker | juanflatroo (Holo) | Rio 2022"},"6277":{"market_hash_name":"Sticker | juanflatroo (Gold) | Rio 2022"},"6278":{"market_hash_name":"Sticker | rigoN | Rio 2022"},"6279":{"market_hash_name":"Sticker | rigoN (Glitter) | Rio 2022"},"628":{"market_hash_name":"Sticker | mousesports (Gold) | Cologne 2015"},"6280":{"market_hash_name":"Sticker | rigoN (Holo) | Rio 2022"},"6281":{"market_hash_name":"Sticker | rigoN (Gold) | Rio 2022"},"6282":{"market_hash_name":"Sticker | sinnopsyy | Rio 2022"},"6283":{"market_hash_name":"Sticker | sinnopsyy (Glitter) | Rio 2022"},"6284":{"market_hash_name":"Sticker | sinnopsyy (Holo) | Rio 2022"},"6285":{"market_hash_name":"Sticker | sinnopsyy (Gold) | Rio 2022"},"6286":{"market_hash_name":"Sticker | faveN | Rio 2022"},"6287":{"market_hash_name":"Sticker | faveN (Glitter) | Rio 2022"},"6288":{"market_hash_name":"Sticker | faveN (Holo) | Rio 2022"},"6289":{"market_hash_name":"Sticker | faveN (Gold) | Rio 2022"},"629":{"market_hash_name":"Sticker | Natus Vincere | Cologne 2015"},"6290":{"market_hash_name":"Sticker | Krimbo | Rio 2022"},"6291":{"market_hash_name":"Sticker | Krimbo (Glitter) | Rio 2022"},"6292":{"market_hash_name":"Sticker | Krimbo (Holo) | Rio 2022"},"6293":{"market_hash_name":"Sticker | Krimbo (Gold) | Rio 2022"},"6294":{"market_hash_name":"Sticker | k1to | Rio 2022"},"6295":{"market_hash_name":"Sticker | k1to (Glitter) | Rio 2022"},"6296":{"market_hash_name":"Sticker | k1to (Holo) | Rio 2022"},"6297":{"market_hash_name":"Sticker | k1to (Gold) | Rio 2022"},"6298":{"market_hash_name":"Sticker | tabseN | Rio 2022"},"6299":{"market_hash_name":"Sticker | tabseN (Glitter) | Rio 2022"},"63":{"market_hash_name":"Sticker | LGB eSports | Katowice 2014"},"630":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cologne 2015"},"6300":{"market_hash_name":"Sticker | tabseN (Holo) | Rio 2022"},"6301":{"market_hash_name":"Sticker | tabseN (Gold) | Rio 2022"},"6302":{"market_hash_name":"Sticker | syrsoN | Rio 2022"},"6303":{"market_hash_name":"Sticker | syrsoN (Glitter) | Rio 2022"},"6304":{"market_hash_name":"Sticker | syrsoN (Holo) | Rio 2022"},"6305":{"market_hash_name":"Sticker | syrsoN (Gold) | Rio 2022"},"6306":{"market_hash_name":"Sticker | sh1ro | Rio 2022"},"6307":{"market_hash_name":"Sticker | sh1ro (Glitter) | Rio 2022"},"6308":{"market_hash_name":"Sticker | sh1ro (Holo) | Rio 2022"},"6309":{"market_hash_name":"Sticker | sh1ro (Gold) | Rio 2022"},"631":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cologne 2015"},"6310":{"market_hash_name":"Sticker | nafany | Rio 2022"},"6311":{"market_hash_name":"Sticker | nafany (Glitter) | Rio 2022"},"6312":{"market_hash_name":"Sticker | nafany (Holo) | Rio 2022"},"6313":{"market_hash_name":"Sticker | nafany (Gold) | Rio 2022"},"6314":{"market_hash_name":"Sticker | Ax1Le | Rio 2022"},"6315":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Rio 2022"},"6316":{"market_hash_name":"Sticker | Ax1Le (Holo) | Rio 2022"},"6317":{"market_hash_name":"Sticker | Ax1Le (Gold) | Rio 2022"},"6318":{"market_hash_name":"Sticker | interz | Rio 2022"},"6319":{"market_hash_name":"Sticker | interz (Glitter) | Rio 2022"},"632":{"market_hash_name":"Sticker | Renegades | Cologne 2015"},"6320":{"market_hash_name":"Sticker | interz (Holo) | Rio 2022"},"6321":{"market_hash_name":"Sticker | interz (Gold) | Rio 2022"},"6322":{"market_hash_name":"Sticker | Hobbit | Rio 2022"},"6323":{"market_hash_name":"Sticker | Hobbit (Glitter) | Rio 2022"},"6324":{"market_hash_name":"Sticker | Hobbit (Holo) | Rio 2022"},"6325":{"market_hash_name":"Sticker | Hobbit (Gold) | Rio 2022"},"6326":{"market_hash_name":"Sticker | autimatic | Rio 2022"},"6327":{"market_hash_name":"Sticker | autimatic (Glitter) | Rio 2022"},"6328":{"market_hash_name":"Sticker | autimatic (Holo) | Rio 2022"},"6329":{"market_hash_name":"Sticker | autimatic (Gold) | Rio 2022"},"633":{"market_hash_name":"Sticker | Renegades (Foil) | Cologne 2015"},"6330":{"market_hash_name":"Sticker | neaLaN | Rio 2022"},"6331":{"market_hash_name":"Sticker | neaLaN (Glitter) | Rio 2022"},"6332":{"market_hash_name":"Sticker | neaLaN (Holo) | Rio 2022"},"6333":{"market_hash_name":"Sticker | neaLaN (Gold) | Rio 2022"},"6334":{"market_hash_name":"Sticker | Brehze | Rio 2022"},"6335":{"market_hash_name":"Sticker | Brehze (Glitter) | Rio 2022"},"6336":{"market_hash_name":"Sticker | Brehze (Holo) | Rio 2022"},"6337":{"market_hash_name":"Sticker | Brehze (Gold) | Rio 2022"},"6338":{"market_hash_name":"Sticker | HexT | Rio 2022"},"6339":{"market_hash_name":"Sticker | HexT (Glitter) | Rio 2022"},"634":{"market_hash_name":"Sticker | Renegades (Gold) | Cologne 2015"},"6340":{"market_hash_name":"Sticker | HexT (Holo) | Rio 2022"},"6341":{"market_hash_name":"Sticker | HexT (Gold) | Rio 2022"},"6342":{"market_hash_name":"Sticker | CeRq | Rio 2022"},"6343":{"market_hash_name":"Sticker | CeRq (Glitter) | Rio 2022"},"6344":{"market_hash_name":"Sticker | CeRq (Holo) | Rio 2022"},"6345":{"market_hash_name":"Sticker | CeRq (Gold) | Rio 2022"},"6346":{"market_hash_name":"Sticker | frozen | Rio 2022"},"6347":{"market_hash_name":"Sticker | frozen (Glitter) | Rio 2022"},"6348":{"market_hash_name":"Sticker | frozen (Holo) | Rio 2022"},"6349":{"market_hash_name":"Sticker | frozen (Gold) | Rio 2022"},"635":{"market_hash_name":"Sticker | Team Kinguin | Cologne 2015"},"6350":{"market_hash_name":"Sticker | dexter | Rio 2022"},"6351":{"market_hash_name":"Sticker | dexter (Glitter) | Rio 2022"},"6352":{"market_hash_name":"Sticker | dexter (Holo) | Rio 2022"},"6353":{"market_hash_name":"Sticker | dexter (Gold) | Rio 2022"},"6354":{"market_hash_name":"Sticker | JDC | Rio 2022"},"6355":{"market_hash_name":"Sticker | JDC (Glitter) | Rio 2022"},"6356":{"market_hash_name":"Sticker | JDC (Holo) | Rio 2022"},"6357":{"market_hash_name":"Sticker | JDC (Gold) | Rio 2022"},"6358":{"market_hash_name":"Sticker | torzsi | Rio 2022"},"6359":{"market_hash_name":"Sticker | torzsi (Glitter) | Rio 2022"},"636":{"market_hash_name":"Sticker | Team Kinguin (Foil) | Cologne 2015"},"6360":{"market_hash_name":"Sticker | torzsi (Holo) | Rio 2022"},"6361":{"market_hash_name":"Sticker | torzsi (Gold) | Rio 2022"},"6362":{"market_hash_name":"Sticker | xertioN | Rio 2022"},"6363":{"market_hash_name":"Sticker | xertioN (Glitter) | Rio 2022"},"6364":{"market_hash_name":"Sticker | xertioN (Holo) | Rio 2022"},"6365":{"market_hash_name":"Sticker | xertioN (Gold) | Rio 2022"},"6366":{"market_hash_name":"Sticker | nexa | Rio 2022"},"6367":{"market_hash_name":"Sticker | nexa (Glitter) | Rio 2022"},"6368":{"market_hash_name":"Sticker | nexa (Holo) | Rio 2022"},"6369":{"market_hash_name":"Sticker | nexa (Gold) | Rio 2022"},"637":{"market_hash_name":"Sticker | Team Kinguin (Gold) | Cologne 2015"},"6370":{"market_hash_name":"Sticker | NEOFRAG | Rio 2022"},"6371":{"market_hash_name":"Sticker | NEOFRAG (Glitter) | Rio 2022"},"6372":{"market_hash_name":"Sticker | NEOFRAG (Holo) | Rio 2022"},"6373":{"market_hash_name":"Sticker | NEOFRAG (Gold) | Rio 2022"},"6374":{"market_hash_name":"Sticker | FlameZ | Rio 2022"},"6375":{"market_hash_name":"Sticker | FlameZ (Glitter) | Rio 2022"},"6376":{"market_hash_name":"Sticker | FlameZ (Holo) | Rio 2022"},"6377":{"market_hash_name":"Sticker | FlameZ (Gold) | Rio 2022"},"6378":{"market_hash_name":"Sticker | degster | Rio 2022"},"6379":{"market_hash_name":"Sticker | degster (Glitter) | Rio 2022"},"638":{"market_hash_name":"Sticker | Team eBettle | Cologne 2015"},"6380":{"market_hash_name":"Sticker | degster (Holo) | Rio 2022"},"6381":{"market_hash_name":"Sticker | degster (Gold) | Rio 2022"},"6382":{"market_hash_name":"Sticker | F1KU | Rio 2022"},"6383":{"market_hash_name":"Sticker | F1KU (Glitter) | Rio 2022"},"6384":{"market_hash_name":"Sticker | F1KU (Holo) | Rio 2022"},"6385":{"market_hash_name":"Sticker | F1KU (Gold) | Rio 2022"},"6386":{"market_hash_name":"Sticker | dupreeh | Rio 2022"},"6387":{"market_hash_name":"Sticker | dupreeh (Glitter) | Rio 2022"},"6388":{"market_hash_name":"Sticker | dupreeh (Holo) | Rio 2022"},"6389":{"market_hash_name":"Sticker | dupreeh (Gold) | Rio 2022"},"639":{"market_hash_name":"Sticker | Team eBettle (Foil) | Cologne 2015"},"6390":{"market_hash_name":"Sticker | Magisk | Rio 2022"},"6391":{"market_hash_name":"Sticker | Magisk (Glitter) | Rio 2022"},"6392":{"market_hash_name":"Sticker | Magisk (Holo) | Rio 2022"},"6393":{"market_hash_name":"Sticker | Magisk (Gold) | Rio 2022"},"6394":{"market_hash_name":"Sticker | apEX | Rio 2022"},"6395":{"market_hash_name":"Sticker | apEX (Glitter) | Rio 2022"},"6396":{"market_hash_name":"Sticker | apEX (Holo) | Rio 2022"},"6397":{"market_hash_name":"Sticker | apEX (Gold) | Rio 2022"},"6398":{"market_hash_name":"Sticker | Spinx | Rio 2022"},"6399":{"market_hash_name":"Sticker | Spinx (Glitter) | Rio 2022"},"64":{"market_hash_name":"Sticker | LGB eSports (Holo) | Katowice 2014"},"640":{"market_hash_name":"Sticker | Team eBettle (Gold) | Cologne 2015"},"6400":{"market_hash_name":"Sticker | Spinx (Holo) | Rio 2022"},"6401":{"market_hash_name":"Sticker | Spinx (Gold) | Rio 2022"},"6402":{"market_hash_name":"Sticker | ZywOo | Rio 2022"},"6403":{"market_hash_name":"Sticker | ZywOo (Glitter) | Rio 2022"},"6404":{"market_hash_name":"Sticker | ZywOo (Holo) | Rio 2022"},"6405":{"market_hash_name":"Sticker | ZywOo (Gold) | Rio 2022"},"6406":{"market_hash_name":"Sticker | TACO | Rio 2022"},"6407":{"market_hash_name":"Sticker | TACO (Glitter) | Rio 2022"},"6408":{"market_hash_name":"Sticker | TACO (Holo) | Rio 2022"},"6409":{"market_hash_name":"Sticker | TACO (Gold) | Rio 2022"},"641":{"market_hash_name":"Sticker | Cloud9 G2A | Cologne 2015"},"6410":{"market_hash_name":"Sticker | coldzera | Rio 2022"},"6411":{"market_hash_name":"Sticker | coldzera (Glitter) | Rio 2022"},"6412":{"market_hash_name":"Sticker | coldzera (Holo) | Rio 2022"},"6413":{"market_hash_name":"Sticker | coldzera (Gold) | Rio 2022"},"6414":{"market_hash_name":"Sticker | TRY | Rio 2022"},"6415":{"market_hash_name":"Sticker | TRY (Glitter) | Rio 2022"},"6416":{"market_hash_name":"Sticker | TRY (Holo) | Rio 2022"},"6417":{"market_hash_name":"Sticker | TRY (Gold) | Rio 2022"},"6418":{"market_hash_name":"Sticker | latto | Rio 2022"},"6419":{"market_hash_name":"Sticker | latto (Glitter) | Rio 2022"},"642":{"market_hash_name":"Sticker | Cloud9 G2A (Foil) | Cologne 2015"},"6420":{"market_hash_name":"Sticker | latto (Holo) | Rio 2022"},"6421":{"market_hash_name":"Sticker | latto (Gold) | Rio 2022"},"6422":{"market_hash_name":"Sticker | dumau | Rio 2022"},"6423":{"market_hash_name":"Sticker | dumau (Glitter) | Rio 2022"},"6424":{"market_hash_name":"Sticker | dumau (Holo) | Rio 2022"},"6425":{"market_hash_name":"Sticker | dumau (Gold) | Rio 2022"},"6426":{"market_hash_name":"Sticker | KRIMZ | Rio 2022"},"6427":{"market_hash_name":"Sticker | KRIMZ (Glitter) | Rio 2022"},"6428":{"market_hash_name":"Sticker | KRIMZ (Holo) | Rio 2022"},"6429":{"market_hash_name":"Sticker | KRIMZ (Gold) | Rio 2022"},"643":{"market_hash_name":"Sticker | Cloud9 G2A (Gold) | Cologne 2015"},"6430":{"market_hash_name":"Sticker | mezii | Rio 2022"},"6431":{"market_hash_name":"Sticker | mezii (Glitter) | Rio 2022"},"6432":{"market_hash_name":"Sticker | mezii (Holo) | Rio 2022"},"6433":{"market_hash_name":"Sticker | mezii (Gold) | Rio 2022"},"6434":{"market_hash_name":"Sticker | FASHR | Rio 2022"},"6435":{"market_hash_name":"Sticker | FASHR (Glitter) | Rio 2022"},"6436":{"market_hash_name":"Sticker | FASHR (Holo) | Rio 2022"},"6437":{"market_hash_name":"Sticker | FASHR (Gold) | Rio 2022"},"6438":{"market_hash_name":"Sticker | roeJ | Rio 2022"},"6439":{"market_hash_name":"Sticker | roeJ (Glitter) | Rio 2022"},"644":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cologne 2015"},"6440":{"market_hash_name":"Sticker | roeJ (Holo) | Rio 2022"},"6441":{"market_hash_name":"Sticker | roeJ (Gold) | Rio 2022"},"6442":{"market_hash_name":"Sticker | nicoodoz | Rio 2022"},"6443":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Rio 2022"},"6444":{"market_hash_name":"Sticker | nicoodoz (Holo) | Rio 2022"},"6445":{"market_hash_name":"Sticker | nicoodoz (Gold) | Rio 2022"},"6446":{"market_hash_name":"Sticker | KSCERATO | Rio 2022"},"6447":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Rio 2022"},"6448":{"market_hash_name":"Sticker | KSCERATO (Holo) | Rio 2022"},"6449":{"market_hash_name":"Sticker | KSCERATO (Gold) | Rio 2022"},"645":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cologne 2015"},"6450":{"market_hash_name":"Sticker | yuurih | Rio 2022"},"6451":{"market_hash_name":"Sticker | yuurih (Glitter) | Rio 2022"},"6452":{"market_hash_name":"Sticker | yuurih (Holo) | Rio 2022"},"6453":{"market_hash_name":"Sticker | yuurih (Gold) | Rio 2022"},"6454":{"market_hash_name":"Sticker | drop | Rio 2022"},"6455":{"market_hash_name":"Sticker | drop (Glitter) | Rio 2022"},"6456":{"market_hash_name":"Sticker | drop (Holo) | Rio 2022"},"6457":{"market_hash_name":"Sticker | drop (Gold) | Rio 2022"},"6458":{"market_hash_name":"Sticker | saffee | Rio 2022"},"6459":{"market_hash_name":"Sticker | saffee (Glitter) | Rio 2022"},"646":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Cologne 2015"},"6460":{"market_hash_name":"Sticker | saffee (Holo) | Rio 2022"},"6461":{"market_hash_name":"Sticker | saffee (Gold) | Rio 2022"},"6462":{"market_hash_name":"Sticker | arT | Rio 2022"},"6463":{"market_hash_name":"Sticker | arT (Glitter) | Rio 2022"},"6464":{"market_hash_name":"Sticker | arT (Holo) | Rio 2022"},"6465":{"market_hash_name":"Sticker | arT (Gold) | Rio 2022"},"6466":{"market_hash_name":"Sticker | acoR | Rio 2022"},"6467":{"market_hash_name":"Sticker | acoR (Glitter) | Rio 2022"},"6468":{"market_hash_name":"Sticker | acoR (Holo) | Rio 2022"},"6469":{"market_hash_name":"Sticker | acoR (Gold) | Rio 2022"},"647":{"market_hash_name":"Sticker | Team EnVyUs | Cologne 2015"},"6470":{"market_hash_name":"Sticker | iM | Rio 2022"},"6471":{"market_hash_name":"Sticker | iM (Glitter) | Rio 2022"},"6472":{"market_hash_name":"Sticker | iM (Holo) | Rio 2022"},"6473":{"market_hash_name":"Sticker | iM (Gold) | Rio 2022"},"6474":{"market_hash_name":"Sticker | siuhy | Rio 2022"},"6475":{"market_hash_name":"Sticker | siuhy (Glitter) | Rio 2022"},"6476":{"market_hash_name":"Sticker | siuhy (Holo) | Rio 2022"},"6477":{"market_hash_name":"Sticker | siuhy (Gold) | Rio 2022"},"6478":{"market_hash_name":"Sticker | Keoz | Rio 2022"},"6479":{"market_hash_name":"Sticker | Keoz (Glitter) | Rio 2022"},"648":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Cologne 2015"},"6480":{"market_hash_name":"Sticker | Keoz (Holo) | Rio 2022"},"6481":{"market_hash_name":"Sticker | Keoz (Gold) | Rio 2022"},"6482":{"market_hash_name":"Sticker | isak | Rio 2022"},"6483":{"market_hash_name":"Sticker | isak (Glitter) | Rio 2022"},"6484":{"market_hash_name":"Sticker | isak (Holo) | Rio 2022"},"6485":{"market_hash_name":"Sticker | isak (Gold) | Rio 2022"},"6486":{"market_hash_name":"Sticker | INS | Rio 2022"},"6487":{"market_hash_name":"Sticker | INS (Glitter) | Rio 2022"},"6488":{"market_hash_name":"Sticker | INS (Holo) | Rio 2022"},"6489":{"market_hash_name":"Sticker | INS (Gold) | Rio 2022"},"649":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Cologne 2015"},"6490":{"market_hash_name":"Sticker | vexite | Rio 2022"},"6491":{"market_hash_name":"Sticker | vexite (Glitter) | Rio 2022"},"6492":{"market_hash_name":"Sticker | vexite (Holo) | Rio 2022"},"6493":{"market_hash_name":"Sticker | vexite (Gold) | Rio 2022"},"6494":{"market_hash_name":"Sticker | Sico | Rio 2022"},"6495":{"market_hash_name":"Sticker | Sico (Glitter) | Rio 2022"},"6496":{"market_hash_name":"Sticker | Sico (Holo) | Rio 2022"},"6497":{"market_hash_name":"Sticker | Sico (Gold) | Rio 2022"},"6498":{"market_hash_name":"Sticker | Liazz | Rio 2022"},"6499":{"market_hash_name":"Sticker | Liazz (Glitter) | Rio 2022"},"65":{"market_hash_name":"Sticker | mousesports | Katowice 2014"},"650":{"market_hash_name":"Sticker | Luminosity Gaming | Cologne 2015"},"6500":{"market_hash_name":"Sticker | Liazz (Holo) | Rio 2022"},"6501":{"market_hash_name":"Sticker | Liazz (Gold) | Rio 2022"},"6502":{"market_hash_name":"Sticker | aliStair | Rio 2022"},"6503":{"market_hash_name":"Sticker | aliStair (Glitter) | Rio 2022"},"6504":{"market_hash_name":"Sticker | aliStair (Holo) | Rio 2022"},"6505":{"market_hash_name":"Sticker | aliStair (Gold) | Rio 2022"},"6506":{"market_hash_name":"Sticker | sk0R | Rio 2022"},"6507":{"market_hash_name":"Sticker | sk0R (Glitter) | Rio 2022"},"6508":{"market_hash_name":"Sticker | sk0R (Holo) | Rio 2022"},"6509":{"market_hash_name":"Sticker | sk0R (Gold) | Rio 2022"},"651":{"market_hash_name":"Sticker | Luminosity Gaming (Foil) | Cologne 2015"},"6510":{"market_hash_name":"Sticker | Techno4K | Rio 2022"},"6511":{"market_hash_name":"Sticker | Techno4K (Glitter) | Rio 2022"},"6512":{"market_hash_name":"Sticker | Techno4K (Holo) | Rio 2022"},"6513":{"market_hash_name":"Sticker | Techno4K (Gold) | Rio 2022"},"6514":{"market_hash_name":"Sticker | kabal | Rio 2022"},"6515":{"market_hash_name":"Sticker | kabal (Glitter) | Rio 2022"},"6516":{"market_hash_name":"Sticker | kabal (Holo) | Rio 2022"},"6517":{"market_hash_name":"Sticker | kabal (Gold) | Rio 2022"},"6518":{"market_hash_name":"Sticker | bLitz | Rio 2022"},"6519":{"market_hash_name":"Sticker | bLitz (Glitter) | Rio 2022"},"652":{"market_hash_name":"Sticker | Luminosity Gaming (Gold) | Cologne 2015"},"6520":{"market_hash_name":"Sticker | bLitz (Holo) | Rio 2022"},"6521":{"market_hash_name":"Sticker | bLitz (Gold) | Rio 2022"},"6522":{"market_hash_name":"Sticker | ANNIHILATION | Rio 2022"},"6523":{"market_hash_name":"Sticker | ANNIHILATION (Glitter) | Rio 2022"},"6524":{"market_hash_name":"Sticker | ANNIHILATION (Holo) | Rio 2022"},"6525":{"market_hash_name":"Sticker | ANNIHILATION (Gold) | Rio 2022"},"6526":{"market_hash_name":"Sticker | FalleN | Rio 2022"},"6527":{"market_hash_name":"Sticker | FalleN (Glitter) | Rio 2022"},"6528":{"market_hash_name":"Sticker | FalleN (Holo) | Rio 2022"},"6529":{"market_hash_name":"Sticker | FalleN (Gold) | Rio 2022"},"653":{"market_hash_name":"Sticker | Team SoloMid | Cologne 2015"},"6530":{"market_hash_name":"Sticker | fer | Rio 2022"},"6531":{"market_hash_name":"Sticker | fer (Glitter) | Rio 2022"},"6532":{"market_hash_name":"Sticker | fer (Holo) | Rio 2022"},"6533":{"market_hash_name":"Sticker | fer (Gold) | Rio 2022"},"6534":{"market_hash_name":"Sticker | boltz | Rio 2022"},"6535":{"market_hash_name":"Sticker | boltz (Glitter) | Rio 2022"},"6536":{"market_hash_name":"Sticker | boltz (Holo) | Rio 2022"},"6537":{"market_hash_name":"Sticker | boltz (Gold) | Rio 2022"},"6538":{"market_hash_name":"Sticker | VINI | Rio 2022"},"6539":{"market_hash_name":"Sticker | VINI (Glitter) | Rio 2022"},"654":{"market_hash_name":"Sticker | Team SoloMid (Foil) | Cologne 2015"},"6540":{"market_hash_name":"Sticker | VINI (Holo) | Rio 2022"},"6541":{"market_hash_name":"Sticker | VINI (Gold) | Rio 2022"},"6542":{"market_hash_name":"Sticker | chelo | Rio 2022"},"6543":{"market_hash_name":"Sticker | chelo (Glitter) | Rio 2022"},"6544":{"market_hash_name":"Sticker | chelo (Holo) | Rio 2022"},"6545":{"market_hash_name":"Sticker | chelo (Gold) | Rio 2022"},"6546":{"market_hash_name":"Sticker | FL1T | Rio 2022"},"6547":{"market_hash_name":"Sticker | FL1T (Glitter) | Rio 2022"},"6548":{"market_hash_name":"Sticker | FL1T (Holo) | Rio 2022"},"6549":{"market_hash_name":"Sticker | FL1T (Gold) | Rio 2022"},"655":{"market_hash_name":"Sticker | Team SoloMid (Gold) | Cologne 2015"},"6550":{"market_hash_name":"Sticker | n0rb3r7 | Rio 2022"},"6551":{"market_hash_name":"Sticker | n0rb3r7 (Glitter) | Rio 2022"},"6552":{"market_hash_name":"Sticker | n0rb3r7 (Holo) | Rio 2022"},"6553":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Rio 2022"},"6554":{"market_hash_name":"Sticker | Jame | Rio 2022"},"6555":{"market_hash_name":"Sticker | Jame (Glitter) | Rio 2022"},"6556":{"market_hash_name":"Sticker | Jame (Holo) | Rio 2022"},"6557":{"market_hash_name":"Sticker | Jame (Gold) | Rio 2022"},"6558":{"market_hash_name":"Sticker | qikert | Rio 2022"},"6559":{"market_hash_name":"Sticker | qikert (Glitter) | Rio 2022"},"656":{"market_hash_name":"Sticker | Team Immunity | Cologne 2015"},"6560":{"market_hash_name":"Sticker | qikert (Holo) | Rio 2022"},"6561":{"market_hash_name":"Sticker | qikert (Gold) | Rio 2022"},"6562":{"market_hash_name":"Sticker | fame | Rio 2022"},"6563":{"market_hash_name":"Sticker | fame (Glitter) | Rio 2022"},"6564":{"market_hash_name":"Sticker | fame (Holo) | Rio 2022"},"6565":{"market_hash_name":"Sticker | fame (Gold) | Rio 2022"},"6566":{"market_hash_name":"Sticker | FL1T (Champion) | Rio 2022"},"6567":{"market_hash_name":"Sticker | FL1T (Glitter, Champion) | Rio 2022"},"6568":{"market_hash_name":"Sticker | FL1T (Holo, Champion) | Rio 2022"},"6569":{"market_hash_name":"Sticker | FL1T (Gold, Champion) | Rio 2022"},"657":{"market_hash_name":"Sticker | Team Immunity (Foil) | Cologne 2015"},"6570":{"market_hash_name":"Sticker | n0rb3r7 (Champion) | Rio 2022"},"6571":{"market_hash_name":"Sticker | n0rb3r7 (Glitter, Champion) | Rio 2022"},"6572":{"market_hash_name":"Sticker | n0rb3r7 (Holo, Champion) | Rio 2022"},"6573":{"market_hash_name":"Sticker | n0rb3r7 (Gold, Champion) | Rio 2022"},"6574":{"market_hash_name":"Sticker | Jame (Champion) | Rio 2022"},"6575":{"market_hash_name":"Sticker | Jame (Glitter, Champion) | Rio 2022"},"6576":{"market_hash_name":"Sticker | Jame (Holo, Champion) | Rio 2022"},"6577":{"market_hash_name":"Sticker | Jame (Gold, Champion) | Rio 2022"},"6578":{"market_hash_name":"Sticker | qikert (Champion) | Rio 2022"},"6579":{"market_hash_name":"Sticker | qikert (Glitter, Champion) | Rio 2022"},"658":{"market_hash_name":"Sticker | Team Immunity (Gold) | Cologne 2015"},"6580":{"market_hash_name":"Sticker | qikert (Holo, Champion) | Rio 2022"},"6581":{"market_hash_name":"Sticker | qikert (Gold, Champion) | Rio 2022"},"6582":{"market_hash_name":"Sticker | fame (Champion) | Rio 2022"},"6583":{"market_hash_name":"Sticker | fame (Glitter, Champion) | Rio 2022"},"6584":{"market_hash_name":"Sticker | fame (Holo, Champion) | Rio 2022"},"6585":{"market_hash_name":"Sticker | fame (Gold, Champion) | Rio 2022"},"6586":{"market_hash_name":"Sticker | 360 No Scope"},"6587":{"market_hash_name":"Sticker | Aim And Fire"},"6588":{"market_hash_name":"Sticker | Batter Up"},"6589":{"market_hash_name":"Sticker | Sting Like A Butterfly"},"659":{"market_hash_name":"Sticker | Flipsid3 Tactics | Cologne 2015"},"6590":{"market_hash_name":"Sticker | Fireball"},"6591":{"market_hash_name":"Sticker | Explosive Strength"},"6592":{"market_hash_name":"Sticker | Not A Bot"},"6593":{"market_hash_name":"Sticker | Knife's Edge"},"6594":{"market_hash_name":"Sticker | Run T, Run"},"6595":{"market_hash_name":"Sticker | Spectators"},"6596":{"market_hash_name":"Sticker | Zap Cat"},"6597":{"market_hash_name":"Sticker | Well Played"},"6598":{"market_hash_name":"Sticker | Cyber Chicken (Holo)"},"6599":{"market_hash_name":"Sticker | Mind Games (Holo)"},"66":{"market_hash_name":"Sticker | mousesports (Holo) | Katowice 2014"},"660":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Cologne 2015"},"6600":{"market_hash_name":"Sticker | Infinite Triangle (Holo)"},"6601":{"market_hash_name":"Sticker | Salty (Holo)"},"6602":{"market_hash_name":"Sticker | Snowfall (Glitter)"},"6603":{"market_hash_name":"Sticker | Street Artist (Glitter)"},"6604":{"market_hash_name":"Sticker | Hidden Hero (Foil)"},"6605":{"market_hash_name":"Sticker | Ethereal Gaze (Foil)"},"6606":{"market_hash_name":"Sticker | Peek Me (Foil)"},"6607":{"market_hash_name":"Sticker | Anubis (Gold)"},"6608":{"market_hash_name":"Sticker | Fnatic | Paris 2023"},"6609":{"market_hash_name":"Sticker | Fnatic (Glitter) | Paris 2023"},"661":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Cologne 2015"},"6610":{"market_hash_name":"Sticker | Fnatic (Holo) | Paris 2023"},"6611":{"market_hash_name":"Sticker | Fnatic (Gold) | Paris 2023"},"6612":{"market_hash_name":"Sticker | Natus Vincere | Paris 2023"},"6613":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Paris 2023"},"6614":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Paris 2023"},"6615":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Paris 2023"},"6616":{"market_hash_name":"Sticker | FURIA | Paris 2023"},"6617":{"market_hash_name":"Sticker | FURIA (Glitter) | Paris 2023"},"6618":{"market_hash_name":"Sticker | FURIA (Holo) | Paris 2023"},"6619":{"market_hash_name":"Sticker | FURIA (Gold) | Paris 2023"},"662":{"market_hash_name":"Sticker | Titan | Cologne 2015"},"6620":{"market_hash_name":"Sticker | Vitality | Paris 2023"},"6621":{"market_hash_name":"Sticker | Vitality (Glitter) | Paris 2023"},"6622":{"market_hash_name":"Sticker | Vitality (Holo) | Paris 2023"},"6623":{"market_hash_name":"Sticker | Vitality (Gold) | Paris 2023"},"6624":{"market_hash_name":"Sticker | Heroic | Paris 2023"},"6625":{"market_hash_name":"Sticker | Heroic (Glitter) | Paris 2023"},"6626":{"market_hash_name":"Sticker | Heroic (Holo) | Paris 2023"},"6627":{"market_hash_name":"Sticker | Heroic (Gold) | Paris 2023"},"6628":{"market_hash_name":"Sticker | Bad News Eagles | Paris 2023"},"6629":{"market_hash_name":"Sticker | Bad News Eagles (Glitter) | Paris 2023"},"663":{"market_hash_name":"Sticker | Titan (Foil) | Cologne 2015"},"6630":{"market_hash_name":"Sticker | Bad News Eagles (Holo) | Paris 2023"},"6631":{"market_hash_name":"Sticker | Bad News Eagles (Gold) | Paris 2023"},"6632":{"market_hash_name":"Sticker | Into The Breach | Paris 2023"},"6633":{"market_hash_name":"Sticker | Into The Breach (Glitter) | Paris 2023"},"6634":{"market_hash_name":"Sticker | Into The Breach (Holo) | Paris 2023"},"6635":{"market_hash_name":"Sticker | Into The Breach (Gold) | Paris 2023"},"6636":{"market_hash_name":"Sticker | 9INE | Paris 2023"},"6637":{"market_hash_name":"Sticker | 9INE (Glitter) | Paris 2023"},"6638":{"market_hash_name":"Sticker | 9INE (Holo) | Paris 2023"},"6639":{"market_hash_name":"Sticker | 9INE (Gold) | Paris 2023"},"664":{"market_hash_name":"Sticker | Titan (Gold) | Cologne 2015"},"6640":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Paris 2023"},"6641":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Glitter) | Paris 2023"},"6642":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Paris 2023"},"6643":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Paris 2023"},"6644":{"market_hash_name":"Sticker | G2 Esports | Paris 2023"},"6645":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Paris 2023"},"6646":{"market_hash_name":"Sticker | G2 Esports (Holo) | Paris 2023"},"6647":{"market_hash_name":"Sticker | G2 Esports (Gold) | Paris 2023"},"6648":{"market_hash_name":"Sticker | forZe eSports | Paris 2023"},"6649":{"market_hash_name":"Sticker | forZe eSports (Glitter) | Paris 2023"},"665":{"market_hash_name":"Sticker | Counter Logic Gaming | Cologne 2015"},"6650":{"market_hash_name":"Sticker | forZe eSports (Holo) | Paris 2023"},"6651":{"market_hash_name":"Sticker | forZe eSports (Gold) | Paris 2023"},"6652":{"market_hash_name":"Sticker | OG | Paris 2023"},"6653":{"market_hash_name":"Sticker | OG (Glitter) | Paris 2023"},"6654":{"market_hash_name":"Sticker | OG (Holo) | Paris 2023"},"6655":{"market_hash_name":"Sticker | OG (Gold) | Paris 2023"},"6656":{"market_hash_name":"Sticker | paiN Gaming | Paris 2023"},"6657":{"market_hash_name":"Sticker | paiN Gaming (Glitter) | Paris 2023"},"6658":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Paris 2023"},"6659":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Paris 2023"},"666":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Cologne 2015"},"6660":{"market_hash_name":"Sticker | GamerLegion | Paris 2023"},"6661":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Paris 2023"},"6662":{"market_hash_name":"Sticker | GamerLegion (Holo) | Paris 2023"},"6663":{"market_hash_name":"Sticker | GamerLegion (Gold) | Paris 2023"},"6664":{"market_hash_name":"Sticker | Apeks | Paris 2023"},"6665":{"market_hash_name":"Sticker | Apeks (Glitter) | Paris 2023"},"6666":{"market_hash_name":"Sticker | Apeks (Holo) | Paris 2023"},"6667":{"market_hash_name":"Sticker | Apeks (Gold) | Paris 2023"},"6668":{"market_hash_name":"Sticker | Monte | Paris 2023"},"6669":{"market_hash_name":"Sticker | Monte (Glitter) | Paris 2023"},"667":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Cologne 2015"},"6670":{"market_hash_name":"Sticker | Monte (Holo) | Paris 2023"},"6671":{"market_hash_name":"Sticker | Monte (Gold) | Paris 2023"},"6672":{"market_hash_name":"Sticker | Team Liquid | Paris 2023"},"6673":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Paris 2023"},"6674":{"market_hash_name":"Sticker | Team Liquid (Holo) | Paris 2023"},"6675":{"market_hash_name":"Sticker | Team Liquid (Gold) | Paris 2023"},"6676":{"market_hash_name":"Sticker | FaZe Clan | Paris 2023"},"6677":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Paris 2023"},"6678":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Paris 2023"},"6679":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Paris 2023"},"668":{"market_hash_name":"Sticker | ESL | Cologne 2015"},"6680":{"market_hash_name":"Sticker | ENCE | Paris 2023"},"6681":{"market_hash_name":"Sticker | ENCE (Glitter) | Paris 2023"},"6682":{"market_hash_name":"Sticker | ENCE (Holo) | Paris 2023"},"6683":{"market_hash_name":"Sticker | ENCE (Gold) | Paris 2023"},"6684":{"market_hash_name":"Sticker | Grayhound Gaming | Paris 2023"},"6685":{"market_hash_name":"Sticker | Grayhound Gaming (Glitter) | Paris 2023"},"6686":{"market_hash_name":"Sticker | Grayhound Gaming (Holo) | Paris 2023"},"6687":{"market_hash_name":"Sticker | Grayhound Gaming (Gold) | Paris 2023"},"6688":{"market_hash_name":"Sticker | MOUZ | Paris 2023"},"6689":{"market_hash_name":"Sticker | MOUZ (Glitter) | Paris 2023"},"669":{"market_hash_name":"Sticker | ESL (Foil) | Cologne 2015"},"6690":{"market_hash_name":"Sticker | MOUZ (Holo) | Paris 2023"},"6691":{"market_hash_name":"Sticker | MOUZ (Gold) | Paris 2023"},"6692":{"market_hash_name":"Sticker | Complexity Gaming | Paris 2023"},"6693":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Paris 2023"},"6694":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Paris 2023"},"6695":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Paris 2023"},"6696":{"market_hash_name":"Sticker | Fluxo | Paris 2023"},"6697":{"market_hash_name":"Sticker | Fluxo (Glitter) | Paris 2023"},"6698":{"market_hash_name":"Sticker | Fluxo (Holo) | Paris 2023"},"6699":{"market_hash_name":"Sticker | Fluxo (Gold) | Paris 2023"},"67":{"market_hash_name":"Sticker | Clan-Mystik | Katowice 2014"},"670":{"market_hash_name":"Sticker | ESL (Gold) | Cologne 2015"},"6700":{"market_hash_name":"Sticker | The MongolZ | Paris 2023"},"6701":{"market_hash_name":"Sticker | The MongolZ (Glitter) | Paris 2023"},"6702":{"market_hash_name":"Sticker | The MongolZ (Holo) | Paris 2023"},"6703":{"market_hash_name":"Sticker | The MongolZ (Gold) | Paris 2023"},"6704":{"market_hash_name":"Sticker | BLAST.tv | Paris 2023"},"6705":{"market_hash_name":"Sticker | BLAST.tv (Glitter) | Paris 2023"},"6706":{"market_hash_name":"Sticker | BLAST.tv (Holo) | Paris 2023"},"6707":{"market_hash_name":"Sticker | BLAST.tv (Gold) | Paris 2023"},"671":{"market_hash_name":"Sticker | reltuC | Cluj-Napoca 2015"},"672":{"market_hash_name":"Sticker | reltuC (Foil) | Cluj-Napoca 2015"},"673":{"market_hash_name":"Sticker | reltuC (Gold) | Cluj-Napoca 2015"},"6733":{"market_hash_name":"Sticker | FASHR | Paris 2023"},"6734":{"market_hash_name":"Sticker | FASHR (Glitter) | Paris 2023"},"6735":{"market_hash_name":"Sticker | FASHR (Holo) | Paris 2023"},"6736":{"market_hash_name":"Sticker | FASHR (Gold) | Paris 2023"},"6737":{"market_hash_name":"Sticker | KRIMZ | Paris 2023"},"6738":{"market_hash_name":"Sticker | KRIMZ (Glitter) | Paris 2023"},"6739":{"market_hash_name":"Sticker | KRIMZ (Holo) | Paris 2023"},"674":{"market_hash_name":"Sticker | FNS | Cluj-Napoca 2015"},"6740":{"market_hash_name":"Sticker | KRIMZ (Gold) | Paris 2023"},"6741":{"market_hash_name":"Sticker | mezii | Paris 2023"},"6742":{"market_hash_name":"Sticker | mezii (Glitter) | Paris 2023"},"6743":{"market_hash_name":"Sticker | mezii (Holo) | Paris 2023"},"6744":{"market_hash_name":"Sticker | mezii (Gold) | Paris 2023"},"6745":{"market_hash_name":"Sticker | nicoodoz | Paris 2023"},"6746":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Paris 2023"},"6747":{"market_hash_name":"Sticker | nicoodoz (Holo) | Paris 2023"},"6748":{"market_hash_name":"Sticker | nicoodoz (Gold) | Paris 2023"},"6749":{"market_hash_name":"Sticker | roeJ | Paris 2023"},"675":{"market_hash_name":"Sticker | FNS (Foil) | Cluj-Napoca 2015"},"6750":{"market_hash_name":"Sticker | roeJ (Glitter) | Paris 2023"},"6751":{"market_hash_name":"Sticker | roeJ (Holo) | Paris 2023"},"6752":{"market_hash_name":"Sticker | roeJ (Gold) | Paris 2023"},"6753":{"market_hash_name":"Sticker | b1t | Paris 2023"},"6754":{"market_hash_name":"Sticker | b1t (Glitter) | Paris 2023"},"6755":{"market_hash_name":"Sticker | b1t (Holo) | Paris 2023"},"6756":{"market_hash_name":"Sticker | b1t (Gold) | Paris 2023"},"6757":{"market_hash_name":"Sticker | electronic | Paris 2023"},"6758":{"market_hash_name":"Sticker | electronic (Glitter) | Paris 2023"},"6759":{"market_hash_name":"Sticker | electronic (Holo) | Paris 2023"},"676":{"market_hash_name":"Sticker | FNS (Gold) | Cluj-Napoca 2015"},"6760":{"market_hash_name":"Sticker | electronic (Gold) | Paris 2023"},"6761":{"market_hash_name":"Sticker | npl | Paris 2023"},"6762":{"market_hash_name":"Sticker | npl (Glitter) | Paris 2023"},"6763":{"market_hash_name":"Sticker | npl (Holo) | Paris 2023"},"6764":{"market_hash_name":"Sticker | npl (Gold) | Paris 2023"},"6765":{"market_hash_name":"Sticker | Perfecto | Paris 2023"},"6766":{"market_hash_name":"Sticker | Perfecto (Glitter) | Paris 2023"},"6767":{"market_hash_name":"Sticker | Perfecto (Holo) | Paris 2023"},"6768":{"market_hash_name":"Sticker | Perfecto (Gold) | Paris 2023"},"6769":{"market_hash_name":"Sticker | s1mple | Paris 2023"},"677":{"market_hash_name":"Sticker | hazed | Cluj-Napoca 2015"},"6770":{"market_hash_name":"Sticker | s1mple (Glitter) | Paris 2023"},"6771":{"market_hash_name":"Sticker | s1mple (Holo) | Paris 2023"},"6772":{"market_hash_name":"Sticker | s1mple (Gold) | Paris 2023"},"6773":{"market_hash_name":"Sticker | arT | Paris 2023"},"6774":{"market_hash_name":"Sticker | arT (Glitter) | Paris 2023"},"6775":{"market_hash_name":"Sticker | arT (Holo) | Paris 2023"},"6776":{"market_hash_name":"Sticker | arT (Gold) | Paris 2023"},"6777":{"market_hash_name":"Sticker | drop | Paris 2023"},"6778":{"market_hash_name":"Sticker | drop (Glitter) | Paris 2023"},"6779":{"market_hash_name":"Sticker | drop (Holo) | Paris 2023"},"678":{"market_hash_name":"Sticker | hazed (Foil) | Cluj-Napoca 2015"},"6780":{"market_hash_name":"Sticker | drop (Gold) | Paris 2023"},"6781":{"market_hash_name":"Sticker | KSCERATO | Paris 2023"},"6782":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Paris 2023"},"6783":{"market_hash_name":"Sticker | KSCERATO (Holo) | Paris 2023"},"6784":{"market_hash_name":"Sticker | KSCERATO (Gold) | Paris 2023"},"6785":{"market_hash_name":"Sticker | saffee | Paris 2023"},"6786":{"market_hash_name":"Sticker | saffee (Glitter) | Paris 2023"},"6787":{"market_hash_name":"Sticker | saffee (Holo) | Paris 2023"},"6788":{"market_hash_name":"Sticker | saffee (Gold) | Paris 2023"},"6789":{"market_hash_name":"Sticker | yuurih | Paris 2023"},"679":{"market_hash_name":"Sticker | hazed (Gold) | Cluj-Napoca 2015"},"6790":{"market_hash_name":"Sticker | yuurih (Glitter) | Paris 2023"},"6791":{"market_hash_name":"Sticker | yuurih (Holo) | Paris 2023"},"6792":{"market_hash_name":"Sticker | yuurih (Gold) | Paris 2023"},"6793":{"market_hash_name":"Sticker | apEX | Paris 2023"},"6794":{"market_hash_name":"Sticker | apEX (Glitter) | Paris 2023"},"6795":{"market_hash_name":"Sticker | apEX (Holo) | Paris 2023"},"6796":{"market_hash_name":"Sticker | apEX (Gold) | Paris 2023"},"6797":{"market_hash_name":"Sticker | dupreeh | Paris 2023"},"6798":{"market_hash_name":"Sticker | dupreeh (Glitter) | Paris 2023"},"6799":{"market_hash_name":"Sticker | dupreeh (Holo) | Paris 2023"},"68":{"market_hash_name":"Sticker | Clan-Mystik (Holo) | Katowice 2014"},"680":{"market_hash_name":"Sticker | jdm64 | Cluj-Napoca 2015"},"6800":{"market_hash_name":"Sticker | dupreeh (Gold) | Paris 2023"},"6801":{"market_hash_name":"Sticker | Magisk | Paris 2023"},"6802":{"market_hash_name":"Sticker | Magisk (Glitter) | Paris 2023"},"6803":{"market_hash_name":"Sticker | Magisk (Holo) | Paris 2023"},"6804":{"market_hash_name":"Sticker | Magisk (Gold) | Paris 2023"},"6805":{"market_hash_name":"Sticker | Spinx | Paris 2023"},"6806":{"market_hash_name":"Sticker | Spinx (Glitter) | Paris 2023"},"6807":{"market_hash_name":"Sticker | Spinx (Holo) | Paris 2023"},"6808":{"market_hash_name":"Sticker | Spinx (Gold) | Paris 2023"},"6809":{"market_hash_name":"Sticker | ZywOo | Paris 2023"},"681":{"market_hash_name":"Sticker | jdm64 (Foil) | Cluj-Napoca 2015"},"6810":{"market_hash_name":"Sticker | ZywOo (Glitter) | Paris 2023"},"6811":{"market_hash_name":"Sticker | ZywOo (Holo) | Paris 2023"},"6812":{"market_hash_name":"Sticker | ZywOo (Gold) | Paris 2023"},"6813":{"market_hash_name":"Sticker | cadiaN | Paris 2023"},"6814":{"market_hash_name":"Sticker | cadiaN (Glitter) | Paris 2023"},"6815":{"market_hash_name":"Sticker | cadiaN (Holo) | Paris 2023"},"6816":{"market_hash_name":"Sticker | cadiaN (Gold) | Paris 2023"},"6817":{"market_hash_name":"Sticker | jabbi | Paris 2023"},"6818":{"market_hash_name":"Sticker | jabbi (Glitter) | Paris 2023"},"6819":{"market_hash_name":"Sticker | jabbi (Holo) | Paris 2023"},"682":{"market_hash_name":"Sticker | jdm64 (Gold) | Cluj-Napoca 2015"},"6820":{"market_hash_name":"Sticker | jabbi (Gold) | Paris 2023"},"6821":{"market_hash_name":"Sticker | sjuush | Paris 2023"},"6822":{"market_hash_name":"Sticker | sjuush (Glitter) | Paris 2023"},"6823":{"market_hash_name":"Sticker | sjuush (Holo) | Paris 2023"},"6824":{"market_hash_name":"Sticker | sjuush (Gold) | Paris 2023"},"6825":{"market_hash_name":"Sticker | stavn | Paris 2023"},"6826":{"market_hash_name":"Sticker | stavn (Glitter) | Paris 2023"},"6827":{"market_hash_name":"Sticker | stavn (Holo) | Paris 2023"},"6828":{"market_hash_name":"Sticker | stavn (Gold) | Paris 2023"},"6829":{"market_hash_name":"Sticker | TeSeS | Paris 2023"},"683":{"market_hash_name":"Sticker | tarik | Cluj-Napoca 2015"},"6830":{"market_hash_name":"Sticker | TeSeS (Glitter) | Paris 2023"},"6831":{"market_hash_name":"Sticker | TeSeS (Holo) | Paris 2023"},"6832":{"market_hash_name":"Sticker | TeSeS (Gold) | Paris 2023"},"6833":{"market_hash_name":"Sticker | gxx- | Paris 2023"},"6834":{"market_hash_name":"Sticker | gxx- (Glitter) | Paris 2023"},"6835":{"market_hash_name":"Sticker | gxx- (Holo) | Paris 2023"},"6836":{"market_hash_name":"Sticker | gxx- (Gold) | Paris 2023"},"6837":{"market_hash_name":"Sticker | juanflatroo | Paris 2023"},"6838":{"market_hash_name":"Sticker | juanflatroo (Glitter) | Paris 2023"},"6839":{"market_hash_name":"Sticker | juanflatroo (Holo) | Paris 2023"},"684":{"market_hash_name":"Sticker | tarik (Foil) | Cluj-Napoca 2015"},"6840":{"market_hash_name":"Sticker | juanflatroo (Gold) | Paris 2023"},"6841":{"market_hash_name":"Sticker | rigoN | Paris 2023"},"6842":{"market_hash_name":"Sticker | rigoN (Glitter) | Paris 2023"},"6843":{"market_hash_name":"Sticker | rigoN (Holo) | Paris 2023"},"6844":{"market_hash_name":"Sticker | rigoN (Gold) | Paris 2023"},"6845":{"market_hash_name":"Sticker | SENER1 | Paris 2023"},"6846":{"market_hash_name":"Sticker | SENER1 (Glitter) | Paris 2023"},"6847":{"market_hash_name":"Sticker | SENER1 (Holo) | Paris 2023"},"6848":{"market_hash_name":"Sticker | SENER1 (Gold) | Paris 2023"},"6849":{"market_hash_name":"Sticker | sinnopsyy | Paris 2023"},"685":{"market_hash_name":"Sticker | tarik (Gold) | Cluj-Napoca 2015"},"6850":{"market_hash_name":"Sticker | sinnopsyy (Glitter) | Paris 2023"},"6851":{"market_hash_name":"Sticker | sinnopsyy (Holo) | Paris 2023"},"6852":{"market_hash_name":"Sticker | sinnopsyy (Gold) | Paris 2023"},"6853":{"market_hash_name":"Sticker | CRUC1AL | Paris 2023"},"6854":{"market_hash_name":"Sticker | CRUC1AL (Glitter) | Paris 2023"},"6855":{"market_hash_name":"Sticker | CRUC1AL (Holo) | Paris 2023"},"6856":{"market_hash_name":"Sticker | CRUC1AL (Gold) | Paris 2023"},"6857":{"market_hash_name":"Sticker | Cypher | Paris 2023"},"6858":{"market_hash_name":"Sticker | Cypher (Glitter) | Paris 2023"},"6859":{"market_hash_name":"Sticker | Cypher (Holo) | Paris 2023"},"686":{"market_hash_name":"Sticker | freakazoid | Cluj-Napoca 2015"},"6860":{"market_hash_name":"Sticker | Cypher (Gold) | Paris 2023"},"6861":{"market_hash_name":"Sticker | rallen | Paris 2023"},"6862":{"market_hash_name":"Sticker | rallen (Glitter) | Paris 2023"},"6863":{"market_hash_name":"Sticker | rallen (Holo) | Paris 2023"},"6864":{"market_hash_name":"Sticker | rallen (Gold) | Paris 2023"},"6865":{"market_hash_name":"Sticker | Thomas | Paris 2023"},"6866":{"market_hash_name":"Sticker | Thomas (Glitter) | Paris 2023"},"6867":{"market_hash_name":"Sticker | Thomas (Holo) | Paris 2023"},"6868":{"market_hash_name":"Sticker | Thomas (Gold) | Paris 2023"},"6869":{"market_hash_name":"Sticker | volt | Paris 2023"},"687":{"market_hash_name":"Sticker | freakazoid (Foil) | Cluj-Napoca 2015"},"6870":{"market_hash_name":"Sticker | volt (Glitter) | Paris 2023"},"6871":{"market_hash_name":"Sticker | volt (Holo) | Paris 2023"},"6872":{"market_hash_name":"Sticker | volt (Gold) | Paris 2023"},"6873":{"market_hash_name":"Sticker | Goofy | Paris 2023"},"6874":{"market_hash_name":"Sticker | Goofy (Glitter) | Paris 2023"},"6875":{"market_hash_name":"Sticker | Goofy (Holo) | Paris 2023"},"6876":{"market_hash_name":"Sticker | Goofy (Gold) | Paris 2023"},"6877":{"market_hash_name":"Sticker | hades | Paris 2023"},"6878":{"market_hash_name":"Sticker | hades (Glitter) | Paris 2023"},"6879":{"market_hash_name":"Sticker | hades (Holo) | Paris 2023"},"688":{"market_hash_name":"Sticker | freakazoid (Gold) | Cluj-Napoca 2015"},"6880":{"market_hash_name":"Sticker | hades (Gold) | Paris 2023"},"6881":{"market_hash_name":"Sticker | KEi | Paris 2023"},"6882":{"market_hash_name":"Sticker | KEi (Glitter) | Paris 2023"},"6883":{"market_hash_name":"Sticker | KEi (Holo) | Paris 2023"},"6884":{"market_hash_name":"Sticker | KEi (Gold) | Paris 2023"},"6885":{"market_hash_name":"Sticker | Kylar | Paris 2023"},"6886":{"market_hash_name":"Sticker | Kylar (Glitter) | Paris 2023"},"6887":{"market_hash_name":"Sticker | Kylar (Holo) | Paris 2023"},"6888":{"market_hash_name":"Sticker | Kylar (Gold) | Paris 2023"},"6889":{"market_hash_name":"Sticker | mynio | Paris 2023"},"689":{"market_hash_name":"Sticker | seang@res | Cluj-Napoca 2015"},"6890":{"market_hash_name":"Sticker | mynio (Glitter) | Paris 2023"},"6891":{"market_hash_name":"Sticker | mynio (Holo) | Paris 2023"},"6892":{"market_hash_name":"Sticker | mynio (Gold) | Paris 2023"},"6893":{"market_hash_name":"Sticker | Aleksib | Paris 2023"},"6894":{"market_hash_name":"Sticker | Aleksib (Glitter) | Paris 2023"},"6895":{"market_hash_name":"Sticker | Aleksib (Holo) | Paris 2023"},"6896":{"market_hash_name":"Sticker | Aleksib (Gold) | Paris 2023"},"6897":{"market_hash_name":"Sticker | Brollan | Paris 2023"},"6898":{"market_hash_name":"Sticker | Brollan (Glitter) | Paris 2023"},"6899":{"market_hash_name":"Sticker | Brollan (Holo) | Paris 2023"},"69":{"market_hash_name":"Sticker | Natus Vincere | Katowice 2014"},"690":{"market_hash_name":"Sticker | seang@res (Foil) | Cluj-Napoca 2015"},"6900":{"market_hash_name":"Sticker | Brollan (Gold) | Paris 2023"},"6901":{"market_hash_name":"Sticker | headtr1ck | Paris 2023"},"6902":{"market_hash_name":"Sticker | headtr1ck (Glitter) | Paris 2023"},"6903":{"market_hash_name":"Sticker | headtr1ck (Holo) | Paris 2023"},"6904":{"market_hash_name":"Sticker | headtr1ck (Gold) | Paris 2023"},"6905":{"market_hash_name":"Sticker | k0nfig | Paris 2023"},"6906":{"market_hash_name":"Sticker | k0nfig (Glitter) | Paris 2023"},"6907":{"market_hash_name":"Sticker | k0nfig (Holo) | Paris 2023"},"6908":{"market_hash_name":"Sticker | k0nfig (Gold) | Paris 2023"},"6909":{"market_hash_name":"Sticker | REZ | Paris 2023"},"691":{"market_hash_name":"Sticker | seang@res (Gold) | Cluj-Napoca 2015"},"6910":{"market_hash_name":"Sticker | REZ (Glitter) | Paris 2023"},"6911":{"market_hash_name":"Sticker | REZ (Holo) | Paris 2023"},"6912":{"market_hash_name":"Sticker | REZ (Gold) | Paris 2023"},"6913":{"market_hash_name":"Sticker | HooXi | Paris 2023"},"6914":{"market_hash_name":"Sticker | HooXi (Glitter) | Paris 2023"},"6915":{"market_hash_name":"Sticker | HooXi (Holo) | Paris 2023"},"6916":{"market_hash_name":"Sticker | HooXi (Gold) | Paris 2023"},"6917":{"market_hash_name":"Sticker | huNter- | Paris 2023"},"6918":{"market_hash_name":"Sticker | huNter- (Glitter) | Paris 2023"},"6919":{"market_hash_name":"Sticker | huNter- (Holo) | Paris 2023"},"692":{"market_hash_name":"Sticker | shroud | Cluj-Napoca 2015"},"6920":{"market_hash_name":"Sticker | huNter- (Gold) | Paris 2023"},"6921":{"market_hash_name":"Sticker | jks | Paris 2023"},"6922":{"market_hash_name":"Sticker | jks (Glitter) | Paris 2023"},"6923":{"market_hash_name":"Sticker | jks (Holo) | Paris 2023"},"6924":{"market_hash_name":"Sticker | jks (Gold) | Paris 2023"},"6925":{"market_hash_name":"Sticker | m0NESY | Paris 2023"},"6926":{"market_hash_name":"Sticker | m0NESY (Glitter) | Paris 2023"},"6927":{"market_hash_name":"Sticker | m0NESY (Holo) | Paris 2023"},"6928":{"market_hash_name":"Sticker | m0NESY (Gold) | Paris 2023"},"6929":{"market_hash_name":"Sticker | NiKo | Paris 2023"},"693":{"market_hash_name":"Sticker | shroud (Foil) | Cluj-Napoca 2015"},"6930":{"market_hash_name":"Sticker | NiKo (Glitter) | Paris 2023"},"6931":{"market_hash_name":"Sticker | NiKo (Holo) | Paris 2023"},"6932":{"market_hash_name":"Sticker | NiKo (Gold) | Paris 2023"},"6933":{"market_hash_name":"Sticker | Jerry | Paris 2023"},"6934":{"market_hash_name":"Sticker | Jerry (Glitter) | Paris 2023"},"6935":{"market_hash_name":"Sticker | Jerry (Holo) | Paris 2023"},"6936":{"market_hash_name":"Sticker | Jerry (Gold) | Paris 2023"},"6937":{"market_hash_name":"Sticker | Krad | Paris 2023"},"6938":{"market_hash_name":"Sticker | Krad (Glitter) | Paris 2023"},"6939":{"market_hash_name":"Sticker | Krad (Holo) | Paris 2023"},"694":{"market_hash_name":"Sticker | shroud (Gold) | Cluj-Napoca 2015"},"6940":{"market_hash_name":"Sticker | Krad (Gold) | Paris 2023"},"6941":{"market_hash_name":"Sticker | r3salt | Paris 2023"},"6942":{"market_hash_name":"Sticker | r3salt (Glitter) | Paris 2023"},"6943":{"market_hash_name":"Sticker | r3salt (Holo) | Paris 2023"},"6944":{"market_hash_name":"Sticker | r3salt (Gold) | Paris 2023"},"6945":{"market_hash_name":"Sticker | shalfey | Paris 2023"},"6946":{"market_hash_name":"Sticker | shalfey (Glitter) | Paris 2023"},"6947":{"market_hash_name":"Sticker | shalfey (Holo) | Paris 2023"},"6948":{"market_hash_name":"Sticker | shalfey (Gold) | Paris 2023"},"6949":{"market_hash_name":"Sticker | zorte | Paris 2023"},"695":{"market_hash_name":"Sticker | Skadoodle | Cluj-Napoca 2015"},"6950":{"market_hash_name":"Sticker | zorte (Glitter) | Paris 2023"},"6951":{"market_hash_name":"Sticker | zorte (Holo) | Paris 2023"},"6952":{"market_hash_name":"Sticker | zorte (Gold) | Paris 2023"},"6953":{"market_hash_name":"Sticker | degster | Paris 2023"},"6954":{"market_hash_name":"Sticker | degster (Glitter) | Paris 2023"},"6955":{"market_hash_name":"Sticker | degster (Holo) | Paris 2023"},"6956":{"market_hash_name":"Sticker | degster (Gold) | Paris 2023"},"6957":{"market_hash_name":"Sticker | F1KU | Paris 2023"},"6958":{"market_hash_name":"Sticker | F1KU (Glitter) | Paris 2023"},"6959":{"market_hash_name":"Sticker | F1KU (Holo) | Paris 2023"},"696":{"market_hash_name":"Sticker | Skadoodle (Foil) | Cluj-Napoca 2015"},"6960":{"market_hash_name":"Sticker | F1KU (Gold) | Paris 2023"},"6961":{"market_hash_name":"Sticker | FlameZ | Paris 2023"},"6962":{"market_hash_name":"Sticker | FlameZ (Glitter) | Paris 2023"},"6963":{"market_hash_name":"Sticker | FlameZ (Holo) | Paris 2023"},"6964":{"market_hash_name":"Sticker | FlameZ (Gold) | Paris 2023"},"6965":{"market_hash_name":"Sticker | NEOFRAG | Paris 2023"},"6966":{"market_hash_name":"Sticker | NEOFRAG (Glitter) | Paris 2023"},"6967":{"market_hash_name":"Sticker | NEOFRAG (Holo) | Paris 2023"},"6968":{"market_hash_name":"Sticker | NEOFRAG (Gold) | Paris 2023"},"6969":{"market_hash_name":"Sticker | niko | Paris 2023"},"697":{"market_hash_name":"Sticker | Skadoodle (Gold) | Cluj-Napoca 2015"},"6970":{"market_hash_name":"Sticker | niko (Glitter) | Paris 2023"},"6971":{"market_hash_name":"Sticker | niko (Holo) | Paris 2023"},"6972":{"market_hash_name":"Sticker | niko (Gold) | Paris 2023"},"6973":{"market_hash_name":"Sticker | biguzera | Paris 2023"},"6974":{"market_hash_name":"Sticker | biguzera (Glitter) | Paris 2023"},"6975":{"market_hash_name":"Sticker | biguzera (Holo) | Paris 2023"},"6976":{"market_hash_name":"Sticker | biguzera (Gold) | Paris 2023"},"6977":{"market_hash_name":"Sticker | hardzao | Paris 2023"},"6978":{"market_hash_name":"Sticker | hardzao (Glitter) | Paris 2023"},"6979":{"market_hash_name":"Sticker | hardzao (Holo) | Paris 2023"},"698":{"market_hash_name":"Sticker | n0thing | Cluj-Napoca 2015"},"6980":{"market_hash_name":"Sticker | hardzao (Gold) | Paris 2023"},"6981":{"market_hash_name":"Sticker | NEKiZ | Paris 2023"},"6982":{"market_hash_name":"Sticker | NEKiZ (Glitter) | Paris 2023"},"6983":{"market_hash_name":"Sticker | NEKiZ (Holo) | Paris 2023"},"6984":{"market_hash_name":"Sticker | NEKiZ (Gold) | Paris 2023"},"6985":{"market_hash_name":"Sticker | skullz | Paris 2023"},"6986":{"market_hash_name":"Sticker | skullz (Glitter) | Paris 2023"},"6987":{"market_hash_name":"Sticker | skullz (Holo) | Paris 2023"},"6988":{"market_hash_name":"Sticker | skullz (Gold) | Paris 2023"},"6989":{"market_hash_name":"Sticker | zevy | Paris 2023"},"699":{"market_hash_name":"Sticker | n0thing (Foil) | Cluj-Napoca 2015"},"6990":{"market_hash_name":"Sticker | zevy (Glitter) | Paris 2023"},"6991":{"market_hash_name":"Sticker | zevy (Holo) | Paris 2023"},"6992":{"market_hash_name":"Sticker | zevy (Gold) | Paris 2023"},"6993":{"market_hash_name":"Sticker | acoR | Paris 2023"},"6994":{"market_hash_name":"Sticker | acoR (Glitter) | Paris 2023"},"6995":{"market_hash_name":"Sticker | acoR (Holo) | Paris 2023"},"6996":{"market_hash_name":"Sticker | acoR (Gold) | Paris 2023"},"6997":{"market_hash_name":"Sticker | iM | Paris 2023"},"6998":{"market_hash_name":"Sticker | iM (Glitter) | Paris 2023"},"6999":{"market_hash_name":"Sticker | iM (Holo) | Paris 2023"},"7":{"market_hash_name":"Sticker | Polar Bears"},"70":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Katowice 2014"},"700":{"market_hash_name":"Sticker | n0thing (Gold) | Cluj-Napoca 2015"},"7000":{"market_hash_name":"Sticker | iM (Gold) | Paris 2023"},"7001":{"market_hash_name":"Sticker | isak | Paris 2023"},"7002":{"market_hash_name":"Sticker | isak (Glitter) | Paris 2023"},"7003":{"market_hash_name":"Sticker | isak (Holo) | Paris 2023"},"7004":{"market_hash_name":"Sticker | isak (Gold) | Paris 2023"},"7005":{"market_hash_name":"Sticker | Keoz | Paris 2023"},"7006":{"market_hash_name":"Sticker | Keoz (Glitter) | Paris 2023"},"7007":{"market_hash_name":"Sticker | Keoz (Holo) | Paris 2023"},"7008":{"market_hash_name":"Sticker | Keoz (Gold) | Paris 2023"},"7009":{"market_hash_name":"Sticker | siuhy | Paris 2023"},"701":{"market_hash_name":"Sticker | apEX | Cluj-Napoca 2015"},"7010":{"market_hash_name":"Sticker | siuhy (Glitter) | Paris 2023"},"7011":{"market_hash_name":"Sticker | siuhy (Holo) | Paris 2023"},"7012":{"market_hash_name":"Sticker | siuhy (Gold) | Paris 2023"},"7013":{"market_hash_name":"Sticker | jkaem | Paris 2023"},"7014":{"market_hash_name":"Sticker | jkaem (Glitter) | Paris 2023"},"7015":{"market_hash_name":"Sticker | jkaem (Holo) | Paris 2023"},"7016":{"market_hash_name":"Sticker | jkaem (Gold) | Paris 2023"},"7017":{"market_hash_name":"Sticker | jL | Paris 2023"},"7018":{"market_hash_name":"Sticker | jL (Glitter) | Paris 2023"},"7019":{"market_hash_name":"Sticker | jL (Holo) | Paris 2023"},"702":{"market_hash_name":"Sticker | apEX (Foil) | Cluj-Napoca 2015"},"7020":{"market_hash_name":"Sticker | jL (Gold) | Paris 2023"},"7021":{"market_hash_name":"Sticker | kyxsan | Paris 2023"},"7022":{"market_hash_name":"Sticker | kyxsan (Glitter) | Paris 2023"},"7023":{"market_hash_name":"Sticker | kyxsan (Holo) | Paris 2023"},"7024":{"market_hash_name":"Sticker | kyxsan (Gold) | Paris 2023"},"7025":{"market_hash_name":"Sticker | nawwk | Paris 2023"},"7026":{"market_hash_name":"Sticker | nawwk (Glitter) | Paris 2023"},"7027":{"market_hash_name":"Sticker | nawwk (Holo) | Paris 2023"},"7028":{"market_hash_name":"Sticker | nawwk (Gold) | Paris 2023"},"7029":{"market_hash_name":"Sticker | STYKO | Paris 2023"},"703":{"market_hash_name":"Sticker | apEX (Gold) | Cluj-Napoca 2015"},"7030":{"market_hash_name":"Sticker | STYKO (Glitter) | Paris 2023"},"7031":{"market_hash_name":"Sticker | STYKO (Holo) | Paris 2023"},"7032":{"market_hash_name":"Sticker | STYKO (Gold) | Paris 2023"},"7033":{"market_hash_name":"Sticker | BOROS | Paris 2023"},"7034":{"market_hash_name":"Sticker | BOROS (Glitter) | Paris 2023"},"7035":{"market_hash_name":"Sticker | BOROS (Holo) | Paris 2023"},"7036":{"market_hash_name":"Sticker | BOROS (Gold) | Paris 2023"},"7037":{"market_hash_name":"Sticker | DemQQ | Paris 2023"},"7038":{"market_hash_name":"Sticker | DemQQ (Glitter) | Paris 2023"},"7039":{"market_hash_name":"Sticker | DemQQ (Holo) | Paris 2023"},"704":{"market_hash_name":"Sticker | Happy | Cluj-Napoca 2015"},"7040":{"market_hash_name":"Sticker | DemQQ (Gold) | Paris 2023"},"7041":{"market_hash_name":"Sticker | kRaSnaL | Paris 2023"},"7042":{"market_hash_name":"Sticker | kRaSnaL (Glitter) | Paris 2023"},"7043":{"market_hash_name":"Sticker | kRaSnaL (Holo) | Paris 2023"},"7044":{"market_hash_name":"Sticker | kRaSnaL (Gold) | Paris 2023"},"7045":{"market_hash_name":"Sticker | sdy | Paris 2023"},"7046":{"market_hash_name":"Sticker | sdy (Glitter) | Paris 2023"},"7047":{"market_hash_name":"Sticker | sdy (Holo) | Paris 2023"},"7048":{"market_hash_name":"Sticker | sdy (Gold) | Paris 2023"},"7049":{"market_hash_name":"Sticker | Woro2k | Paris 2023"},"705":{"market_hash_name":"Sticker | Happy (Foil) | Cluj-Napoca 2015"},"7050":{"market_hash_name":"Sticker | Woro2k (Glitter) | Paris 2023"},"7051":{"market_hash_name":"Sticker | Woro2k (Holo) | Paris 2023"},"7052":{"market_hash_name":"Sticker | Woro2k (Gold) | Paris 2023"},"7053":{"market_hash_name":"Sticker | EliGE | Paris 2023"},"7054":{"market_hash_name":"Sticker | EliGE (Glitter) | Paris 2023"},"7055":{"market_hash_name":"Sticker | EliGE (Holo) | Paris 2023"},"7056":{"market_hash_name":"Sticker | EliGE (Gold) | Paris 2023"},"7057":{"market_hash_name":"Sticker | NAF | Paris 2023"},"7058":{"market_hash_name":"Sticker | NAF (Glitter) | Paris 2023"},"7059":{"market_hash_name":"Sticker | NAF (Holo) | Paris 2023"},"706":{"market_hash_name":"Sticker | Happy (Gold) | Cluj-Napoca 2015"},"7060":{"market_hash_name":"Sticker | NAF (Gold) | Paris 2023"},"7061":{"market_hash_name":"Sticker | nitr0 | Paris 2023"},"7062":{"market_hash_name":"Sticker | nitr0 (Glitter) | Paris 2023"},"7063":{"market_hash_name":"Sticker | nitr0 (Holo) | Paris 2023"},"7064":{"market_hash_name":"Sticker | nitr0 (Gold) | Paris 2023"},"7065":{"market_hash_name":"Sticker | oSee | Paris 2023"},"7066":{"market_hash_name":"Sticker | oSee (Glitter) | Paris 2023"},"7067":{"market_hash_name":"Sticker | oSee (Holo) | Paris 2023"},"7068":{"market_hash_name":"Sticker | oSee (Gold) | Paris 2023"},"7069":{"market_hash_name":"Sticker | YEKINDAR | Paris 2023"},"707":{"market_hash_name":"Sticker | kioShiMa | Cluj-Napoca 2015"},"7070":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Paris 2023"},"7071":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Paris 2023"},"7072":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Paris 2023"},"7073":{"market_hash_name":"Sticker | broky | Paris 2023"},"7074":{"market_hash_name":"Sticker | broky (Glitter) | Paris 2023"},"7075":{"market_hash_name":"Sticker | broky (Holo) | Paris 2023"},"7076":{"market_hash_name":"Sticker | broky (Gold) | Paris 2023"},"7077":{"market_hash_name":"Sticker | karrigan | Paris 2023"},"7078":{"market_hash_name":"Sticker | karrigan (Glitter) | Paris 2023"},"7079":{"market_hash_name":"Sticker | karrigan (Holo) | Paris 2023"},"708":{"market_hash_name":"Sticker | kioShiMa (Foil) | Cluj-Napoca 2015"},"7080":{"market_hash_name":"Sticker | karrigan (Gold) | Paris 2023"},"7081":{"market_hash_name":"Sticker | rain | Paris 2023"},"7082":{"market_hash_name":"Sticker | rain (Glitter) | Paris 2023"},"7083":{"market_hash_name":"Sticker | rain (Holo) | Paris 2023"},"7084":{"market_hash_name":"Sticker | rain (Gold) | Paris 2023"},"7085":{"market_hash_name":"Sticker | ropz | Paris 2023"},"7086":{"market_hash_name":"Sticker | ropz (Glitter) | Paris 2023"},"7087":{"market_hash_name":"Sticker | ropz (Holo) | Paris 2023"},"7088":{"market_hash_name":"Sticker | ropz (Gold) | Paris 2023"},"7089":{"market_hash_name":"Sticker | Twistzz | Paris 2023"},"709":{"market_hash_name":"Sticker | kioShiMa (Gold) | Cluj-Napoca 2015"},"7090":{"market_hash_name":"Sticker | Twistzz (Glitter) | Paris 2023"},"7091":{"market_hash_name":"Sticker | Twistzz (Holo) | Paris 2023"},"7092":{"market_hash_name":"Sticker | Twistzz (Gold) | Paris 2023"},"7093":{"market_hash_name":"Sticker | Dycha | Paris 2023"},"7094":{"market_hash_name":"Sticker | Dycha (Glitter) | Paris 2023"},"7095":{"market_hash_name":"Sticker | Dycha (Holo) | Paris 2023"},"7096":{"market_hash_name":"Sticker | Dycha (Gold) | Paris 2023"},"7097":{"market_hash_name":"Sticker | maden | Paris 2023"},"7098":{"market_hash_name":"Sticker | maden (Glitter) | Paris 2023"},"7099":{"market_hash_name":"Sticker | maden (Holo) | Paris 2023"},"71":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Katowice 2014"},"710":{"market_hash_name":"Sticker | kennyS | Cluj-Napoca 2015"},"7100":{"market_hash_name":"Sticker | maden (Gold) | Paris 2023"},"7101":{"market_hash_name":"Sticker | NertZ | Paris 2023"},"7102":{"market_hash_name":"Sticker | NertZ (Glitter) | Paris 2023"},"7103":{"market_hash_name":"Sticker | NertZ (Holo) | Paris 2023"},"7104":{"market_hash_name":"Sticker | NertZ (Gold) | Paris 2023"},"7105":{"market_hash_name":"Sticker | Snappi | Paris 2023"},"7106":{"market_hash_name":"Sticker | Snappi (Glitter) | Paris 2023"},"7107":{"market_hash_name":"Sticker | Snappi (Holo) | Paris 2023"},"7108":{"market_hash_name":"Sticker | Snappi (Gold) | Paris 2023"},"7109":{"market_hash_name":"Sticker | SunPayus | Paris 2023"},"711":{"market_hash_name":"Sticker | kennyS (Foil) | Cluj-Napoca 2015"},"7110":{"market_hash_name":"Sticker | SunPayus (Glitter) | Paris 2023"},"7111":{"market_hash_name":"Sticker | SunPayus (Holo) | Paris 2023"},"7112":{"market_hash_name":"Sticker | SunPayus (Gold) | Paris 2023"},"7113":{"market_hash_name":"Sticker | aliStair | Paris 2023"},"7114":{"market_hash_name":"Sticker | aliStair (Glitter) | Paris 2023"},"7115":{"market_hash_name":"Sticker | aliStair (Holo) | Paris 2023"},"7116":{"market_hash_name":"Sticker | aliStair (Gold) | Paris 2023"},"7117":{"market_hash_name":"Sticker | INS | Paris 2023"},"7118":{"market_hash_name":"Sticker | INS (Glitter) | Paris 2023"},"7119":{"market_hash_name":"Sticker | INS (Holo) | Paris 2023"},"712":{"market_hash_name":"Sticker | kennyS (Gold) | Cluj-Napoca 2015"},"7120":{"market_hash_name":"Sticker | INS (Gold) | Paris 2023"},"7121":{"market_hash_name":"Sticker | Liazz | Paris 2023"},"7122":{"market_hash_name":"Sticker | Liazz (Glitter) | Paris 2023"},"7123":{"market_hash_name":"Sticker | Liazz (Holo) | Paris 2023"},"7124":{"market_hash_name":"Sticker | Liazz (Gold) | Paris 2023"},"7125":{"market_hash_name":"Sticker | Sico | Paris 2023"},"7126":{"market_hash_name":"Sticker | Sico (Glitter) | Paris 2023"},"7127":{"market_hash_name":"Sticker | Sico (Holo) | Paris 2023"},"7128":{"market_hash_name":"Sticker | Sico (Gold) | Paris 2023"},"7129":{"market_hash_name":"Sticker | vexite | Paris 2023"},"713":{"market_hash_name":"Sticker | NBK- | Cluj-Napoca 2015"},"7130":{"market_hash_name":"Sticker | vexite (Glitter) | Paris 2023"},"7131":{"market_hash_name":"Sticker | vexite (Holo) | Paris 2023"},"7132":{"market_hash_name":"Sticker | vexite (Gold) | Paris 2023"},"7133":{"market_hash_name":"Sticker | dexter | Paris 2023"},"7134":{"market_hash_name":"Sticker | dexter (Glitter) | Paris 2023"},"7135":{"market_hash_name":"Sticker | dexter (Holo) | Paris 2023"},"7136":{"market_hash_name":"Sticker | dexter (Gold) | Paris 2023"},"7137":{"market_hash_name":"Sticker | frozen | Paris 2023"},"7138":{"market_hash_name":"Sticker | frozen (Glitter) | Paris 2023"},"7139":{"market_hash_name":"Sticker | frozen (Holo) | Paris 2023"},"714":{"market_hash_name":"Sticker | NBK- (Foil) | Cluj-Napoca 2015"},"7140":{"market_hash_name":"Sticker | frozen (Gold) | Paris 2023"},"7141":{"market_hash_name":"Sticker | JDC | Paris 2023"},"7142":{"market_hash_name":"Sticker | JDC (Glitter) | Paris 2023"},"7143":{"market_hash_name":"Sticker | JDC (Holo) | Paris 2023"},"7144":{"market_hash_name":"Sticker | JDC (Gold) | Paris 2023"},"7145":{"market_hash_name":"Sticker | torzsi | Paris 2023"},"7146":{"market_hash_name":"Sticker | torzsi (Glitter) | Paris 2023"},"7147":{"market_hash_name":"Sticker | torzsi (Holo) | Paris 2023"},"7148":{"market_hash_name":"Sticker | torzsi (Gold) | Paris 2023"},"7149":{"market_hash_name":"Sticker | xertioN | Paris 2023"},"715":{"market_hash_name":"Sticker | NBK- (Gold) | Cluj-Napoca 2015"},"7150":{"market_hash_name":"Sticker | xertioN (Glitter) | Paris 2023"},"7151":{"market_hash_name":"Sticker | xertioN (Holo) | Paris 2023"},"7152":{"market_hash_name":"Sticker | xertioN (Gold) | Paris 2023"},"7153":{"market_hash_name":"Sticker | FaNg | Paris 2023"},"7154":{"market_hash_name":"Sticker | FaNg (Glitter) | Paris 2023"},"7155":{"market_hash_name":"Sticker | FaNg (Holo) | Paris 2023"},"7156":{"market_hash_name":"Sticker | FaNg (Gold) | Paris 2023"},"7157":{"market_hash_name":"Sticker | floppy | Paris 2023"},"7158":{"market_hash_name":"Sticker | floppy (Glitter) | Paris 2023"},"7159":{"market_hash_name":"Sticker | floppy (Holo) | Paris 2023"},"716":{"market_hash_name":"Sticker | B1ad3 | Cluj-Napoca 2015"},"7160":{"market_hash_name":"Sticker | floppy (Gold) | Paris 2023"},"7161":{"market_hash_name":"Sticker | Grim | Paris 2023"},"7162":{"market_hash_name":"Sticker | Grim (Glitter) | Paris 2023"},"7163":{"market_hash_name":"Sticker | Grim (Holo) | Paris 2023"},"7164":{"market_hash_name":"Sticker | Grim (Gold) | Paris 2023"},"7165":{"market_hash_name":"Sticker | hallzerk | Paris 2023"},"7166":{"market_hash_name":"Sticker | hallzerk (Glitter) | Paris 2023"},"7167":{"market_hash_name":"Sticker | hallzerk (Holo) | Paris 2023"},"7168":{"market_hash_name":"Sticker | hallzerk (Gold) | Paris 2023"},"7169":{"market_hash_name":"Sticker | JT | Paris 2023"},"717":{"market_hash_name":"Sticker | B1ad3 (Foil) | Cluj-Napoca 2015"},"7170":{"market_hash_name":"Sticker | JT (Glitter) | Paris 2023"},"7171":{"market_hash_name":"Sticker | JT (Holo) | Paris 2023"},"7172":{"market_hash_name":"Sticker | JT (Gold) | Paris 2023"},"7173":{"market_hash_name":"Sticker | felps | Paris 2023"},"7174":{"market_hash_name":"Sticker | felps (Glitter) | Paris 2023"},"7175":{"market_hash_name":"Sticker | felps (Holo) | Paris 2023"},"7176":{"market_hash_name":"Sticker | felps (Gold) | Paris 2023"},"7177":{"market_hash_name":"Sticker | History | Paris 2023"},"7178":{"market_hash_name":"Sticker | History (Glitter) | Paris 2023"},"7179":{"market_hash_name":"Sticker | History (Holo) | Paris 2023"},"718":{"market_hash_name":"Sticker | B1ad3 (Gold) | Cluj-Napoca 2015"},"7180":{"market_hash_name":"Sticker | History (Gold) | Paris 2023"},"7181":{"market_hash_name":"Sticker | Lucaozy | Paris 2023"},"7182":{"market_hash_name":"Sticker | Lucaozy (Glitter) | Paris 2023"},"7183":{"market_hash_name":"Sticker | Lucaozy (Holo) | Paris 2023"},"7184":{"market_hash_name":"Sticker | Lucaozy (Gold) | Paris 2023"},"7185":{"market_hash_name":"Sticker | v$m | Paris 2023"},"7186":{"market_hash_name":"Sticker | v$m (Glitter) | Paris 2023"},"7187":{"market_hash_name":"Sticker | v$m (Holo) | Paris 2023"},"7188":{"market_hash_name":"Sticker | v$m (Gold) | Paris 2023"},"7189":{"market_hash_name":"Sticker | WOOD7 | Paris 2023"},"719":{"market_hash_name":"Sticker | bondik | Cluj-Napoca 2015"},"7190":{"market_hash_name":"Sticker | WOOD7 (Glitter) | Paris 2023"},"7191":{"market_hash_name":"Sticker | WOOD7 (Holo) | Paris 2023"},"7192":{"market_hash_name":"Sticker | WOOD7 (Gold) | Paris 2023"},"7193":{"market_hash_name":"Sticker | ANNIHILATION | Paris 2023"},"7194":{"market_hash_name":"Sticker | ANNIHILATION (Glitter) | Paris 2023"},"7195":{"market_hash_name":"Sticker | ANNIHILATION (Holo) | Paris 2023"},"7196":{"market_hash_name":"Sticker | ANNIHILATION (Gold) | Paris 2023"},"7197":{"market_hash_name":"Sticker | Bart4k | Paris 2023"},"7198":{"market_hash_name":"Sticker | Bart4k (Glitter) | Paris 2023"},"7199":{"market_hash_name":"Sticker | Bart4k (Holo) | Paris 2023"},"72":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Katowice 2014"},"720":{"market_hash_name":"Sticker | bondik (Foil) | Cluj-Napoca 2015"},"7200":{"market_hash_name":"Sticker | Bart4k (Gold) | Paris 2023"},"7201":{"market_hash_name":"Sticker | bLitz | Paris 2023"},"7202":{"market_hash_name":"Sticker | bLitz (Glitter) | Paris 2023"},"7203":{"market_hash_name":"Sticker | bLitz (Holo) | Paris 2023"},"7204":{"market_hash_name":"Sticker | bLitz (Gold) | Paris 2023"},"7205":{"market_hash_name":"Sticker | sk0R | Paris 2023"},"7206":{"market_hash_name":"Sticker | sk0R (Glitter) | Paris 2023"},"7207":{"market_hash_name":"Sticker | sk0R (Holo) | Paris 2023"},"7208":{"market_hash_name":"Sticker | sk0R (Gold) | Paris 2023"},"7209":{"market_hash_name":"Sticker | Techno4K | Paris 2023"},"721":{"market_hash_name":"Sticker | bondik (Gold) | Cluj-Napoca 2015"},"7210":{"market_hash_name":"Sticker | Techno4K (Glitter) | Paris 2023"},"7211":{"market_hash_name":"Sticker | Techno4K (Holo) | Paris 2023"},"7212":{"market_hash_name":"Sticker | Techno4K (Gold) | Paris 2023"},"7213":{"market_hash_name":"Sticker | apEX (Champion) | Paris 2023"},"7214":{"market_hash_name":"Sticker | apEX (Glitter, Champion) | Paris 2023"},"7215":{"market_hash_name":"Sticker | apEX (Holo, Champion) | Paris 2023"},"7216":{"market_hash_name":"Sticker | apEX (Gold, Champion) | Paris 2023"},"7217":{"market_hash_name":"Sticker | dupreeh (Champion) | Paris 2023"},"7218":{"market_hash_name":"Sticker | dupreeh (Glitter, Champion) | Paris 2023"},"7219":{"market_hash_name":"Sticker | dupreeh (Holo, Champion) | Paris 2023"},"722":{"market_hash_name":"Sticker | DavCost | Cluj-Napoca 2015"},"7220":{"market_hash_name":"Sticker | dupreeh (Gold, Champion) | Paris 2023"},"7221":{"market_hash_name":"Sticker | Magisk (Champion) | Paris 2023"},"7222":{"market_hash_name":"Sticker | Magisk (Glitter, Champion) | Paris 2023"},"7223":{"market_hash_name":"Sticker | Magisk (Holo, Champion) | Paris 2023"},"7224":{"market_hash_name":"Sticker | Magisk (Gold, Champion) | Paris 2023"},"7225":{"market_hash_name":"Sticker | Spinx (Champion) | Paris 2023"},"7226":{"market_hash_name":"Sticker | Spinx (Glitter, Champion) | Paris 2023"},"7227":{"market_hash_name":"Sticker | Spinx (Holo, Champion) | Paris 2023"},"7228":{"market_hash_name":"Sticker | Spinx (Gold, Champion) | Paris 2023"},"7229":{"market_hash_name":"Sticker | ZywOo (Champion) | Paris 2023"},"723":{"market_hash_name":"Sticker | DavCost (Foil) | Cluj-Napoca 2015"},"7230":{"market_hash_name":"Sticker | ZywOo (Glitter, Champion) | Paris 2023"},"7231":{"market_hash_name":"Sticker | ZywOo (Holo, Champion) | Paris 2023"},"7232":{"market_hash_name":"Sticker | ZywOo (Gold, Champion) | Paris 2023"},"7233":{"market_hash_name":"Sticker | Ouchie (Foil)"},"7234":{"market_hash_name":"Sticker | Lost In Smoke (Foil)"},"7235":{"market_hash_name":"Sticker | Retro Zeus"},"7236":{"market_hash_name":"Sticker | This Is Fine (Chicken)"},"7237":{"market_hash_name":"Sticker | Please Return To"},"7238":{"market_hash_name":"Sticker | Peek-A-Boo"},"7239":{"market_hash_name":"Sticker | AKickflip-47"},"724":{"market_hash_name":"Sticker | DavCost (Gold) | Cluj-Napoca 2015"},"7240":{"market_hash_name":"Sticker | Easy For Ricksaw"},"7241":{"market_hash_name":"Sticker | Bum A Smoke"},"7242":{"market_hash_name":"Sticker | Angry T"},"7243":{"market_hash_name":"Sticker | Old School (Lenticular)"},"7244":{"market_hash_name":"Sticker | Econometer (Lenticular)"},"7245":{"market_hash_name":"Sticker | Dystopian Gaze (Lenticular)"},"7246":{"market_hash_name":"Sticker | Loving Eyes (Holo)"},"7247":{"market_hash_name":"Sticker | Try Hard (Holo)"},"7248":{"market_hash_name":"Sticker | Lit (Holo)"},"7249":{"market_hash_name":"Sticker | Cedar Creek (Holo)"},"725":{"market_hash_name":"Sticker | markeloff | Cluj-Napoca 2015"},"7250":{"market_hash_name":"Sticker | Pushing Smokes (Glitter)"},"7251":{"market_hash_name":"Sticker | Lotus (Glitter)"},"7252":{"market_hash_name":"Sticker | Factory Sealed (Foil)"},"7253":{"market_hash_name":"Sticker | On An Eco (Foil)"},"7254":{"market_hash_name":"Sticker | Natus Vincere | Copenhagen 2024"},"7255":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Copenhagen 2024"},"7256":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Copenhagen 2024"},"7257":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Copenhagen 2024"},"7258":{"market_hash_name":"Sticker | Virtus.pro | Copenhagen 2024"},"7259":{"market_hash_name":"Sticker | Virtus.pro (Glitter) | Copenhagen 2024"},"726":{"market_hash_name":"Sticker | markeloff (Foil) | Cluj-Napoca 2015"},"7260":{"market_hash_name":"Sticker | Virtus.pro (Holo) | Copenhagen 2024"},"7261":{"market_hash_name":"Sticker | Virtus.pro (Gold) | Copenhagen 2024"},"7262":{"market_hash_name":"Sticker | G2 Esports | Copenhagen 2024"},"7263":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Copenhagen 2024"},"7264":{"market_hash_name":"Sticker | G2 Esports (Holo) | Copenhagen 2024"},"7265":{"market_hash_name":"Sticker | G2 Esports (Gold) | Copenhagen 2024"},"7266":{"market_hash_name":"Sticker | FaZe Clan | Copenhagen 2024"},"7267":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Copenhagen 2024"},"7268":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Copenhagen 2024"},"7269":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Copenhagen 2024"},"727":{"market_hash_name":"Sticker | markeloff (Gold) | Cluj-Napoca 2015"},"7270":{"market_hash_name":"Sticker | Team Spirit | Copenhagen 2024"},"7271":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Copenhagen 2024"},"7272":{"market_hash_name":"Sticker | Team Spirit (Holo) | Copenhagen 2024"},"7273":{"market_hash_name":"Sticker | Team Spirit (Gold) | Copenhagen 2024"},"7274":{"market_hash_name":"Sticker | Vitality | Copenhagen 2024"},"7275":{"market_hash_name":"Sticker | Vitality (Glitter) | Copenhagen 2024"},"7276":{"market_hash_name":"Sticker | Vitality (Holo) | Copenhagen 2024"},"7277":{"market_hash_name":"Sticker | Vitality (Gold) | Copenhagen 2024"},"7278":{"market_hash_name":"Sticker | MOUZ | Copenhagen 2024"},"7279":{"market_hash_name":"Sticker | MOUZ (Glitter) | Copenhagen 2024"},"728":{"market_hash_name":"Sticker | WorldEdit | Cluj-Napoca 2015"},"7280":{"market_hash_name":"Sticker | MOUZ (Holo) | Copenhagen 2024"},"7281":{"market_hash_name":"Sticker | MOUZ (Gold) | Copenhagen 2024"},"7282":{"market_hash_name":"Sticker | Complexity Gaming | Copenhagen 2024"},"7283":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Copenhagen 2024"},"7284":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Copenhagen 2024"},"7285":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Copenhagen 2024"},"7286":{"market_hash_name":"Sticker | Cloud9 | Copenhagen 2024"},"7287":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Copenhagen 2024"},"7288":{"market_hash_name":"Sticker | Cloud9 (Holo) | Copenhagen 2024"},"7289":{"market_hash_name":"Sticker | Cloud9 (Gold) | Copenhagen 2024"},"729":{"market_hash_name":"Sticker | WorldEdit (Foil) | Cluj-Napoca 2015"},"7290":{"market_hash_name":"Sticker | ENCE | Copenhagen 2024"},"7291":{"market_hash_name":"Sticker | ENCE (Glitter) | Copenhagen 2024"},"7292":{"market_hash_name":"Sticker | ENCE (Holo) | Copenhagen 2024"},"7293":{"market_hash_name":"Sticker | ENCE (Gold) | Copenhagen 2024"},"7294":{"market_hash_name":"Sticker | FURIA | Copenhagen 2024"},"7295":{"market_hash_name":"Sticker | FURIA (Glitter) | Copenhagen 2024"},"7296":{"market_hash_name":"Sticker | FURIA (Holo) | Copenhagen 2024"},"7297":{"market_hash_name":"Sticker | FURIA (Gold) | Copenhagen 2024"},"7298":{"market_hash_name":"Sticker | Heroic | Copenhagen 2024"},"7299":{"market_hash_name":"Sticker | Heroic (Glitter) | Copenhagen 2024"},"73":{"market_hash_name":"Sticker | Reason Gaming | Katowice 2014"},"730":{"market_hash_name":"Sticker | WorldEdit (Gold) | Cluj-Napoca 2015"},"7300":{"market_hash_name":"Sticker | Heroic (Holo) | Copenhagen 2024"},"7301":{"market_hash_name":"Sticker | Heroic (Gold) | Copenhagen 2024"},"7302":{"market_hash_name":"Sticker | Eternal Fire | Copenhagen 2024"},"7303":{"market_hash_name":"Sticker | Eternal Fire (Glitter) | Copenhagen 2024"},"7304":{"market_hash_name":"Sticker | Eternal Fire (Holo) | Copenhagen 2024"},"7305":{"market_hash_name":"Sticker | Eternal Fire (Gold) | Copenhagen 2024"},"7306":{"market_hash_name":"Sticker | Apeks | Copenhagen 2024"},"7307":{"market_hash_name":"Sticker | Apeks (Glitter) | Copenhagen 2024"},"7308":{"market_hash_name":"Sticker | Apeks (Holo) | Copenhagen 2024"},"7309":{"market_hash_name":"Sticker | Apeks (Gold) | Copenhagen 2024"},"731":{"market_hash_name":"Sticker | flusha | Cluj-Napoca 2015"},"7310":{"market_hash_name":"Sticker | GamerLegion | Copenhagen 2024"},"7311":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Copenhagen 2024"},"7312":{"market_hash_name":"Sticker | GamerLegion (Holo) | Copenhagen 2024"},"7313":{"market_hash_name":"Sticker | GamerLegion (Gold) | Copenhagen 2024"},"7314":{"market_hash_name":"Sticker | SAW | Copenhagen 2024"},"7315":{"market_hash_name":"Sticker | SAW (Glitter) | Copenhagen 2024"},"7316":{"market_hash_name":"Sticker | SAW (Holo) | Copenhagen 2024"},"7317":{"market_hash_name":"Sticker | SAW (Gold) | Copenhagen 2024"},"7318":{"market_hash_name":"Sticker | paiN Gaming | Copenhagen 2024"},"7319":{"market_hash_name":"Sticker | paiN Gaming (Glitter) | Copenhagen 2024"},"732":{"market_hash_name":"Sticker | flusha (Foil) | Cluj-Napoca 2015"},"7320":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Copenhagen 2024"},"7321":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Copenhagen 2024"},"7322":{"market_hash_name":"Sticker | Imperial Esports | Copenhagen 2024"},"7323":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Copenhagen 2024"},"7324":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Copenhagen 2024"},"7325":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Copenhagen 2024"},"7326":{"market_hash_name":"Sticker | The MongolZ | Copenhagen 2024"},"7327":{"market_hash_name":"Sticker | The MongolZ (Glitter) | Copenhagen 2024"},"7328":{"market_hash_name":"Sticker | The MongolZ (Holo) | Copenhagen 2024"},"7329":{"market_hash_name":"Sticker | The MongolZ (Gold) | Copenhagen 2024"},"733":{"market_hash_name":"Sticker | flusha (Gold) | Cluj-Napoca 2015"},"7330":{"market_hash_name":"Sticker | AMKAL ESPORTS | Copenhagen 2024"},"7331":{"market_hash_name":"Sticker | AMKAL ESPORTS (Glitter) | Copenhagen 2024"},"7332":{"market_hash_name":"Sticker | AMKAL ESPORTS (Holo) | Copenhagen 2024"},"7333":{"market_hash_name":"Sticker | AMKAL ESPORTS (Gold) | Copenhagen 2024"},"7334":{"market_hash_name":"Sticker | ECSTATIC | Copenhagen 2024"},"7335":{"market_hash_name":"Sticker | ECSTATIC (Glitter) | Copenhagen 2024"},"7336":{"market_hash_name":"Sticker | ECSTATIC (Holo) | Copenhagen 2024"},"7337":{"market_hash_name":"Sticker | ECSTATIC (Gold) | Copenhagen 2024"},"7338":{"market_hash_name":"Sticker | KOI | Copenhagen 2024"},"7339":{"market_hash_name":"Sticker | KOI (Glitter) | Copenhagen 2024"},"734":{"market_hash_name":"Sticker | JW | Cluj-Napoca 2015"},"7340":{"market_hash_name":"Sticker | KOI (Holo) | Copenhagen 2024"},"7341":{"market_hash_name":"Sticker | KOI (Gold) | Copenhagen 2024"},"7342":{"market_hash_name":"Sticker | Legacy | Copenhagen 2024"},"7343":{"market_hash_name":"Sticker | Legacy (Glitter) | Copenhagen 2024"},"7344":{"market_hash_name":"Sticker | Legacy (Holo) | Copenhagen 2024"},"7345":{"market_hash_name":"Sticker | Legacy (Gold) | Copenhagen 2024"},"7346":{"market_hash_name":"Sticker | Lynn Vision | Copenhagen 2024"},"7347":{"market_hash_name":"Sticker | Lynn Vision (Glitter) | Copenhagen 2024"},"7348":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Copenhagen 2024"},"7349":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Copenhagen 2024"},"735":{"market_hash_name":"Sticker | JW (Foil) | Cluj-Napoca 2015"},"7350":{"market_hash_name":"Sticker | PGL | Copenhagen 2024"},"7351":{"market_hash_name":"Sticker | PGL (Glitter) | Copenhagen 2024"},"7352":{"market_hash_name":"Sticker | PGL (Holo) | Copenhagen 2024"},"7353":{"market_hash_name":"Sticker | PGL (Gold) | Copenhagen 2024"},"736":{"market_hash_name":"Sticker | JW (Gold) | Cluj-Napoca 2015"},"737":{"market_hash_name":"Sticker | KRIMZ | Cluj-Napoca 2015"},"7379":{"market_hash_name":"Sticker | jL | Copenhagen 2024"},"738":{"market_hash_name":"Sticker | KRIMZ (Foil) | Cluj-Napoca 2015"},"7380":{"market_hash_name":"Sticker | jL (Glitter) | Copenhagen 2024"},"7381":{"market_hash_name":"Sticker | jL (Holo) | Copenhagen 2024"},"7382":{"market_hash_name":"Sticker | jL (Gold) | Copenhagen 2024"},"7383":{"market_hash_name":"Sticker | Aleksib | Copenhagen 2024"},"7384":{"market_hash_name":"Sticker | Aleksib (Glitter) | Copenhagen 2024"},"7385":{"market_hash_name":"Sticker | Aleksib (Holo) | Copenhagen 2024"},"7386":{"market_hash_name":"Sticker | Aleksib (Gold) | Copenhagen 2024"},"7387":{"market_hash_name":"Sticker | b1t | Copenhagen 2024"},"7388":{"market_hash_name":"Sticker | b1t (Glitter) | Copenhagen 2024"},"7389":{"market_hash_name":"Sticker | b1t (Holo) | Copenhagen 2024"},"739":{"market_hash_name":"Sticker | KRIMZ (Gold) | Cluj-Napoca 2015"},"7390":{"market_hash_name":"Sticker | b1t (Gold) | Copenhagen 2024"},"7391":{"market_hash_name":"Sticker | iM | Copenhagen 2024"},"7392":{"market_hash_name":"Sticker | iM (Glitter) | Copenhagen 2024"},"7393":{"market_hash_name":"Sticker | iM (Holo) | Copenhagen 2024"},"7394":{"market_hash_name":"Sticker | iM (Gold) | Copenhagen 2024"},"7395":{"market_hash_name":"Sticker | w0nderful | Copenhagen 2024"},"7396":{"market_hash_name":"Sticker | w0nderful (Glitter) | Copenhagen 2024"},"7397":{"market_hash_name":"Sticker | w0nderful (Holo) | Copenhagen 2024"},"7398":{"market_hash_name":"Sticker | w0nderful (Gold) | Copenhagen 2024"},"7399":{"market_hash_name":"Sticker | fame | Copenhagen 2024"},"74":{"market_hash_name":"Sticker | Reason Gaming (Holo) | Katowice 2014"},"740":{"market_hash_name":"Sticker | olofmeister | Cluj-Napoca 2015"},"7400":{"market_hash_name":"Sticker | fame (Glitter) | Copenhagen 2024"},"7401":{"market_hash_name":"Sticker | fame (Holo) | Copenhagen 2024"},"7402":{"market_hash_name":"Sticker | fame (Gold) | Copenhagen 2024"},"7403":{"market_hash_name":"Sticker | FL1T | Copenhagen 2024"},"7404":{"market_hash_name":"Sticker | FL1T (Glitter) | Copenhagen 2024"},"7405":{"market_hash_name":"Sticker | FL1T (Holo) | Copenhagen 2024"},"7406":{"market_hash_name":"Sticker | FL1T (Gold) | Copenhagen 2024"},"7407":{"market_hash_name":"Sticker | Jame | Copenhagen 2024"},"7408":{"market_hash_name":"Sticker | Jame (Glitter) | Copenhagen 2024"},"7409":{"market_hash_name":"Sticker | Jame (Holo) | Copenhagen 2024"},"741":{"market_hash_name":"Sticker | olofmeister (Foil) | Cluj-Napoca 2015"},"7410":{"market_hash_name":"Sticker | Jame (Gold) | Copenhagen 2024"},"7411":{"market_hash_name":"Sticker | mir | Copenhagen 2024"},"7412":{"market_hash_name":"Sticker | mir (Glitter) | Copenhagen 2024"},"7413":{"market_hash_name":"Sticker | mir (Holo) | Copenhagen 2024"},"7414":{"market_hash_name":"Sticker | mir (Gold) | Copenhagen 2024"},"7415":{"market_hash_name":"Sticker | n0rb3r7 | Copenhagen 2024"},"7416":{"market_hash_name":"Sticker | n0rb3r7 (Glitter) | Copenhagen 2024"},"7417":{"market_hash_name":"Sticker | n0rb3r7 (Holo) | Copenhagen 2024"},"7418":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Copenhagen 2024"},"7419":{"market_hash_name":"Sticker | HooXi | Copenhagen 2024"},"742":{"market_hash_name":"Sticker | olofmeister (Gold) | Cluj-Napoca 2015"},"7420":{"market_hash_name":"Sticker | HooXi (Glitter) | Copenhagen 2024"},"7421":{"market_hash_name":"Sticker | HooXi (Holo) | Copenhagen 2024"},"7422":{"market_hash_name":"Sticker | HooXi (Gold) | Copenhagen 2024"},"7423":{"market_hash_name":"Sticker | huNter- | Copenhagen 2024"},"7424":{"market_hash_name":"Sticker | huNter- (Glitter) | Copenhagen 2024"},"7425":{"market_hash_name":"Sticker | huNter- (Holo) | Copenhagen 2024"},"7426":{"market_hash_name":"Sticker | huNter- (Gold) | Copenhagen 2024"},"7427":{"market_hash_name":"Sticker | m0NESY | Copenhagen 2024"},"7428":{"market_hash_name":"Sticker | m0NESY (Glitter) | Copenhagen 2024"},"7429":{"market_hash_name":"Sticker | m0NESY (Holo) | Copenhagen 2024"},"743":{"market_hash_name":"Sticker | pronax | Cluj-Napoca 2015"},"7430":{"market_hash_name":"Sticker | m0NESY (Gold) | Copenhagen 2024"},"7431":{"market_hash_name":"Sticker | nexa | Copenhagen 2024"},"7432":{"market_hash_name":"Sticker | nexa (Glitter) | Copenhagen 2024"},"7433":{"market_hash_name":"Sticker | nexa (Holo) | Copenhagen 2024"},"7434":{"market_hash_name":"Sticker | nexa (Gold) | Copenhagen 2024"},"7435":{"market_hash_name":"Sticker | NiKo | Copenhagen 2024"},"7436":{"market_hash_name":"Sticker | NiKo (Glitter) | Copenhagen 2024"},"7437":{"market_hash_name":"Sticker | NiKo (Holo) | Copenhagen 2024"},"7438":{"market_hash_name":"Sticker | NiKo (Gold) | Copenhagen 2024"},"7439":{"market_hash_name":"Sticker | broky | Copenhagen 2024"},"744":{"market_hash_name":"Sticker | pronax (Foil) | Cluj-Napoca 2015"},"7440":{"market_hash_name":"Sticker | broky (Glitter) | Copenhagen 2024"},"7441":{"market_hash_name":"Sticker | broky (Holo) | Copenhagen 2024"},"7442":{"market_hash_name":"Sticker | broky (Gold) | Copenhagen 2024"},"7443":{"market_hash_name":"Sticker | frozen | Copenhagen 2024"},"7444":{"market_hash_name":"Sticker | frozen (Glitter) | Copenhagen 2024"},"7445":{"market_hash_name":"Sticker | frozen (Holo) | Copenhagen 2024"},"7446":{"market_hash_name":"Sticker | frozen (Gold) | Copenhagen 2024"},"7447":{"market_hash_name":"Sticker | karrigan | Copenhagen 2024"},"7448":{"market_hash_name":"Sticker | karrigan (Glitter) | Copenhagen 2024"},"7449":{"market_hash_name":"Sticker | karrigan (Holo) | Copenhagen 2024"},"745":{"market_hash_name":"Sticker | pronax (Gold) | Cluj-Napoca 2015"},"7450":{"market_hash_name":"Sticker | karrigan (Gold) | Copenhagen 2024"},"7451":{"market_hash_name":"Sticker | rain | Copenhagen 2024"},"7452":{"market_hash_name":"Sticker | rain (Glitter) | Copenhagen 2024"},"7453":{"market_hash_name":"Sticker | rain (Holo) | Copenhagen 2024"},"7454":{"market_hash_name":"Sticker | rain (Gold) | Copenhagen 2024"},"7455":{"market_hash_name":"Sticker | ropz | Copenhagen 2024"},"7456":{"market_hash_name":"Sticker | ropz (Glitter) | Copenhagen 2024"},"7457":{"market_hash_name":"Sticker | ropz (Holo) | Copenhagen 2024"},"7458":{"market_hash_name":"Sticker | ropz (Gold) | Copenhagen 2024"},"7459":{"market_hash_name":"Sticker | chopper | Copenhagen 2024"},"746":{"market_hash_name":"Sticker | dennis | Cluj-Napoca 2015"},"7460":{"market_hash_name":"Sticker | chopper (Glitter) | Copenhagen 2024"},"7461":{"market_hash_name":"Sticker | chopper (Holo) | Copenhagen 2024"},"7462":{"market_hash_name":"Sticker | chopper (Gold) | Copenhagen 2024"},"7463":{"market_hash_name":"Sticker | donk | Copenhagen 2024"},"7464":{"market_hash_name":"Sticker | donk (Glitter) | Copenhagen 2024"},"7465":{"market_hash_name":"Sticker | donk (Holo) | Copenhagen 2024"},"7466":{"market_hash_name":"Sticker | donk (Gold) | Copenhagen 2024"},"7467":{"market_hash_name":"Sticker | magixx | Copenhagen 2024"},"7468":{"market_hash_name":"Sticker | magixx (Glitter) | Copenhagen 2024"},"7469":{"market_hash_name":"Sticker | magixx (Holo) | Copenhagen 2024"},"747":{"market_hash_name":"Sticker | dennis (Foil) | Cluj-Napoca 2015"},"7470":{"market_hash_name":"Sticker | magixx (Gold) | Copenhagen 2024"},"7471":{"market_hash_name":"Sticker | sh1ro | Copenhagen 2024"},"7472":{"market_hash_name":"Sticker | sh1ro (Glitter) | Copenhagen 2024"},"7473":{"market_hash_name":"Sticker | sh1ro (Holo) | Copenhagen 2024"},"7474":{"market_hash_name":"Sticker | sh1ro (Gold) | Copenhagen 2024"},"7475":{"market_hash_name":"Sticker | zont1x | Copenhagen 2024"},"7476":{"market_hash_name":"Sticker | zont1x (Glitter) | Copenhagen 2024"},"7477":{"market_hash_name":"Sticker | zont1x (Holo) | Copenhagen 2024"},"7478":{"market_hash_name":"Sticker | zont1x (Gold) | Copenhagen 2024"},"7479":{"market_hash_name":"Sticker | apEX | Copenhagen 2024"},"748":{"market_hash_name":"Sticker | dennis (Gold) | Cluj-Napoca 2015"},"7480":{"market_hash_name":"Sticker | apEX (Glitter) | Copenhagen 2024"},"7481":{"market_hash_name":"Sticker | apEX (Holo) | Copenhagen 2024"},"7482":{"market_hash_name":"Sticker | apEX (Gold) | Copenhagen 2024"},"7483":{"market_hash_name":"Sticker | FlameZ | Copenhagen 2024"},"7484":{"market_hash_name":"Sticker | FlameZ (Glitter) | Copenhagen 2024"},"7485":{"market_hash_name":"Sticker | FlameZ (Holo) | Copenhagen 2024"},"7486":{"market_hash_name":"Sticker | FlameZ (Gold) | Copenhagen 2024"},"7487":{"market_hash_name":"Sticker | mezii | Copenhagen 2024"},"7488":{"market_hash_name":"Sticker | mezii (Glitter) | Copenhagen 2024"},"7489":{"market_hash_name":"Sticker | mezii (Holo) | Copenhagen 2024"},"749":{"market_hash_name":"Sticker | fox | Cluj-Napoca 2015"},"7490":{"market_hash_name":"Sticker | mezii (Gold) | Copenhagen 2024"},"7491":{"market_hash_name":"Sticker | Spinx | Copenhagen 2024"},"7492":{"market_hash_name":"Sticker | Spinx (Glitter) | Copenhagen 2024"},"7493":{"market_hash_name":"Sticker | Spinx (Holo) | Copenhagen 2024"},"7494":{"market_hash_name":"Sticker | Spinx (Gold) | Copenhagen 2024"},"7495":{"market_hash_name":"Sticker | ZywOo | Copenhagen 2024"},"7496":{"market_hash_name":"Sticker | ZywOo (Glitter) | Copenhagen 2024"},"7497":{"market_hash_name":"Sticker | ZywOo (Holo) | Copenhagen 2024"},"7498":{"market_hash_name":"Sticker | ZywOo (Gold) | Copenhagen 2024"},"7499":{"market_hash_name":"Sticker | Brollan | Copenhagen 2024"},"75":{"market_hash_name":"Sticker | Titan | Katowice 2014"},"750":{"market_hash_name":"Sticker | fox (Foil) | Cluj-Napoca 2015"},"7500":{"market_hash_name":"Sticker | Brollan (Glitter) | Copenhagen 2024"},"7501":{"market_hash_name":"Sticker | Brollan (Holo) | Copenhagen 2024"},"7502":{"market_hash_name":"Sticker | Brollan (Gold) | Copenhagen 2024"},"7503":{"market_hash_name":"Sticker | Jimpphat | Copenhagen 2024"},"7504":{"market_hash_name":"Sticker | Jimpphat (Glitter) | Copenhagen 2024"},"7505":{"market_hash_name":"Sticker | Jimpphat (Holo) | Copenhagen 2024"},"7506":{"market_hash_name":"Sticker | Jimpphat (Gold) | Copenhagen 2024"},"7507":{"market_hash_name":"Sticker | siuhy | Copenhagen 2024"},"7508":{"market_hash_name":"Sticker | siuhy (Glitter) | Copenhagen 2024"},"7509":{"market_hash_name":"Sticker | siuhy (Holo) | Copenhagen 2024"},"751":{"market_hash_name":"Sticker | fox (Gold) | Cluj-Napoca 2015"},"7510":{"market_hash_name":"Sticker | siuhy (Gold) | Copenhagen 2024"},"7511":{"market_hash_name":"Sticker | torzsi | Copenhagen 2024"},"7512":{"market_hash_name":"Sticker | torzsi (Glitter) | Copenhagen 2024"},"7513":{"market_hash_name":"Sticker | torzsi (Holo) | Copenhagen 2024"},"7514":{"market_hash_name":"Sticker | torzsi (Gold) | Copenhagen 2024"},"7515":{"market_hash_name":"Sticker | xertioN | Copenhagen 2024"},"7516":{"market_hash_name":"Sticker | xertioN (Glitter) | Copenhagen 2024"},"7517":{"market_hash_name":"Sticker | xertioN (Holo) | Copenhagen 2024"},"7518":{"market_hash_name":"Sticker | xertioN (Gold) | Copenhagen 2024"},"7519":{"market_hash_name":"Sticker | hallzerk | Copenhagen 2024"},"752":{"market_hash_name":"Sticker | Maikelele | Cluj-Napoca 2015"},"7520":{"market_hash_name":"Sticker | hallzerk (Glitter) | Copenhagen 2024"},"7521":{"market_hash_name":"Sticker | hallzerk (Holo) | Copenhagen 2024"},"7522":{"market_hash_name":"Sticker | hallzerk (Gold) | Copenhagen 2024"},"7523":{"market_hash_name":"Sticker | EliGE | Copenhagen 2024"},"7524":{"market_hash_name":"Sticker | EliGE (Glitter) | Copenhagen 2024"},"7525":{"market_hash_name":"Sticker | EliGE (Holo) | Copenhagen 2024"},"7526":{"market_hash_name":"Sticker | EliGE (Gold) | Copenhagen 2024"},"7527":{"market_hash_name":"Sticker | floppy | Copenhagen 2024"},"7528":{"market_hash_name":"Sticker | floppy (Glitter) | Copenhagen 2024"},"7529":{"market_hash_name":"Sticker | floppy (Holo) | Copenhagen 2024"},"753":{"market_hash_name":"Sticker | Maikelele (Foil) | Cluj-Napoca 2015"},"7530":{"market_hash_name":"Sticker | floppy (Gold) | Copenhagen 2024"},"7531":{"market_hash_name":"Sticker | Grim | Copenhagen 2024"},"7532":{"market_hash_name":"Sticker | Grim (Glitter) | Copenhagen 2024"},"7533":{"market_hash_name":"Sticker | Grim (Holo) | Copenhagen 2024"},"7534":{"market_hash_name":"Sticker | Grim (Gold) | Copenhagen 2024"},"7535":{"market_hash_name":"Sticker | JT | Copenhagen 2024"},"7536":{"market_hash_name":"Sticker | JT (Glitter) | Copenhagen 2024"},"7537":{"market_hash_name":"Sticker | JT (Holo) | Copenhagen 2024"},"7538":{"market_hash_name":"Sticker | JT (Gold) | Copenhagen 2024"},"7539":{"market_hash_name":"Sticker | Ax1Le | Copenhagen 2024"},"754":{"market_hash_name":"Sticker | Maikelele (Gold) | Cluj-Napoca 2015"},"7540":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Copenhagen 2024"},"7541":{"market_hash_name":"Sticker | Ax1Le (Holo) | Copenhagen 2024"},"7542":{"market_hash_name":"Sticker | Ax1Le (Gold) | Copenhagen 2024"},"7543":{"market_hash_name":"Sticker | Boombl4 | Copenhagen 2024"},"7544":{"market_hash_name":"Sticker | Boombl4 (Glitter) | Copenhagen 2024"},"7545":{"market_hash_name":"Sticker | Boombl4 (Holo) | Copenhagen 2024"},"7546":{"market_hash_name":"Sticker | Boombl4 (Gold) | Copenhagen 2024"},"7547":{"market_hash_name":"Sticker | electronic | Copenhagen 2024"},"7548":{"market_hash_name":"Sticker | electronic (Glitter) | Copenhagen 2024"},"7549":{"market_hash_name":"Sticker | electronic (Holo) | Copenhagen 2024"},"755":{"market_hash_name":"Sticker | rain | Cluj-Napoca 2015"},"7550":{"market_hash_name":"Sticker | electronic (Gold) | Copenhagen 2024"},"7551":{"market_hash_name":"Sticker | Hobbit | Copenhagen 2024"},"7552":{"market_hash_name":"Sticker | Hobbit (Glitter) | Copenhagen 2024"},"7553":{"market_hash_name":"Sticker | Hobbit (Holo) | Copenhagen 2024"},"7554":{"market_hash_name":"Sticker | Hobbit (Gold) | Copenhagen 2024"},"7555":{"market_hash_name":"Sticker | Perfecto | Copenhagen 2024"},"7556":{"market_hash_name":"Sticker | Perfecto (Glitter) | Copenhagen 2024"},"7557":{"market_hash_name":"Sticker | Perfecto (Holo) | Copenhagen 2024"},"7558":{"market_hash_name":"Sticker | Perfecto (Gold) | Copenhagen 2024"},"7559":{"market_hash_name":"Sticker | Goofy | Copenhagen 2024"},"756":{"market_hash_name":"Sticker | rain (Foil) | Cluj-Napoca 2015"},"7560":{"market_hash_name":"Sticker | Goofy (Glitter) | Copenhagen 2024"},"7561":{"market_hash_name":"Sticker | Goofy (Holo) | Copenhagen 2024"},"7562":{"market_hash_name":"Sticker | Goofy (Gold) | Copenhagen 2024"},"7563":{"market_hash_name":"Sticker | Kylar | Copenhagen 2024"},"7564":{"market_hash_name":"Sticker | Kylar (Glitter) | Copenhagen 2024"},"7565":{"market_hash_name":"Sticker | Kylar (Holo) | Copenhagen 2024"},"7566":{"market_hash_name":"Sticker | Kylar (Gold) | Copenhagen 2024"},"7567":{"market_hash_name":"Sticker | Dycha | Copenhagen 2024"},"7568":{"market_hash_name":"Sticker | Dycha (Glitter) | Copenhagen 2024"},"7569":{"market_hash_name":"Sticker | Dycha (Holo) | Copenhagen 2024"},"757":{"market_hash_name":"Sticker | rain (Gold) | Cluj-Napoca 2015"},"7570":{"market_hash_name":"Sticker | Dycha (Gold) | Copenhagen 2024"},"7571":{"market_hash_name":"Sticker | gla1ve | Copenhagen 2024"},"7572":{"market_hash_name":"Sticker | gla1ve (Glitter) | Copenhagen 2024"},"7573":{"market_hash_name":"Sticker | gla1ve (Holo) | Copenhagen 2024"},"7574":{"market_hash_name":"Sticker | gla1ve (Gold) | Copenhagen 2024"},"7575":{"market_hash_name":"Sticker | hades | Copenhagen 2024"},"7576":{"market_hash_name":"Sticker | hades (Glitter) | Copenhagen 2024"},"7577":{"market_hash_name":"Sticker | hades (Holo) | Copenhagen 2024"},"7578":{"market_hash_name":"Sticker | hades (Gold) | Copenhagen 2024"},"7579":{"market_hash_name":"Sticker | arT | Copenhagen 2024"},"758":{"market_hash_name":"Sticker | jkaem | Cluj-Napoca 2015"},"7580":{"market_hash_name":"Sticker | arT (Glitter) | Copenhagen 2024"},"7581":{"market_hash_name":"Sticker | arT (Holo) | Copenhagen 2024"},"7582":{"market_hash_name":"Sticker | arT (Gold) | Copenhagen 2024"},"7583":{"market_hash_name":"Sticker | chelo | Copenhagen 2024"},"7584":{"market_hash_name":"Sticker | chelo (Glitter) | Copenhagen 2024"},"7585":{"market_hash_name":"Sticker | chelo (Holo) | Copenhagen 2024"},"7586":{"market_hash_name":"Sticker | chelo (Gold) | Copenhagen 2024"},"7587":{"market_hash_name":"Sticker | FalleN | Copenhagen 2024"},"7588":{"market_hash_name":"Sticker | FalleN (Glitter) | Copenhagen 2024"},"7589":{"market_hash_name":"Sticker | FalleN (Holo) | Copenhagen 2024"},"759":{"market_hash_name":"Sticker | jkaem (Foil) | Cluj-Napoca 2015"},"7590":{"market_hash_name":"Sticker | FalleN (Gold) | Copenhagen 2024"},"7591":{"market_hash_name":"Sticker | KSCERATO | Copenhagen 2024"},"7592":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Copenhagen 2024"},"7593":{"market_hash_name":"Sticker | KSCERATO (Holo) | Copenhagen 2024"},"7594":{"market_hash_name":"Sticker | KSCERATO (Gold) | Copenhagen 2024"},"7595":{"market_hash_name":"Sticker | yuurih | Copenhagen 2024"},"7596":{"market_hash_name":"Sticker | yuurih (Glitter) | Copenhagen 2024"},"7597":{"market_hash_name":"Sticker | yuurih (Holo) | Copenhagen 2024"},"7598":{"market_hash_name":"Sticker | yuurih (Gold) | Copenhagen 2024"},"7599":{"market_hash_name":"Sticker | kyxsan | Copenhagen 2024"},"76":{"market_hash_name":"Sticker | Titan (Holo) | Katowice 2014"},"760":{"market_hash_name":"Sticker | jkaem (Gold) | Cluj-Napoca 2015"},"7600":{"market_hash_name":"Sticker | kyxsan (Glitter) | Copenhagen 2024"},"7601":{"market_hash_name":"Sticker | kyxsan (Holo) | Copenhagen 2024"},"7602":{"market_hash_name":"Sticker | kyxsan (Gold) | Copenhagen 2024"},"7603":{"market_hash_name":"Sticker | NertZ | Copenhagen 2024"},"7604":{"market_hash_name":"Sticker | NertZ (Glitter) | Copenhagen 2024"},"7605":{"market_hash_name":"Sticker | NertZ (Holo) | Copenhagen 2024"},"7606":{"market_hash_name":"Sticker | NertZ (Gold) | Copenhagen 2024"},"7607":{"market_hash_name":"Sticker | nicoodoz | Copenhagen 2024"},"7608":{"market_hash_name":"Sticker | nicoodoz (Glitter) | Copenhagen 2024"},"7609":{"market_hash_name":"Sticker | nicoodoz (Holo) | Copenhagen 2024"},"761":{"market_hash_name":"Sticker | boltz | Cluj-Napoca 2015"},"7610":{"market_hash_name":"Sticker | nicoodoz (Gold) | Copenhagen 2024"},"7611":{"market_hash_name":"Sticker | sjuush | Copenhagen 2024"},"7612":{"market_hash_name":"Sticker | sjuush (Glitter) | Copenhagen 2024"},"7613":{"market_hash_name":"Sticker | sjuush (Holo) | Copenhagen 2024"},"7614":{"market_hash_name":"Sticker | sjuush (Gold) | Copenhagen 2024"},"7615":{"market_hash_name":"Sticker | TeSeS | Copenhagen 2024"},"7616":{"market_hash_name":"Sticker | TeSeS (Glitter) | Copenhagen 2024"},"7617":{"market_hash_name":"Sticker | TeSeS (Holo) | Copenhagen 2024"},"7618":{"market_hash_name":"Sticker | TeSeS (Gold) | Copenhagen 2024"},"7619":{"market_hash_name":"Sticker | Calyx | Copenhagen 2024"},"762":{"market_hash_name":"Sticker | boltz (Foil) | Cluj-Napoca 2015"},"7620":{"market_hash_name":"Sticker | Calyx (Glitter) | Copenhagen 2024"},"7621":{"market_hash_name":"Sticker | Calyx (Holo) | Copenhagen 2024"},"7622":{"market_hash_name":"Sticker | Calyx (Gold) | Copenhagen 2024"},"7623":{"market_hash_name":"Sticker | MAJ3R | Copenhagen 2024"},"7624":{"market_hash_name":"Sticker | MAJ3R (Glitter) | Copenhagen 2024"},"7625":{"market_hash_name":"Sticker | MAJ3R (Holo) | Copenhagen 2024"},"7626":{"market_hash_name":"Sticker | MAJ3R (Gold) | Copenhagen 2024"},"7627":{"market_hash_name":"Sticker | Wicadia | Copenhagen 2024"},"7628":{"market_hash_name":"Sticker | Wicadia (Glitter) | Copenhagen 2024"},"7629":{"market_hash_name":"Sticker | Wicadia (Holo) | Copenhagen 2024"},"763":{"market_hash_name":"Sticker | boltz (Gold) | Cluj-Napoca 2015"},"7630":{"market_hash_name":"Sticker | Wicadia (Gold) | Copenhagen 2024"},"7631":{"market_hash_name":"Sticker | woxic | Copenhagen 2024"},"7632":{"market_hash_name":"Sticker | woxic (Glitter) | Copenhagen 2024"},"7633":{"market_hash_name":"Sticker | woxic (Holo) | Copenhagen 2024"},"7634":{"market_hash_name":"Sticker | woxic (Gold) | Copenhagen 2024"},"7635":{"market_hash_name":"Sticker | XANTARES | Copenhagen 2024"},"7636":{"market_hash_name":"Sticker | XANTARES (Glitter) | Copenhagen 2024"},"7637":{"market_hash_name":"Sticker | XANTARES (Holo) | Copenhagen 2024"},"7638":{"market_hash_name":"Sticker | XANTARES (Gold) | Copenhagen 2024"},"7639":{"market_hash_name":"Sticker | nawwk | Copenhagen 2024"},"764":{"market_hash_name":"Sticker | coldzera | Cluj-Napoca 2015"},"7640":{"market_hash_name":"Sticker | nawwk (Glitter) | Copenhagen 2024"},"7641":{"market_hash_name":"Sticker | nawwk (Holo) | Copenhagen 2024"},"7642":{"market_hash_name":"Sticker | nawwk (Gold) | Copenhagen 2024"},"7643":{"market_hash_name":"Sticker | CacaNito | Copenhagen 2024"},"7644":{"market_hash_name":"Sticker | CacaNito (Glitter) | Copenhagen 2024"},"7645":{"market_hash_name":"Sticker | CacaNito (Holo) | Copenhagen 2024"},"7646":{"market_hash_name":"Sticker | CacaNito (Gold) | Copenhagen 2024"},"7647":{"market_hash_name":"Sticker | jkaem | Copenhagen 2024"},"7648":{"market_hash_name":"Sticker | jkaem (Glitter) | Copenhagen 2024"},"7649":{"market_hash_name":"Sticker | jkaem (Holo) | Copenhagen 2024"},"765":{"market_hash_name":"Sticker | coldzera (Foil) | Cluj-Napoca 2015"},"7650":{"market_hash_name":"Sticker | jkaem (Gold) | Copenhagen 2024"},"7651":{"market_hash_name":"Sticker | sense | Copenhagen 2024"},"7652":{"market_hash_name":"Sticker | sense (Glitter) | Copenhagen 2024"},"7653":{"market_hash_name":"Sticker | sense (Holo) | Copenhagen 2024"},"7654":{"market_hash_name":"Sticker | sense (Gold) | Copenhagen 2024"},"7655":{"market_hash_name":"Sticker | STYKO | Copenhagen 2024"},"7656":{"market_hash_name":"Sticker | STYKO (Glitter) | Copenhagen 2024"},"7657":{"market_hash_name":"Sticker | STYKO (Holo) | Copenhagen 2024"},"7658":{"market_hash_name":"Sticker | STYKO (Gold) | Copenhagen 2024"},"7659":{"market_hash_name":"Sticker | acoR | Copenhagen 2024"},"766":{"market_hash_name":"Sticker | coldzera (Gold) | Cluj-Napoca 2015"},"7660":{"market_hash_name":"Sticker | acoR (Glitter) | Copenhagen 2024"},"7661":{"market_hash_name":"Sticker | acoR (Holo) | Copenhagen 2024"},"7662":{"market_hash_name":"Sticker | acoR (Gold) | Copenhagen 2024"},"7663":{"market_hash_name":"Sticker | isak | Copenhagen 2024"},"7664":{"market_hash_name":"Sticker | isak (Glitter) | Copenhagen 2024"},"7665":{"market_hash_name":"Sticker | isak (Holo) | Copenhagen 2024"},"7666":{"market_hash_name":"Sticker | isak (Gold) | Copenhagen 2024"},"7667":{"market_hash_name":"Sticker | Keoz | Copenhagen 2024"},"7668":{"market_hash_name":"Sticker | Keoz (Glitter) | Copenhagen 2024"},"7669":{"market_hash_name":"Sticker | Keoz (Holo) | Copenhagen 2024"},"767":{"market_hash_name":"Sticker | FalleN | Cluj-Napoca 2015"},"7670":{"market_hash_name":"Sticker | Keoz (Gold) | Copenhagen 2024"},"7671":{"market_hash_name":"Sticker | Snax | Copenhagen 2024"},"7672":{"market_hash_name":"Sticker | Snax (Glitter) | Copenhagen 2024"},"7673":{"market_hash_name":"Sticker | Snax (Holo) | Copenhagen 2024"},"7674":{"market_hash_name":"Sticker | Snax (Gold) | Copenhagen 2024"},"7675":{"market_hash_name":"Sticker | volt | Copenhagen 2024"},"7676":{"market_hash_name":"Sticker | volt (Glitter) | Copenhagen 2024"},"7677":{"market_hash_name":"Sticker | volt (Holo) | Copenhagen 2024"},"7678":{"market_hash_name":"Sticker | volt (Gold) | Copenhagen 2024"},"7679":{"market_hash_name":"Sticker | arrozdoce | Copenhagen 2024"},"768":{"market_hash_name":"Sticker | FalleN (Foil) | Cluj-Napoca 2015"},"7680":{"market_hash_name":"Sticker | arrozdoce (Glitter) | Copenhagen 2024"},"7681":{"market_hash_name":"Sticker | arrozdoce (Holo) | Copenhagen 2024"},"7682":{"market_hash_name":"Sticker | arrozdoce (Gold) | Copenhagen 2024"},"7683":{"market_hash_name":"Sticker | ewjerkz | Copenhagen 2024"},"7684":{"market_hash_name":"Sticker | ewjerkz (Glitter) | Copenhagen 2024"},"7685":{"market_hash_name":"Sticker | ewjerkz (Holo) | Copenhagen 2024"},"7686":{"market_hash_name":"Sticker | ewjerkz (Gold) | Copenhagen 2024"},"7687":{"market_hash_name":"Sticker | MUTiRiS | Copenhagen 2024"},"7688":{"market_hash_name":"Sticker | MUTiRiS (Glitter) | Copenhagen 2024"},"7689":{"market_hash_name":"Sticker | MUTiRiS (Holo) | Copenhagen 2024"},"769":{"market_hash_name":"Sticker | FalleN (Gold) | Cluj-Napoca 2015"},"7690":{"market_hash_name":"Sticker | MUTiRiS (Gold) | Copenhagen 2024"},"7691":{"market_hash_name":"Sticker | roman | Copenhagen 2024"},"7692":{"market_hash_name":"Sticker | roman (Glitter) | Copenhagen 2024"},"7693":{"market_hash_name":"Sticker | roman (Holo) | Copenhagen 2024"},"7694":{"market_hash_name":"Sticker | roman (Gold) | Copenhagen 2024"},"7695":{"market_hash_name":"Sticker | story | Copenhagen 2024"},"7696":{"market_hash_name":"Sticker | story (Glitter) | Copenhagen 2024"},"7697":{"market_hash_name":"Sticker | story (Holo) | Copenhagen 2024"},"7698":{"market_hash_name":"Sticker | story (Gold) | Copenhagen 2024"},"7699":{"market_hash_name":"Sticker | biguzera | Copenhagen 2024"},"77":{"market_hash_name":"Sticker | Virtus.Pro | Katowice 2014"},"770":{"market_hash_name":"Sticker | fer | Cluj-Napoca 2015"},"7700":{"market_hash_name":"Sticker | biguzera (Glitter) | Copenhagen 2024"},"7701":{"market_hash_name":"Sticker | biguzera (Holo) | Copenhagen 2024"},"7702":{"market_hash_name":"Sticker | biguzera (Gold) | Copenhagen 2024"},"7703":{"market_hash_name":"Sticker | kauez | Copenhagen 2024"},"7704":{"market_hash_name":"Sticker | kauez (Glitter) | Copenhagen 2024"},"7705":{"market_hash_name":"Sticker | kauez (Holo) | Copenhagen 2024"},"7706":{"market_hash_name":"Sticker | kauez (Gold) | Copenhagen 2024"},"7707":{"market_hash_name":"Sticker | lux | Copenhagen 2024"},"7708":{"market_hash_name":"Sticker | lux (Glitter) | Copenhagen 2024"},"7709":{"market_hash_name":"Sticker | lux (Holo) | Copenhagen 2024"},"771":{"market_hash_name":"Sticker | fer (Foil) | Cluj-Napoca 2015"},"7710":{"market_hash_name":"Sticker | lux (Gold) | Copenhagen 2024"},"7711":{"market_hash_name":"Sticker | n1ssim | Copenhagen 2024"},"7712":{"market_hash_name":"Sticker | n1ssim (Glitter) | Copenhagen 2024"},"7713":{"market_hash_name":"Sticker | n1ssim (Holo) | Copenhagen 2024"},"7714":{"market_hash_name":"Sticker | n1ssim (Gold) | Copenhagen 2024"},"7715":{"market_hash_name":"Sticker | NQZ | Copenhagen 2024"},"7716":{"market_hash_name":"Sticker | NQZ (Glitter) | Copenhagen 2024"},"7717":{"market_hash_name":"Sticker | NQZ (Holo) | Copenhagen 2024"},"7718":{"market_hash_name":"Sticker | NQZ (Gold) | Copenhagen 2024"},"7719":{"market_hash_name":"Sticker | decenty | Copenhagen 2024"},"772":{"market_hash_name":"Sticker | fer (Gold) | Cluj-Napoca 2015"},"7720":{"market_hash_name":"Sticker | decenty (Glitter) | Copenhagen 2024"},"7721":{"market_hash_name":"Sticker | decenty (Holo) | Copenhagen 2024"},"7722":{"market_hash_name":"Sticker | decenty (Gold) | Copenhagen 2024"},"7723":{"market_hash_name":"Sticker | felps | Copenhagen 2024"},"7724":{"market_hash_name":"Sticker | felps (Glitter) | Copenhagen 2024"},"7725":{"market_hash_name":"Sticker | felps (Holo) | Copenhagen 2024"},"7726":{"market_hash_name":"Sticker | felps (Gold) | Copenhagen 2024"},"7727":{"market_hash_name":"Sticker | HEN1 | Copenhagen 2024"},"7728":{"market_hash_name":"Sticker | HEN1 (Glitter) | Copenhagen 2024"},"7729":{"market_hash_name":"Sticker | HEN1 (Holo) | Copenhagen 2024"},"773":{"market_hash_name":"Sticker | steel | Cluj-Napoca 2015"},"7730":{"market_hash_name":"Sticker | HEN1 (Gold) | Copenhagen 2024"},"7731":{"market_hash_name":"Sticker | noway | Copenhagen 2024"},"7732":{"market_hash_name":"Sticker | noway (Glitter) | Copenhagen 2024"},"7733":{"market_hash_name":"Sticker | noway (Holo) | Copenhagen 2024"},"7734":{"market_hash_name":"Sticker | noway (Gold) | Copenhagen 2024"},"7735":{"market_hash_name":"Sticker | VINI | Copenhagen 2024"},"7736":{"market_hash_name":"Sticker | VINI (Glitter) | Copenhagen 2024"},"7737":{"market_hash_name":"Sticker | VINI (Holo) | Copenhagen 2024"},"7738":{"market_hash_name":"Sticker | VINI (Gold) | Copenhagen 2024"},"7739":{"market_hash_name":"Sticker | 910 | Copenhagen 2024"},"774":{"market_hash_name":"Sticker | steel (Foil) | Cluj-Napoca 2015"},"7740":{"market_hash_name":"Sticker | 910 (Glitter) | Copenhagen 2024"},"7741":{"market_hash_name":"Sticker | 910 (Holo) | Copenhagen 2024"},"7742":{"market_hash_name":"Sticker | 910 (Gold) | Copenhagen 2024"},"7743":{"market_hash_name":"Sticker | bLitz | Copenhagen 2024"},"7744":{"market_hash_name":"Sticker | bLitz (Glitter) | Copenhagen 2024"},"7745":{"market_hash_name":"Sticker | bLitz (Holo) | Copenhagen 2024"},"7746":{"market_hash_name":"Sticker | bLitz (Gold) | Copenhagen 2024"},"7747":{"market_hash_name":"Sticker | mzinho | Copenhagen 2024"},"7748":{"market_hash_name":"Sticker | mzinho (Glitter) | Copenhagen 2024"},"7749":{"market_hash_name":"Sticker | mzinho (Holo) | Copenhagen 2024"},"775":{"market_hash_name":"Sticker | steel (Gold) | Cluj-Napoca 2015"},"7750":{"market_hash_name":"Sticker | mzinho (Gold) | Copenhagen 2024"},"7751":{"market_hash_name":"Sticker | Senzu | Copenhagen 2024"},"7752":{"market_hash_name":"Sticker | Senzu (Glitter) | Copenhagen 2024"},"7753":{"market_hash_name":"Sticker | Senzu (Holo) | Copenhagen 2024"},"7754":{"market_hash_name":"Sticker | Senzu (Gold) | Copenhagen 2024"},"7755":{"market_hash_name":"Sticker | Techno4K | Copenhagen 2024"},"7756":{"market_hash_name":"Sticker | Techno4K (Glitter) | Copenhagen 2024"},"7757":{"market_hash_name":"Sticker | Techno4K (Holo) | Copenhagen 2024"},"7758":{"market_hash_name":"Sticker | Techno4K (Gold) | Copenhagen 2024"},"7759":{"market_hash_name":"Sticker | Forester | Copenhagen 2024"},"776":{"market_hash_name":"Sticker | chrisJ | Cluj-Napoca 2015"},"7760":{"market_hash_name":"Sticker | Forester (Glitter) | Copenhagen 2024"},"7761":{"market_hash_name":"Sticker | Forester (Holo) | Copenhagen 2024"},"7762":{"market_hash_name":"Sticker | Forester (Gold) | Copenhagen 2024"},"7763":{"market_hash_name":"Sticker | ICY | Copenhagen 2024"},"7764":{"market_hash_name":"Sticker | ICY (Glitter) | Copenhagen 2024"},"7765":{"market_hash_name":"Sticker | ICY (Holo) | Copenhagen 2024"},"7766":{"market_hash_name":"Sticker | ICY (Gold) | Copenhagen 2024"},"7767":{"market_hash_name":"Sticker | Krad | Copenhagen 2024"},"7768":{"market_hash_name":"Sticker | Krad (Glitter) | Copenhagen 2024"},"7769":{"market_hash_name":"Sticker | Krad (Holo) | Copenhagen 2024"},"777":{"market_hash_name":"Sticker | chrisJ (Foil) | Cluj-Napoca 2015"},"7770":{"market_hash_name":"Sticker | Krad (Gold) | Copenhagen 2024"},"7771":{"market_hash_name":"Sticker | NickelBack | Copenhagen 2024"},"7772":{"market_hash_name":"Sticker | NickelBack (Glitter) | Copenhagen 2024"},"7773":{"market_hash_name":"Sticker | NickelBack (Holo) | Copenhagen 2024"},"7774":{"market_hash_name":"Sticker | NickelBack (Gold) | Copenhagen 2024"},"7775":{"market_hash_name":"Sticker | TRAVIS | Copenhagen 2024"},"7776":{"market_hash_name":"Sticker | TRAVIS (Glitter) | Copenhagen 2024"},"7777":{"market_hash_name":"Sticker | TRAVIS (Holo) | Copenhagen 2024"},"7778":{"market_hash_name":"Sticker | TRAVIS (Gold) | Copenhagen 2024"},"7779":{"market_hash_name":"Sticker | kraghen | Copenhagen 2024"},"778":{"market_hash_name":"Sticker | chrisJ (Gold) | Cluj-Napoca 2015"},"7780":{"market_hash_name":"Sticker | kraghen (Glitter) | Copenhagen 2024"},"7781":{"market_hash_name":"Sticker | kraghen (Holo) | Copenhagen 2024"},"7782":{"market_hash_name":"Sticker | kraghen (Gold) | Copenhagen 2024"},"7783":{"market_hash_name":"Sticker | Nodios | Copenhagen 2024"},"7784":{"market_hash_name":"Sticker | Nodios (Glitter) | Copenhagen 2024"},"7785":{"market_hash_name":"Sticker | Nodios (Holo) | Copenhagen 2024"},"7786":{"market_hash_name":"Sticker | Nodios (Gold) | Copenhagen 2024"},"7787":{"market_hash_name":"Sticker | Patti | Copenhagen 2024"},"7788":{"market_hash_name":"Sticker | Patti (Glitter) | Copenhagen 2024"},"7789":{"market_hash_name":"Sticker | Patti (Holo) | Copenhagen 2024"},"779":{"market_hash_name":"Sticker | denis | Cluj-Napoca 2015"},"7790":{"market_hash_name":"Sticker | Patti (Gold) | Copenhagen 2024"},"7791":{"market_hash_name":"Sticker | Queenix | Copenhagen 2024"},"7792":{"market_hash_name":"Sticker | Queenix (Glitter) | Copenhagen 2024"},"7793":{"market_hash_name":"Sticker | Queenix (Holo) | Copenhagen 2024"},"7794":{"market_hash_name":"Sticker | Queenix (Gold) | Copenhagen 2024"},"7795":{"market_hash_name":"Sticker | salazar | Copenhagen 2024"},"7796":{"market_hash_name":"Sticker | salazar (Glitter) | Copenhagen 2024"},"7797":{"market_hash_name":"Sticker | salazar (Holo) | Copenhagen 2024"},"7798":{"market_hash_name":"Sticker | salazar (Gold) | Copenhagen 2024"},"7799":{"market_hash_name":"Sticker | adamS | Copenhagen 2024"},"78":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Katowice 2014"},"780":{"market_hash_name":"Sticker | denis (Foil) | Cluj-Napoca 2015"},"7800":{"market_hash_name":"Sticker | adamS (Glitter) | Copenhagen 2024"},"7801":{"market_hash_name":"Sticker | adamS (Holo) | Copenhagen 2024"},"7802":{"market_hash_name":"Sticker | adamS (Gold) | Copenhagen 2024"},"7803":{"market_hash_name":"Sticker | dav1g | Copenhagen 2024"},"7804":{"market_hash_name":"Sticker | dav1g (Glitter) | Copenhagen 2024"},"7805":{"market_hash_name":"Sticker | dav1g (Holo) | Copenhagen 2024"},"7806":{"market_hash_name":"Sticker | dav1g (Gold) | Copenhagen 2024"},"7807":{"market_hash_name":"Sticker | JUST | Copenhagen 2024"},"7808":{"market_hash_name":"Sticker | JUST (Glitter) | Copenhagen 2024"},"7809":{"market_hash_name":"Sticker | JUST (Holo) | Copenhagen 2024"},"781":{"market_hash_name":"Sticker | denis (Gold) | Cluj-Napoca 2015"},"7810":{"market_hash_name":"Sticker | JUST (Gold) | Copenhagen 2024"},"7811":{"market_hash_name":"Sticker | mopoz | Copenhagen 2024"},"7812":{"market_hash_name":"Sticker | mopoz (Glitter) | Copenhagen 2024"},"7813":{"market_hash_name":"Sticker | mopoz (Holo) | Copenhagen 2024"},"7814":{"market_hash_name":"Sticker | mopoz (Gold) | Copenhagen 2024"},"7815":{"market_hash_name":"Sticker | stadodo | Copenhagen 2024"},"7816":{"market_hash_name":"Sticker | stadodo (Glitter) | Copenhagen 2024"},"7817":{"market_hash_name":"Sticker | stadodo (Holo) | Copenhagen 2024"},"7818":{"market_hash_name":"Sticker | stadodo (Gold) | Copenhagen 2024"},"7819":{"market_hash_name":"Sticker | b4rtiN | Copenhagen 2024"},"782":{"market_hash_name":"Sticker | gob b | Cluj-Napoca 2015"},"7820":{"market_hash_name":"Sticker | b4rtiN (Glitter) | Copenhagen 2024"},"7821":{"market_hash_name":"Sticker | b4rtiN (Holo) | Copenhagen 2024"},"7822":{"market_hash_name":"Sticker | b4rtiN (Gold) | Copenhagen 2024"},"7823":{"market_hash_name":"Sticker | coldzera | Copenhagen 2024"},"7824":{"market_hash_name":"Sticker | coldzera (Glitter) | Copenhagen 2024"},"7825":{"market_hash_name":"Sticker | coldzera (Holo) | Copenhagen 2024"},"7826":{"market_hash_name":"Sticker | coldzera (Gold) | Copenhagen 2024"},"7827":{"market_hash_name":"Sticker | dumau | Copenhagen 2024"},"7828":{"market_hash_name":"Sticker | dumau (Glitter) | Copenhagen 2024"},"7829":{"market_hash_name":"Sticker | dumau (Holo) | Copenhagen 2024"},"783":{"market_hash_name":"Sticker | gob b (Foil) | Cluj-Napoca 2015"},"7830":{"market_hash_name":"Sticker | dumau (Gold) | Copenhagen 2024"},"7831":{"market_hash_name":"Sticker | latto | Copenhagen 2024"},"7832":{"market_hash_name":"Sticker | latto (Glitter) | Copenhagen 2024"},"7833":{"market_hash_name":"Sticker | latto (Holo) | Copenhagen 2024"},"7834":{"market_hash_name":"Sticker | latto (Gold) | Copenhagen 2024"},"7835":{"market_hash_name":"Sticker | NEKiZ | Copenhagen 2024"},"7836":{"market_hash_name":"Sticker | NEKiZ (Glitter) | Copenhagen 2024"},"7837":{"market_hash_name":"Sticker | NEKiZ (Holo) | Copenhagen 2024"},"7838":{"market_hash_name":"Sticker | NEKiZ (Gold) | Copenhagen 2024"},"7839":{"market_hash_name":"Sticker | EmiliaQAQ | Copenhagen 2024"},"784":{"market_hash_name":"Sticker | gob b (Gold) | Cluj-Napoca 2015"},"7840":{"market_hash_name":"Sticker | EmiliaQAQ (Glitter) | Copenhagen 2024"},"7841":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Copenhagen 2024"},"7842":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Copenhagen 2024"},"7843":{"market_hash_name":"Sticker | Jee | Copenhagen 2024"},"7844":{"market_hash_name":"Sticker | Jee (Glitter) | Copenhagen 2024"},"7845":{"market_hash_name":"Sticker | Jee (Holo) | Copenhagen 2024"},"7846":{"market_hash_name":"Sticker | Jee (Gold) | Copenhagen 2024"},"7847":{"market_hash_name":"Sticker | Starry | Copenhagen 2024"},"7848":{"market_hash_name":"Sticker | Starry (Glitter) | Copenhagen 2024"},"7849":{"market_hash_name":"Sticker | Starry (Holo) | Copenhagen 2024"},"785":{"market_hash_name":"Sticker | nex | Cluj-Napoca 2015"},"7850":{"market_hash_name":"Sticker | Starry (Gold) | Copenhagen 2024"},"7851":{"market_hash_name":"Sticker | westmelon | Copenhagen 2024"},"7852":{"market_hash_name":"Sticker | westmelon (Glitter) | Copenhagen 2024"},"7853":{"market_hash_name":"Sticker | westmelon (Holo) | Copenhagen 2024"},"7854":{"market_hash_name":"Sticker | westmelon (Gold) | Copenhagen 2024"},"7855":{"market_hash_name":"Sticker | z4KR | Copenhagen 2024"},"7856":{"market_hash_name":"Sticker | z4KR (Glitter) | Copenhagen 2024"},"7857":{"market_hash_name":"Sticker | z4KR (Holo) | Copenhagen 2024"},"7858":{"market_hash_name":"Sticker | z4KR (Gold) | Copenhagen 2024"},"7859":{"market_hash_name":"Sticker | jL (Champion) | Copenhagen 2024"},"786":{"market_hash_name":"Sticker | nex (Foil) | Cluj-Napoca 2015"},"7860":{"market_hash_name":"Sticker | jL (Glitter, Champion) | Copenhagen 2024"},"7861":{"market_hash_name":"Sticker | jL (Holo, Champion) | Copenhagen 2024"},"7862":{"market_hash_name":"Sticker | jL (Gold, Champion) | Copenhagen 2024"},"7863":{"market_hash_name":"Sticker | Aleksib (Champion) | Copenhagen 2024"},"7864":{"market_hash_name":"Sticker | Aleksib (Glitter, Champion) | Copenhagen 2024"},"7865":{"market_hash_name":"Sticker | Aleksib (Holo, Champion) | Copenhagen 2024"},"7866":{"market_hash_name":"Sticker | Aleksib (Gold, Champion) | Copenhagen 2024"},"7867":{"market_hash_name":"Sticker | b1t (Champion) | Copenhagen 2024"},"7868":{"market_hash_name":"Sticker | b1t (Glitter, Champion) | Copenhagen 2024"},"7869":{"market_hash_name":"Sticker | b1t (Holo, Champion) | Copenhagen 2024"},"787":{"market_hash_name":"Sticker | nex (Gold) | Cluj-Napoca 2015"},"7870":{"market_hash_name":"Sticker | b1t (Gold, Champion) | Copenhagen 2024"},"7871":{"market_hash_name":"Sticker | iM (Champion) | Copenhagen 2024"},"7872":{"market_hash_name":"Sticker | iM (Glitter, Champion) | Copenhagen 2024"},"7873":{"market_hash_name":"Sticker | iM (Holo, Champion) | Copenhagen 2024"},"7874":{"market_hash_name":"Sticker | iM (Gold, Champion) | Copenhagen 2024"},"7875":{"market_hash_name":"Sticker | w0nderful (Champion) | Copenhagen 2024"},"7876":{"market_hash_name":"Sticker | w0nderful (Glitter, Champion) | Copenhagen 2024"},"7877":{"market_hash_name":"Sticker | w0nderful (Holo, Champion) | Copenhagen 2024"},"7878":{"market_hash_name":"Sticker | w0nderful (Gold, Champion) | Copenhagen 2024"},"7879":{"market_hash_name":"Sticker | Lefty (T)"},"788":{"market_hash_name":"Sticker | NiKo | Cluj-Napoca 2015"},"7880":{"market_hash_name":"Sticker | Red Shades (Foil)"},"7881":{"market_hash_name":"Sticker | Mustachio (Foil)"},"7882":{"market_hash_name":"Sticker | Bolt Strike"},"7883":{"market_hash_name":"Sticker | Bolt Charge"},"7884":{"market_hash_name":"Sticker | Bolt Energy"},"7885":{"market_hash_name":"Sticker | High Heat"},"7886":{"market_hash_name":"Sticker | Hot Rod Heat"},"7887":{"market_hash_name":"Sticker | Scorch Loop (Reverse)"},"7888":{"market_hash_name":"Sticker | Winding Scorch"},"7889":{"market_hash_name":"Sticker | Mirage (Gold)"},"789":{"market_hash_name":"Sticker | NiKo (Foil) | Cluj-Napoca 2015"},"7890":{"market_hash_name":"Sticker | Overpass (Gold)"},"7891":{"market_hash_name":"Sticker | Scorch Loop"},"7892":{"market_hash_name":"Sticker | Boom Detonation"},"7893":{"market_hash_name":"Sticker | Boom Epicenter"},"7894":{"market_hash_name":"Sticker | Boom Blast"},"7895":{"market_hash_name":"Sticker | Boom Trail"},"7896":{"market_hash_name":"Sticker | Rainbow Route (Holo)"},"7897":{"market_hash_name":"Sticker | Boom Detonation (Glitter)"},"7898":{"market_hash_name":"Sticker | Boom Epicenter (Glitter)"},"7899":{"market_hash_name":"Sticker | Boom Blast (Glitter)"},"79":{"market_hash_name":"Sticker | Vox Eminor | Katowice 2014"},"790":{"market_hash_name":"Sticker | NiKo (Gold) | Cluj-Napoca 2015"},"7900":{"market_hash_name":"Sticker | Boom Trail (Glitter)"},"7901":{"market_hash_name":"Sticker | Bolt Strike (Foil)"},"7902":{"market_hash_name":"Sticker | Bolt Charge (Foil)"},"7903":{"market_hash_name":"Sticker | Bolt Energy (Foil)"},"7904":{"market_hash_name":"Sticker | Winding Scorch (Foil)"},"7905":{"market_hash_name":"Sticker | Flex"},"7906":{"market_hash_name":"Sticker | Clown Nose"},"7907":{"market_hash_name":"Sticker | Clown Wig"},"7909":{"market_hash_name":"Sticker | Quick Peek"},"791":{"market_hash_name":"Sticker | Edward | Cluj-Napoca 2015"},"7910":{"market_hash_name":"Sticker | XD"},"7911":{"market_hash_name":"Sticker | Ribbon Tie"},"7912":{"market_hash_name":"Sticker | Taste Bud"},"7913":{"market_hash_name":"Sticker | Kawaii Eyes (Glitter)"},"7914":{"market_hash_name":"Sticker | From The Deep (Glitter)"},"7915":{"market_hash_name":"Sticker | Say Cheese (Holo)"},"7916":{"market_hash_name":"Sticker | Taste Buddy (Holo)"},"7917":{"market_hash_name":"Sticker | Gold Teef (Foil)"},"7918":{"market_hash_name":"Sticker | Side Eyes (Lenticular)"},"7919":{"market_hash_name":"Sticker | Googly Eye (Lenticular)"},"792":{"market_hash_name":"Sticker | Edward (Foil) | Cluj-Napoca 2015"},"7921":{"market_hash_name":"Sticker | Hypnoteyes (Holo)"},"7922":{"market_hash_name":"Sticker | Hydro Geyser"},"7923":{"market_hash_name":"Sticker | Hydro Stream"},"7924":{"market_hash_name":"Sticker | Hydro Wave"},"7925":{"market_hash_name":"Sticker | Ruby Stream (Lenticular)"},"7926":{"market_hash_name":"Sticker | Ruby Wave (Lenticular)"},"7927":{"market_hash_name":"Sticker | Strike A Pose"},"7928":{"market_hash_name":"Sticker | G2 Esports | Shanghai 2024"},"7929":{"market_hash_name":"Sticker | G2 Esports (Glitter) | Shanghai 2024"},"793":{"market_hash_name":"Sticker | Edward (Gold) | Cluj-Napoca 2015"},"7930":{"market_hash_name":"Sticker | G2 Esports (Holo) | Shanghai 2024"},"7931":{"market_hash_name":"Sticker | G2 Esports (Gold) | Shanghai 2024"},"7932":{"market_hash_name":"Sticker | Natus Vincere | Shanghai 2024"},"7933":{"market_hash_name":"Sticker | Natus Vincere (Glitter) | Shanghai 2024"},"7934":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Shanghai 2024"},"7935":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Shanghai 2024"},"7936":{"market_hash_name":"Sticker | Vitality | Shanghai 2024"},"7937":{"market_hash_name":"Sticker | Vitality (Glitter) | Shanghai 2024"},"7938":{"market_hash_name":"Sticker | Vitality (Holo) | Shanghai 2024"},"7939":{"market_hash_name":"Sticker | Vitality (Gold) | Shanghai 2024"},"794":{"market_hash_name":"Sticker | flamie | Cluj-Napoca 2015"},"7940":{"market_hash_name":"Sticker | Team Spirit | Shanghai 2024"},"7941":{"market_hash_name":"Sticker | Team Spirit (Glitter) | Shanghai 2024"},"7942":{"market_hash_name":"Sticker | Team Spirit (Holo) | Shanghai 2024"},"7943":{"market_hash_name":"Sticker | Team Spirit (Gold) | Shanghai 2024"},"7944":{"market_hash_name":"Sticker | MOUZ | Shanghai 2024"},"7945":{"market_hash_name":"Sticker | MOUZ (Glitter) | Shanghai 2024"},"7946":{"market_hash_name":"Sticker | MOUZ (Holo) | Shanghai 2024"},"7947":{"market_hash_name":"Sticker | MOUZ (Gold) | Shanghai 2024"},"7948":{"market_hash_name":"Sticker | FaZe Clan | Shanghai 2024"},"7949":{"market_hash_name":"Sticker | FaZe Clan (Glitter) | Shanghai 2024"},"795":{"market_hash_name":"Sticker | flamie (Foil) | Cluj-Napoca 2015"},"7950":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Shanghai 2024"},"7951":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Shanghai 2024"},"7952":{"market_hash_name":"Sticker | HEROIC | Shanghai 2024"},"7953":{"market_hash_name":"Sticker | HEROIC (Glitter) | Shanghai 2024"},"7954":{"market_hash_name":"Sticker | HEROIC (Holo) | Shanghai 2024"},"7955":{"market_hash_name":"Sticker | HEROIC (Gold) | Shanghai 2024"},"7956":{"market_hash_name":"Sticker | 3DMAX | Shanghai 2024"},"7957":{"market_hash_name":"Sticker | 3DMAX (Glitter) | Shanghai 2024"},"7958":{"market_hash_name":"Sticker | 3DMAX (Holo) | Shanghai 2024"},"7959":{"market_hash_name":"Sticker | 3DMAX (Gold) | Shanghai 2024"},"796":{"market_hash_name":"Sticker | flamie (Gold) | Cluj-Napoca 2015"},"7960":{"market_hash_name":"Sticker | FURIA | Shanghai 2024"},"7961":{"market_hash_name":"Sticker | FURIA (Glitter) | Shanghai 2024"},"7962":{"market_hash_name":"Sticker | FURIA (Holo) | Shanghai 2024"},"7963":{"market_hash_name":"Sticker | FURIA (Gold) | Shanghai 2024"},"7964":{"market_hash_name":"Sticker | Virtus.pro | Shanghai 2024"},"7965":{"market_hash_name":"Sticker | Virtus.pro (Glitter) | Shanghai 2024"},"7966":{"market_hash_name":"Sticker | Virtus.pro (Holo) | Shanghai 2024"},"7967":{"market_hash_name":"Sticker | Virtus.pro (Gold) | Shanghai 2024"},"7968":{"market_hash_name":"Sticker | Team Liquid | Shanghai 2024"},"7969":{"market_hash_name":"Sticker | Team Liquid (Glitter) | Shanghai 2024"},"797":{"market_hash_name":"Sticker | GuardiaN | Cluj-Napoca 2015"},"7970":{"market_hash_name":"Sticker | Team Liquid (Holo) | Shanghai 2024"},"7971":{"market_hash_name":"Sticker | Team Liquid (Gold) | Shanghai 2024"},"7972":{"market_hash_name":"Sticker | Complexity Gaming | Shanghai 2024"},"7973":{"market_hash_name":"Sticker | Complexity Gaming (Glitter) | Shanghai 2024"},"7974":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Shanghai 2024"},"7975":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Shanghai 2024"},"7976":{"market_hash_name":"Sticker | BIG | Shanghai 2024"},"7977":{"market_hash_name":"Sticker | BIG (Glitter) | Shanghai 2024"},"7978":{"market_hash_name":"Sticker | BIG (Holo) | Shanghai 2024"},"7979":{"market_hash_name":"Sticker | BIG (Gold) | Shanghai 2024"},"798":{"market_hash_name":"Sticker | GuardiaN (Foil) | Cluj-Napoca 2015"},"7980":{"market_hash_name":"Sticker | Fnatic | Shanghai 2024"},"7981":{"market_hash_name":"Sticker | Fnatic (Glitter) | Shanghai 2024"},"7982":{"market_hash_name":"Sticker | Fnatic (Holo) | Shanghai 2024"},"7983":{"market_hash_name":"Sticker | Fnatic (Gold) | Shanghai 2024"},"7984":{"market_hash_name":"Sticker | The MongolZ | Shanghai 2024"},"7985":{"market_hash_name":"Sticker | The MongolZ (Glitter) | Shanghai 2024"},"7986":{"market_hash_name":"Sticker | The MongolZ (Holo) | Shanghai 2024"},"7987":{"market_hash_name":"Sticker | The MongolZ (Gold) | Shanghai 2024"},"7988":{"market_hash_name":"Sticker | paiN Gaming | Shanghai 2024"},"7989":{"market_hash_name":"Sticker | paiN Gaming (Glitter) | Shanghai 2024"},"799":{"market_hash_name":"Sticker | GuardiaN (Gold) | Cluj-Napoca 2015"},"7990":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Shanghai 2024"},"7991":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Shanghai 2024"},"7992":{"market_hash_name":"Sticker | GamerLegion | Shanghai 2024"},"7993":{"market_hash_name":"Sticker | GamerLegion (Glitter) | Shanghai 2024"},"7994":{"market_hash_name":"Sticker | GamerLegion (Holo) | Shanghai 2024"},"7995":{"market_hash_name":"Sticker | GamerLegion (Gold) | Shanghai 2024"},"7996":{"market_hash_name":"Sticker | MIBR | Shanghai 2024"},"7997":{"market_hash_name":"Sticker | MIBR (Glitter) | Shanghai 2024"},"7998":{"market_hash_name":"Sticker | MIBR (Holo) | Shanghai 2024"},"7999":{"market_hash_name":"Sticker | MIBR (Gold) | Shanghai 2024"},"8":{"market_hash_name":"Sticker | Polar Bears (Foil)"},"80":{"market_hash_name":"Sticker | Vox Eminor (Holo) | Katowice 2014"},"800":{"market_hash_name":"Sticker | seized | Cluj-Napoca 2015"},"8000":{"market_hash_name":"Sticker | Cloud9 | Shanghai 2024"},"8001":{"market_hash_name":"Sticker | Cloud9 (Glitter) | Shanghai 2024"},"8002":{"market_hash_name":"Sticker | Cloud9 (Holo) | Shanghai 2024"},"8003":{"market_hash_name":"Sticker | Cloud9 (Gold) | Shanghai 2024"},"8004":{"market_hash_name":"Sticker | FlyQuest | Shanghai 2024"},"8005":{"market_hash_name":"Sticker | FlyQuest (Glitter) | Shanghai 2024"},"8006":{"market_hash_name":"Sticker | FlyQuest (Holo) | Shanghai 2024"},"8007":{"market_hash_name":"Sticker | FlyQuest (Gold) | Shanghai 2024"},"8008":{"market_hash_name":"Sticker | Passion UA | Shanghai 2024"},"8009":{"market_hash_name":"Sticker | Passion UA (Glitter) | Shanghai 2024"},"801":{"market_hash_name":"Sticker | seized (Foil) | Cluj-Napoca 2015"},"8010":{"market_hash_name":"Sticker | Passion UA (Holo) | Shanghai 2024"},"8011":{"market_hash_name":"Sticker | Passion UA (Gold) | Shanghai 2024"},"8012":{"market_hash_name":"Sticker | Wildcard | Shanghai 2024"},"8013":{"market_hash_name":"Sticker | Wildcard (Glitter) | Shanghai 2024"},"8014":{"market_hash_name":"Sticker | Wildcard (Holo) | Shanghai 2024"},"8015":{"market_hash_name":"Sticker | Wildcard (Gold) | Shanghai 2024"},"8016":{"market_hash_name":"Sticker | Rare Atom | Shanghai 2024"},"8017":{"market_hash_name":"Sticker | Rare Atom (Glitter) | Shanghai 2024"},"8018":{"market_hash_name":"Sticker | Rare Atom (Holo) | Shanghai 2024"},"8019":{"market_hash_name":"Sticker | Rare Atom (Gold) | Shanghai 2024"},"802":{"market_hash_name":"Sticker | seized (Gold) | Cluj-Napoca 2015"},"8020":{"market_hash_name":"Sticker | Imperial Esports | Shanghai 2024"},"8021":{"market_hash_name":"Sticker | Imperial Esports (Glitter) | Shanghai 2024"},"8022":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Shanghai 2024"},"8023":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Shanghai 2024"},"8024":{"market_hash_name":"Sticker | Perfect World | Shanghai 2024"},"8025":{"market_hash_name":"Sticker | Perfect World (Glitter) | Shanghai 2024"},"8026":{"market_hash_name":"Sticker | Perfect World (Holo) | Shanghai 2024"},"8027":{"market_hash_name":"Sticker | Perfect World (Gold) | Shanghai 2024"},"803":{"market_hash_name":"Sticker | Zeus | Cluj-Napoca 2015"},"804":{"market_hash_name":"Sticker | Zeus (Foil) | Cluj-Napoca 2015"},"805":{"market_hash_name":"Sticker | Zeus (Gold) | Cluj-Napoca 2015"},"8053":{"market_hash_name":"Sticker | Snax | Shanghai 2024"},"8054":{"market_hash_name":"Sticker | Snax (Glitter) | Shanghai 2024"},"8055":{"market_hash_name":"Sticker | Snax (Holo) | Shanghai 2024"},"8056":{"market_hash_name":"Sticker | Snax (Gold) | Shanghai 2024"},"8057":{"market_hash_name":"Sticker | huNter- | Shanghai 2024"},"8058":{"market_hash_name":"Sticker | huNter- (Glitter) | Shanghai 2024"},"8059":{"market_hash_name":"Sticker | huNter- (Holo) | Shanghai 2024"},"806":{"market_hash_name":"Sticker | allu | Cluj-Napoca 2015"},"8060":{"market_hash_name":"Sticker | huNter- (Gold) | Shanghai 2024"},"8061":{"market_hash_name":"Sticker | malbsMd | Shanghai 2024"},"8062":{"market_hash_name":"Sticker | malbsMd (Glitter) | Shanghai 2024"},"8063":{"market_hash_name":"Sticker | malbsMd (Holo) | Shanghai 2024"},"8064":{"market_hash_name":"Sticker | malbsMd (Gold) | Shanghai 2024"},"8065":{"market_hash_name":"Sticker | m0NESY | Shanghai 2024"},"8066":{"market_hash_name":"Sticker | m0NESY (Glitter) | Shanghai 2024"},"8067":{"market_hash_name":"Sticker | m0NESY (Holo) | Shanghai 2024"},"8068":{"market_hash_name":"Sticker | m0NESY (Gold) | Shanghai 2024"},"8069":{"market_hash_name":"Sticker | NiKo | Shanghai 2024"},"807":{"market_hash_name":"Sticker | allu (Foil) | Cluj-Napoca 2015"},"8070":{"market_hash_name":"Sticker | NiKo (Glitter) | Shanghai 2024"},"8071":{"market_hash_name":"Sticker | NiKo (Holo) | Shanghai 2024"},"8072":{"market_hash_name":"Sticker | NiKo (Gold) | Shanghai 2024"},"8073":{"market_hash_name":"Sticker | w0nderful | Shanghai 2024"},"8074":{"market_hash_name":"Sticker | w0nderful (Glitter) | Shanghai 2024"},"8075":{"market_hash_name":"Sticker | w0nderful (Holo) | Shanghai 2024"},"8076":{"market_hash_name":"Sticker | w0nderful (Gold) | Shanghai 2024"},"8077":{"market_hash_name":"Sticker | Aleksib | Shanghai 2024"},"8078":{"market_hash_name":"Sticker | Aleksib (Glitter) | Shanghai 2024"},"8079":{"market_hash_name":"Sticker | Aleksib (Holo) | Shanghai 2024"},"808":{"market_hash_name":"Sticker | allu (Gold) | Cluj-Napoca 2015"},"8080":{"market_hash_name":"Sticker | Aleksib (Gold) | Shanghai 2024"},"8081":{"market_hash_name":"Sticker | jL | Shanghai 2024"},"8082":{"market_hash_name":"Sticker | jL (Glitter) | Shanghai 2024"},"8083":{"market_hash_name":"Sticker | jL (Holo) | Shanghai 2024"},"8084":{"market_hash_name":"Sticker | jL (Gold) | Shanghai 2024"},"8085":{"market_hash_name":"Sticker | b1t | Shanghai 2024"},"8086":{"market_hash_name":"Sticker | b1t (Glitter) | Shanghai 2024"},"8087":{"market_hash_name":"Sticker | b1t (Holo) | Shanghai 2024"},"8088":{"market_hash_name":"Sticker | b1t (Gold) | Shanghai 2024"},"8089":{"market_hash_name":"Sticker | iM | Shanghai 2024"},"809":{"market_hash_name":"Sticker | f0rest | Cluj-Napoca 2015"},"8090":{"market_hash_name":"Sticker | iM (Glitter) | Shanghai 2024"},"8091":{"market_hash_name":"Sticker | iM (Holo) | Shanghai 2024"},"8092":{"market_hash_name":"Sticker | iM (Gold) | Shanghai 2024"},"8093":{"market_hash_name":"Sticker | ZywOo | Shanghai 2024"},"8094":{"market_hash_name":"Sticker | ZywOo (Glitter) | Shanghai 2024"},"8095":{"market_hash_name":"Sticker | ZywOo (Holo) | Shanghai 2024"},"8096":{"market_hash_name":"Sticker | ZywOo (Gold) | Shanghai 2024"},"8097":{"market_hash_name":"Sticker | apEX | Shanghai 2024"},"8098":{"market_hash_name":"Sticker | apEX (Glitter) | Shanghai 2024"},"8099":{"market_hash_name":"Sticker | apEX (Holo) | Shanghai 2024"},"81":{"market_hash_name":"Sticker | ESL Wolf (Foil) | Katowice 2014"},"810":{"market_hash_name":"Sticker | f0rest (Foil) | Cluj-Napoca 2015"},"8100":{"market_hash_name":"Sticker | apEX (Gold) | Shanghai 2024"},"8101":{"market_hash_name":"Sticker | mezii | Shanghai 2024"},"8102":{"market_hash_name":"Sticker | mezii (Glitter) | Shanghai 2024"},"8103":{"market_hash_name":"Sticker | mezii (Holo) | Shanghai 2024"},"8104":{"market_hash_name":"Sticker | mezii (Gold) | Shanghai 2024"},"8105":{"market_hash_name":"Sticker | FlameZ | Shanghai 2024"},"8106":{"market_hash_name":"Sticker | FlameZ (Glitter) | Shanghai 2024"},"8107":{"market_hash_name":"Sticker | FlameZ (Holo) | Shanghai 2024"},"8108":{"market_hash_name":"Sticker | FlameZ (Gold) | Shanghai 2024"},"8109":{"market_hash_name":"Sticker | Spinx | Shanghai 2024"},"811":{"market_hash_name":"Sticker | f0rest (Gold) | Cluj-Napoca 2015"},"8110":{"market_hash_name":"Sticker | Spinx (Glitter) | Shanghai 2024"},"8111":{"market_hash_name":"Sticker | Spinx (Holo) | Shanghai 2024"},"8112":{"market_hash_name":"Sticker | Spinx (Gold) | Shanghai 2024"},"8113":{"market_hash_name":"Sticker | chopper | Shanghai 2024"},"8114":{"market_hash_name":"Sticker | chopper (Glitter) | Shanghai 2024"},"8115":{"market_hash_name":"Sticker | chopper (Holo) | Shanghai 2024"},"8116":{"market_hash_name":"Sticker | chopper (Gold) | Shanghai 2024"},"8117":{"market_hash_name":"Sticker | magixx | Shanghai 2024"},"8118":{"market_hash_name":"Sticker | magixx (Glitter) | Shanghai 2024"},"8119":{"market_hash_name":"Sticker | magixx (Holo) | Shanghai 2024"},"812":{"market_hash_name":"Sticker | friberg | Cluj-Napoca 2015"},"8120":{"market_hash_name":"Sticker | magixx (Gold) | Shanghai 2024"},"8121":{"market_hash_name":"Sticker | donk | Shanghai 2024"},"8122":{"market_hash_name":"Sticker | donk (Glitter) | Shanghai 2024"},"8123":{"market_hash_name":"Sticker | donk (Holo) | Shanghai 2024"},"8124":{"market_hash_name":"Sticker | donk (Gold) | Shanghai 2024"},"8125":{"market_hash_name":"Sticker | sh1ro | Shanghai 2024"},"8126":{"market_hash_name":"Sticker | sh1ro (Glitter) | Shanghai 2024"},"8127":{"market_hash_name":"Sticker | sh1ro (Holo) | Shanghai 2024"},"8128":{"market_hash_name":"Sticker | sh1ro (Gold) | Shanghai 2024"},"8129":{"market_hash_name":"Sticker | zont1x | Shanghai 2024"},"813":{"market_hash_name":"Sticker | friberg (Foil) | Cluj-Napoca 2015"},"8130":{"market_hash_name":"Sticker | zont1x (Glitter) | Shanghai 2024"},"8131":{"market_hash_name":"Sticker | zont1x (Holo) | Shanghai 2024"},"8132":{"market_hash_name":"Sticker | zont1x (Gold) | Shanghai 2024"},"8133":{"market_hash_name":"Sticker | torzsi | Shanghai 2024"},"8134":{"market_hash_name":"Sticker | torzsi (Glitter) | Shanghai 2024"},"8135":{"market_hash_name":"Sticker | torzsi (Holo) | Shanghai 2024"},"8136":{"market_hash_name":"Sticker | torzsi (Gold) | Shanghai 2024"},"8137":{"market_hash_name":"Sticker | xertioN | Shanghai 2024"},"8138":{"market_hash_name":"Sticker | xertioN (Glitter) | Shanghai 2024"},"8139":{"market_hash_name":"Sticker | xertioN (Holo) | Shanghai 2024"},"814":{"market_hash_name":"Sticker | friberg (Gold) | Cluj-Napoca 2015"},"8140":{"market_hash_name":"Sticker | xertioN (Gold) | Shanghai 2024"},"8141":{"market_hash_name":"Sticker | Brollan | Shanghai 2024"},"8142":{"market_hash_name":"Sticker | Brollan (Glitter) | Shanghai 2024"},"8143":{"market_hash_name":"Sticker | Brollan (Holo) | Shanghai 2024"},"8144":{"market_hash_name":"Sticker | Brollan (Gold) | Shanghai 2024"},"8145":{"market_hash_name":"Sticker | Jimpphat | Shanghai 2024"},"8146":{"market_hash_name":"Sticker | Jimpphat (Glitter) | Shanghai 2024"},"8147":{"market_hash_name":"Sticker | Jimpphat (Holo) | Shanghai 2024"},"8148":{"market_hash_name":"Sticker | Jimpphat (Gold) | Shanghai 2024"},"8149":{"market_hash_name":"Sticker | siuhy | Shanghai 2024"},"815":{"market_hash_name":"Sticker | GeT_RiGhT | Cluj-Napoca 2015"},"8150":{"market_hash_name":"Sticker | siuhy (Glitter) | Shanghai 2024"},"8151":{"market_hash_name":"Sticker | siuhy (Holo) | Shanghai 2024"},"8152":{"market_hash_name":"Sticker | siuhy (Gold) | Shanghai 2024"},"8153":{"market_hash_name":"Sticker | karrigan | Shanghai 2024"},"8154":{"market_hash_name":"Sticker | karrigan (Glitter) | Shanghai 2024"},"8155":{"market_hash_name":"Sticker | karrigan (Holo) | Shanghai 2024"},"8156":{"market_hash_name":"Sticker | karrigan (Gold) | Shanghai 2024"},"8157":{"market_hash_name":"Sticker | rain | Shanghai 2024"},"8158":{"market_hash_name":"Sticker | rain (Glitter) | Shanghai 2024"},"8159":{"market_hash_name":"Sticker | rain (Holo) | Shanghai 2024"},"816":{"market_hash_name":"Sticker | GeT_RiGhT (Foil) | Cluj-Napoca 2015"},"8160":{"market_hash_name":"Sticker | rain (Gold) | Shanghai 2024"},"8161":{"market_hash_name":"Sticker | ropz | Shanghai 2024"},"8162":{"market_hash_name":"Sticker | ropz (Glitter) | Shanghai 2024"},"8163":{"market_hash_name":"Sticker | ropz (Holo) | Shanghai 2024"},"8164":{"market_hash_name":"Sticker | ropz (Gold) | Shanghai 2024"},"8165":{"market_hash_name":"Sticker | broky | Shanghai 2024"},"8166":{"market_hash_name":"Sticker | broky (Glitter) | Shanghai 2024"},"8167":{"market_hash_name":"Sticker | broky (Holo) | Shanghai 2024"},"8168":{"market_hash_name":"Sticker | broky (Gold) | Shanghai 2024"},"8169":{"market_hash_name":"Sticker | frozen | Shanghai 2024"},"817":{"market_hash_name":"Sticker | GeT_RiGhT (Gold) | Cluj-Napoca 2015"},"8170":{"market_hash_name":"Sticker | frozen (Glitter) | Shanghai 2024"},"8171":{"market_hash_name":"Sticker | frozen (Holo) | Shanghai 2024"},"8172":{"market_hash_name":"Sticker | frozen (Gold) | Shanghai 2024"},"8173":{"market_hash_name":"Sticker | TeSeS | Shanghai 2024"},"8174":{"market_hash_name":"Sticker | TeSeS (Glitter) | Shanghai 2024"},"8175":{"market_hash_name":"Sticker | TeSeS (Holo) | Shanghai 2024"},"8176":{"market_hash_name":"Sticker | TeSeS (Gold) | Shanghai 2024"},"8177":{"market_hash_name":"Sticker | sjuush | Shanghai 2024"},"8178":{"market_hash_name":"Sticker | sjuush (Glitter) | Shanghai 2024"},"8179":{"market_hash_name":"Sticker | sjuush (Holo) | Shanghai 2024"},"818":{"market_hash_name":"Sticker | Xizt | Cluj-Napoca 2015"},"8180":{"market_hash_name":"Sticker | sjuush (Gold) | Shanghai 2024"},"8181":{"market_hash_name":"Sticker | kyxsan | Shanghai 2024"},"8182":{"market_hash_name":"Sticker | kyxsan (Glitter) | Shanghai 2024"},"8183":{"market_hash_name":"Sticker | kyxsan (Holo) | Shanghai 2024"},"8184":{"market_hash_name":"Sticker | kyxsan (Gold) | Shanghai 2024"},"8185":{"market_hash_name":"Sticker | NertZ | Shanghai 2024"},"8186":{"market_hash_name":"Sticker | NertZ (Glitter) | Shanghai 2024"},"8187":{"market_hash_name":"Sticker | NertZ (Holo) | Shanghai 2024"},"8188":{"market_hash_name":"Sticker | NertZ (Gold) | Shanghai 2024"},"8189":{"market_hash_name":"Sticker | degster | Shanghai 2024"},"819":{"market_hash_name":"Sticker | Xizt (Foil) | Cluj-Napoca 2015"},"8190":{"market_hash_name":"Sticker | degster (Glitter) | Shanghai 2024"},"8191":{"market_hash_name":"Sticker | degster (Holo) | Shanghai 2024"},"8192":{"market_hash_name":"Sticker | degster (Gold) | Shanghai 2024"},"8193":{"market_hash_name":"Sticker | Ex3rcice | Shanghai 2024"},"8194":{"market_hash_name":"Sticker | Ex3rcice (Glitter) | Shanghai 2024"},"8195":{"market_hash_name":"Sticker | Ex3rcice (Holo) | Shanghai 2024"},"8196":{"market_hash_name":"Sticker | Ex3rcice (Gold) | Shanghai 2024"},"8197":{"market_hash_name":"Sticker | Djoko | Shanghai 2024"},"8198":{"market_hash_name":"Sticker | Djoko (Glitter) | Shanghai 2024"},"8199":{"market_hash_name":"Sticker | Djoko (Holo) | Shanghai 2024"},"82":{"market_hash_name":"Sticker | ESL Skull (Foil) | Katowice 2014"},"820":{"market_hash_name":"Sticker | Xizt (Gold) | Cluj-Napoca 2015"},"8200":{"market_hash_name":"Sticker | Djoko (Gold) | Shanghai 2024"},"8201":{"market_hash_name":"Sticker | Maka | Shanghai 2024"},"8202":{"market_hash_name":"Sticker | Maka (Glitter) | Shanghai 2024"},"8203":{"market_hash_name":"Sticker | Maka (Holo) | Shanghai 2024"},"8204":{"market_hash_name":"Sticker | Maka (Gold) | Shanghai 2024"},"8205":{"market_hash_name":"Sticker | Lucky | Shanghai 2024"},"8206":{"market_hash_name":"Sticker | Lucky (Glitter) | Shanghai 2024"},"8207":{"market_hash_name":"Sticker | Lucky (Holo) | Shanghai 2024"},"8208":{"market_hash_name":"Sticker | Lucky (Gold) | Shanghai 2024"},"8209":{"market_hash_name":"Sticker | Graviti | Shanghai 2024"},"821":{"market_hash_name":"Sticker | aizy | Cluj-Napoca 2015"},"8210":{"market_hash_name":"Sticker | Graviti (Glitter) | Shanghai 2024"},"8211":{"market_hash_name":"Sticker | Graviti (Holo) | Shanghai 2024"},"8212":{"market_hash_name":"Sticker | Graviti (Gold) | Shanghai 2024"},"8213":{"market_hash_name":"Sticker | FalleN | Shanghai 2024"},"8214":{"market_hash_name":"Sticker | FalleN (Glitter) | Shanghai 2024"},"8215":{"market_hash_name":"Sticker | FalleN (Holo) | Shanghai 2024"},"8216":{"market_hash_name":"Sticker | FalleN (Gold) | Shanghai 2024"},"8217":{"market_hash_name":"Sticker | chelo | Shanghai 2024"},"8218":{"market_hash_name":"Sticker | chelo (Glitter) | Shanghai 2024"},"8219":{"market_hash_name":"Sticker | chelo (Holo) | Shanghai 2024"},"822":{"market_hash_name":"Sticker | aizy (Foil) | Cluj-Napoca 2015"},"8220":{"market_hash_name":"Sticker | chelo (Gold) | Shanghai 2024"},"8221":{"market_hash_name":"Sticker | yuurih | Shanghai 2024"},"8222":{"market_hash_name":"Sticker | yuurih (Glitter) | Shanghai 2024"},"8223":{"market_hash_name":"Sticker | yuurih (Holo) | Shanghai 2024"},"8224":{"market_hash_name":"Sticker | yuurih (Gold) | Shanghai 2024"},"8225":{"market_hash_name":"Sticker | KSCERATO | Shanghai 2024"},"8226":{"market_hash_name":"Sticker | KSCERATO (Glitter) | Shanghai 2024"},"8227":{"market_hash_name":"Sticker | KSCERATO (Holo) | Shanghai 2024"},"8228":{"market_hash_name":"Sticker | KSCERATO (Gold) | Shanghai 2024"},"8229":{"market_hash_name":"Sticker | skullz | Shanghai 2024"},"823":{"market_hash_name":"Sticker | aizy (Gold) | Cluj-Napoca 2015"},"8230":{"market_hash_name":"Sticker | skullz (Glitter) | Shanghai 2024"},"8231":{"market_hash_name":"Sticker | skullz (Holo) | Shanghai 2024"},"8232":{"market_hash_name":"Sticker | skullz (Gold) | Shanghai 2024"},"8233":{"market_hash_name":"Sticker | FL1T | Shanghai 2024"},"8234":{"market_hash_name":"Sticker | FL1T (Glitter) | Shanghai 2024"},"8235":{"market_hash_name":"Sticker | FL1T (Holo) | Shanghai 2024"},"8236":{"market_hash_name":"Sticker | FL1T (Gold) | Shanghai 2024"},"8237":{"market_hash_name":"Sticker | Jame | Shanghai 2024"},"8238":{"market_hash_name":"Sticker | Jame (Glitter) | Shanghai 2024"},"8239":{"market_hash_name":"Sticker | Jame (Holo) | Shanghai 2024"},"824":{"market_hash_name":"Sticker | Kjaerbye | Cluj-Napoca 2015"},"8240":{"market_hash_name":"Sticker | Jame (Gold) | Shanghai 2024"},"8241":{"market_hash_name":"Sticker | fame | Shanghai 2024"},"8242":{"market_hash_name":"Sticker | fame (Glitter) | Shanghai 2024"},"8243":{"market_hash_name":"Sticker | fame (Holo) | Shanghai 2024"},"8244":{"market_hash_name":"Sticker | fame (Gold) | Shanghai 2024"},"8245":{"market_hash_name":"Sticker | n0rb3r7 | Shanghai 2024"},"8246":{"market_hash_name":"Sticker | n0rb3r7 (Glitter) | Shanghai 2024"},"8247":{"market_hash_name":"Sticker | n0rb3r7 (Holo) | Shanghai 2024"},"8248":{"market_hash_name":"Sticker | n0rb3r7 (Gold) | Shanghai 2024"},"8249":{"market_hash_name":"Sticker | electronic | Shanghai 2024"},"825":{"market_hash_name":"Sticker | Kjaerbye (Foil) | Cluj-Napoca 2015"},"8250":{"market_hash_name":"Sticker | electronic (Glitter) | Shanghai 2024"},"8251":{"market_hash_name":"Sticker | electronic (Holo) | Shanghai 2024"},"8252":{"market_hash_name":"Sticker | electronic (Gold) | Shanghai 2024"},"8253":{"market_hash_name":"Sticker | Twistzz | Shanghai 2024"},"8254":{"market_hash_name":"Sticker | Twistzz (Glitter) | Shanghai 2024"},"8255":{"market_hash_name":"Sticker | Twistzz (Holo) | Shanghai 2024"},"8256":{"market_hash_name":"Sticker | Twistzz (Gold) | Shanghai 2024"},"8257":{"market_hash_name":"Sticker | ultimate | Shanghai 2024"},"8258":{"market_hash_name":"Sticker | ultimate (Glitter) | Shanghai 2024"},"8259":{"market_hash_name":"Sticker | ultimate (Holo) | Shanghai 2024"},"826":{"market_hash_name":"Sticker | Kjaerbye (Gold) | Cluj-Napoca 2015"},"8260":{"market_hash_name":"Sticker | ultimate (Gold) | Shanghai 2024"},"8261":{"market_hash_name":"Sticker | YEKINDAR | Shanghai 2024"},"8262":{"market_hash_name":"Sticker | YEKINDAR (Glitter) | Shanghai 2024"},"8263":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Shanghai 2024"},"8264":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Shanghai 2024"},"8265":{"market_hash_name":"Sticker | jks | Shanghai 2024"},"8266":{"market_hash_name":"Sticker | jks (Glitter) | Shanghai 2024"},"8267":{"market_hash_name":"Sticker | jks (Holo) | Shanghai 2024"},"8268":{"market_hash_name":"Sticker | jks (Gold) | Shanghai 2024"},"8269":{"market_hash_name":"Sticker | NAF | Shanghai 2024"},"827":{"market_hash_name":"Sticker | MSL | Cluj-Napoca 2015"},"8270":{"market_hash_name":"Sticker | NAF (Glitter) | Shanghai 2024"},"8271":{"market_hash_name":"Sticker | NAF (Holo) | Shanghai 2024"},"8272":{"market_hash_name":"Sticker | NAF (Gold) | Shanghai 2024"},"8273":{"market_hash_name":"Sticker | EliGE | Shanghai 2024"},"8274":{"market_hash_name":"Sticker | EliGE (Glitter) | Shanghai 2024"},"8275":{"market_hash_name":"Sticker | EliGE (Holo) | Shanghai 2024"},"8276":{"market_hash_name":"Sticker | EliGE (Gold) | Shanghai 2024"},"8277":{"market_hash_name":"Sticker | floppy | Shanghai 2024"},"8278":{"market_hash_name":"Sticker | floppy (Glitter) | Shanghai 2024"},"8279":{"market_hash_name":"Sticker | floppy (Holo) | Shanghai 2024"},"828":{"market_hash_name":"Sticker | MSL (Foil) | Cluj-Napoca 2015"},"8280":{"market_hash_name":"Sticker | floppy (Gold) | Shanghai 2024"},"8281":{"market_hash_name":"Sticker | Grim | Shanghai 2024"},"8282":{"market_hash_name":"Sticker | Grim (Glitter) | Shanghai 2024"},"8283":{"market_hash_name":"Sticker | Grim (Holo) | Shanghai 2024"},"8284":{"market_hash_name":"Sticker | Grim (Gold) | Shanghai 2024"},"8285":{"market_hash_name":"Sticker | hallzerk | Shanghai 2024"},"8286":{"market_hash_name":"Sticker | hallzerk (Glitter) | Shanghai 2024"},"8287":{"market_hash_name":"Sticker | hallzerk (Holo) | Shanghai 2024"},"8288":{"market_hash_name":"Sticker | hallzerk (Gold) | Shanghai 2024"},"8289":{"market_hash_name":"Sticker | JT | Shanghai 2024"},"829":{"market_hash_name":"Sticker | MSL (Gold) | Cluj-Napoca 2015"},"8290":{"market_hash_name":"Sticker | JT (Glitter) | Shanghai 2024"},"8291":{"market_hash_name":"Sticker | JT (Holo) | Shanghai 2024"},"8292":{"market_hash_name":"Sticker | JT (Gold) | Shanghai 2024"},"8293":{"market_hash_name":"Sticker | tabseN | Shanghai 2024"},"8294":{"market_hash_name":"Sticker | tabseN (Glitter) | Shanghai 2024"},"8295":{"market_hash_name":"Sticker | tabseN (Holo) | Shanghai 2024"},"8296":{"market_hash_name":"Sticker | tabseN (Gold) | Shanghai 2024"},"8297":{"market_hash_name":"Sticker | Krimbo | Shanghai 2024"},"8298":{"market_hash_name":"Sticker | Krimbo (Glitter) | Shanghai 2024"},"8299":{"market_hash_name":"Sticker | Krimbo (Holo) | Shanghai 2024"},"83":{"market_hash_name":"Sticker | 3DMAX (Foil) | Katowice 2014"},"830":{"market_hash_name":"Sticker | Pimp | Cluj-Napoca 2015"},"8300":{"market_hash_name":"Sticker | Krimbo (Gold) | Shanghai 2024"},"8301":{"market_hash_name":"Sticker | JDC | Shanghai 2024"},"8302":{"market_hash_name":"Sticker | JDC (Glitter) | Shanghai 2024"},"8303":{"market_hash_name":"Sticker | JDC (Holo) | Shanghai 2024"},"8304":{"market_hash_name":"Sticker | JDC (Gold) | Shanghai 2024"},"8305":{"market_hash_name":"Sticker | syrsoN | Shanghai 2024"},"8306":{"market_hash_name":"Sticker | syrsoN (Glitter) | Shanghai 2024"},"8307":{"market_hash_name":"Sticker | syrsoN (Holo) | Shanghai 2024"},"8308":{"market_hash_name":"Sticker | syrsoN (Gold) | Shanghai 2024"},"8309":{"market_hash_name":"Sticker | rigoN | Shanghai 2024"},"831":{"market_hash_name":"Sticker | Pimp (Foil) | Cluj-Napoca 2015"},"8310":{"market_hash_name":"Sticker | rigoN (Glitter) | Shanghai 2024"},"8311":{"market_hash_name":"Sticker | rigoN (Holo) | Shanghai 2024"},"8312":{"market_hash_name":"Sticker | rigoN (Gold) | Shanghai 2024"},"8313":{"market_hash_name":"Sticker | KRIMZ | Shanghai 2024"},"8314":{"market_hash_name":"Sticker | KRIMZ (Glitter) | Shanghai 2024"},"8315":{"market_hash_name":"Sticker | KRIMZ (Holo) | Shanghai 2024"},"8316":{"market_hash_name":"Sticker | KRIMZ (Gold) | Shanghai 2024"},"8317":{"market_hash_name":"Sticker | bodyy | Shanghai 2024"},"8318":{"market_hash_name":"Sticker | bodyy (Glitter) | Shanghai 2024"},"8319":{"market_hash_name":"Sticker | bodyy (Holo) | Shanghai 2024"},"832":{"market_hash_name":"Sticker | Pimp (Gold) | Cluj-Napoca 2015"},"8320":{"market_hash_name":"Sticker | bodyy (Gold) | Shanghai 2024"},"8321":{"market_hash_name":"Sticker | MATYS | Shanghai 2024"},"8322":{"market_hash_name":"Sticker | MATYS (Glitter) | Shanghai 2024"},"8323":{"market_hash_name":"Sticker | MATYS (Holo) | Shanghai 2024"},"8324":{"market_hash_name":"Sticker | MATYS (Gold) | Shanghai 2024"},"8325":{"market_hash_name":"Sticker | blameF | Shanghai 2024"},"8326":{"market_hash_name":"Sticker | blameF (Glitter) | Shanghai 2024"},"8327":{"market_hash_name":"Sticker | blameF (Holo) | Shanghai 2024"},"8328":{"market_hash_name":"Sticker | blameF (Gold) | Shanghai 2024"},"8329":{"market_hash_name":"Sticker | afro | Shanghai 2024"},"833":{"market_hash_name":"Sticker | tenzki | Cluj-Napoca 2015"},"8330":{"market_hash_name":"Sticker | afro (Glitter) | Shanghai 2024"},"8331":{"market_hash_name":"Sticker | afro (Holo) | Shanghai 2024"},"8332":{"market_hash_name":"Sticker | afro (Gold) | Shanghai 2024"},"8333":{"market_hash_name":"Sticker | bLitz | Shanghai 2024"},"8334":{"market_hash_name":"Sticker | bLitz (Glitter) | Shanghai 2024"},"8335":{"market_hash_name":"Sticker | bLitz (Holo) | Shanghai 2024"},"8336":{"market_hash_name":"Sticker | bLitz (Gold) | Shanghai 2024"},"8337":{"market_hash_name":"Sticker | 910 | Shanghai 2024"},"8338":{"market_hash_name":"Sticker | 910 (Glitter) | Shanghai 2024"},"8339":{"market_hash_name":"Sticker | 910 (Holo) | Shanghai 2024"},"834":{"market_hash_name":"Sticker | tenzki (Foil) | Cluj-Napoca 2015"},"8340":{"market_hash_name":"Sticker | 910 (Gold) | Shanghai 2024"},"8341":{"market_hash_name":"Sticker | Techno4K | Shanghai 2024"},"8342":{"market_hash_name":"Sticker | Techno4K (Glitter) | Shanghai 2024"},"8343":{"market_hash_name":"Sticker | Techno4K (Holo) | Shanghai 2024"},"8344":{"market_hash_name":"Sticker | Techno4K (Gold) | Shanghai 2024"},"8345":{"market_hash_name":"Sticker | Senzu | Shanghai 2024"},"8346":{"market_hash_name":"Sticker | Senzu (Glitter) | Shanghai 2024"},"8347":{"market_hash_name":"Sticker | Senzu (Holo) | Shanghai 2024"},"8348":{"market_hash_name":"Sticker | Senzu (Gold) | Shanghai 2024"},"8349":{"market_hash_name":"Sticker | mzinho | Shanghai 2024"},"835":{"market_hash_name":"Sticker | tenzki (Gold) | Cluj-Napoca 2015"},"8350":{"market_hash_name":"Sticker | mzinho (Glitter) | Shanghai 2024"},"8351":{"market_hash_name":"Sticker | mzinho (Holo) | Shanghai 2024"},"8352":{"market_hash_name":"Sticker | mzinho (Gold) | Shanghai 2024"},"8353":{"market_hash_name":"Sticker | biguzera | Shanghai 2024"},"8354":{"market_hash_name":"Sticker | biguzera (Glitter) | Shanghai 2024"},"8355":{"market_hash_name":"Sticker | biguzera (Holo) | Shanghai 2024"},"8356":{"market_hash_name":"Sticker | biguzera (Gold) | Shanghai 2024"},"8357":{"market_hash_name":"Sticker | lux | Shanghai 2024"},"8358":{"market_hash_name":"Sticker | lux (Glitter) | Shanghai 2024"},"8359":{"market_hash_name":"Sticker | lux (Holo) | Shanghai 2024"},"836":{"market_hash_name":"Sticker | adreN | Cluj-Napoca 2015"},"8360":{"market_hash_name":"Sticker | lux (Gold) | Shanghai 2024"},"8361":{"market_hash_name":"Sticker | kauez | Shanghai 2024"},"8362":{"market_hash_name":"Sticker | kauez (Glitter) | Shanghai 2024"},"8363":{"market_hash_name":"Sticker | kauez (Holo) | Shanghai 2024"},"8364":{"market_hash_name":"Sticker | kauez (Gold) | Shanghai 2024"},"8365":{"market_hash_name":"Sticker | NQZ | Shanghai 2024"},"8366":{"market_hash_name":"Sticker | NQZ (Glitter) | Shanghai 2024"},"8367":{"market_hash_name":"Sticker | NQZ (Holo) | Shanghai 2024"},"8368":{"market_hash_name":"Sticker | NQZ (Gold) | Shanghai 2024"},"8369":{"market_hash_name":"Sticker | snow | Shanghai 2024"},"837":{"market_hash_name":"Sticker | adreN (Foil) | Cluj-Napoca 2015"},"8370":{"market_hash_name":"Sticker | snow (Glitter) | Shanghai 2024"},"8371":{"market_hash_name":"Sticker | snow (Holo) | Shanghai 2024"},"8372":{"market_hash_name":"Sticker | snow (Gold) | Shanghai 2024"},"8373":{"market_hash_name":"Sticker | ztr | Shanghai 2024"},"8374":{"market_hash_name":"Sticker | ztr (Glitter) | Shanghai 2024"},"8375":{"market_hash_name":"Sticker | ztr (Holo) | Shanghai 2024"},"8376":{"market_hash_name":"Sticker | ztr (Gold) | Shanghai 2024"},"8377":{"market_hash_name":"Sticker | sl3nd | Shanghai 2024"},"8378":{"market_hash_name":"Sticker | sl3nd (Glitter) | Shanghai 2024"},"8379":{"market_hash_name":"Sticker | sl3nd (Holo) | Shanghai 2024"},"838":{"market_hash_name":"Sticker | adreN (Gold) | Cluj-Napoca 2015"},"8380":{"market_hash_name":"Sticker | sl3nd (Gold) | Shanghai 2024"},"8381":{"market_hash_name":"Sticker | volt | Shanghai 2024"},"8382":{"market_hash_name":"Sticker | volt (Glitter) | Shanghai 2024"},"8383":{"market_hash_name":"Sticker | volt (Holo) | Shanghai 2024"},"8384":{"market_hash_name":"Sticker | volt (Gold) | Shanghai 2024"},"8385":{"market_hash_name":"Sticker | FL4MUS | Shanghai 2024"},"8386":{"market_hash_name":"Sticker | FL4MUS (Glitter) | Shanghai 2024"},"8387":{"market_hash_name":"Sticker | FL4MUS (Holo) | Shanghai 2024"},"8388":{"market_hash_name":"Sticker | FL4MUS (Gold) | Shanghai 2024"},"8389":{"market_hash_name":"Sticker | aNdu | Shanghai 2024"},"839":{"market_hash_name":"Sticker | EliGE | Cluj-Napoca 2015"},"8390":{"market_hash_name":"Sticker | aNdu (Glitter) | Shanghai 2024"},"8391":{"market_hash_name":"Sticker | aNdu (Holo) | Shanghai 2024"},"8392":{"market_hash_name":"Sticker | aNdu (Gold) | Shanghai 2024"},"8393":{"market_hash_name":"Sticker | drop | Shanghai 2024"},"8394":{"market_hash_name":"Sticker | drop (Glitter) | Shanghai 2024"},"8395":{"market_hash_name":"Sticker | drop (Holo) | Shanghai 2024"},"8396":{"market_hash_name":"Sticker | drop (Gold) | Shanghai 2024"},"8397":{"market_hash_name":"Sticker | saffee | Shanghai 2024"},"8398":{"market_hash_name":"Sticker | saffee (Glitter) | Shanghai 2024"},"8399":{"market_hash_name":"Sticker | saffee (Holo) | Shanghai 2024"},"84":{"market_hash_name":"Sticker | compLexity Gaming (Foil) | Katowice 2014"},"840":{"market_hash_name":"Sticker | EliGE (Foil) | Cluj-Napoca 2015"},"8400":{"market_hash_name":"Sticker | saffee (Gold) | Shanghai 2024"},"8401":{"market_hash_name":"Sticker | insani | Shanghai 2024"},"8402":{"market_hash_name":"Sticker | insani (Glitter) | Shanghai 2024"},"8403":{"market_hash_name":"Sticker | insani (Holo) | Shanghai 2024"},"8404":{"market_hash_name":"Sticker | insani (Gold) | Shanghai 2024"},"8405":{"market_hash_name":"Sticker | brnz4n | Shanghai 2024"},"8406":{"market_hash_name":"Sticker | brnz4n (Glitter) | Shanghai 2024"},"8407":{"market_hash_name":"Sticker | brnz4n (Holo) | Shanghai 2024"},"8408":{"market_hash_name":"Sticker | brnz4n (Gold) | Shanghai 2024"},"8409":{"market_hash_name":"Sticker | exit | Shanghai 2024"},"841":{"market_hash_name":"Sticker | EliGE (Gold) | Cluj-Napoca 2015"},"8410":{"market_hash_name":"Sticker | exit (Glitter) | Shanghai 2024"},"8411":{"market_hash_name":"Sticker | exit (Holo) | Shanghai 2024"},"8412":{"market_hash_name":"Sticker | exit (Gold) | Shanghai 2024"},"8413":{"market_hash_name":"Sticker | Boombl4 | Shanghai 2024"},"8414":{"market_hash_name":"Sticker | Boombl4 (Glitter) | Shanghai 2024"},"8415":{"market_hash_name":"Sticker | Boombl4 (Holo) | Shanghai 2024"},"8416":{"market_hash_name":"Sticker | Boombl4 (Gold) | Shanghai 2024"},"8417":{"market_hash_name":"Sticker | Ax1Le | Shanghai 2024"},"8418":{"market_hash_name":"Sticker | Ax1Le (Glitter) | Shanghai 2024"},"8419":{"market_hash_name":"Sticker | Ax1Le (Holo) | Shanghai 2024"},"842":{"market_hash_name":"Sticker | FugLy | Cluj-Napoca 2015"},"8420":{"market_hash_name":"Sticker | Ax1Le (Gold) | Shanghai 2024"},"8421":{"market_hash_name":"Sticker | Heavygod | Shanghai 2024"},"8422":{"market_hash_name":"Sticker | Heavygod (Glitter) | Shanghai 2024"},"8423":{"market_hash_name":"Sticker | Heavygod (Holo) | Shanghai 2024"},"8424":{"market_hash_name":"Sticker | Heavygod (Gold) | Shanghai 2024"},"8425":{"market_hash_name":"Sticker | ICY | Shanghai 2024"},"8426":{"market_hash_name":"Sticker | ICY (Glitter) | Shanghai 2024"},"8427":{"market_hash_name":"Sticker | ICY (Holo) | Shanghai 2024"},"8428":{"market_hash_name":"Sticker | ICY (Gold) | Shanghai 2024"},"8429":{"market_hash_name":"Sticker | Perfecto | Shanghai 2024"},"843":{"market_hash_name":"Sticker | FugLy (Foil) | Cluj-Napoca 2015"},"8430":{"market_hash_name":"Sticker | Perfecto (Glitter) | Shanghai 2024"},"8431":{"market_hash_name":"Sticker | Perfecto (Holo) | Shanghai 2024"},"8432":{"market_hash_name":"Sticker | Perfecto (Gold) | Shanghai 2024"},"8433":{"market_hash_name":"Sticker | dexter | Shanghai 2024"},"8434":{"market_hash_name":"Sticker | dexter (Glitter) | Shanghai 2024"},"8435":{"market_hash_name":"Sticker | dexter (Holo) | Shanghai 2024"},"8436":{"market_hash_name":"Sticker | dexter (Gold) | Shanghai 2024"},"8437":{"market_hash_name":"Sticker | Liazz | Shanghai 2024"},"8438":{"market_hash_name":"Sticker | Liazz (Glitter) | Shanghai 2024"},"8439":{"market_hash_name":"Sticker | Liazz (Holo) | Shanghai 2024"},"844":{"market_hash_name":"Sticker | FugLy (Gold) | Cluj-Napoca 2015"},"8440":{"market_hash_name":"Sticker | Liazz (Gold) | Shanghai 2024"},"8441":{"market_hash_name":"Sticker | aliStair | Shanghai 2024"},"8442":{"market_hash_name":"Sticker | aliStair (Glitter) | Shanghai 2024"},"8443":{"market_hash_name":"Sticker | aliStair (Holo) | Shanghai 2024"},"8444":{"market_hash_name":"Sticker | aliStair (Gold) | Shanghai 2024"},"8445":{"market_hash_name":"Sticker | INS | Shanghai 2024"},"8446":{"market_hash_name":"Sticker | INS (Glitter) | Shanghai 2024"},"8447":{"market_hash_name":"Sticker | INS (Holo) | Shanghai 2024"},"8448":{"market_hash_name":"Sticker | INS (Gold) | Shanghai 2024"},"8449":{"market_hash_name":"Sticker | vexite | Shanghai 2024"},"845":{"market_hash_name":"Sticker | Hiko | Cluj-Napoca 2015"},"8450":{"market_hash_name":"Sticker | vexite (Glitter) | Shanghai 2024"},"8451":{"market_hash_name":"Sticker | vexite (Holo) | Shanghai 2024"},"8452":{"market_hash_name":"Sticker | vexite (Gold) | Shanghai 2024"},"8453":{"market_hash_name":"Sticker | fEAR | Shanghai 2024"},"8454":{"market_hash_name":"Sticker | fEAR (Glitter) | Shanghai 2024"},"8455":{"market_hash_name":"Sticker | fEAR (Holo) | Shanghai 2024"},"8456":{"market_hash_name":"Sticker | fEAR (Gold) | Shanghai 2024"},"8457":{"market_hash_name":"Sticker | jambo | Shanghai 2024"},"8458":{"market_hash_name":"Sticker | jambo (Glitter) | Shanghai 2024"},"8459":{"market_hash_name":"Sticker | jambo (Holo) | Shanghai 2024"},"846":{"market_hash_name":"Sticker | Hiko (Foil) | Cluj-Napoca 2015"},"8460":{"market_hash_name":"Sticker | jambo (Gold) | Shanghai 2024"},"8461":{"market_hash_name":"Sticker | jackasmo | Shanghai 2024"},"8462":{"market_hash_name":"Sticker | jackasmo (Glitter) | Shanghai 2024"},"8463":{"market_hash_name":"Sticker | jackasmo (Holo) | Shanghai 2024"},"8464":{"market_hash_name":"Sticker | jackasmo (Gold) | Shanghai 2024"},"8465":{"market_hash_name":"Sticker | s-chilla | Shanghai 2024"},"8466":{"market_hash_name":"Sticker | s-chilla (Glitter) | Shanghai 2024"},"8467":{"market_hash_name":"Sticker | s-chilla (Holo) | Shanghai 2024"},"8468":{"market_hash_name":"Sticker | s-chilla (Gold) | Shanghai 2024"},"8469":{"market_hash_name":"Sticker | zeRRoFIX | Shanghai 2024"},"847":{"market_hash_name":"Sticker | Hiko (Gold) | Cluj-Napoca 2015"},"8470":{"market_hash_name":"Sticker | zeRRoFIX (Glitter) | Shanghai 2024"},"8471":{"market_hash_name":"Sticker | zeRRoFIX (Holo) | Shanghai 2024"},"8472":{"market_hash_name":"Sticker | zeRRoFIX (Gold) | Shanghai 2024"},"8473":{"market_hash_name":"Sticker | stanislaw | Shanghai 2024"},"8474":{"market_hash_name":"Sticker | stanislaw (Glitter) | Shanghai 2024"},"8475":{"market_hash_name":"Sticker | stanislaw (Holo) | Shanghai 2024"},"8476":{"market_hash_name":"Sticker | stanislaw (Gold) | Shanghai 2024"},"8477":{"market_hash_name":"Sticker | Sonic | Shanghai 2024"},"8478":{"market_hash_name":"Sticker | Sonic (Glitter) | Shanghai 2024"},"8479":{"market_hash_name":"Sticker | Sonic (Holo) | Shanghai 2024"},"848":{"market_hash_name":"Sticker | nitr0 | Cluj-Napoca 2015"},"8480":{"market_hash_name":"Sticker | Sonic (Gold) | Shanghai 2024"},"8481":{"market_hash_name":"Sticker | JBa | Shanghai 2024"},"8482":{"market_hash_name":"Sticker | JBa (Glitter) | Shanghai 2024"},"8483":{"market_hash_name":"Sticker | JBa (Holo) | Shanghai 2024"},"8484":{"market_hash_name":"Sticker | JBa (Gold) | Shanghai 2024"},"8485":{"market_hash_name":"Sticker | phzy | Shanghai 2024"},"8486":{"market_hash_name":"Sticker | phzy (Glitter) | Shanghai 2024"},"8487":{"market_hash_name":"Sticker | phzy (Holo) | Shanghai 2024"},"8488":{"market_hash_name":"Sticker | phzy (Gold) | Shanghai 2024"},"8489":{"market_hash_name":"Sticker | susp | Shanghai 2024"},"849":{"market_hash_name":"Sticker | nitr0 (Foil) | Cluj-Napoca 2015"},"8490":{"market_hash_name":"Sticker | susp (Glitter) | Shanghai 2024"},"8491":{"market_hash_name":"Sticker | susp (Holo) | Shanghai 2024"},"8492":{"market_hash_name":"Sticker | susp (Gold) | Shanghai 2024"},"8493":{"market_hash_name":"Sticker | Summer | Shanghai 2024"},"8494":{"market_hash_name":"Sticker | Summer (Glitter) | Shanghai 2024"},"8495":{"market_hash_name":"Sticker | Summer (Holo) | Shanghai 2024"},"8496":{"market_hash_name":"Sticker | Summer (Gold) | Shanghai 2024"},"8497":{"market_hash_name":"Sticker | ChildKing | Shanghai 2024"},"8498":{"market_hash_name":"Sticker | ChildKing (Glitter) | Shanghai 2024"},"8499":{"market_hash_name":"Sticker | ChildKing (Holo) | Shanghai 2024"},"85":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Katowice 2014"},"850":{"market_hash_name":"Sticker | nitr0 (Gold) | Cluj-Napoca 2015"},"8500":{"market_hash_name":"Sticker | ChildKing (Gold) | Shanghai 2024"},"8501":{"market_hash_name":"Sticker | somebody | Shanghai 2024"},"8502":{"market_hash_name":"Sticker | somebody (Glitter) | Shanghai 2024"},"8503":{"market_hash_name":"Sticker | somebody (Holo) | Shanghai 2024"},"8504":{"market_hash_name":"Sticker | somebody (Gold) | Shanghai 2024"},"8505":{"market_hash_name":"Sticker | L1haNg | Shanghai 2024"},"8506":{"market_hash_name":"Sticker | L1haNg (Glitter) | Shanghai 2024"},"8507":{"market_hash_name":"Sticker | L1haNg (Holo) | Shanghai 2024"},"8508":{"market_hash_name":"Sticker | L1haNg (Gold) | Shanghai 2024"},"8509":{"market_hash_name":"Sticker | Kaze | Shanghai 2024"},"851":{"market_hash_name":"Sticker | Ex6TenZ | Cluj-Napoca 2015"},"8510":{"market_hash_name":"Sticker | Kaze (Glitter) | Shanghai 2024"},"8511":{"market_hash_name":"Sticker | Kaze (Holo) | Shanghai 2024"},"8512":{"market_hash_name":"Sticker | Kaze (Gold) | Shanghai 2024"},"8513":{"market_hash_name":"Sticker | VINI | Shanghai 2024"},"8514":{"market_hash_name":"Sticker | VINI (Glitter) | Shanghai 2024"},"8515":{"market_hash_name":"Sticker | VINI (Holo) | Shanghai 2024"},"8516":{"market_hash_name":"Sticker | VINI (Gold) | Shanghai 2024"},"8517":{"market_hash_name":"Sticker | felps | Shanghai 2024"},"8518":{"market_hash_name":"Sticker | felps (Glitter) | Shanghai 2024"},"8519":{"market_hash_name":"Sticker | felps (Holo) | Shanghai 2024"},"852":{"market_hash_name":"Sticker | Ex6TenZ (Foil) | Cluj-Napoca 2015"},"8520":{"market_hash_name":"Sticker | felps (Gold) | Shanghai 2024"},"8521":{"market_hash_name":"Sticker | TRY | Shanghai 2024"},"8522":{"market_hash_name":"Sticker | TRY (Glitter) | Shanghai 2024"},"8523":{"market_hash_name":"Sticker | TRY (Holo) | Shanghai 2024"},"8524":{"market_hash_name":"Sticker | TRY (Gold) | Shanghai 2024"},"8525":{"market_hash_name":"Sticker | decenty | Shanghai 2024"},"8526":{"market_hash_name":"Sticker | decenty (Glitter) | Shanghai 2024"},"8527":{"market_hash_name":"Sticker | decenty (Holo) | Shanghai 2024"},"8528":{"market_hash_name":"Sticker | decenty (Gold) | Shanghai 2024"},"8529":{"market_hash_name":"Sticker | noway | Shanghai 2024"},"853":{"market_hash_name":"Sticker | Ex6TenZ (Gold) | Cluj-Napoca 2015"},"8530":{"market_hash_name":"Sticker | noway (Glitter) | Shanghai 2024"},"8531":{"market_hash_name":"Sticker | noway (Holo) | Shanghai 2024"},"8532":{"market_hash_name":"Sticker | noway (Gold) | Shanghai 2024"},"8533":{"market_hash_name":"Sticker | chopper (Champion) | Shanghai 2024"},"8534":{"market_hash_name":"Sticker | chopper (Glitter, Champion) | Shanghai 2024"},"8535":{"market_hash_name":"Sticker | chopper (Holo, Champion) | Shanghai 2024"},"8536":{"market_hash_name":"Sticker | chopper (Gold, Champion) | Shanghai 2024"},"8537":{"market_hash_name":"Sticker | magixx (Champion) | Shanghai 2024"},"8538":{"market_hash_name":"Sticker | magixx (Glitter, Champion) | Shanghai 2024"},"8539":{"market_hash_name":"Sticker | magixx (Holo, Champion) | Shanghai 2024"},"854":{"market_hash_name":"Sticker | RpK | Cluj-Napoca 2015"},"8540":{"market_hash_name":"Sticker | magixx (Gold, Champion) | Shanghai 2024"},"8541":{"market_hash_name":"Sticker | donk (Champion) | Shanghai 2024"},"8542":{"market_hash_name":"Sticker | donk (Glitter, Champion) | Shanghai 2024"},"8543":{"market_hash_name":"Sticker | donk (Holo, Champion) | Shanghai 2024"},"8544":{"market_hash_name":"Sticker | donk (Gold, Champion) | Shanghai 2024"},"8545":{"market_hash_name":"Sticker | sh1ro (Champion) | Shanghai 2024"},"8546":{"market_hash_name":"Sticker | sh1ro (Glitter, Champion) | Shanghai 2024"},"8547":{"market_hash_name":"Sticker | sh1ro (Holo, Champion) | Shanghai 2024"},"8548":{"market_hash_name":"Sticker | sh1ro (Gold, Champion) | Shanghai 2024"},"8549":{"market_hash_name":"Sticker | zont1x (Champion) | Shanghai 2024"},"855":{"market_hash_name":"Sticker | RpK (Foil) | Cluj-Napoca 2015"},"8550":{"market_hash_name":"Sticker | zont1x (Glitter, Champion) | Shanghai 2024"},"8551":{"market_hash_name":"Sticker | zont1x (Holo, Champion) | Shanghai 2024"},"8552":{"market_hash_name":"Sticker | zont1x (Gold, Champion) | Shanghai 2024"},"8553":{"market_hash_name":"Sticker | Train (Gold)"},"8554":{"market_hash_name":"Sticker | Vitality | Austin 2025"},"8555":{"market_hash_name":"Sticker | Vitality (Foil) | Austin 2025"},"8556":{"market_hash_name":"Sticker | Vitality (Holo) | Austin 2025"},"8557":{"market_hash_name":"Sticker | Vitality (Gold) | Austin 2025"},"8558":{"market_hash_name":"Sticker | MOUZ | Austin 2025"},"8559":{"market_hash_name":"Sticker | MOUZ (Foil) | Austin 2025"},"856":{"market_hash_name":"Sticker | RpK (Gold) | Cluj-Napoca 2015"},"8560":{"market_hash_name":"Sticker | MOUZ (Holo) | Austin 2025"},"8561":{"market_hash_name":"Sticker | MOUZ (Gold) | Austin 2025"},"8562":{"market_hash_name":"Sticker | Team Spirit | Austin 2025"},"8563":{"market_hash_name":"Sticker | Team Spirit (Foil) | Austin 2025"},"8564":{"market_hash_name":"Sticker | Team Spirit (Holo) | Austin 2025"},"8565":{"market_hash_name":"Sticker | Team Spirit (Gold) | Austin 2025"},"8566":{"market_hash_name":"Sticker | The Mongolz | Austin 2025"},"8567":{"market_hash_name":"Sticker | The Mongolz (Foil) | Austin 2025"},"8568":{"market_hash_name":"Sticker | The Mongolz (Holo) | Austin 2025"},"8569":{"market_hash_name":"Sticker | The Mongolz (Gold) | Austin 2025"},"857":{"market_hash_name":"Sticker | ScreaM | Cluj-Napoca 2015"},"8570":{"market_hash_name":"Sticker | Aurora | Austin 2025"},"8571":{"market_hash_name":"Sticker | Aurora (Foil) | Austin 2025"},"8572":{"market_hash_name":"Sticker | Aurora (Holo) | Austin 2025"},"8573":{"market_hash_name":"Sticker | Aurora (Gold) | Austin 2025"},"8574":{"market_hash_name":"Sticker | Natus Vincere | Austin 2025"},"8575":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Austin 2025"},"8576":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Austin 2025"},"8577":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Austin 2025"},"8578":{"market_hash_name":"Sticker | G2 Esports | Austin 2025"},"8579":{"market_hash_name":"Sticker | G2 Esports (Foil) | Austin 2025"},"858":{"market_hash_name":"Sticker | ScreaM (Foil) | Cluj-Napoca 2015"},"8580":{"market_hash_name":"Sticker | G2 Esports (Holo) | Austin 2025"},"8581":{"market_hash_name":"Sticker | G2 Esports (Gold) | Austin 2025"},"8582":{"market_hash_name":"Sticker | Team Liquid | Austin 2025"},"8583":{"market_hash_name":"Sticker | Team Liquid (Foil) | Austin 2025"},"8584":{"market_hash_name":"Sticker | Team Liquid (Holo) | Austin 2025"},"8585":{"market_hash_name":"Sticker | Team Liquid (Gold) | Austin 2025"},"8586":{"market_hash_name":"Sticker | Falcons | Austin 2025"},"8587":{"market_hash_name":"Sticker | Falcons (Foil) | Austin 2025"},"8588":{"market_hash_name":"Sticker | Falcons (Holo) | Austin 2025"},"8589":{"market_hash_name":"Sticker | Falcons (Gold) | Austin 2025"},"859":{"market_hash_name":"Sticker | ScreaM (Gold) | Cluj-Napoca 2015"},"8590":{"market_hash_name":"Sticker | FaZe Clan | Austin 2025"},"8591":{"market_hash_name":"Sticker | FaZe Clan (Foil) | Austin 2025"},"8592":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Austin 2025"},"8593":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Austin 2025"},"8594":{"market_hash_name":"Sticker | 3DMAX | Austin 2025"},"8595":{"market_hash_name":"Sticker | 3DMAX (Foil) | Austin 2025"},"8596":{"market_hash_name":"Sticker | 3DMAX (Holo) | Austin 2025"},"8597":{"market_hash_name":"Sticker | 3DMAX (Gold) | Austin 2025"},"8598":{"market_hash_name":"Sticker | Virtus.Pro | Austin 2025"},"8599":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Austin 2025"},"86":{"market_hash_name":"Sticker | Fnatic (Foil) | Katowice 2014"},"860":{"market_hash_name":"Sticker | shox | Cluj-Napoca 2015"},"8600":{"market_hash_name":"Sticker | Virtus.Pro (Holo) | Austin 2025"},"8601":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Austin 2025"},"8602":{"market_hash_name":"Sticker | paiN Gaming | Austin 2025"},"8603":{"market_hash_name":"Sticker | paiN Gaming (Foil) | Austin 2025"},"8604":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Austin 2025"},"8605":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Austin 2025"},"8606":{"market_hash_name":"Sticker | FURIA | Austin 2025"},"8607":{"market_hash_name":"Sticker | FURIA (Foil) | Austin 2025"},"8608":{"market_hash_name":"Sticker | FURIA (Holo) | Austin 2025"},"8609":{"market_hash_name":"Sticker | FURIA (Gold) | Austin 2025"},"861":{"market_hash_name":"Sticker | shox (Foil) | Cluj-Napoca 2015"},"8610":{"market_hash_name":"Sticker | MIBR | Austin 2025"},"8611":{"market_hash_name":"Sticker | MIBR (Foil) | Austin 2025"},"8612":{"market_hash_name":"Sticker | MIBR (Holo) | Austin 2025"},"8613":{"market_hash_name":"Sticker | MIBR (Gold) | Austin 2025"},"8614":{"market_hash_name":"Sticker | M80 | Austin 2025"},"8615":{"market_hash_name":"Sticker | M80 (Foil) | Austin 2025"},"8616":{"market_hash_name":"Sticker | M80 (Holo) | Austin 2025"},"8617":{"market_hash_name":"Sticker | M80 (Gold) | Austin 2025"},"8618":{"market_hash_name":"Sticker | Complexity Gaming | Austin 2025"},"8619":{"market_hash_name":"Sticker | Complexity Gaming (Foil) | Austin 2025"},"862":{"market_hash_name":"Sticker | shox (Gold) | Cluj-Napoca 2015"},"8620":{"market_hash_name":"Sticker | Complexity Gaming (Holo) | Austin 2025"},"8621":{"market_hash_name":"Sticker | Complexity Gaming (Gold) | Austin 2025"},"8622":{"market_hash_name":"Sticker | Wildcard | Austin 2025"},"8623":{"market_hash_name":"Sticker | Wildcard (Foil) | Austin 2025"},"8624":{"market_hash_name":"Sticker | Wildcard (Holo) | Austin 2025"},"8625":{"market_hash_name":"Sticker | Wildcard (Gold) | Austin 2025"},"8626":{"market_hash_name":"Sticker | HEROIC | Austin 2025"},"8627":{"market_hash_name":"Sticker | HEROIC (Foil) | Austin 2025"},"8628":{"market_hash_name":"Sticker | HEROIC (Holo) | Austin 2025"},"8629":{"market_hash_name":"Sticker | HEROIC (Gold) | Austin 2025"},"863":{"market_hash_name":"Sticker | SmithZz | Cluj-Napoca 2015"},"8630":{"market_hash_name":"Sticker | B8 | Austin 2025"},"8631":{"market_hash_name":"Sticker | B8 (Foil) | Austin 2025"},"8632":{"market_hash_name":"Sticker | B8 (Holo) | Austin 2025"},"8633":{"market_hash_name":"Sticker | B8 (Gold) | Austin 2025"},"8634":{"market_hash_name":"Sticker | OG | Austin 2025"},"8635":{"market_hash_name":"Sticker | OG (Foil) | Austin 2025"},"8636":{"market_hash_name":"Sticker | OG (Holo) | Austin 2025"},"8637":{"market_hash_name":"Sticker | OG (Gold) | Austin 2025"},"8638":{"market_hash_name":"Sticker | Nemiga | Austin 2025"},"8639":{"market_hash_name":"Sticker | Nemiga (Foil) | Austin 2025"},"864":{"market_hash_name":"Sticker | SmithZz (Foil) | Cluj-Napoca 2015"},"8640":{"market_hash_name":"Sticker | Nemiga (Holo) | Austin 2025"},"8641":{"market_hash_name":"Sticker | Nemiga (Gold) | Austin 2025"},"8642":{"market_hash_name":"Sticker | BetBoom | Austin 2025"},"8643":{"market_hash_name":"Sticker | BetBoom (Foil) | Austin 2025"},"8644":{"market_hash_name":"Sticker | BetBoom (Holo) | Austin 2025"},"8645":{"market_hash_name":"Sticker | BetBoom (Gold) | Austin 2025"},"8646":{"market_hash_name":"Sticker | Imperial Esports | Austin 2025"},"8647":{"market_hash_name":"Sticker | Imperial Esports (Foil) | Austin 2025"},"8648":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Austin 2025"},"8649":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Austin 2025"},"865":{"market_hash_name":"Sticker | SmithZz (Gold) | Cluj-Napoca 2015"},"8650":{"market_hash_name":"Sticker | NRG | Austin 2025"},"8651":{"market_hash_name":"Sticker | NRG (Foil) | Austin 2025"},"8652":{"market_hash_name":"Sticker | NRG (Holo) | Austin 2025"},"8653":{"market_hash_name":"Sticker | NRG (Gold) | Austin 2025"},"8654":{"market_hash_name":"Sticker | FlyQuest | Austin 2025"},"8655":{"market_hash_name":"Sticker | FlyQuest (Foil) | Austin 2025"},"8656":{"market_hash_name":"Sticker | FlyQuest (Holo) | Austin 2025"},"8657":{"market_hash_name":"Sticker | FlyQuest (Gold) | Austin 2025"},"8658":{"market_hash_name":"Sticker | Metizport | Austin 2025"},"8659":{"market_hash_name":"Sticker | Metizport (Foil) | Austin 2025"},"866":{"market_hash_name":"Sticker | cajunb | Cluj-Napoca 2015"},"8660":{"market_hash_name":"Sticker | Metizport (Holo) | Austin 2025"},"8661":{"market_hash_name":"Sticker | Metizport (Gold) | Austin 2025"},"8662":{"market_hash_name":"Sticker | TYLOO | Austin 2025"},"8663":{"market_hash_name":"Sticker | TYLOO (Foil) | Austin 2025"},"8664":{"market_hash_name":"Sticker | TYLOO (Holo) | Austin 2025"},"8665":{"market_hash_name":"Sticker | TYLOO (Gold) | Austin 2025"},"8666":{"market_hash_name":"Sticker | Fluxo | Austin 2025"},"8667":{"market_hash_name":"Sticker | Fluxo (Foil) | Austin 2025"},"8668":{"market_hash_name":"Sticker | Fluxo (Holo) | Austin 2025"},"8669":{"market_hash_name":"Sticker | Fluxo (Gold) | Austin 2025"},"867":{"market_hash_name":"Sticker | cajunb (Foil) | Cluj-Napoca 2015"},"8670":{"market_hash_name":"Sticker | Chinggis Warriors | Austin 2025"},"8671":{"market_hash_name":"Sticker | Chinggis Warriors (Foil) | Austin 2025"},"8672":{"market_hash_name":"Sticker | Chinggis Warriors (Holo) | Austin 2025"},"8673":{"market_hash_name":"Sticker | Chinggis Warriors (Gold) | Austin 2025"},"8674":{"market_hash_name":"Sticker | Lynn Vision | Austin 2025"},"8675":{"market_hash_name":"Sticker | Lynn Vision (Foil) | Austin 2025"},"8676":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Austin 2025"},"8677":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Austin 2025"},"8678":{"market_hash_name":"Sticker | Legacy | Austin 2025"},"8679":{"market_hash_name":"Sticker | Legacy (Foil) | Austin 2025"},"868":{"market_hash_name":"Sticker | cajunb (Gold) | Cluj-Napoca 2015"},"8680":{"market_hash_name":"Sticker | Legacy (Holo) | Austin 2025"},"8681":{"market_hash_name":"Sticker | Legacy (Gold) | Austin 2025"},"8682":{"market_hash_name":"Sticker | BLAST.tv | Austin 2025"},"8683":{"market_hash_name":"Sticker | BLAST.tv (Foil) | Austin 2025"},"8684":{"market_hash_name":"Sticker | BLAST.tv (Holo) | Austin 2025"},"8685":{"market_hash_name":"Sticker | BLAST.tv (Gold) | Austin 2025"},"869":{"market_hash_name":"Sticker | device | Cluj-Napoca 2015"},"87":{"market_hash_name":"Sticker | HellRaisers (Foil) | Katowice 2014"},"870":{"market_hash_name":"Sticker | device (Foil) | Cluj-Napoca 2015"},"871":{"market_hash_name":"Sticker | device (Gold) | Cluj-Napoca 2015"},"8719":{"market_hash_name":"Sticker | apEX | Austin 2025"},"872":{"market_hash_name":"Sticker | dupreeh | Cluj-Napoca 2015"},"8720":{"market_hash_name":"Sticker | apEX (Foil) | Austin 2025"},"8721":{"market_hash_name":"Sticker | apEX (Holo) | Austin 2025"},"8722":{"market_hash_name":"Sticker | apEX (Gold) | Austin 2025"},"8723":{"market_hash_name":"Sticker | ZywOo | Austin 2025"},"8724":{"market_hash_name":"Sticker | ZywOo (Foil) | Austin 2025"},"8725":{"market_hash_name":"Sticker | ZywOo (Holo) | Austin 2025"},"8726":{"market_hash_name":"Sticker | ZywOo (Gold) | Austin 2025"},"8727":{"market_hash_name":"Sticker | FlameZ | Austin 2025"},"8728":{"market_hash_name":"Sticker | FlameZ (Foil) | Austin 2025"},"8729":{"market_hash_name":"Sticker | FlameZ (Holo) | Austin 2025"},"873":{"market_hash_name":"Sticker | dupreeh (Foil) | Cluj-Napoca 2015"},"8730":{"market_hash_name":"Sticker | FlameZ (Gold) | Austin 2025"},"8731":{"market_hash_name":"Sticker | mezii | Austin 2025"},"8732":{"market_hash_name":"Sticker | mezii (Foil) | Austin 2025"},"8733":{"market_hash_name":"Sticker | mezii (Holo) | Austin 2025"},"8734":{"market_hash_name":"Sticker | mezii (Gold) | Austin 2025"},"8735":{"market_hash_name":"Sticker | ropz | Austin 2025"},"8736":{"market_hash_name":"Sticker | ropz (Foil) | Austin 2025"},"8737":{"market_hash_name":"Sticker | ropz (Holo) | Austin 2025"},"8738":{"market_hash_name":"Sticker | ropz (Gold) | Austin 2025"},"8739":{"market_hash_name":"Sticker | torzsi | Austin 2025"},"874":{"market_hash_name":"Sticker | dupreeh (Gold) | Cluj-Napoca 2015"},"8740":{"market_hash_name":"Sticker | torzsi (Foil) | Austin 2025"},"8741":{"market_hash_name":"Sticker | torzsi (Holo) | Austin 2025"},"8742":{"market_hash_name":"Sticker | torzsi (Gold) | Austin 2025"},"8743":{"market_hash_name":"Sticker | Jimpphat | Austin 2025"},"8744":{"market_hash_name":"Sticker | Jimpphat (Foil) | Austin 2025"},"8745":{"market_hash_name":"Sticker | Jimpphat (Holo) | Austin 2025"},"8746":{"market_hash_name":"Sticker | Jimpphat (Gold) | Austin 2025"},"8747":{"market_hash_name":"Sticker | Brollan | Austin 2025"},"8748":{"market_hash_name":"Sticker | Brollan (Foil) | Austin 2025"},"8749":{"market_hash_name":"Sticker | Brollan (Holo) | Austin 2025"},"875":{"market_hash_name":"Sticker | karrigan | Cluj-Napoca 2015"},"8750":{"market_hash_name":"Sticker | Brollan (Gold) | Austin 2025"},"8751":{"market_hash_name":"Sticker | Spinx | Austin 2025"},"8752":{"market_hash_name":"Sticker | Spinx (Foil) | Austin 2025"},"8753":{"market_hash_name":"Sticker | Spinx (Holo) | Austin 2025"},"8754":{"market_hash_name":"Sticker | Spinx (Gold) | Austin 2025"},"8755":{"market_hash_name":"Sticker | xertioN | Austin 2025"},"8756":{"market_hash_name":"Sticker | xertioN (Foil) | Austin 2025"},"8757":{"market_hash_name":"Sticker | xertioN (Holo) | Austin 2025"},"8758":{"market_hash_name":"Sticker | xertioN (Gold) | Austin 2025"},"8759":{"market_hash_name":"Sticker | chopper | Austin 2025"},"876":{"market_hash_name":"Sticker | karrigan (Foil) | Cluj-Napoca 2015"},"8760":{"market_hash_name":"Sticker | chopper (Foil) | Austin 2025"},"8761":{"market_hash_name":"Sticker | chopper (Holo) | Austin 2025"},"8762":{"market_hash_name":"Sticker | chopper (Gold) | Austin 2025"},"8763":{"market_hash_name":"Sticker | magixx | Austin 2025"},"8764":{"market_hash_name":"Sticker | magixx (Foil) | Austin 2025"},"8765":{"market_hash_name":"Sticker | magixx (Holo) | Austin 2025"},"8766":{"market_hash_name":"Sticker | magixx (Gold) | Austin 2025"},"8767":{"market_hash_name":"Sticker | donk | Austin 2025"},"8768":{"market_hash_name":"Sticker | donk (Foil) | Austin 2025"},"8769":{"market_hash_name":"Sticker | donk (Holo) | Austin 2025"},"877":{"market_hash_name":"Sticker | karrigan (Gold) | Cluj-Napoca 2015"},"8770":{"market_hash_name":"Sticker | donk (Gold) | Austin 2025"},"8771":{"market_hash_name":"Sticker | sh1ro | Austin 2025"},"8772":{"market_hash_name":"Sticker | sh1ro (Foil) | Austin 2025"},"8773":{"market_hash_name":"Sticker | sh1ro (Holo) | Austin 2025"},"8774":{"market_hash_name":"Sticker | sh1ro (Gold) | Austin 2025"},"8775":{"market_hash_name":"Sticker | zont1x | Austin 2025"},"8776":{"market_hash_name":"Sticker | zont1x (Foil) | Austin 2025"},"8777":{"market_hash_name":"Sticker | zont1x (Holo) | Austin 2025"},"8778":{"market_hash_name":"Sticker | zont1x (Gold) | Austin 2025"},"8779":{"market_hash_name":"Sticker | bLitz | Austin 2025"},"878":{"market_hash_name":"Sticker | Xyp9x | Cluj-Napoca 2015"},"8780":{"market_hash_name":"Sticker | bLitz (Foil) | Austin 2025"},"8781":{"market_hash_name":"Sticker | bLitz (Holo) | Austin 2025"},"8782":{"market_hash_name":"Sticker | bLitz (Gold) | Austin 2025"},"8783":{"market_hash_name":"Sticker | Techno4K | Austin 2025"},"8784":{"market_hash_name":"Sticker | Techno4K (Foil) | Austin 2025"},"8785":{"market_hash_name":"Sticker | Techno4K (Holo) | Austin 2025"},"8786":{"market_hash_name":"Sticker | Techno4K (Gold) | Austin 2025"},"8787":{"market_hash_name":"Sticker | Senzu | Austin 2025"},"8788":{"market_hash_name":"Sticker | Senzu (Foil) | Austin 2025"},"8789":{"market_hash_name":"Sticker | Senzu (Holo) | Austin 2025"},"879":{"market_hash_name":"Sticker | Xyp9x (Foil) | Cluj-Napoca 2015"},"8790":{"market_hash_name":"Sticker | Senzu (Gold) | Austin 2025"},"8791":{"market_hash_name":"Sticker | 910 | Austin 2025"},"8792":{"market_hash_name":"Sticker | 910 (Foil) | Austin 2025"},"8793":{"market_hash_name":"Sticker | 910 (Holo) | Austin 2025"},"8794":{"market_hash_name":"Sticker | 910 (Gold) | Austin 2025"},"8795":{"market_hash_name":"Sticker | mzinho | Austin 2025"},"8796":{"market_hash_name":"Sticker | mzinho (Foil) | Austin 2025"},"8797":{"market_hash_name":"Sticker | mzinho (Holo) | Austin 2025"},"8798":{"market_hash_name":"Sticker | mzinho (Gold) | Austin 2025"},"8799":{"market_hash_name":"Sticker | MAJ3R | Austin 2025"},"88":{"market_hash_name":"Sticker | iBUYPOWER (Foil) | Katowice 2014"},"880":{"market_hash_name":"Sticker | Xyp9x (Gold) | Cluj-Napoca 2015"},"8800":{"market_hash_name":"Sticker | MAJ3R (Foil) | Austin 2025"},"8801":{"market_hash_name":"Sticker | MAJ3R (Holo) | Austin 2025"},"8802":{"market_hash_name":"Sticker | MAJ3R (Gold) | Austin 2025"},"8803":{"market_hash_name":"Sticker | XANTARES | Austin 2025"},"8804":{"market_hash_name":"Sticker | XANTARES (Foil) | Austin 2025"},"8805":{"market_hash_name":"Sticker | XANTARES (Holo) | Austin 2025"},"8806":{"market_hash_name":"Sticker | XANTARES (Gold) | Austin 2025"},"8807":{"market_hash_name":"Sticker | jottAAA | Austin 2025"},"8808":{"market_hash_name":"Sticker | jottAAA (Foil) | Austin 2025"},"8809":{"market_hash_name":"Sticker | jottAAA (Holo) | Austin 2025"},"881":{"market_hash_name":"Sticker | Furlan | Cluj-Napoca 2015"},"8810":{"market_hash_name":"Sticker | jottAAA (Gold) | Austin 2025"},"8811":{"market_hash_name":"Sticker | Wicadia | Austin 2025"},"8812":{"market_hash_name":"Sticker | Wicadia (Foil) | Austin 2025"},"8813":{"market_hash_name":"Sticker | Wicadia (Holo) | Austin 2025"},"8814":{"market_hash_name":"Sticker | Wicadia (Gold) | Austin 2025"},"8815":{"market_hash_name":"Sticker | woxic | Austin 2025"},"8816":{"market_hash_name":"Sticker | woxic (Foil) | Austin 2025"},"8817":{"market_hash_name":"Sticker | woxic (Holo) | Austin 2025"},"8818":{"market_hash_name":"Sticker | woxic (Gold) | Austin 2025"},"8819":{"market_hash_name":"Sticker | w0nderful | Austin 2025"},"882":{"market_hash_name":"Sticker | Furlan (Foil) | Cluj-Napoca 2015"},"8820":{"market_hash_name":"Sticker | w0nderful (Foil) | Austin 2025"},"8821":{"market_hash_name":"Sticker | w0nderful (Holo) | Austin 2025"},"8822":{"market_hash_name":"Sticker | w0nderful (Gold) | Austin 2025"},"8823":{"market_hash_name":"Sticker | Aleksib | Austin 2025"},"8824":{"market_hash_name":"Sticker | Aleksib (Foil) | Austin 2025"},"8825":{"market_hash_name":"Sticker | Aleksib (Holo) | Austin 2025"},"8826":{"market_hash_name":"Sticker | Aleksib (Gold) | Austin 2025"},"8827":{"market_hash_name":"Sticker | jL | Austin 2025"},"8828":{"market_hash_name":"Sticker | jL (Foil) | Austin 2025"},"8829":{"market_hash_name":"Sticker | jL (Holo) | Austin 2025"},"883":{"market_hash_name":"Sticker | Furlan (Gold) | Cluj-Napoca 2015"},"8830":{"market_hash_name":"Sticker | jL (Gold) | Austin 2025"},"8831":{"market_hash_name":"Sticker | b1t | Austin 2025"},"8832":{"market_hash_name":"Sticker | b1t (Foil) | Austin 2025"},"8833":{"market_hash_name":"Sticker | b1t (Holo) | Austin 2025"},"8834":{"market_hash_name":"Sticker | b1t (Gold) | Austin 2025"},"8835":{"market_hash_name":"Sticker | iM | Austin 2025"},"8836":{"market_hash_name":"Sticker | iM (Foil) | Austin 2025"},"8837":{"market_hash_name":"Sticker | iM (Holo) | Austin 2025"},"8838":{"market_hash_name":"Sticker | iM (Gold) | Austin 2025"},"8839":{"market_hash_name":"Sticker | Snax | Austin 2025"},"884":{"market_hash_name":"Sticker | GruBy | Cluj-Napoca 2015"},"8840":{"market_hash_name":"Sticker | Snax (Foil) | Austin 2025"},"8841":{"market_hash_name":"Sticker | Snax (Holo) | Austin 2025"},"8842":{"market_hash_name":"Sticker | Snax (Gold) | Austin 2025"},"8843":{"market_hash_name":"Sticker | huNter- | Austin 2025"},"8844":{"market_hash_name":"Sticker | huNter- (Foil) | Austin 2025"},"8845":{"market_hash_name":"Sticker | huNter- (Holo) | Austin 2025"},"8846":{"market_hash_name":"Sticker | huNter- (Gold) | Austin 2025"},"8847":{"market_hash_name":"Sticker | malbsMd | Austin 2025"},"8848":{"market_hash_name":"Sticker | malbsMd (Foil) | Austin 2025"},"8849":{"market_hash_name":"Sticker | malbsMd (Holo) | Austin 2025"},"885":{"market_hash_name":"Sticker | GruBy (Foil) | Cluj-Napoca 2015"},"8850":{"market_hash_name":"Sticker | malbsMd (Gold) | Austin 2025"},"8851":{"market_hash_name":"Sticker | Heavygod | Austin 2025"},"8852":{"market_hash_name":"Sticker | Heavygod (Foil) | Austin 2025"},"8853":{"market_hash_name":"Sticker | Heavygod (Holo) | Austin 2025"},"8854":{"market_hash_name":"Sticker | Heavygod (Gold) | Austin 2025"},"8855":{"market_hash_name":"Sticker | hades | Austin 2025"},"8856":{"market_hash_name":"Sticker | hades (Foil) | Austin 2025"},"8857":{"market_hash_name":"Sticker | hades (Holo) | Austin 2025"},"8858":{"market_hash_name":"Sticker | hades (Gold) | Austin 2025"},"8859":{"market_hash_name":"Sticker | Twistzz | Austin 2025"},"886":{"market_hash_name":"Sticker | GruBy (Gold) | Cluj-Napoca 2015"},"8860":{"market_hash_name":"Sticker | Twistzz (Foil) | Austin 2025"},"8861":{"market_hash_name":"Sticker | Twistzz (Holo) | Austin 2025"},"8862":{"market_hash_name":"Sticker | Twistzz (Gold) | Austin 2025"},"8863":{"market_hash_name":"Sticker | ultimate | Austin 2025"},"8864":{"market_hash_name":"Sticker | ultimate (Foil) | Austin 2025"},"8865":{"market_hash_name":"Sticker | ultimate (Holo) | Austin 2025"},"8866":{"market_hash_name":"Sticker | ultimate (Gold) | Austin 2025"},"8867":{"market_hash_name":"Sticker | NertZ | Austin 2025"},"8868":{"market_hash_name":"Sticker | NertZ (Foil) | Austin 2025"},"8869":{"market_hash_name":"Sticker | NertZ (Holo) | Austin 2025"},"887":{"market_hash_name":"Sticker | Hyper | Cluj-Napoca 2015"},"8870":{"market_hash_name":"Sticker | NertZ (Gold) | Austin 2025"},"8871":{"market_hash_name":"Sticker | siuhy | Austin 2025"},"8872":{"market_hash_name":"Sticker | siuhy (Foil) | Austin 2025"},"8873":{"market_hash_name":"Sticker | siuhy (Holo) | Austin 2025"},"8874":{"market_hash_name":"Sticker | siuhy (Gold) | Austin 2025"},"8875":{"market_hash_name":"Sticker | NAF | Austin 2025"},"8876":{"market_hash_name":"Sticker | NAF (Foil) | Austin 2025"},"8877":{"market_hash_name":"Sticker | NAF (Holo) | Austin 2025"},"8878":{"market_hash_name":"Sticker | NAF (Gold) | Austin 2025"},"8879":{"market_hash_name":"Sticker | NiKo | Austin 2025"},"888":{"market_hash_name":"Sticker | Hyper (Foil) | Cluj-Napoca 2015"},"8880":{"market_hash_name":"Sticker | NiKo (Foil) | Austin 2025"},"8881":{"market_hash_name":"Sticker | NiKo (Holo) | Austin 2025"},"8882":{"market_hash_name":"Sticker | NiKo (Gold) | Austin 2025"},"8883":{"market_hash_name":"Sticker | kyxsan | Austin 2025"},"8884":{"market_hash_name":"Sticker | kyxsan (Foil) | Austin 2025"},"8885":{"market_hash_name":"Sticker | kyxsan (Holo) | Austin 2025"},"8886":{"market_hash_name":"Sticker | kyxsan (Gold) | Austin 2025"},"8887":{"market_hash_name":"Sticker | m0NESY | Austin 2025"},"8888":{"market_hash_name":"Sticker | m0NESY (Foil) | Austin 2025"},"8889":{"market_hash_name":"Sticker | m0NESY (Holo) | Austin 2025"},"889":{"market_hash_name":"Sticker | Hyper (Gold) | Cluj-Napoca 2015"},"8890":{"market_hash_name":"Sticker | m0NESY (Gold) | Austin 2025"},"8891":{"market_hash_name":"Sticker | TeSeS | Austin 2025"},"8892":{"market_hash_name":"Sticker | TeSeS (Foil) | Austin 2025"},"8893":{"market_hash_name":"Sticker | TeSeS (Holo) | Austin 2025"},"8894":{"market_hash_name":"Sticker | TeSeS (Gold) | Austin 2025"},"8895":{"market_hash_name":"Sticker | Magisk | Austin 2025"},"8896":{"market_hash_name":"Sticker | Magisk (Foil) | Austin 2025"},"8897":{"market_hash_name":"Sticker | Magisk (Holo) | Austin 2025"},"8898":{"market_hash_name":"Sticker | Magisk (Gold) | Austin 2025"},"8899":{"market_hash_name":"Sticker | karrigan | Austin 2025"},"89":{"market_hash_name":"Sticker | Team LDLC.com (Foil) | Katowice 2014"},"890":{"market_hash_name":"Sticker | peet | Cluj-Napoca 2015"},"8900":{"market_hash_name":"Sticker | karrigan (Foil) | Austin 2025"},"8901":{"market_hash_name":"Sticker | karrigan (Holo) | Austin 2025"},"8902":{"market_hash_name":"Sticker | karrigan (Gold) | Austin 2025"},"8903":{"market_hash_name":"Sticker | broky | Austin 2025"},"8904":{"market_hash_name":"Sticker | broky (Foil) | Austin 2025"},"8905":{"market_hash_name":"Sticker | broky (Holo) | Austin 2025"},"8906":{"market_hash_name":"Sticker | broky (Gold) | Austin 2025"},"8907":{"market_hash_name":"Sticker | EliGE | Austin 2025"},"8908":{"market_hash_name":"Sticker | EliGE (Foil) | Austin 2025"},"8909":{"market_hash_name":"Sticker | EliGE (Holo) | Austin 2025"},"891":{"market_hash_name":"Sticker | peet (Foil) | Cluj-Napoca 2015"},"8910":{"market_hash_name":"Sticker | EliGE (Gold) | Austin 2025"},"8911":{"market_hash_name":"Sticker | frozen | Austin 2025"},"8912":{"market_hash_name":"Sticker | frozen (Foil) | Austin 2025"},"8913":{"market_hash_name":"Sticker | frozen (Holo) | Austin 2025"},"8914":{"market_hash_name":"Sticker | frozen (Gold) | Austin 2025"},"8915":{"market_hash_name":"Sticker | rain | Austin 2025"},"8916":{"market_hash_name":"Sticker | rain (Foil) | Austin 2025"},"8917":{"market_hash_name":"Sticker | rain (Holo) | Austin 2025"},"8918":{"market_hash_name":"Sticker | rain (Gold) | Austin 2025"},"8919":{"market_hash_name":"Sticker | Maka | Austin 2025"},"892":{"market_hash_name":"Sticker | peet (Gold) | Cluj-Napoca 2015"},"8920":{"market_hash_name":"Sticker | Maka (Foil) | Austin 2025"},"8921":{"market_hash_name":"Sticker | Maka (Holo) | Austin 2025"},"8922":{"market_hash_name":"Sticker | Maka (Gold) | Austin 2025"},"8923":{"market_hash_name":"Sticker | Ex3rcice | Austin 2025"},"8924":{"market_hash_name":"Sticker | Ex3rcice (Foil) | Austin 2025"},"8925":{"market_hash_name":"Sticker | Ex3rcice (Holo) | Austin 2025"},"8926":{"market_hash_name":"Sticker | Ex3rcice (Gold) | Austin 2025"},"8927":{"market_hash_name":"Sticker | Lucky | Austin 2025"},"8928":{"market_hash_name":"Sticker | Lucky (Foil) | Austin 2025"},"8929":{"market_hash_name":"Sticker | Lucky (Holo) | Austin 2025"},"893":{"market_hash_name":"Sticker | rallen | Cluj-Napoca 2015"},"8930":{"market_hash_name":"Sticker | Lucky (Gold) | Austin 2025"},"8931":{"market_hash_name":"Sticker | Graviti | Austin 2025"},"8932":{"market_hash_name":"Sticker | Graviti (Foil) | Austin 2025"},"8933":{"market_hash_name":"Sticker | Graviti (Holo) | Austin 2025"},"8934":{"market_hash_name":"Sticker | Graviti (Gold) | Austin 2025"},"8935":{"market_hash_name":"Sticker | bodyy | Austin 2025"},"8936":{"market_hash_name":"Sticker | bodyy (Foil) | Austin 2025"},"8937":{"market_hash_name":"Sticker | bodyy (Holo) | Austin 2025"},"8938":{"market_hash_name":"Sticker | bodyy (Gold) | Austin 2025"},"8939":{"market_hash_name":"Sticker | FL1T | Austin 2025"},"894":{"market_hash_name":"Sticker | rallen (Foil) | Cluj-Napoca 2015"},"8940":{"market_hash_name":"Sticker | FL1T (Foil) | Austin 2025"},"8941":{"market_hash_name":"Sticker | FL1T (Holo) | Austin 2025"},"8942":{"market_hash_name":"Sticker | FL1T (Gold) | Austin 2025"},"8943":{"market_hash_name":"Sticker | fame | Austin 2025"},"8944":{"market_hash_name":"Sticker | fame (Foil) | Austin 2025"},"8945":{"market_hash_name":"Sticker | fame (Holo) | Austin 2025"},"8946":{"market_hash_name":"Sticker | fame (Gold) | Austin 2025"},"8947":{"market_hash_name":"Sticker | electronic | Austin 2025"},"8948":{"market_hash_name":"Sticker | electronic (Foil) | Austin 2025"},"8949":{"market_hash_name":"Sticker | electronic (Holo) | Austin 2025"},"895":{"market_hash_name":"Sticker | rallen (Gold) | Cluj-Napoca 2015"},"8950":{"market_hash_name":"Sticker | electronic (Gold) | Austin 2025"},"8951":{"market_hash_name":"Sticker | FL4MUS | Austin 2025"},"8952":{"market_hash_name":"Sticker | FL4MUS (Foil) | Austin 2025"},"8953":{"market_hash_name":"Sticker | FL4MUS (Holo) | Austin 2025"},"8954":{"market_hash_name":"Sticker | FL4MUS (Gold) | Austin 2025"},"8955":{"market_hash_name":"Sticker | ICY | Austin 2025"},"8956":{"market_hash_name":"Sticker | ICY (Foil) | Austin 2025"},"8957":{"market_hash_name":"Sticker | ICY (Holo) | Austin 2025"},"8958":{"market_hash_name":"Sticker | ICY (Gold) | Austin 2025"},"8959":{"market_hash_name":"Sticker | biguzera | Austin 2025"},"896":{"market_hash_name":"Sticker | byali | Cluj-Napoca 2015"},"8960":{"market_hash_name":"Sticker | biguzera (Foil) | Austin 2025"},"8961":{"market_hash_name":"Sticker | biguzera (Holo) | Austin 2025"},"8962":{"market_hash_name":"Sticker | biguzera (Gold) | Austin 2025"},"8963":{"market_hash_name":"Sticker | NQZ | Austin 2025"},"8964":{"market_hash_name":"Sticker | NQZ (Foil) | Austin 2025"},"8965":{"market_hash_name":"Sticker | NQZ (Holo) | Austin 2025"},"8966":{"market_hash_name":"Sticker | NQZ (Gold) | Austin 2025"},"8967":{"market_hash_name":"Sticker | snow | Austin 2025"},"8968":{"market_hash_name":"Sticker | snow (Foil) | Austin 2025"},"8969":{"market_hash_name":"Sticker | snow (Holo) | Austin 2025"},"897":{"market_hash_name":"Sticker | byali (Foil) | Cluj-Napoca 2015"},"8970":{"market_hash_name":"Sticker | snow (Gold) | Austin 2025"},"8971":{"market_hash_name":"Sticker | dav1deuS | Austin 2025"},"8972":{"market_hash_name":"Sticker | dav1deuS (Foil) | Austin 2025"},"8973":{"market_hash_name":"Sticker | dav1deuS (Holo) | Austin 2025"},"8974":{"market_hash_name":"Sticker | dav1deuS (Gold) | Austin 2025"},"8975":{"market_hash_name":"Sticker | dgt | Austin 2025"},"8976":{"market_hash_name":"Sticker | dgt (Foil) | Austin 2025"},"8977":{"market_hash_name":"Sticker | dgt (Holo) | Austin 2025"},"8978":{"market_hash_name":"Sticker | dgt (Gold) | Austin 2025"},"8979":{"market_hash_name":"Sticker | FalleN | Austin 2025"},"898":{"market_hash_name":"Sticker | byali (Gold) | Cluj-Napoca 2015"},"8980":{"market_hash_name":"Sticker | FalleN (Foil) | Austin 2025"},"8981":{"market_hash_name":"Sticker | FalleN (Holo) | Austin 2025"},"8982":{"market_hash_name":"Sticker | FalleN (Gold) | Austin 2025"},"8983":{"market_hash_name":"Sticker | yuurih | Austin 2025"},"8984":{"market_hash_name":"Sticker | yuurih (Foil) | Austin 2025"},"8985":{"market_hash_name":"Sticker | yuurih (Holo) | Austin 2025"},"8986":{"market_hash_name":"Sticker | yuurih (Gold) | Austin 2025"},"8987":{"market_hash_name":"Sticker | KSCERATO | Austin 2025"},"8988":{"market_hash_name":"Sticker | KSCERATO (Foil) | Austin 2025"},"8989":{"market_hash_name":"Sticker | KSCERATO (Holo) | Austin 2025"},"899":{"market_hash_name":"Sticker | NEO | Cluj-Napoca 2015"},"8990":{"market_hash_name":"Sticker | KSCERATO (Gold) | Austin 2025"},"8991":{"market_hash_name":"Sticker | skullz | Austin 2025"},"8992":{"market_hash_name":"Sticker | skullz (Foil) | Austin 2025"},"8993":{"market_hash_name":"Sticker | skullz (Holo) | Austin 2025"},"8994":{"market_hash_name":"Sticker | skullz (Gold) | Austin 2025"},"8995":{"market_hash_name":"Sticker | molodoy | Austin 2025"},"8996":{"market_hash_name":"Sticker | molodoy (Foil) | Austin 2025"},"8997":{"market_hash_name":"Sticker | molodoy (Holo) | Austin 2025"},"8998":{"market_hash_name":"Sticker | molodoy (Gold) | Austin 2025"},"8999":{"market_hash_name":"Sticker | exit | Austin 2025"},"9":{"market_hash_name":"Sticker | Mountain"},"90":{"market_hash_name":"Sticker | LGB eSports (Foil) | Katowice 2014"},"900":{"market_hash_name":"Sticker | NEO (Foil) | Cluj-Napoca 2015"},"9000":{"market_hash_name":"Sticker | exit (Foil) | Austin 2025"},"9001":{"market_hash_name":"Sticker | exit (Holo) | Austin 2025"},"9002":{"market_hash_name":"Sticker | exit (Gold) | Austin 2025"},"9003":{"market_hash_name":"Sticker | insani | Austin 2025"},"9004":{"market_hash_name":"Sticker | insani (Foil) | Austin 2025"},"9005":{"market_hash_name":"Sticker | insani (Holo) | Austin 2025"},"9006":{"market_hash_name":"Sticker | insani (Gold) | Austin 2025"},"9007":{"market_hash_name":"Sticker | Lucaozy | Austin 2025"},"9008":{"market_hash_name":"Sticker | Lucaozy (Foil) | Austin 2025"},"9009":{"market_hash_name":"Sticker | Lucaozy (Holo) | Austin 2025"},"901":{"market_hash_name":"Sticker | NEO (Gold) | Cluj-Napoca 2015"},"9010":{"market_hash_name":"Sticker | Lucaozy (Gold) | Austin 2025"},"9011":{"market_hash_name":"Sticker | brnz4n | Austin 2025"},"9012":{"market_hash_name":"Sticker | brnz4n (Foil) | Austin 2025"},"9013":{"market_hash_name":"Sticker | brnz4n (Holo) | Austin 2025"},"9014":{"market_hash_name":"Sticker | brnz4n (Gold) | Austin 2025"},"9015":{"market_hash_name":"Sticker | saffee | Austin 2025"},"9016":{"market_hash_name":"Sticker | saffee (Foil) | Austin 2025"},"9017":{"market_hash_name":"Sticker | saffee (Holo) | Austin 2025"},"9018":{"market_hash_name":"Sticker | saffee (Gold) | Austin 2025"},"9019":{"market_hash_name":"Sticker | reck | Austin 2025"},"902":{"market_hash_name":"Sticker | pashaBiceps | Cluj-Napoca 2015"},"9020":{"market_hash_name":"Sticker | reck (Foil) | Austin 2025"},"9021":{"market_hash_name":"Sticker | reck (Holo) | Austin 2025"},"9022":{"market_hash_name":"Sticker | reck (Gold) | Austin 2025"},"9023":{"market_hash_name":"Sticker | Lake | Austin 2025"},"9024":{"market_hash_name":"Sticker | Lake (Foil) | Austin 2025"},"9025":{"market_hash_name":"Sticker | Lake (Holo) | Austin 2025"},"9026":{"market_hash_name":"Sticker | Lake (Gold) | Austin 2025"},"9027":{"market_hash_name":"Sticker | Swisher | Austin 2025"},"9028":{"market_hash_name":"Sticker | Swisher (Foil) | Austin 2025"},"9029":{"market_hash_name":"Sticker | Swisher (Holo) | Austin 2025"},"903":{"market_hash_name":"Sticker | pashaBiceps (Foil) | Cluj-Napoca 2015"},"9030":{"market_hash_name":"Sticker | Swisher (Gold) | Austin 2025"},"9031":{"market_hash_name":"Sticker | slaxz- | Austin 2025"},"9032":{"market_hash_name":"Sticker | slaxz- (Foil) | Austin 2025"},"9033":{"market_hash_name":"Sticker | slaxz- (Holo) | Austin 2025"},"9034":{"market_hash_name":"Sticker | slaxz- (Gold) | Austin 2025"},"9035":{"market_hash_name":"Sticker | s1n | Austin 2025"},"9036":{"market_hash_name":"Sticker | s1n (Foil) | Austin 2025"},"9037":{"market_hash_name":"Sticker | s1n (Holo) | Austin 2025"},"9038":{"market_hash_name":"Sticker | s1n (Gold) | Austin 2025"},"9039":{"market_hash_name":"Sticker | Cxzi | Austin 2025"},"904":{"market_hash_name":"Sticker | pashaBiceps (Gold) | Cluj-Napoca 2015"},"9040":{"market_hash_name":"Sticker | Cxzi (Foil) | Austin 2025"},"9041":{"market_hash_name":"Sticker | Cxzi (Holo) | Austin 2025"},"9042":{"market_hash_name":"Sticker | Cxzi (Gold) | Austin 2025"},"9043":{"market_hash_name":"Sticker | Grim | Austin 2025"},"9044":{"market_hash_name":"Sticker | Grim (Foil) | Austin 2025"},"9045":{"market_hash_name":"Sticker | Grim (Holo) | Austin 2025"},"9046":{"market_hash_name":"Sticker | Grim (Gold) | Austin 2025"},"9047":{"market_hash_name":"Sticker | hallzerk | Austin 2025"},"9048":{"market_hash_name":"Sticker | hallzerk (Foil) | Austin 2025"},"9049":{"market_hash_name":"Sticker | hallzerk (Holo) | Austin 2025"},"905":{"market_hash_name":"Sticker | Snax | Cluj-Napoca 2015"},"9050":{"market_hash_name":"Sticker | hallzerk (Gold) | Austin 2025"},"9051":{"market_hash_name":"Sticker | JT | Austin 2025"},"9052":{"market_hash_name":"Sticker | JT (Foil) | Austin 2025"},"9053":{"market_hash_name":"Sticker | JT (Holo) | Austin 2025"},"9054":{"market_hash_name":"Sticker | JT (Gold) | Austin 2025"},"9055":{"market_hash_name":"Sticker | nicx | Austin 2025"},"9056":{"market_hash_name":"Sticker | nicx (Foil) | Austin 2025"},"9057":{"market_hash_name":"Sticker | nicx (Holo) | Austin 2025"},"9058":{"market_hash_name":"Sticker | nicx (Gold) | Austin 2025"},"9059":{"market_hash_name":"Sticker | stanislaw | Austin 2025"},"906":{"market_hash_name":"Sticker | Snax (Foil) | Cluj-Napoca 2015"},"9060":{"market_hash_name":"Sticker | stanislaw (Foil) | Austin 2025"},"9061":{"market_hash_name":"Sticker | stanislaw (Holo) | Austin 2025"},"9062":{"market_hash_name":"Sticker | stanislaw (Gold) | Austin 2025"},"9063":{"market_hash_name":"Sticker | Sonic | Austin 2025"},"9064":{"market_hash_name":"Sticker | Sonic (Foil) | Austin 2025"},"9065":{"market_hash_name":"Sticker | Sonic (Holo) | Austin 2025"},"9066":{"market_hash_name":"Sticker | Sonic (Gold) | Austin 2025"},"9067":{"market_hash_name":"Sticker | phzy | Austin 2025"},"9068":{"market_hash_name":"Sticker | phzy (Foil) | Austin 2025"},"9069":{"market_hash_name":"Sticker | phzy (Holo) | Austin 2025"},"907":{"market_hash_name":"Sticker | Snax (Gold) | Cluj-Napoca 2015"},"9070":{"market_hash_name":"Sticker | phzy (Gold) | Austin 2025"},"9071":{"market_hash_name":"Sticker | susp | Austin 2025"},"9072":{"market_hash_name":"Sticker | susp (Foil) | Austin 2025"},"9073":{"market_hash_name":"Sticker | susp (Holo) | Austin 2025"},"9074":{"market_hash_name":"Sticker | susp (Gold) | Austin 2025"},"9075":{"market_hash_name":"Sticker | JBa | Austin 2025"},"9076":{"market_hash_name":"Sticker | JBa (Foil) | Austin 2025"},"9077":{"market_hash_name":"Sticker | JBa (Holo) | Austin 2025"},"9078":{"market_hash_name":"Sticker | JBa (Gold) | Austin 2025"},"9079":{"market_hash_name":"Sticker | tN1R | Austin 2025"},"908":{"market_hash_name":"Sticker | TaZ | Cluj-Napoca 2015"},"9080":{"market_hash_name":"Sticker | tN1R (Foil) | Austin 2025"},"9081":{"market_hash_name":"Sticker | tN1R (Holo) | Austin 2025"},"9082":{"market_hash_name":"Sticker | tN1R (Gold) | Austin 2025"},"9083":{"market_hash_name":"Sticker | SunPayus | Austin 2025"},"9084":{"market_hash_name":"Sticker | SunPayus (Foil) | Austin 2025"},"9085":{"market_hash_name":"Sticker | SunPayus (Holo) | Austin 2025"},"9086":{"market_hash_name":"Sticker | SunPayus (Gold) | Austin 2025"},"9087":{"market_hash_name":"Sticker | xfl0ud | Austin 2025"},"9088":{"market_hash_name":"Sticker | xfl0ud (Foil) | Austin 2025"},"9089":{"market_hash_name":"Sticker | xfl0ud (Holo) | Austin 2025"},"909":{"market_hash_name":"Sticker | TaZ (Foil) | Cluj-Napoca 2015"},"9090":{"market_hash_name":"Sticker | xfl0ud (Gold) | Austin 2025"},"9091":{"market_hash_name":"Sticker | LNZ | Austin 2025"},"9092":{"market_hash_name":"Sticker | LNZ (Foil) | Austin 2025"},"9093":{"market_hash_name":"Sticker | LNZ (Holo) | Austin 2025"},"9094":{"market_hash_name":"Sticker | LNZ (Gold) | Austin 2025"},"9095":{"market_hash_name":"Sticker | yxngstxr | Austin 2025"},"9096":{"market_hash_name":"Sticker | yxngstxr (Foil) | Austin 2025"},"9097":{"market_hash_name":"Sticker | yxngstxr (Holo) | Austin 2025"},"9098":{"market_hash_name":"Sticker | yxngstxr (Gold) | Austin 2025"},"9099":{"market_hash_name":"Sticker | headtr1ck | Austin 2025"},"91":{"market_hash_name":"Sticker | mousesports (Foil) | Katowice 2014"},"910":{"market_hash_name":"Sticker | TaZ (Gold) | Cluj-Napoca 2015"},"9100":{"market_hash_name":"Sticker | headtr1ck (Foil) | Austin 2025"},"9101":{"market_hash_name":"Sticker | headtr1ck (Holo) | Austin 2025"},"9102":{"market_hash_name":"Sticker | headtr1ck (Gold) | Austin 2025"},"9103":{"market_hash_name":"Sticker | kensizor | Austin 2025"},"9104":{"market_hash_name":"Sticker | kensizor (Foil) | Austin 2025"},"9105":{"market_hash_name":"Sticker | kensizor (Holo) | Austin 2025"},"9106":{"market_hash_name":"Sticker | kensizor (Gold) | Austin 2025"},"9107":{"market_hash_name":"Sticker | esenthial | Austin 2025"},"9108":{"market_hash_name":"Sticker | esenthial (Foil) | Austin 2025"},"9109":{"market_hash_name":"Sticker | esenthial (Holo) | Austin 2025"},"911":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Cluj-Napoca 2015"},"9110":{"market_hash_name":"Sticker | esenthial (Gold) | Austin 2025"},"9111":{"market_hash_name":"Sticker | npl | Austin 2025"},"9112":{"market_hash_name":"Sticker | npl (Foil) | Austin 2025"},"9113":{"market_hash_name":"Sticker | npl (Holo) | Austin 2025"},"9114":{"market_hash_name":"Sticker | npl (Gold) | Austin 2025"},"9115":{"market_hash_name":"Sticker | alex666 | Austin 2025"},"9116":{"market_hash_name":"Sticker | alex666 (Foil) | Austin 2025"},"9117":{"market_hash_name":"Sticker | alex666 (Holo) | Austin 2025"},"9118":{"market_hash_name":"Sticker | alex666 (Gold) | Austin 2025"},"9119":{"market_hash_name":"Sticker | Chr1zN | Austin 2025"},"912":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Cluj-Napoca 2015"},"9120":{"market_hash_name":"Sticker | Chr1zN (Foil) | Austin 2025"},"9121":{"market_hash_name":"Sticker | Chr1zN (Holo) | Austin 2025"},"9122":{"market_hash_name":"Sticker | Chr1zN (Gold) | Austin 2025"},"9123":{"market_hash_name":"Sticker | F1KU | Austin 2025"},"9124":{"market_hash_name":"Sticker | F1KU (Foil) | Austin 2025"},"9125":{"market_hash_name":"Sticker | F1KU (Holo) | Austin 2025"},"9126":{"market_hash_name":"Sticker | F1KU (Gold) | Austin 2025"},"9127":{"market_hash_name":"Sticker | nicoodoz | Austin 2025"},"9128":{"market_hash_name":"Sticker | nicoodoz (Foil) | Austin 2025"},"9129":{"market_hash_name":"Sticker | nicoodoz (Holo) | Austin 2025"},"913":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Cluj-Napoca 2015"},"9130":{"market_hash_name":"Sticker | nicoodoz (Gold) | Austin 2025"},"9131":{"market_hash_name":"Sticker | spooke | Austin 2025"},"9132":{"market_hash_name":"Sticker | spooke (Foil) | Austin 2025"},"9133":{"market_hash_name":"Sticker | spooke (Holo) | Austin 2025"},"9134":{"market_hash_name":"Sticker | spooke (Gold) | Austin 2025"},"9135":{"market_hash_name":"Sticker | Buzz | Austin 2025"},"9136":{"market_hash_name":"Sticker | Buzz (Foil) | Austin 2025"},"9137":{"market_hash_name":"Sticker | Buzz (Holo) | Austin 2025"},"9138":{"market_hash_name":"Sticker | Buzz (Gold) | Austin 2025"},"9139":{"market_hash_name":"Sticker | 1eeR | Austin 2025"},"914":{"market_hash_name":"Sticker | Team Dignitas | Cluj-Napoca 2015"},"9140":{"market_hash_name":"Sticker | 1eeR (Foil) | Austin 2025"},"9141":{"market_hash_name":"Sticker | 1eeR (Holo) | Austin 2025"},"9142":{"market_hash_name":"Sticker | 1eeR (Gold) | Austin 2025"},"9143":{"market_hash_name":"Sticker | Xant3r | Austin 2025"},"9144":{"market_hash_name":"Sticker | Xant3r (Foil) | Austin 2025"},"9145":{"market_hash_name":"Sticker | Xant3r (Holo) | Austin 2025"},"9146":{"market_hash_name":"Sticker | Xant3r (Gold) | Austin 2025"},"9147":{"market_hash_name":"Sticker | khaN | Austin 2025"},"9148":{"market_hash_name":"Sticker | khaN (Foil) | Austin 2025"},"9149":{"market_hash_name":"Sticker | khaN (Holo) | Austin 2025"},"915":{"market_hash_name":"Sticker | Team Dignitas (Foil) | Cluj-Napoca 2015"},"9150":{"market_hash_name":"Sticker | khaN (Gold) | Austin 2025"},"9151":{"market_hash_name":"Sticker | riskyb0b | Austin 2025"},"9152":{"market_hash_name":"Sticker | riskyb0b (Foil) | Austin 2025"},"9153":{"market_hash_name":"Sticker | riskyb0b (Holo) | Austin 2025"},"9154":{"market_hash_name":"Sticker | riskyb0b (Gold) | Austin 2025"},"9155":{"market_hash_name":"Sticker | zweih | Austin 2025"},"9156":{"market_hash_name":"Sticker | zweih (Foil) | Austin 2025"},"9157":{"market_hash_name":"Sticker | zweih (Holo) | Austin 2025"},"9158":{"market_hash_name":"Sticker | zweih (Gold) | Austin 2025"},"9159":{"market_hash_name":"Sticker | zorte | Austin 2025"},"916":{"market_hash_name":"Sticker | Team Dignitas (Gold) | Cluj-Napoca 2015"},"9160":{"market_hash_name":"Sticker | zorte (Foil) | Austin 2025"},"9161":{"market_hash_name":"Sticker | zorte (Holo) | Austin 2025"},"9162":{"market_hash_name":"Sticker | zorte (Gold) | Austin 2025"},"9163":{"market_hash_name":"Sticker | S1ren | Austin 2025"},"9164":{"market_hash_name":"Sticker | S1ren (Foil) | Austin 2025"},"9165":{"market_hash_name":"Sticker | S1ren (Holo) | Austin 2025"},"9166":{"market_hash_name":"Sticker | S1ren (Gold) | Austin 2025"},"9167":{"market_hash_name":"Sticker | Magnojez | Austin 2025"},"9168":{"market_hash_name":"Sticker | Magnojez (Foil) | Austin 2025"},"9169":{"market_hash_name":"Sticker | Magnojez (Holo) | Austin 2025"},"917":{"market_hash_name":"Sticker | Counter Logic Gaming | Cluj-Napoca 2015"},"9170":{"market_hash_name":"Sticker | Magnojez (Gold) | Austin 2025"},"9171":{"market_hash_name":"Sticker | Ax1Le | Austin 2025"},"9172":{"market_hash_name":"Sticker | Ax1Le (Foil) | Austin 2025"},"9173":{"market_hash_name":"Sticker | Ax1Le (Holo) | Austin 2025"},"9174":{"market_hash_name":"Sticker | Ax1Le (Gold) | Austin 2025"},"9175":{"market_hash_name":"Sticker | Boombl4 | Austin 2025"},"9176":{"market_hash_name":"Sticker | Boombl4 (Foil) | Austin 2025"},"9177":{"market_hash_name":"Sticker | Boombl4 (Holo) | Austin 2025"},"9178":{"market_hash_name":"Sticker | Boombl4 (Gold) | Austin 2025"},"9179":{"market_hash_name":"Sticker | VINI | Austin 2025"},"918":{"market_hash_name":"Sticker | Counter Logic Gaming (Foil) | Cluj-Napoca 2015"},"9180":{"market_hash_name":"Sticker | VINI (Foil) | Austin 2025"},"9181":{"market_hash_name":"Sticker | VINI (Holo) | Austin 2025"},"9182":{"market_hash_name":"Sticker | VINI (Gold) | Austin 2025"},"9183":{"market_hash_name":"Sticker | TRY | Austin 2025"},"9184":{"market_hash_name":"Sticker | TRY (Foil) | Austin 2025"},"9185":{"market_hash_name":"Sticker | TRY (Holo) | Austin 2025"},"9186":{"market_hash_name":"Sticker | TRY (Gold) | Austin 2025"},"9187":{"market_hash_name":"Sticker | chayJESUS | Austin 2025"},"9188":{"market_hash_name":"Sticker | chayJESUS (Foil) | Austin 2025"},"9189":{"market_hash_name":"Sticker | chayJESUS (Holo) | Austin 2025"},"919":{"market_hash_name":"Sticker | Counter Logic Gaming (Gold) | Cluj-Napoca 2015"},"9190":{"market_hash_name":"Sticker | chayJESUS (Gold) | Austin 2025"},"9191":{"market_hash_name":"Sticker | decenty | Austin 2025"},"9192":{"market_hash_name":"Sticker | decenty (Foil) | Austin 2025"},"9193":{"market_hash_name":"Sticker | decenty (Holo) | Austin 2025"},"9194":{"market_hash_name":"Sticker | decenty (Gold) | Austin 2025"},"9195":{"market_hash_name":"Sticker | noway | Austin 2025"},"9196":{"market_hash_name":"Sticker | noway (Foil) | Austin 2025"},"9197":{"market_hash_name":"Sticker | noway (Holo) | Austin 2025"},"9198":{"market_hash_name":"Sticker | noway (Gold) | Austin 2025"},"9199":{"market_hash_name":"Sticker | oSee | Austin 2025"},"92":{"market_hash_name":"Sticker | Clan-Mystik (Foil) | Katowice 2014"},"920":{"market_hash_name":"Sticker | Vexed Gaming | Cluj-Napoca 2015"},"9200":{"market_hash_name":"Sticker | oSee (Foil) | Austin 2025"},"9201":{"market_hash_name":"Sticker | oSee (Holo) | Austin 2025"},"9202":{"market_hash_name":"Sticker | oSee (Gold) | Austin 2025"},"9203":{"market_hash_name":"Sticker | HexT | Austin 2025"},"9204":{"market_hash_name":"Sticker | HexT (Foil) | Austin 2025"},"9205":{"market_hash_name":"Sticker | HexT (Holo) | Austin 2025"},"9206":{"market_hash_name":"Sticker | HexT (Gold) | Austin 2025"},"9207":{"market_hash_name":"Sticker | br0 | Austin 2025"},"9208":{"market_hash_name":"Sticker | br0 (Foil) | Austin 2025"},"9209":{"market_hash_name":"Sticker | br0 (Holo) | Austin 2025"},"921":{"market_hash_name":"Sticker | Vexed Gaming (Foil) | Cluj-Napoca 2015"},"9210":{"market_hash_name":"Sticker | br0 (Gold) | Austin 2025"},"9211":{"market_hash_name":"Sticker | nitr0 | Austin 2025"},"9212":{"market_hash_name":"Sticker | nitr0 (Foil) | Austin 2025"},"9213":{"market_hash_name":"Sticker | nitr0 (Holo) | Austin 2025"},"9214":{"market_hash_name":"Sticker | nitr0 (Gold) | Austin 2025"},"9215":{"market_hash_name":"Sticker | jeorge | Austin 2025"},"9216":{"market_hash_name":"Sticker | jeorge (Foil) | Austin 2025"},"9217":{"market_hash_name":"Sticker | jeorge (Holo) | Austin 2025"},"9218":{"market_hash_name":"Sticker | jeorge (Gold) | Austin 2025"},"9219":{"market_hash_name":"Sticker | INS | Austin 2025"},"922":{"market_hash_name":"Sticker | Vexed Gaming (Gold) | Cluj-Napoca 2015"},"9220":{"market_hash_name":"Sticker | INS (Foil) | Austin 2025"},"9221":{"market_hash_name":"Sticker | INS (Holo) | Austin 2025"},"9222":{"market_hash_name":"Sticker | INS (Gold) | Austin 2025"},"9223":{"market_hash_name":"Sticker | Liazz | Austin 2025"},"9224":{"market_hash_name":"Sticker | Liazz (Foil) | Austin 2025"},"9225":{"market_hash_name":"Sticker | Liazz (Holo) | Austin 2025"},"9226":{"market_hash_name":"Sticker | Liazz (Gold) | Austin 2025"},"9227":{"market_hash_name":"Sticker | vexite | Austin 2025"},"9228":{"market_hash_name":"Sticker | vexite (Foil) | Austin 2025"},"9229":{"market_hash_name":"Sticker | vexite (Holo) | Austin 2025"},"923":{"market_hash_name":"Sticker | Flipsid3 Tactics | Cluj-Napoca 2015"},"9230":{"market_hash_name":"Sticker | vexite (Gold) | Austin 2025"},"9231":{"market_hash_name":"Sticker | regali | Austin 2025"},"9232":{"market_hash_name":"Sticker | regali (Foil) | Austin 2025"},"9233":{"market_hash_name":"Sticker | regali (Holo) | Austin 2025"},"9234":{"market_hash_name":"Sticker | regali (Gold) | Austin 2025"},"9235":{"market_hash_name":"Sticker | nettik | Austin 2025"},"9236":{"market_hash_name":"Sticker | nettik (Foil) | Austin 2025"},"9237":{"market_hash_name":"Sticker | nettik (Holo) | Austin 2025"},"9238":{"market_hash_name":"Sticker | nettik (Gold) | Austin 2025"},"9239":{"market_hash_name":"Sticker | hampus | Austin 2025"},"924":{"market_hash_name":"Sticker | Flipsid3 Tactics (Foil) | Cluj-Napoca 2015"},"9240":{"market_hash_name":"Sticker | hampus (Foil) | Austin 2025"},"9241":{"market_hash_name":"Sticker | hampus (Holo) | Austin 2025"},"9242":{"market_hash_name":"Sticker | hampus (Gold) | Austin 2025"},"9243":{"market_hash_name":"Sticker | isak | Austin 2025"},"9244":{"market_hash_name":"Sticker | isak (Foil) | Austin 2025"},"9245":{"market_hash_name":"Sticker | isak (Holo) | Austin 2025"},"9246":{"market_hash_name":"Sticker | isak (Gold) | Austin 2025"},"9247":{"market_hash_name":"Sticker | Plopski | Austin 2025"},"9248":{"market_hash_name":"Sticker | Plopski (Foil) | Austin 2025"},"9249":{"market_hash_name":"Sticker | Plopski (Holo) | Austin 2025"},"925":{"market_hash_name":"Sticker | Flipsid3 Tactics (Gold) | Cluj-Napoca 2015"},"9250":{"market_hash_name":"Sticker | Plopski (Gold) | Austin 2025"},"9251":{"market_hash_name":"Sticker | L00m1 | Austin 2025"},"9252":{"market_hash_name":"Sticker | L00m1 (Foil) | Austin 2025"},"9253":{"market_hash_name":"Sticker | L00m1 (Holo) | Austin 2025"},"9254":{"market_hash_name":"Sticker | L00m1 (Gold) | Austin 2025"},"9255":{"market_hash_name":"Sticker | adamb | Austin 2025"},"9256":{"market_hash_name":"Sticker | adamb (Foil) | Austin 2025"},"9257":{"market_hash_name":"Sticker | adamb (Holo) | Austin 2025"},"9258":{"market_hash_name":"Sticker | adamb (Gold) | Austin 2025"},"9259":{"market_hash_name":"Sticker | JamYoung | Austin 2025"},"926":{"market_hash_name":"Sticker | Team Liquid | Cluj-Napoca 2015"},"9260":{"market_hash_name":"Sticker | JamYoung (Foil) | Austin 2025"},"9261":{"market_hash_name":"Sticker | JamYoung (Holo) | Austin 2025"},"9262":{"market_hash_name":"Sticker | JamYoung (Gold) | Austin 2025"},"9263":{"market_hash_name":"Sticker | Moseyuh | Austin 2025"},"9264":{"market_hash_name":"Sticker | Moseyuh (Foil) | Austin 2025"},"9265":{"market_hash_name":"Sticker | Moseyuh (Holo) | Austin 2025"},"9266":{"market_hash_name":"Sticker | Moseyuh (Gold) | Austin 2025"},"9267":{"market_hash_name":"Sticker | Attacker | Austin 2025"},"9268":{"market_hash_name":"Sticker | Attacker (Foil) | Austin 2025"},"9269":{"market_hash_name":"Sticker | Attacker (Holo) | Austin 2025"},"927":{"market_hash_name":"Sticker | Team Liquid (Foil) | Cluj-Napoca 2015"},"9270":{"market_hash_name":"Sticker | Attacker (Gold) | Austin 2025"},"9271":{"market_hash_name":"Sticker | Jee | Austin 2025"},"9272":{"market_hash_name":"Sticker | Jee (Foil) | Austin 2025"},"9273":{"market_hash_name":"Sticker | Jee (Holo) | Austin 2025"},"9274":{"market_hash_name":"Sticker | Jee (Gold) | Austin 2025"},"9275":{"market_hash_name":"Sticker | Mercury | Austin 2025"},"9276":{"market_hash_name":"Sticker | Mercury (Foil) | Austin 2025"},"9277":{"market_hash_name":"Sticker | Mercury (Holo) | Austin 2025"},"9278":{"market_hash_name":"Sticker | Mercury (Gold) | Austin 2025"},"9279":{"market_hash_name":"Sticker | arT | Austin 2025"},"928":{"market_hash_name":"Sticker | Team Liquid (Gold) | Cluj-Napoca 2015"},"9280":{"market_hash_name":"Sticker | arT (Foil) | Austin 2025"},"9281":{"market_hash_name":"Sticker | arT (Holo) | Austin 2025"},"9282":{"market_hash_name":"Sticker | arT (Gold) | Austin 2025"},"9283":{"market_hash_name":"Sticker | piriajr | Austin 2025"},"9284":{"market_hash_name":"Sticker | piriajr (Foil) | Austin 2025"},"9285":{"market_hash_name":"Sticker | piriajr (Holo) | Austin 2025"},"9286":{"market_hash_name":"Sticker | piriajr (Gold) | Austin 2025"},"9287":{"market_hash_name":"Sticker | zevy | Austin 2025"},"9288":{"market_hash_name":"Sticker | zevy (Foil) | Austin 2025"},"9289":{"market_hash_name":"Sticker | zevy (Holo) | Austin 2025"},"929":{"market_hash_name":"Sticker | mousesports | Cluj-Napoca 2015"},"9290":{"market_hash_name":"Sticker | zevy (Gold) | Austin 2025"},"9291":{"market_hash_name":"Sticker | kye | Austin 2025"},"9292":{"market_hash_name":"Sticker | kye (Foil) | Austin 2025"},"9293":{"market_hash_name":"Sticker | kye (Holo) | Austin 2025"},"9294":{"market_hash_name":"Sticker | kye (Gold) | Austin 2025"},"9295":{"market_hash_name":"Sticker | mlhzin | Austin 2025"},"9296":{"market_hash_name":"Sticker | mlhzin (Foil) | Austin 2025"},"9297":{"market_hash_name":"Sticker | mlhzin (Holo) | Austin 2025"},"9298":{"market_hash_name":"Sticker | mlhzin (Gold) | Austin 2025"},"9299":{"market_hash_name":"Sticker | controlez | Austin 2025"},"93":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Katowice 2014"},"930":{"market_hash_name":"Sticker | mousesports (Foil) | Cluj-Napoca 2015"},"9300":{"market_hash_name":"Sticker | controlez (Foil) | Austin 2025"},"9301":{"market_hash_name":"Sticker | controlez (Holo) | Austin 2025"},"9302":{"market_hash_name":"Sticker | controlez (Gold) | Austin 2025"},"9303":{"market_hash_name":"Sticker | efire | Austin 2025"},"9304":{"market_hash_name":"Sticker | efire (Foil) | Austin 2025"},"9305":{"market_hash_name":"Sticker | efire (Holo) | Austin 2025"},"9306":{"market_hash_name":"Sticker | efire (Gold) | Austin 2025"},"9307":{"market_hash_name":"Sticker | ROUX | Austin 2025"},"9308":{"market_hash_name":"Sticker | ROUX (Foil) | Austin 2025"},"9309":{"market_hash_name":"Sticker | ROUX (Holo) | Austin 2025"},"931":{"market_hash_name":"Sticker | mousesports (Gold) | Cluj-Napoca 2015"},"9310":{"market_hash_name":"Sticker | ROUX (Gold) | Austin 2025"},"9311":{"market_hash_name":"Sticker | Ariucle | Austin 2025"},"9312":{"market_hash_name":"Sticker | Ariucle (Foil) | Austin 2025"},"9313":{"market_hash_name":"Sticker | Ariucle (Holo) | Austin 2025"},"9314":{"market_hash_name":"Sticker | Ariucle (Gold) | Austin 2025"},"9315":{"market_hash_name":"Sticker | cool4st | Austin 2025"},"9316":{"market_hash_name":"Sticker | cool4st (Foil) | Austin 2025"},"9317":{"market_hash_name":"Sticker | cool4st (Holo) | Austin 2025"},"9318":{"market_hash_name":"Sticker | cool4st (Gold) | Austin 2025"},"9319":{"market_hash_name":"Sticker | westmelon | Austin 2025"},"932":{"market_hash_name":"Sticker | Natus Vincere | Cluj-Napoca 2015"},"9320":{"market_hash_name":"Sticker | westmelon (Foil) | Austin 2025"},"9321":{"market_hash_name":"Sticker | westmelon (Holo) | Austin 2025"},"9322":{"market_hash_name":"Sticker | westmelon (Gold) | Austin 2025"},"9323":{"market_hash_name":"Sticker | z4KR | Austin 2025"},"9324":{"market_hash_name":"Sticker | z4KR (Foil) | Austin 2025"},"9325":{"market_hash_name":"Sticker | z4KR (Holo) | Austin 2025"},"9326":{"market_hash_name":"Sticker | z4KR (Gold) | Austin 2025"},"9327":{"market_hash_name":"Sticker | Starry | Austin 2025"},"9328":{"market_hash_name":"Sticker | Starry (Foil) | Austin 2025"},"9329":{"market_hash_name":"Sticker | Starry (Holo) | Austin 2025"},"933":{"market_hash_name":"Sticker | Natus Vincere (Foil) | Cluj-Napoca 2015"},"9330":{"market_hash_name":"Sticker | Starry (Gold) | Austin 2025"},"9331":{"market_hash_name":"Sticker | EmiliaQAQ | Austin 2025"},"9332":{"market_hash_name":"Sticker | EmiliaQAQ (Foil) | Austin 2025"},"9333":{"market_hash_name":"Sticker | EmiliaQAQ (Holo) | Austin 2025"},"9334":{"market_hash_name":"Sticker | EmiliaQAQ (Gold) | Austin 2025"},"9335":{"market_hash_name":"Sticker | C4LLM3SU3 | Austin 2025"},"9336":{"market_hash_name":"Sticker | C4LLM3SU3 (Foil) | Austin 2025"},"9337":{"market_hash_name":"Sticker | C4LLM3SU3 (Holo) | Austin 2025"},"9338":{"market_hash_name":"Sticker | C4LLM3SU3 (Gold) | Austin 2025"},"9339":{"market_hash_name":"Sticker | lux | Austin 2025"},"934":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Cluj-Napoca 2015"},"9340":{"market_hash_name":"Sticker | lux (Foil) | Austin 2025"},"9341":{"market_hash_name":"Sticker | lux (Holo) | Austin 2025"},"9342":{"market_hash_name":"Sticker | lux (Gold) | Austin 2025"},"9343":{"market_hash_name":"Sticker | saadzin | Austin 2025"},"9344":{"market_hash_name":"Sticker | saadzin (Foil) | Austin 2025"},"9345":{"market_hash_name":"Sticker | saadzin (Holo) | Austin 2025"},"9346":{"market_hash_name":"Sticker | saadzin (Gold) | Austin 2025"},"9347":{"market_hash_name":"Sticker | latto | Austin 2025"},"9348":{"market_hash_name":"Sticker | latto (Foil) | Austin 2025"},"9349":{"market_hash_name":"Sticker | latto (Holo) | Austin 2025"},"935":{"market_hash_name":"Sticker | Virtus.Pro | Cluj-Napoca 2015"},"9350":{"market_hash_name":"Sticker | latto (Gold) | Austin 2025"},"9351":{"market_hash_name":"Sticker | dumau | Austin 2025"},"9352":{"market_hash_name":"Sticker | dumau (Foil) | Austin 2025"},"9353":{"market_hash_name":"Sticker | dumau (Holo) | Austin 2025"},"9354":{"market_hash_name":"Sticker | dumau (Gold) | Austin 2025"},"9355":{"market_hash_name":"Sticker | n1ssim | Austin 2025"},"9356":{"market_hash_name":"Sticker | n1ssim (Foil) | Austin 2025"},"9357":{"market_hash_name":"Sticker | n1ssim (Holo) | Austin 2025"},"9358":{"market_hash_name":"Sticker | n1ssim (Gold) | Austin 2025"},"9359":{"market_hash_name":"Sticker | Ultramarines"},"936":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Cluj-Napoca 2015"},"9360":{"market_hash_name":"Sticker | Dark Angels"},"9361":{"market_hash_name":"Sticker | Blood Angels"},"9362":{"market_hash_name":"Sticker | Space Wolves"},"9363":{"market_hash_name":"Sticker | Imperial Fists"},"9364":{"market_hash_name":"Sticker | Salamanders"},"9365":{"market_hash_name":"Sticker | White Scars"},"9366":{"market_hash_name":"Sticker | Raven Guard"},"9367":{"market_hash_name":"Sticker | Astartes Skull"},"9368":{"market_hash_name":"Sticker | Raptors"},"9369":{"market_hash_name":"Sticker | Iron Hands"},"937":{"market_hash_name":"Sticker | Virtus.Pro (Gold) | Cluj-Napoca 2015"},"9370":{"market_hash_name":"Sticker | Iron Halo"},"9371":{"market_hash_name":"Sticker | Flesh Tearers"},"9372":{"market_hash_name":"Sticker | Scythes of the Emperor"},"9373":{"market_hash_name":"Sticker | Blood Ravens"},"9374":{"market_hash_name":"Sticker | Adeptus Astartes"},"9375":{"market_hash_name":"Sticker | Crimson Fists"},"9376":{"market_hash_name":"Sticker | Silver Skulls"},"9377":{"market_hash_name":"Sticker | World Eaters 1"},"9378":{"market_hash_name":"Sticker | World Eaters 2"},"9379":{"market_hash_name":"Sticker | Word Bearers 1"},"938":{"market_hash_name":"Sticker | Cloud9 | Cluj-Napoca 2015"},"9380":{"market_hash_name":"Sticker | Word Bearers 2"},"9381":{"market_hash_name":"Sticker | Thousand Sons 1"},"9382":{"market_hash_name":"Sticker | Thousand Sons 2"},"9383":{"market_hash_name":"Sticker | Night Lords 1"},"9384":{"market_hash_name":"Sticker | Night Lords 2"},"9385":{"market_hash_name":"Sticker | Iron Warriors 1"},"9386":{"market_hash_name":"Sticker | Iron Warriors 2"},"9387":{"market_hash_name":"Sticker | Emperor's Children 1"},"9388":{"market_hash_name":"Sticker | Emperor's Children 2"},"9389":{"market_hash_name":"Sticker | Death Guard 1"},"939":{"market_hash_name":"Sticker | Cloud9 (Foil) | Cluj-Napoca 2015"},"9390":{"market_hash_name":"Sticker | Death Guard 2"},"9391":{"market_hash_name":"Sticker | Black Legion 1"},"9392":{"market_hash_name":"Sticker | Black Legion 2"},"9393":{"market_hash_name":"Sticker | Alpha Legion 1"},"9394":{"market_hash_name":"Sticker | Alpha Legion 2"},"9395":{"market_hash_name":"Sticker | Ecclesiarchy"},"9396":{"market_hash_name":"Sticker | Inquisition"},"9397":{"market_hash_name":"Sticker | Imperial Knights"},"9398":{"market_hash_name":"Sticker | Astra Militarum 1"},"9399":{"market_hash_name":"Sticker | Astra Militarum 2"},"94":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Foil) | Katowice 2014"},"940":{"market_hash_name":"Sticker | Cloud9 (Gold) | Cluj-Napoca 2015"},"9400":{"market_hash_name":"Sticker | Cadia"},"9401":{"market_hash_name":"Sticker | Adeptus Custodes 1"},"9402":{"market_hash_name":"Sticker | Adeptus Custodes 2"},"9403":{"market_hash_name":"Sticker | Officio Assassinorum"},"9404":{"market_hash_name":"Sticker | Sisters of Battle 1"},"9405":{"market_hash_name":"Sticker | Sisters of Battle 2"},"9406":{"market_hash_name":"Sticker | Adeptus Arbites"},"9407":{"market_hash_name":"Sticker | Catachan"},"9408":{"market_hash_name":"Sticker | Adeptus Titanicus 1"},"9409":{"market_hash_name":"Sticker | Adeptus Titanicus 2"},"941":{"market_hash_name":"Sticker | G2 Esports | Cluj-Napoca 2015"},"9410":{"market_hash_name":"Sticker | Adeptus Mechanicus 1"},"9411":{"market_hash_name":"Sticker | Adeptus Mechanicus 2"},"9412":{"market_hash_name":"Sticker | Rogue Trader"},"9413":{"market_hash_name":"Sticker | Tyranids 1"},"9414":{"market_hash_name":"Sticker | Tyranids 2"},"9415":{"market_hash_name":"Sticker | T'au Empire 1"},"9416":{"market_hash_name":"Sticker | T'au Empire 2"},"9417":{"market_hash_name":"Sticker | Orks 1"},"9418":{"market_hash_name":"Sticker | Orks 2"},"9419":{"market_hash_name":"Sticker | Necron Ankh"},"942":{"market_hash_name":"Sticker | G2 Esports (Foil) | Cluj-Napoca 2015"},"9420":{"market_hash_name":"Sticker | Necron Glyphs"},"9421":{"market_hash_name":"Sticker | Leagues of Votann 1"},"9422":{"market_hash_name":"Sticker | Leagues of Votann 2"},"9423":{"market_hash_name":"Sticker | Harlequins 1"},"9424":{"market_hash_name":"Sticker | Harlequins 2"},"9425":{"market_hash_name":"Sticker | Genestealer Cults 1"},"9426":{"market_hash_name":"Sticker | Genestealer Cults 2"},"9427":{"market_hash_name":"Sticker | Drukhari 1"},"9428":{"market_hash_name":"Sticker | Drukhari 2"},"9429":{"market_hash_name":"Sticker | Aeldari 1"},"943":{"market_hash_name":"Sticker | G2 Esports (Gold) | Cluj-Napoca 2015"},"9430":{"market_hash_name":"Sticker | Aeldari 2"},"9431":{"market_hash_name":"Sticker | apEX (Champion) | Austin 2025"},"9432":{"market_hash_name":"Sticker | apEX (Foil, Champion) | Austin 2025"},"9433":{"market_hash_name":"Sticker | apEX (Holo, Champion) | Austin 2025"},"9434":{"market_hash_name":"Sticker | apEX (Gold, Champion) | Austin 2025"},"9435":{"market_hash_name":"Sticker | ZywOo (Champion) | Austin 2025"},"9436":{"market_hash_name":"Sticker | ZywOo (Foil, Champion) | Austin 2025"},"9437":{"market_hash_name":"Sticker | ZywOo (Holo, Champion) | Austin 2025"},"9438":{"market_hash_name":"Sticker | ZywOo (Gold, Champion) | Austin 2025"},"9439":{"market_hash_name":"Sticker | FlameZ (Champion) | Austin 2025"},"944":{"market_hash_name":"Sticker | Titan | Cluj-Napoca 2015"},"9440":{"market_hash_name":"Sticker | FlameZ (Foil, Champion) | Austin 2025"},"9441":{"market_hash_name":"Sticker | FlameZ (Holo, Champion) | Austin 2025"},"9442":{"market_hash_name":"Sticker | FlameZ (Gold, Champion) | Austin 2025"},"9443":{"market_hash_name":"Sticker | mezii (Champion) | Austin 2025"},"9444":{"market_hash_name":"Sticker | mezii (Foil, Champion) | Austin 2025"},"9445":{"market_hash_name":"Sticker | mezii (Holo, Champion) | Austin 2025"},"9446":{"market_hash_name":"Sticker | mezii (Gold, Champion) | Austin 2025"},"9447":{"market_hash_name":"Sticker | ropz (Champion) | Austin 2025"},"9448":{"market_hash_name":"Sticker | ropz (Foil, Champion) | Austin 2025"},"9449":{"market_hash_name":"Sticker | ropz (Holo, Champion) | Austin 2025"},"945":{"market_hash_name":"Sticker | Titan (Foil) | Cluj-Napoca 2015"},"9450":{"market_hash_name":"Sticker | ropz (Gold, Champion) | Austin 2025"},"9451":{"market_hash_name":"Sticker | Candy Apples"},"9452":{"market_hash_name":"Sticker | Cubix Connexion"},"9453":{"market_hash_name":"Sticker | Eyes of Farlow"},"9454":{"market_hash_name":"Sticker | Fade Mangos"},"9455":{"market_hash_name":"Sticker | Gloves On"},"9456":{"market_hash_name":"Sticker | Lock In"},"9457":{"market_hash_name":"Sticker | Mimicapsule"},"9458":{"market_hash_name":"Sticker | Pop Pup"},"9459":{"market_hash_name":"Sticker | POTS"},"946":{"market_hash_name":"Sticker | Titan (Gold) | Cluj-Napoca 2015"},"9460":{"market_hash_name":"Sticker | Sent With Love"},"9461":{"market_hash_name":"Sticker | Skelly Stabby"},"9462":{"market_hash_name":"Sticker | Vice Cursor"},"9463":{"market_hash_name":"Sticker | CT Tracks (Glitter)"},"9464":{"market_hash_name":"Sticker | Overloaded (Glitter)"},"9465":{"market_hash_name":"Sticker | T Tracks (Glitter)"},"9466":{"market_hash_name":"Sticker | Bomb Planted (Holo)"},"9467":{"market_hash_name":"Sticker | Chrome Dome (Holo)"},"9468":{"market_hash_name":"Sticker | Cutie (Holo)"},"9469":{"market_hash_name":"Sticker | Evidence (Holo)"},"947":{"market_hash_name":"Sticker | Team SoloMid | Cluj-Napoca 2015"},"9470":{"market_hash_name":"Sticker | Froggles (Holo)"},"9471":{"market_hash_name":"Sticker | Ain't A Rental (Foil)"},"9472":{"market_hash_name":"Sticker | Eyes In The Sky (Foil)"},"9473":{"market_hash_name":"Sticker | Good As New (Foil)"},"9474":{"market_hash_name":"Sticker | Hands Off (Foil)"},"9475":{"market_hash_name":"Sticker | King Crasswater (Foil)"},"9476":{"market_hash_name":"Sticker | Queen Ava (Foil)"},"9477":{"market_hash_name":"Sticker | Digi-Strike (Lenticular)"},"9478":{"market_hash_name":"Sticker | Neon MVP (Lenticular)"},"9479":{"market_hash_name":"Sticker | BullHit (Lenticular)"},"948":{"market_hash_name":"Sticker | Team SoloMid (Foil) | Cluj-Napoca 2015"},"9480":{"market_hash_name":"Sticker | Clavis"},"9481":{"market_hash_name":"Sticker | Lorena"},"9482":{"market_hash_name":"Sticker | Lucas"},"9483":{"market_hash_name":"Sticker | Clavis (Holo)"},"9484":{"market_hash_name":"Sticker | Lorena (Holo)"},"9485":{"market_hash_name":"Sticker | Lucas (Holo)"},"9486":{"market_hash_name":"Sticker | Clavis (Foil)"},"9487":{"market_hash_name":"Sticker | Lorena (Foil)"},"9488":{"market_hash_name":"Sticker | Lucas (Foil)"},"9489":{"market_hash_name":"Sticker | FURIA | Budapest 2025"},"949":{"market_hash_name":"Sticker | Team SoloMid (Gold) | Cluj-Napoca 2015"},"9490":{"market_hash_name":"Sticker | FURIA (Embroidered) | Budapest 2025"},"9491":{"market_hash_name":"Sticker | FURIA (Holo) | Budapest 2025"},"9492":{"market_hash_name":"Sticker | FURIA (Gold) | Budapest 2025"},"9493":{"market_hash_name":"Sticker | Vitality | Budapest 2025"},"9494":{"market_hash_name":"Sticker | Vitality (Embroidered) | Budapest 2025"},"9495":{"market_hash_name":"Sticker | Vitality (Holo) | Budapest 2025"},"9496":{"market_hash_name":"Sticker | Vitality (Gold) | Budapest 2025"},"9497":{"market_hash_name":"Sticker | Falcons | Budapest 2025"},"9498":{"market_hash_name":"Sticker | Falcons (Embroidered) | Budapest 2025"},"9499":{"market_hash_name":"Sticker | Falcons (Holo) | Budapest 2025"},"95":{"market_hash_name":"Sticker | Reason Gaming (Foil) | Katowice 2014"},"950":{"market_hash_name":"Sticker | Team EnVyUs | Cluj-Napoca 2015"},"9500":{"market_hash_name":"Sticker | Falcons (Gold) | Budapest 2025"},"9501":{"market_hash_name":"Sticker | The Mongolz | Budapest 2025"},"9502":{"market_hash_name":"Sticker | The Mongolz (Embroidered) | Budapest 2025"},"9503":{"market_hash_name":"Sticker | The Mongolz (Holo) | Budapest 2025"},"9504":{"market_hash_name":"Sticker | The Mongolz (Gold) | Budapest 2025"},"9505":{"market_hash_name":"Sticker | MOUZ | Budapest 2025"},"9506":{"market_hash_name":"Sticker | MOUZ (Embroidered) | Budapest 2025"},"9507":{"market_hash_name":"Sticker | MOUZ (Holo) | Budapest 2025"},"9508":{"market_hash_name":"Sticker | MOUZ (Gold) | Budapest 2025"},"9509":{"market_hash_name":"Sticker | Team Spirit | Budapest 2025"},"951":{"market_hash_name":"Sticker | Team EnVyUs (Foil) | Cluj-Napoca 2015"},"9510":{"market_hash_name":"Sticker | Team Spirit (Embroidered) | Budapest 2025"},"9511":{"market_hash_name":"Sticker | Team Spirit (Holo) | Budapest 2025"},"9512":{"market_hash_name":"Sticker | Team Spirit (Gold) | Budapest 2025"},"9513":{"market_hash_name":"Sticker | G2 esports | Budapest 2025"},"9514":{"market_hash_name":"Sticker | G2 esports (Embroidered) | Budapest 2025"},"9515":{"market_hash_name":"Sticker | G2 esports (Holo) | Budapest 2025"},"9516":{"market_hash_name":"Sticker | G2 esports (Gold) | Budapest 2025"},"9517":{"market_hash_name":"Sticker | paiN Gaming | Budapest 2025"},"9518":{"market_hash_name":"Sticker | paiN Gaming (Embroidered) | Budapest 2025"},"9519":{"market_hash_name":"Sticker | paiN Gaming (Holo) | Budapest 2025"},"952":{"market_hash_name":"Sticker | Team EnVyUs (Gold) | Cluj-Napoca 2015"},"9520":{"market_hash_name":"Sticker | paiN Gaming (Gold) | Budapest 2025"},"9521":{"market_hash_name":"Sticker | Aurora | Budapest 2025"},"9522":{"market_hash_name":"Sticker | Aurora (Embroidered) | Budapest 2025"},"9523":{"market_hash_name":"Sticker | Aurora (Holo) | Budapest 2025"},"9524":{"market_hash_name":"Sticker | Aurora (Gold) | Budapest 2025"},"9525":{"market_hash_name":"Sticker | Natus Vincere | Budapest 2025"},"9526":{"market_hash_name":"Sticker | Natus Vincere (Embroidered) | Budapest 2025"},"9527":{"market_hash_name":"Sticker | Natus Vincere (Holo) | Budapest 2025"},"9528":{"market_hash_name":"Sticker | Natus Vincere (Gold) | Budapest 2025"},"9529":{"market_hash_name":"Sticker | Team Liquid | Budapest 2025"},"953":{"market_hash_name":"Sticker | Fnatic | Cluj-Napoca 2015"},"9530":{"market_hash_name":"Sticker | Team Liquid (Embroidered) | Budapest 2025"},"9531":{"market_hash_name":"Sticker | Team Liquid (Holo) | Budapest 2025"},"9532":{"market_hash_name":"Sticker | Team Liquid (Gold) | Budapest 2025"},"9533":{"market_hash_name":"Sticker | 3DMAX | Budapest 2025"},"9534":{"market_hash_name":"Sticker | 3DMAX (Embroidered) | Budapest 2025"},"9535":{"market_hash_name":"Sticker | 3DMAX (Holo) | Budapest 2025"},"9536":{"market_hash_name":"Sticker | 3DMAX (Gold) | Budapest 2025"},"9537":{"market_hash_name":"Sticker | Astralis | Budapest 2025"},"9538":{"market_hash_name":"Sticker | Astralis (Embroidered) | Budapest 2025"},"9539":{"market_hash_name":"Sticker | Astralis (Holo) | Budapest 2025"},"954":{"market_hash_name":"Sticker | Fnatic (Foil) | Cluj-Napoca 2015"},"9540":{"market_hash_name":"Sticker | Astralis (Gold) | Budapest 2025"},"9541":{"market_hash_name":"Sticker | TYLOO | Budapest 2025"},"9542":{"market_hash_name":"Sticker | TYLOO (Embroidered) | Budapest 2025"},"9543":{"market_hash_name":"Sticker | TYLOO (Holo) | Budapest 2025"},"9544":{"market_hash_name":"Sticker | TYLOO (Gold) | Budapest 2025"},"9545":{"market_hash_name":"Sticker | MIBR | Budapest 2025"},"9546":{"market_hash_name":"Sticker | MIBR (Embroidered) | Budapest 2025"},"9547":{"market_hash_name":"Sticker | MIBR (Holo) | Budapest 2025"},"9548":{"market_hash_name":"Sticker | MIBR (Gold) | Budapest 2025"},"9549":{"market_hash_name":"Sticker | Passion UA | Budapest 2025"},"955":{"market_hash_name":"Sticker | Fnatic (Gold) | Cluj-Napoca 2015"},"9550":{"market_hash_name":"Sticker | Passion UA (Embroidered) | Budapest 2025"},"9551":{"market_hash_name":"Sticker | Passion UA (Holo) | Budapest 2025"},"9552":{"market_hash_name":"Sticker | Passion UA (Gold) | Budapest 2025"},"9553":{"market_hash_name":"Sticker | Legacy | Budapest 2025"},"9554":{"market_hash_name":"Sticker | Legacy (Embroidered) | Budapest 2025"},"9555":{"market_hash_name":"Sticker | Legacy (Holo) | Budapest 2025"},"9556":{"market_hash_name":"Sticker | Legacy (Gold) | Budapest 2025"},"9557":{"market_hash_name":"Sticker | FaZe Clan | Budapest 2025"},"9558":{"market_hash_name":"Sticker | FaZe Clan (Embroidered) | Budapest 2025"},"9559":{"market_hash_name":"Sticker | FaZe Clan (Holo) | Budapest 2025"},"956":{"market_hash_name":"Sticker | Luminosity Gaming | Cluj-Napoca 2015"},"9560":{"market_hash_name":"Sticker | FaZe Clan (Gold) | Budapest 2025"},"9561":{"market_hash_name":"Sticker | B8 | Budapest 2025"},"9562":{"market_hash_name":"Sticker | B8 (Embroidered) | Budapest 2025"},"9563":{"market_hash_name":"Sticker | B8 (Holo) | Budapest 2025"},"9564":{"market_hash_name":"Sticker | B8 (Gold) | Budapest 2025"},"9565":{"market_hash_name":"Sticker | GamerLegion | Budapest 2025"},"9566":{"market_hash_name":"Sticker | GamerLegion (Embroidered) | Budapest 2025"},"9567":{"market_hash_name":"Sticker | GamerLegion (Holo) | Budapest 2025"},"9568":{"market_hash_name":"Sticker | GamerLegion (Gold) | Budapest 2025"},"9569":{"market_hash_name":"Sticker | fnatic | Budapest 2025"},"957":{"market_hash_name":"Sticker | Luminosity Gaming (Foil) | Cluj-Napoca 2015"},"9570":{"market_hash_name":"Sticker | fnatic (Embroidered) | Budapest 2025"},"9571":{"market_hash_name":"Sticker | fnatic (Holo) | Budapest 2025"},"9572":{"market_hash_name":"Sticker | fnatic (Gold) | Budapest 2025"},"9573":{"market_hash_name":"Sticker | PARIVISION | Budapest 2025"},"9574":{"market_hash_name":"Sticker | PARIVISION (Embroidered) | Budapest 2025"},"9575":{"market_hash_name":"Sticker | PARIVISION (Holo) | Budapest 2025"},"9576":{"market_hash_name":"Sticker | PARIVISION (Gold) | Budapest 2025"},"9577":{"market_hash_name":"Sticker | Ninjas in Pyjamas | Budapest 2025"},"9578":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Embroidered) | Budapest 2025"},"9579":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Holo) | Budapest 2025"},"958":{"market_hash_name":"Sticker | Luminosity Gaming (Gold) | Cluj-Napoca 2015"},"9580":{"market_hash_name":"Sticker | Ninjas in Pyjamas (Gold) | Budapest 2025"},"9581":{"market_hash_name":"Sticker | Imperial Esports | Budapest 2025"},"9582":{"market_hash_name":"Sticker | Imperial Esports (Embroidered) | Budapest 2025"},"9583":{"market_hash_name":"Sticker | Imperial Esports (Holo) | Budapest 2025"},"9584":{"market_hash_name":"Sticker | Imperial Esports (Gold) | Budapest 2025"},"9585":{"market_hash_name":"Sticker | FlyQuest | Budapest 2025"},"9586":{"market_hash_name":"Sticker | FlyQuest (Embroidered) | Budapest 2025"},"9587":{"market_hash_name":"Sticker | FlyQuest (Holo) | Budapest 2025"},"9588":{"market_hash_name":"Sticker | FlyQuest (Gold) | Budapest 2025"},"9589":{"market_hash_name":"Sticker | Lynn Vision | Budapest 2025"},"959":{"market_hash_name":"Sticker | DreamHack | Cluj-Napoca 2015"},"9590":{"market_hash_name":"Sticker | Lynn Vision (Embroidered) | Budapest 2025"},"9591":{"market_hash_name":"Sticker | Lynn Vision (Holo) | Budapest 2025"},"9592":{"market_hash_name":"Sticker | Lynn Vision (Gold) | Budapest 2025"},"9593":{"market_hash_name":"Sticker | M80 | Budapest 2025"},"9594":{"market_hash_name":"Sticker | M80 (Embroidered) | Budapest 2025"},"9595":{"market_hash_name":"Sticker | M80 (Holo) | Budapest 2025"},"9596":{"market_hash_name":"Sticker | M80 (Gold) | Budapest 2025"},"9597":{"market_hash_name":"Sticker | Fluxo | Budapest 2025"},"9598":{"market_hash_name":"Sticker | Fluxo (Embroidered) | Budapest 2025"},"9599":{"market_hash_name":"Sticker | Fluxo (Holo) | Budapest 2025"},"96":{"market_hash_name":"Sticker | Titan (Foil) | Katowice 2014"},"960":{"market_hash_name":"Sticker | DreamHack (Foil) | Cluj-Napoca 2015"},"9600":{"market_hash_name":"Sticker | Fluxo (Gold) | Budapest 2025"},"9601":{"market_hash_name":"Sticker | RED Canids | Budapest 2025"},"9602":{"market_hash_name":"Sticker | RED Canids (Embroidered) | Budapest 2025"},"9603":{"market_hash_name":"Sticker | RED Canids (Holo) | Budapest 2025"},"9604":{"market_hash_name":"Sticker | RED Canids (Gold) | Budapest 2025"},"9605":{"market_hash_name":"Sticker | The Huns | Budapest 2025"},"9606":{"market_hash_name":"Sticker | The Huns (Embroidered) | Budapest 2025"},"9607":{"market_hash_name":"Sticker | The Huns (Holo) | Budapest 2025"},"9608":{"market_hash_name":"Sticker | The Huns (Gold) | Budapest 2025"},"9609":{"market_hash_name":"Sticker | NRG | Budapest 2025"},"961":{"market_hash_name":"Sticker | DreamHack (Gold) | Cluj-Napoca 2015"},"9610":{"market_hash_name":"Sticker | NRG (Embroidered) | Budapest 2025"},"9611":{"market_hash_name":"Sticker | NRG (Holo) | Budapest 2025"},"9612":{"market_hash_name":"Sticker | NRG (Gold) | Budapest 2025"},"9613":{"market_hash_name":"Sticker | Rare Atom | Budapest 2025"},"9614":{"market_hash_name":"Sticker | Rare Atom (Embroidered) | Budapest 2025"},"9615":{"market_hash_name":"Sticker | Rare Atom (Holo) | Budapest 2025"},"9616":{"market_hash_name":"Sticker | Rare Atom (Gold) | Budapest 2025"},"9617":{"market_hash_name":"Sticker | StarLadder | Budapest 2025"},"9618":{"market_hash_name":"Sticker | StarLadder (Embroidered) | Budapest 2025"},"9619":{"market_hash_name":"Sticker | StarLadder (Holo) | Budapest 2025"},"962":{"market_hash_name":"Sticker | Ivette"},"9620":{"market_hash_name":"Sticker | StarLadder (Gold) | Budapest 2025"},"963":{"market_hash_name":"Sticker | Kimberly"},"964":{"market_hash_name":"Sticker | Martha"},"965":{"market_hash_name":"Sticker | Merietta"},"9654":{"market_hash_name":"Sticker | FalleN | Budapest 2025"},"9655":{"market_hash_name":"Sticker | FalleN (Embroidered) | Budapest 2025"},"9656":{"market_hash_name":"Sticker | FalleN (Holo) | Budapest 2025"},"9657":{"market_hash_name":"Sticker | FalleN (Gold) | Budapest 2025"},"9658":{"market_hash_name":"Sticker | KSCERATO | Budapest 2025"},"9659":{"market_hash_name":"Sticker | KSCERATO (Embroidered) | Budapest 2025"},"966":{"market_hash_name":"Sticker | Sherry"},"9660":{"market_hash_name":"Sticker | KSCERATO (Holo) | Budapest 2025"},"9661":{"market_hash_name":"Sticker | KSCERATO (Gold) | Budapest 2025"},"9662":{"market_hash_name":"Sticker | molodoy | Budapest 2025"},"9663":{"market_hash_name":"Sticker | molodoy (Embroidered) | Budapest 2025"},"9664":{"market_hash_name":"Sticker | molodoy (Holo) | Budapest 2025"},"9665":{"market_hash_name":"Sticker | molodoy (Gold) | Budapest 2025"},"9666":{"market_hash_name":"Sticker | YEKINDAR | Budapest 2025"},"9667":{"market_hash_name":"Sticker | YEKINDAR (Embroidered) | Budapest 2025"},"9668":{"market_hash_name":"Sticker | YEKINDAR (Holo) | Budapest 2025"},"9669":{"market_hash_name":"Sticker | YEKINDAR (Gold) | Budapest 2025"},"967":{"market_hash_name":"Sticker | Tamara"},"9670":{"market_hash_name":"Sticker | yuurih | Budapest 2025"},"9671":{"market_hash_name":"Sticker | yuurih (Embroidered) | Budapest 2025"},"9672":{"market_hash_name":"Sticker | yuurih (Holo) | Budapest 2025"},"9673":{"market_hash_name":"Sticker | yuurih (Gold) | Budapest 2025"},"9674":{"market_hash_name":"Sticker | apEX | Budapest 2025"},"9675":{"market_hash_name":"Sticker | apEX (Embroidered) | Budapest 2025"},"9676":{"market_hash_name":"Sticker | apEX (Holo) | Budapest 2025"},"9677":{"market_hash_name":"Sticker | apEX (Gold) | Budapest 2025"},"9678":{"market_hash_name":"Sticker | FlameZ | Budapest 2025"},"9679":{"market_hash_name":"Sticker | FlameZ (Embroidered) | Budapest 2025"},"968":{"market_hash_name":"Sticker | Ivette (Holo)"},"9680":{"market_hash_name":"Sticker | FlameZ (Holo) | Budapest 2025"},"9681":{"market_hash_name":"Sticker | FlameZ (Gold) | Budapest 2025"},"9682":{"market_hash_name":"Sticker | mezii | Budapest 2025"},"9683":{"market_hash_name":"Sticker | mezii (Embroidered) | Budapest 2025"},"9684":{"market_hash_name":"Sticker | mezii (Holo) | Budapest 2025"},"9685":{"market_hash_name":"Sticker | mezii (Gold) | Budapest 2025"},"9686":{"market_hash_name":"Sticker | ropz | Budapest 2025"},"9687":{"market_hash_name":"Sticker | ropz (Embroidered) | Budapest 2025"},"9688":{"market_hash_name":"Sticker | ropz (Holo) | Budapest 2025"},"9689":{"market_hash_name":"Sticker | ropz (Gold) | Budapest 2025"},"969":{"market_hash_name":"Sticker | Kimberly (Holo)"},"9690":{"market_hash_name":"Sticker | ZywOo | Budapest 2025"},"9691":{"market_hash_name":"Sticker | ZywOo (Embroidered) | Budapest 2025"},"9692":{"market_hash_name":"Sticker | ZywOo (Holo) | Budapest 2025"},"9693":{"market_hash_name":"Sticker | ZywOo (Gold) | Budapest 2025"},"9694":{"market_hash_name":"Sticker | kyousuke | Budapest 2025"},"9695":{"market_hash_name":"Sticker | kyousuke (Embroidered) | Budapest 2025"},"9696":{"market_hash_name":"Sticker | kyousuke (Holo) | Budapest 2025"},"9697":{"market_hash_name":"Sticker | kyousuke (Gold) | Budapest 2025"},"9698":{"market_hash_name":"Sticker | kyxsan | Budapest 2025"},"9699":{"market_hash_name":"Sticker | kyxsan (Embroidered) | Budapest 2025"},"97":{"market_hash_name":"Sticker | Virtus.Pro (Foil) | Katowice 2014"},"970":{"market_hash_name":"Sticker | Martha (Holo)"},"9700":{"market_hash_name":"Sticker | kyxsan (Holo) | Budapest 2025"},"9701":{"market_hash_name":"Sticker | kyxsan (Gold) | Budapest 2025"},"9702":{"market_hash_name":"Sticker | m0NESY | Budapest 2025"},"9703":{"market_hash_name":"Sticker | m0NESY (Embroidered) | Budapest 2025"},"9704":{"market_hash_name":"Sticker | m0NESY (Holo) | Budapest 2025"},"9705":{"market_hash_name":"Sticker | m0NESY (Gold) | Budapest 2025"},"9706":{"market_hash_name":"Sticker | NiKo | Budapest 2025"},"9707":{"market_hash_name":"Sticker | NiKo (Embroidered) | Budapest 2025"},"9708":{"market_hash_name":"Sticker | NiKo (Holo) | Budapest 2025"},"9709":{"market_hash_name":"Sticker | NiKo (Gold) | Budapest 2025"},"971":{"market_hash_name":"Sticker | Merietta (Holo)"},"9710":{"market_hash_name":"Sticker | TeSeS | Budapest 2025"},"9711":{"market_hash_name":"Sticker | TeSeS (Embroidered) | Budapest 2025"},"9712":{"market_hash_name":"Sticker | TeSeS (Holo) | Budapest 2025"},"9713":{"market_hash_name":"Sticker | TeSeS (Gold) | Budapest 2025"},"9714":{"market_hash_name":"Sticker | 910 | Budapest 2025"},"9715":{"market_hash_name":"Sticker | 910 (Embroidered) | Budapest 2025"},"9716":{"market_hash_name":"Sticker | 910 (Holo) | Budapest 2025"},"9717":{"market_hash_name":"Sticker | 910 (Gold) | Budapest 2025"},"9718":{"market_hash_name":"Sticker | bLitz | Budapest 2025"},"9719":{"market_hash_name":"Sticker | bLitz (Embroidered) | Budapest 2025"},"972":{"market_hash_name":"Sticker | Sherry (Holo)"},"9720":{"market_hash_name":"Sticker | bLitz (Holo) | Budapest 2025"},"9721":{"market_hash_name":"Sticker | bLitz (Gold) | Budapest 2025"},"9722":{"market_hash_name":"Sticker | mzinho | Budapest 2025"},"9723":{"market_hash_name":"Sticker | mzinho (Embroidered) | Budapest 2025"},"9724":{"market_hash_name":"Sticker | mzinho (Holo) | Budapest 2025"},"9725":{"market_hash_name":"Sticker | mzinho (Gold) | Budapest 2025"},"9726":{"market_hash_name":"Sticker | Senzu | Budapest 2025"},"9727":{"market_hash_name":"Sticker | Senzu (Embroidered) | Budapest 2025"},"9728":{"market_hash_name":"Sticker | Senzu (Holo) | Budapest 2025"},"9729":{"market_hash_name":"Sticker | Senzu (Gold) | Budapest 2025"},"973":{"market_hash_name":"Sticker | Tamara (Holo)"},"9730":{"market_hash_name":"Sticker | Techno4K | Budapest 2025"},"9731":{"market_hash_name":"Sticker | Techno4K (Embroidered) | Budapest 2025"},"9732":{"market_hash_name":"Sticker | Techno4K (Holo) | Budapest 2025"},"9733":{"market_hash_name":"Sticker | Techno4K (Gold) | Budapest 2025"},"9734":{"market_hash_name":"Sticker | Brollan | Budapest 2025"},"9735":{"market_hash_name":"Sticker | Brollan (Embroidered) | Budapest 2025"},"9736":{"market_hash_name":"Sticker | Brollan (Holo) | Budapest 2025"},"9737":{"market_hash_name":"Sticker | Brollan (Gold) | Budapest 2025"},"9738":{"market_hash_name":"Sticker | Jimpphat | Budapest 2025"},"9739":{"market_hash_name":"Sticker | Jimpphat (Embroidered) | Budapest 2025"},"974":{"market_hash_name":"Sticker | Boom"},"9740":{"market_hash_name":"Sticker | Jimpphat (Holo) | Budapest 2025"},"9741":{"market_hash_name":"Sticker | Jimpphat (Gold) | Budapest 2025"},"9742":{"market_hash_name":"Sticker | Spinx | Budapest 2025"},"9743":{"market_hash_name":"Sticker | Spinx (Embroidered) | Budapest 2025"},"9744":{"market_hash_name":"Sticker | Spinx (Holo) | Budapest 2025"},"9745":{"market_hash_name":"Sticker | Spinx (Gold) | Budapest 2025"},"9746":{"market_hash_name":"Sticker | torzsi | Budapest 2025"},"9747":{"market_hash_name":"Sticker | torzsi (Embroidered) | Budapest 2025"},"9748":{"market_hash_name":"Sticker | torzsi (Holo) | Budapest 2025"},"9749":{"market_hash_name":"Sticker | torzsi (Gold) | Budapest 2025"},"975":{"market_hash_name":"Sticker | Boom (Holo)"},"9750":{"market_hash_name":"Sticker | xertioN | Budapest 2025"},"9751":{"market_hash_name":"Sticker | xertioN (Embroidered) | Budapest 2025"},"9752":{"market_hash_name":"Sticker | xertioN (Holo) | Budapest 2025"},"9753":{"market_hash_name":"Sticker | xertioN (Gold) | Budapest 2025"},"9754":{"market_hash_name":"Sticker | chopper | Budapest 2025"},"9755":{"market_hash_name":"Sticker | chopper (Embroidered) | Budapest 2025"},"9756":{"market_hash_name":"Sticker | chopper (Holo) | Budapest 2025"},"9757":{"market_hash_name":"Sticker | chopper (Gold) | Budapest 2025"},"9758":{"market_hash_name":"Sticker | donk | Budapest 2025"},"9759":{"market_hash_name":"Sticker | donk (Embroidered) | Budapest 2025"},"976":{"market_hash_name":"Sticker | Boom (Foil)"},"9760":{"market_hash_name":"Sticker | donk (Holo) | Budapest 2025"},"9761":{"market_hash_name":"Sticker | donk (Gold) | Budapest 2025"},"9762":{"market_hash_name":"Sticker | sh1ro | Budapest 2025"},"9763":{"market_hash_name":"Sticker | sh1ro (Embroidered) | Budapest 2025"},"9764":{"market_hash_name":"Sticker | sh1ro (Holo) | Budapest 2025"},"9765":{"market_hash_name":"Sticker | sh1ro (Gold) | Budapest 2025"},"9766":{"market_hash_name":"Sticker | zont1x | Budapest 2025"},"9767":{"market_hash_name":"Sticker | zont1x (Embroidered) | Budapest 2025"},"9768":{"market_hash_name":"Sticker | zont1x (Holo) | Budapest 2025"},"9769":{"market_hash_name":"Sticker | zont1x (Gold) | Budapest 2025"},"977":{"market_hash_name":"Sticker | Countdown"},"9770":{"market_hash_name":"Sticker | zweih | Budapest 2025"},"9771":{"market_hash_name":"Sticker | zweih (Embroidered) | Budapest 2025"},"9772":{"market_hash_name":"Sticker | zweih (Holo) | Budapest 2025"},"9773":{"market_hash_name":"Sticker | zweih (Gold) | Budapest 2025"},"9774":{"market_hash_name":"Sticker | Heavygod | Budapest 2025"},"9775":{"market_hash_name":"Sticker | Heavygod (Embroidered) | Budapest 2025"},"9776":{"market_hash_name":"Sticker | Heavygod (Holo) | Budapest 2025"},"9777":{"market_hash_name":"Sticker | Heavygod (Gold) | Budapest 2025"},"9778":{"market_hash_name":"Sticker | huNter- | Budapest 2025"},"9779":{"market_hash_name":"Sticker | huNter- (Embroidered) | Budapest 2025"},"978":{"market_hash_name":"Sticker | Countdown (Holo)"},"9780":{"market_hash_name":"Sticker | huNter- (Holo) | Budapest 2025"},"9781":{"market_hash_name":"Sticker | huNter- (Gold) | Budapest 2025"},"9782":{"market_hash_name":"Sticker | malbsMd | Budapest 2025"},"9783":{"market_hash_name":"Sticker | malbsMd (Embroidered) | Budapest 2025"},"9784":{"market_hash_name":"Sticker | malbsMd (Holo) | Budapest 2025"},"9785":{"market_hash_name":"Sticker | malbsMd (Gold) | Budapest 2025"},"9786":{"market_hash_name":"Sticker | MATYS | Budapest 2025"},"9787":{"market_hash_name":"Sticker | MATYS (Embroidered) | Budapest 2025"},"9788":{"market_hash_name":"Sticker | MATYS (Holo) | Budapest 2025"},"9789":{"market_hash_name":"Sticker | MATYS (Gold) | Budapest 2025"},"979":{"market_hash_name":"Sticker | Countdown (Foil)"},"9790":{"market_hash_name":"Sticker | SunPayus | Budapest 2025"},"9791":{"market_hash_name":"Sticker | SunPayus (Embroidered) | Budapest 2025"},"9792":{"market_hash_name":"Sticker | SunPayus (Holo) | Budapest 2025"},"9793":{"market_hash_name":"Sticker | SunPayus (Gold) | Budapest 2025"},"9794":{"market_hash_name":"Sticker | biguzera | Budapest 2025"},"9795":{"market_hash_name":"Sticker | biguzera (Embroidered) | Budapest 2025"},"9796":{"market_hash_name":"Sticker | biguzera (Holo) | Budapest 2025"},"9797":{"market_hash_name":"Sticker | biguzera (Gold) | Budapest 2025"},"9798":{"market_hash_name":"Sticker | dav1deuS | Budapest 2025"},"9799":{"market_hash_name":"Sticker | dav1deuS (Embroidered) | Budapest 2025"},"98":{"market_hash_name":"Sticker | Vox Eminor (Foil) | Katowice 2014"},"980":{"market_hash_name":"Sticker | Don't Worry"},"9800":{"market_hash_name":"Sticker | dav1deuS (Holo) | Budapest 2025"},"9801":{"market_hash_name":"Sticker | dav1deuS (Gold) | Budapest 2025"},"9802":{"market_hash_name":"Sticker | dgt | Budapest 2025"},"9803":{"market_hash_name":"Sticker | dgt (Embroidered) | Budapest 2025"},"9804":{"market_hash_name":"Sticker | dgt (Holo) | Budapest 2025"},"9805":{"market_hash_name":"Sticker | dgt (Gold) | Budapest 2025"},"9806":{"market_hash_name":"Sticker | NQZ | Budapest 2025"},"9807":{"market_hash_name":"Sticker | NQZ (Embroidered) | Budapest 2025"},"9808":{"market_hash_name":"Sticker | NQZ (Holo) | Budapest 2025"},"9809":{"market_hash_name":"Sticker | NQZ (Gold) | Budapest 2025"},"981":{"market_hash_name":"Sticker | Don't Worry (Holo)"},"9810":{"market_hash_name":"Sticker | snow | Budapest 2025"},"9811":{"market_hash_name":"Sticker | snow (Embroidered) | Budapest 2025"},"9812":{"market_hash_name":"Sticker | snow (Holo) | Budapest 2025"},"9813":{"market_hash_name":"Sticker | snow (Gold) | Budapest 2025"},"9814":{"market_hash_name":"Sticker | jottAAA | Budapest 2025"},"9815":{"market_hash_name":"Sticker | jottAAA (Embroidered) | Budapest 2025"},"9816":{"market_hash_name":"Sticker | jottAAA (Holo) | Budapest 2025"},"9817":{"market_hash_name":"Sticker | jottAAA (Gold) | Budapest 2025"},"9818":{"market_hash_name":"Sticker | MAJ3R | Budapest 2025"},"9819":{"market_hash_name":"Sticker | MAJ3R (Embroidered) | Budapest 2025"},"982":{"market_hash_name":"Sticker | Don't Worry (Foil)"},"9820":{"market_hash_name":"Sticker | MAJ3R (Holo) | Budapest 2025"},"9821":{"market_hash_name":"Sticker | MAJ3R (Gold) | Budapest 2025"},"9822":{"market_hash_name":"Sticker | Wicadia | Budapest 2025"},"9823":{"market_hash_name":"Sticker | Wicadia (Embroidered) | Budapest 2025"},"9824":{"market_hash_name":"Sticker | Wicadia (Holo) | Budapest 2025"},"9825":{"market_hash_name":"Sticker | Wicadia (Gold) | Budapest 2025"},"9826":{"market_hash_name":"Sticker | woxic | Budapest 2025"},"9827":{"market_hash_name":"Sticker | woxic (Embroidered) | Budapest 2025"},"9828":{"market_hash_name":"Sticker | woxic (Holo) | Budapest 2025"},"9829":{"market_hash_name":"Sticker | woxic (Gold) | Budapest 2025"},"983":{"market_hash_name":"Sticker | Hard Cluck Life"},"9830":{"market_hash_name":"Sticker | XANTARES | Budapest 2025"},"9831":{"market_hash_name":"Sticker | XANTARES (Embroidered) | Budapest 2025"},"9832":{"market_hash_name":"Sticker | XANTARES (Holo) | Budapest 2025"},"9833":{"market_hash_name":"Sticker | XANTARES (Gold) | Budapest 2025"},"9834":{"market_hash_name":"Sticker | Aleksib | Budapest 2025"},"9835":{"market_hash_name":"Sticker | Aleksib (Embroidered) | Budapest 2025"},"9836":{"market_hash_name":"Sticker | Aleksib (Holo) | Budapest 2025"},"9837":{"market_hash_name":"Sticker | Aleksib (Gold) | Budapest 2025"},"9838":{"market_hash_name":"Sticker | b1t | Budapest 2025"},"9839":{"market_hash_name":"Sticker | b1t (Embroidered) | Budapest 2025"},"984":{"market_hash_name":"Sticker | Hard Cluck Life (Holo)"},"9840":{"market_hash_name":"Sticker | b1t (Holo) | Budapest 2025"},"9841":{"market_hash_name":"Sticker | b1t (Gold) | Budapest 2025"},"9842":{"market_hash_name":"Sticker | iM | Budapest 2025"},"9843":{"market_hash_name":"Sticker | iM (Embroidered) | Budapest 2025"},"9844":{"market_hash_name":"Sticker | iM (Holo) | Budapest 2025"},"9845":{"market_hash_name":"Sticker | iM (Gold) | Budapest 2025"},"9846":{"market_hash_name":"Sticker | makazze | Budapest 2025"},"9847":{"market_hash_name":"Sticker | makazze (Embroidered) | Budapest 2025"},"9848":{"market_hash_name":"Sticker | makazze (Holo) | Budapest 2025"},"9849":{"market_hash_name":"Sticker | makazze (Gold) | Budapest 2025"},"985":{"market_hash_name":"Sticker | Hard Cluck Life (Foil)"},"9850":{"market_hash_name":"Sticker | w0nderful | Budapest 2025"},"9851":{"market_hash_name":"Sticker | w0nderful (Embroidered) | Budapest 2025"},"9852":{"market_hash_name":"Sticker | w0nderful (Holo) | Budapest 2025"},"9853":{"market_hash_name":"Sticker | w0nderful (Gold) | Budapest 2025"},"9854":{"market_hash_name":"Sticker | EliGE | Budapest 2025"},"9855":{"market_hash_name":"Sticker | EliGE (Embroidered) | Budapest 2025"},"9856":{"market_hash_name":"Sticker | EliGE (Holo) | Budapest 2025"},"9857":{"market_hash_name":"Sticker | EliGE (Gold) | Budapest 2025"},"9858":{"market_hash_name":"Sticker | NAF | Budapest 2025"},"9859":{"market_hash_name":"Sticker | NAF (Embroidered) | Budapest 2025"},"986":{"market_hash_name":"Sticker | Move It"},"9860":{"market_hash_name":"Sticker | NAF (Holo) | Budapest 2025"},"9861":{"market_hash_name":"Sticker | NAF (Gold) | Budapest 2025"},"9862":{"market_hash_name":"Sticker | NertZ | Budapest 2025"},"9863":{"market_hash_name":"Sticker | NertZ (Embroidered) | Budapest 2025"},"9864":{"market_hash_name":"Sticker | NertZ (Holo) | Budapest 2025"},"9865":{"market_hash_name":"Sticker | NertZ (Gold) | Budapest 2025"},"9866":{"market_hash_name":"Sticker | siuhy | Budapest 2025"},"9867":{"market_hash_name":"Sticker | siuhy (Embroidered) | Budapest 2025"},"9868":{"market_hash_name":"Sticker | siuhy (Holo) | Budapest 2025"},"9869":{"market_hash_name":"Sticker | siuhy (Gold) | Budapest 2025"},"987":{"market_hash_name":"Sticker | Move It (Holo)"},"9870":{"market_hash_name":"Sticker | ultimate | Budapest 2025"},"9871":{"market_hash_name":"Sticker | ultimate (Embroidered) | Budapest 2025"},"9872":{"market_hash_name":"Sticker | ultimate (Holo) | Budapest 2025"},"9873":{"market_hash_name":"Sticker | ultimate (Gold) | Budapest 2025"},"9874":{"market_hash_name":"Sticker | bodyy | Budapest 2025"},"9875":{"market_hash_name":"Sticker | bodyy (Embroidered) | Budapest 2025"},"9876":{"market_hash_name":"Sticker | bodyy (Holo) | Budapest 2025"},"9877":{"market_hash_name":"Sticker | bodyy (Gold) | Budapest 2025"},"9878":{"market_hash_name":"Sticker | Ex3rcice | Budapest 2025"},"9879":{"market_hash_name":"Sticker | Ex3rcice (Embroidered) | Budapest 2025"},"988":{"market_hash_name":"Sticker | Move It (Foil)"},"9880":{"market_hash_name":"Sticker | Ex3rcice (Holo) | Budapest 2025"},"9881":{"market_hash_name":"Sticker | Ex3rcice (Gold) | Budapest 2025"},"9882":{"market_hash_name":"Sticker | Graviti | Budapest 2025"},"9883":{"market_hash_name":"Sticker | Graviti (Embroidered) | Budapest 2025"},"9884":{"market_hash_name":"Sticker | Graviti (Holo) | Budapest 2025"},"9885":{"market_hash_name":"Sticker | Graviti (Gold) | Budapest 2025"},"9886":{"market_hash_name":"Sticker | Lucky | Budapest 2025"},"9887":{"market_hash_name":"Sticker | Lucky (Embroidered) | Budapest 2025"},"9888":{"market_hash_name":"Sticker | Lucky (Holo) | Budapest 2025"},"9889":{"market_hash_name":"Sticker | Lucky (Gold) | Budapest 2025"},"989":{"market_hash_name":"Sticker | The Awper"},"9890":{"market_hash_name":"Sticker | Maka | Budapest 2025"},"9891":{"market_hash_name":"Sticker | Maka (Embroidered) | Budapest 2025"},"9892":{"market_hash_name":"Sticker | Maka (Holo) | Budapest 2025"},"9893":{"market_hash_name":"Sticker | Maka (Gold) | Budapest 2025"},"9894":{"market_hash_name":"Sticker | device | Budapest 2025"},"9895":{"market_hash_name":"Sticker | device (Embroidered) | Budapest 2025"},"9896":{"market_hash_name":"Sticker | device (Holo) | Budapest 2025"},"9897":{"market_hash_name":"Sticker | device (Gold) | Budapest 2025"},"9898":{"market_hash_name":"Sticker | HooXi | Budapest 2025"},"9899":{"market_hash_name":"Sticker | HooXi (Embroidered) | Budapest 2025"},"99":{"market_hash_name":"Sticker | Gold ESL Wolf (Foil) | Katowice 2014"},"990":{"market_hash_name":"Sticker | The Baiter"},"9900":{"market_hash_name":"Sticker | HooXi (Holo) | Budapest 2025"},"9901":{"market_hash_name":"Sticker | HooXi (Gold) | Budapest 2025"},"9902":{"market_hash_name":"Sticker | jabbi | Budapest 2025"},"9903":{"market_hash_name":"Sticker | jabbi (Embroidered) | Budapest 2025"},"9904":{"market_hash_name":"Sticker | jabbi (Holo) | Budapest 2025"},"9905":{"market_hash_name":"Sticker | jabbi (Gold) | Budapest 2025"},"9906":{"market_hash_name":"Sticker | Magisk | Budapest 2025"},"9907":{"market_hash_name":"Sticker | Magisk (Embroidered) | Budapest 2025"},"9908":{"market_hash_name":"Sticker | Magisk (Holo) | Budapest 2025"},"9909":{"market_hash_name":"Sticker | Magisk (Gold) | Budapest 2025"},"991":{"market_hash_name":"Sticker | The Bomber"},"9910":{"market_hash_name":"Sticker | Staehr | Budapest 2025"},"9911":{"market_hash_name":"Sticker | Staehr (Embroidered) | Budapest 2025"},"9912":{"market_hash_name":"Sticker | Staehr (Holo) | Budapest 2025"},"9913":{"market_hash_name":"Sticker | Staehr (Gold) | Budapest 2025"},"9914":{"market_hash_name":"Sticker | Attacker | Budapest 2025"},"9915":{"market_hash_name":"Sticker | Attacker (Embroidered) | Budapest 2025"},"9916":{"market_hash_name":"Sticker | Attacker (Holo) | Budapest 2025"},"9917":{"market_hash_name":"Sticker | Attacker (Gold) | Budapest 2025"},"9918":{"market_hash_name":"Sticker | JamYoung | Budapest 2025"},"9919":{"market_hash_name":"Sticker | JamYoung (Embroidered) | Budapest 2025"},"992":{"market_hash_name":"Sticker | The Bot"},"9920":{"market_hash_name":"Sticker | JamYoung (Holo) | Budapest 2025"},"9921":{"market_hash_name":"Sticker | JamYoung (Gold) | Budapest 2025"},"9922":{"market_hash_name":"Sticker | Jee | Budapest 2025"},"9923":{"market_hash_name":"Sticker | Jee (Embroidered) | Budapest 2025"},"9924":{"market_hash_name":"Sticker | Jee (Holo) | Budapest 2025"},"9925":{"market_hash_name":"Sticker | Jee (Gold) | Budapest 2025"},"9926":{"market_hash_name":"Sticker | Mercury | Budapest 2025"},"9927":{"market_hash_name":"Sticker | Mercury (Embroidered) | Budapest 2025"},"9928":{"market_hash_name":"Sticker | Mercury (Holo) | Budapest 2025"},"9929":{"market_hash_name":"Sticker | Mercury (Gold) | Budapest 2025"},"993":{"market_hash_name":"Sticker | The Fragger"},"9930":{"market_hash_name":"Sticker | Moseyuh | Budapest 2025"},"9931":{"market_hash_name":"Sticker | Moseyuh (Embroidered) | Budapest 2025"},"9932":{"market_hash_name":"Sticker | Moseyuh (Holo) | Budapest 2025"},"9933":{"market_hash_name":"Sticker | Moseyuh (Gold) | Budapest 2025"},"9934":{"market_hash_name":"Sticker | brnz4n | Budapest 2025"},"9935":{"market_hash_name":"Sticker | brnz4n (Embroidered) | Budapest 2025"},"9936":{"market_hash_name":"Sticker | brnz4n (Holo) | Budapest 2025"},"9937":{"market_hash_name":"Sticker | brnz4n (Gold) | Budapest 2025"},"9938":{"market_hash_name":"Sticker | exit | Budapest 2025"},"9939":{"market_hash_name":"Sticker | exit (Embroidered) | Budapest 2025"},"994":{"market_hash_name":"Sticker | The Leader"},"9940":{"market_hash_name":"Sticker | exit (Holo) | Budapest 2025"},"9941":{"market_hash_name":"Sticker | exit (Gold) | Budapest 2025"},"9942":{"market_hash_name":"Sticker | insani | Budapest 2025"},"9943":{"market_hash_name":"Sticker | insani (Embroidered) | Budapest 2025"},"9944":{"market_hash_name":"Sticker | insani (Holo) | Budapest 2025"},"9945":{"market_hash_name":"Sticker | insani (Gold) | Budapest 2025"},"9946":{"market_hash_name":"Sticker | kl1m | Budapest 2025"},"9947":{"market_hash_name":"Sticker | kl1m (Embroidered) | Budapest 2025"},"9948":{"market_hash_name":"Sticker | kl1m (Holo) | Budapest 2025"},"9949":{"market_hash_name":"Sticker | kl1m (Gold) | Budapest 2025"},"995":{"market_hash_name":"Sticker | The Lurker"},"9950":{"market_hash_name":"Sticker | qikert | Budapest 2025"},"9951":{"market_hash_name":"Sticker | qikert (Embroidered) | Budapest 2025"},"9952":{"market_hash_name":"Sticker | qikert (Holo) | Budapest 2025"},"9953":{"market_hash_name":"Sticker | qikert (Gold) | Budapest 2025"},"9954":{"market_hash_name":"Sticker | Grim | Budapest 2025"},"9955":{"market_hash_name":"Sticker | Grim (Embroidered) | Budapest 2025"},"9956":{"market_hash_name":"Sticker | Grim (Holo) | Budapest 2025"},"9957":{"market_hash_name":"Sticker | Grim (Gold) | Budapest 2025"},"9958":{"market_hash_name":"Sticker | hallzerk | Budapest 2025"},"9959":{"market_hash_name":"Sticker | hallzerk (Embroidered) | Budapest 2025"},"996":{"market_hash_name":"Sticker | The 'Nader"},"9960":{"market_hash_name":"Sticker | hallzerk (Holo) | Budapest 2025"},"9961":{"market_hash_name":"Sticker | hallzerk (Gold) | Budapest 2025"},"9962":{"market_hash_name":"Sticker | JT | Budapest 2025"},"9963":{"market_hash_name":"Sticker | JT (Embroidered) | Budapest 2025"},"9964":{"market_hash_name":"Sticker | JT (Holo) | Budapest 2025"},"9965":{"market_hash_name":"Sticker | JT (Gold) | Budapest 2025"},"9966":{"market_hash_name":"Sticker | Kvem | Budapest 2025"},"9967":{"market_hash_name":"Sticker | Kvem (Embroidered) | Budapest 2025"},"9968":{"market_hash_name":"Sticker | Kvem (Holo) | Budapest 2025"},"9969":{"market_hash_name":"Sticker | Kvem (Gold) | Budapest 2025"},"997":{"market_hash_name":"Sticker | The Ninja"},"9970":{"market_hash_name":"Sticker | nicx | Budapest 2025"},"9971":{"market_hash_name":"Sticker | nicx (Embroidered) | Budapest 2025"},"9972":{"market_hash_name":"Sticker | nicx (Holo) | Budapest 2025"},"9973":{"market_hash_name":"Sticker | nicx (Gold) | Budapest 2025"},"9974":{"market_hash_name":"Sticker | dumau | Budapest 2025"},"9975":{"market_hash_name":"Sticker | dumau (Embroidered) | Budapest 2025"},"9976":{"market_hash_name":"Sticker | dumau (Holo) | Budapest 2025"},"9977":{"market_hash_name":"Sticker | dumau (Gold) | Budapest 2025"},"9978":{"market_hash_name":"Sticker | latto | Budapest 2025"},"9979":{"market_hash_name":"Sticker | latto (Embroidered) | Budapest 2025"},"998":{"market_hash_name":"Sticker | Support"},"9980":{"market_hash_name":"Sticker | latto (Holo) | Budapest 2025"},"9981":{"market_hash_name":"Sticker | latto (Gold) | Budapest 2025"},"9982":{"market_hash_name":"Sticker | lux | Budapest 2025"},"9983":{"market_hash_name":"Sticker | lux (Embroidered) | Budapest 2025"},"9984":{"market_hash_name":"Sticker | lux (Holo) | Budapest 2025"},"9985":{"market_hash_name":"Sticker | lux (Gold) | Budapest 2025"},"9986":{"market_hash_name":"Sticker | n1ssim | Budapest 2025"},"9987":{"market_hash_name":"Sticker | n1ssim (Embroidered) | Budapest 2025"},"9988":{"market_hash_name":"Sticker | n1ssim (Holo) | Budapest 2025"},"9989":{"market_hash_name":"Sticker | n1ssim (Gold) | Budapest 2025"},"999":{"market_hash_name":"Sticker | The Awper (Foil)"},"9990":{"market_hash_name":"Sticker | saadzin | Budapest 2025"},"9991":{"market_hash_name":"Sticker | saadzin (Embroidered) | Budapest 2025"},"9992":{"market_hash_name":"Sticker | saadzin (Holo) | Budapest 2025"},"9993":{"market_hash_name":"Sticker | saadzin (Gold) | Budapest 2025"},"9994":{"market_hash_name":"Sticker | broky | Budapest 2025"},"9995":{"market_hash_name":"Sticker | broky (Embroidered) | Budapest 2025"},"9996":{"market_hash_name":"Sticker | broky (Holo) | Budapest 2025"},"9997":{"market_hash_name":"Sticker | broky (Gold) | Budapest 2025"},"9998":{"market_hash_name":"Sticker | frozen | Budapest 2025"},"9999":{"market_hash_name":"Sticker | frozen (Embroidered) | Budapest 2025"}},"keychains":{"1":{"market_hash_name":"Charm | Lil' Ava"},"10":{"market_hash_name":"Charm | Hot Sauce"},"11":{"market_hash_name":"Charm | Diamond Dog"},"12":{"market_hash_name":"Charm | Pinch O' Salt"},"13":{"market_hash_name":"Charm | Diner Dog"},"14":{"market_hash_name":"Charm | Lil' Teacup"},"15":{"market_hash_name":"Charm | Lil' SAS"},"16":{"market_hash_name":"Charm | Hot Wurst"},"17":{"market_hash_name":"Charm | Baby's AK"},"18":{"market_hash_name":"Charm | Die-cast AK"},"19":{"market_hash_name":"Charm | Pocket AWP"},"2":{"market_hash_name":"Charm | That's Bananas"},"20":{"market_hash_name":"Charm | Titeenium AWP"},"21":{"market_hash_name":"Charm | Baby Karat CT"},"22":{"market_hash_name":"Charm | Whittle Knife"},"23":{"market_hash_name":"Charm | POP Art"},"24":{"market_hash_name":"Charm | Lil' Squirt"},"25":{"market_hash_name":"Charm | Disco MAC"},"26":{"market_hash_name":"Charm | Backsplash"},"27":{"market_hash_name":"Charm | Lil' Cap Gun"},"28":{"market_hash_name":"Charm | Hot Hands"},"29":{"market_hash_name":"Charm | Semi-Precious"},"3":{"market_hash_name":"Charm | Lil' Whiskers"},"30":{"market_hash_name":"Charm | Baby Karat T"},"31":{"market_hash_name":"Charm | Glamour Shot"},"32":{"market_hash_name":"Charm | Stitch-Loaded"},"33":{"market_hash_name":"Charm | Lil' Squatch"},"36":{"market_hash_name":"Charm | Austin 2025 Highlight"},"37":{"market_hash_name":"Charm | Sticker Slab"},"38":{"market_hash_name":"Charm | Lil' Curse"},"39":{"market_hash_name":"Charm | Lil' Serpent"},"4":{"market_hash_name":"Charm | Lil' Sandy"},"40":{"market_hash_name":"Charm | Lil' Baller"},"41":{"market_hash_name":"Charm | Dead Weight"},"42":{"market_hash_name":"Charm | Lil' Prick"},"43":{"market_hash_name":"Charm | Lil' Buns"},"44":{"market_hash_name":"Charm | Lil' Smokey"},"45":{"market_hash_name":"Charm | Lil' Eldritch"},"46":{"market_hash_name":"Charm | Lil' Happy"},"47":{"market_hash_name":"Charm | Magmatude"},"48":{"market_hash_name":"Charm | Lil' Cackle"},"49":{"market_hash_name":"Charm | Quick Silver"},"5":{"market_hash_name":"Charm | Chicken Lil'"},"50":{"market_hash_name":"Charm | Lil' No. 2"},"51":{"market_hash_name":"Charm | Piñatita"},"52":{"market_hash_name":"Charm | Pocket Pop"},"53":{"market_hash_name":"Charm | Lil' Hero"},"54":{"market_hash_name":"Charm | Lil' Tusk"},"55":{"market_hash_name":"Charm | Lil' Goop"},"56":{"market_hash_name":"Charm | Hang Loose"},"57":{"market_hash_name":"Charm | Lil' Vino"},"58":{"market_hash_name":"Charm | Lil' Moments"},"59":{"market_hash_name":"Charm | Lil' Boo"},"6":{"market_hash_name":"Charm | Lil' Crass"},"60":{"market_hash_name":"Charm | Lil' Chirp"},"61":{"market_hash_name":"Charm | Big Brain"},"62":{"market_hash_name":"Charm | Biomech"},"63":{"market_hash_name":"Charm | Splatter Cat"},"64":{"market_hash_name":"Charm | Gritty"},"65":{"market_hash_name":"Charm | Fluffy"},"66":{"market_hash_name":"Charm | Whittle Guy"},"67":{"market_hash_name":"Charm | Lil' Zen"},"68":{"market_hash_name":"Charm | Lil' Facelift"},"69":{"market_hash_name":"Charm | Lil' Chomper"},"7":{"market_hash_name":"Charm | Hot Howl"},"70":{"market_hash_name":"Charm | Lil' Bloody"},"71":{"market_hash_name":"Charm | Lil' Dumplin'"},"72":{"market_hash_name":"Charm | Bomb Tag"},"73":{"market_hash_name":"Charm | Glitter Bomb"},"74":{"market_hash_name":"Charm | Lil' Eco"},"75":{"market_hash_name":"Charm | Hungry Eyes"},"76":{"market_hash_name":"Charm | Eye of Ball"},"77":{"market_hash_name":"Charm | Lil' Yeti"},"78":{"market_hash_name":"Charm | 8 Ball IGL"},"79":{"market_hash_name":"Charm | Flash Bomb"},"8":{"market_hash_name":"Charm | Big Kev"},"80":{"market_hash_name":"Charm | Lil' Ferno"},"81":{"market_hash_name":"Charm | Butane Buddy"},"82":{"market_hash_name":"Charm | Dr. Brian"},"83":{"market_hash_name":"Charm | Budapest 2025 Highlight"},"84":{"market_hash_name":"Charm | Cologne 2026 Highlight"},"9":{"market_hash_name":"Charm | Lil' Monster"}},"collectibles":{"4682":{"market_hash_name":"Civil Protection Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-POo1IqbFC2PHxe0nsbE8GC22zUx-sDvcmYn6cHPEbAd0XJZ1ReIK50XpjJS5YM2GeADW","rarity":6,"price":1562},"4683":{"market_hash_name":"Sustenance! Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-P-ppd6fGXjeUl-wl5rU5HC3kx04j5DjTn9j6cHORawQnCsBzR-Bc4xbqjJS5YEDBxb_n","rarity":5,"price":611},"4684":{"market_hash_name":"Vortigaunt Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-MepvJKiRDGbCkLYu47U7Hi22xktw5GmGyYqvcymeawRzDZsiRrYI4xK6jJS5YFv2VefZ","rarity":5,"price":614},"4685":{"market_hash_name":"Headcrab Glyph Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-Peo_eKaWCDSVw7pytrhqTS-wwBkk4z6GzNn7dS6faVB0AppwE-8Cu0LujJS5YAoC0a5w","rarity":4,"price":464},"4686":{"market_hash_name":"Health Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983_Ouo6IqiQCGHDkOsm5OJqTnq3xkwj4WrVztagcC7CaQ8jX8cmQbUOs0S9jJS5YI3K3yOE","rarity":4,"price":2091},"4687":{"market_hash_name":"Lambda Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-OepsIvOXCzSRw7gns7g8SS3lzR925j7QwtqudC6Ub1IgCMNwQO4L5Be8jJS5YIYAgqaU","rarity":3,"price":516},"4688":{"market_hash_name":"Copper Lambda Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-Ouo-IafGWWHDwuol5-NsG3Dgwx90sWSHm9eocnqXPA92D8BxEOdfthHtjJS5YHLdlSug","rarity":4,"price":566},"4689":{"market_hash_name":"CMB Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-O-ppeaPLXTKSlb9yteU5GnjqkRlysj-GzdardH3EZwAmCJUmF-JfukLpjJS5YJoNZVF-","rarity":3,"price":363},"4690":{"market_hash_name":"Black Mesa Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-Puo5IvWQDTHHkLwg5rFtFyjgzB8lsGTQztmreHuXOgMhWcFwQe4IsELrjJS5YLQKtvDj","rarity":3,"price":451},"4691":{"market_hash_name":"Combine Helmet Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983-MOpoJfHGCmXGxLx1tbdtHy3klxx152uHno6uJHnFbAUjA5YmQOBetBbujJS5YBnSVKcz","rarity":3,"price":394},"4692":{"market_hash_name":"City 17 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983_OepvI_PADGLCx7Zw6bY7FijlzU0h4GzTmdb4JHufPFMgWMAlRe8I4RK5jJS5YKPJo3vd","rarity":3,"price":304},"6101":{"market_hash_name":"Dust II Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-TdI-6DgOqY5IqmVCGPEkewi5LdqGX_ixkR_5T6Gwt-oeHqUaQQgA8NxReNZ5w74zIPppRxQfg","rarity":6,"price":2935},"6102":{"market_hash_name":"Guardian Elite Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaapoLPmHCynDlr8g4rg7HXCwkEx1tWjXzo2rcC2ebw4oX5VyFOYO40O8kYLnNbvk-UWA3DGIpJ3Y","rarity":6,"price":3266},"6103":{"market_hash_name":"Mirage Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8CtJ7vWrJvc8JKaVXWWVx7pw6bZvGC3llk1x62zXyN77cnvDag4oDcZ1EecNshWm0oqwbKmGaXg","rarity":5,"price":932},"6104":{"market_hash_name":"Inferno Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9Cxd6uCgZ-o4JKjLWGKTkrci5eVvTXznkUh_42jSztquJyrCalImX5okEeEKtUS7jJS5YMeVnaEz","rarity":5,"price":542},"6105":{"market_hash_name":"Italy Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9DZa4-vgMPQ5c6OWXz7GkOgu5Oc7Snu1wkwm62zUzN2geXiWZgEpApp0QLRY4w74zIMBHEAMQQ","rarity":4,"price":287},"6106":{"market_hash_name":"Victory Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6ytY-_28ceo4c6PCVmKSw75z4-VvF3rrwUxxsWXUw9auc3mWOlV0W5d2QbYP4RO_jJS5YEEizVQ6","rarity":4,"price":467},"6107":{"market_hash_name":"Militia Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8CtX5uanaepsdaTECzfFmbwvsrY4G3HmzEpwsmWBmYn_dSjDZlMiCcZ2E7MMthjsjJS5YJ6H7qp0","rarity":4,"price":327},"6108":{"market_hash_name":"Nuke Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8zdQ6rz7Mfc9JqGSWTGWxbYv5bJqHiy1kB9-4jjRntuseCnDZgJxC8NyTbFZrFDmxfMDMe6Y","rarity":3,"price":524},"6109":{"market_hash_name":"Train Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6TBa5vzgPvE_JaKQWjbAwLsgtrY4HHDmlhxy5G_Qydv_IH-VbwcoA5B4FOQNtQ74zIMnqsHSTw","rarity":3,"price":310},"6110":{"market_hash_name":"Guardian Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaaojJaXGCz_Jmb0utLM_G361zUQl6mrWzN2ocnvDOgImCccjEO9b5kO4x8qnab3wc3zI_w","rarity":3,"price":336},"6111":{"market_hash_name":"Tactics Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6SNY-_ute-o7IaDGDTDEwLci5uQ_HXnhwRwh5zjTmYuqJH-VOgEpD5ckQLFe50PtjJS5YBzTReYq","rarity":3,"price":304},"6112":{"market_hash_name":"Guardian 2 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaapScr7CDzeVlegn5eI-Gnu2wh4itzvVntf9cX6QbAZ1CJcjQeMLuhCwmtbnKaq8sJtUlEYN","rarity":3,"price":306},"6113":{"market_hash_name":"Bravo Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_zBa-f3gO6A0eKmVDDKUk-xy6LZqTHDikRgl4GnczdmoIymQbwVyD5AlRLIL5A74zIPjyfU6UQ","rarity":3,"price":293},"6114":{"market_hash_name":"Baggage Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_yNc6POpbeo7IfKSX2LCl-gu47Y5GSyxzBsl4G2Gy4qpd3LFalIlWcAkFuFbtRi-jJS5YMmlO3-V","rarity":3,"price":274},"6115":{"market_hash_name":"Phoenix Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf7SpU6vyncOo5d_TFCzbAlbxw6LhvFnjmkUt2sGmDw438ICrEaFMmCJZxROVbtkXqjJS5YPuQfFr9","rarity":3,"price":333},"6116":{"market_hash_name":"Office Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8iRd5vGrJvJoJfbAXzaTwr5y4OVtH3Hjl0t142mGwtn8dC6WaAV0DJRzQeQOsxCm0oqwx6fT5bE","rarity":4,"price":611},"6117":{"market_hash_name":"Cobblestone Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_i1Z7f6re7BiLvXdC2TJwugm5rM9GHq3wEQh6zzdzY77cHPGOlRzDcMkQrJZ4BXuwIXmY_SiuVIIpUYynw","rarity":4,"price":725},"6118":{"market_hash_name":"Overpass Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf8jRe_eKve7cjIqeQVj_BkbcntuRtTXvhkEklsGndw9yvIi_BPFJ0Wcd2F7QKsRLql8qnab3blaApHQ","rarity":4,"price":296},"6119":{"market_hash_name":"Bloodhound Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_y5U4PamZ7FjJL7EVz_FketwseBqFnuywht0tzzUmN2sc3KWagR2DJV0Q-FY50S5kYbhKaq8sCJEMPex","rarity":5,"price":560},"6120":{"market_hash_name":"Cache Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_iNY5_fgPPE6cqnHDGXImLYjtrhrHXy1whxzsGnRz96gd3KUOFAjCZAlF7YOsA74zINPPdgdEg","rarity":5,"price":1564},"6121":{"market_hash_name":"Valeria Phoenix Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6yNX6uCnaeo8d_HLXj-Uxbwl4OVqHi2xkEgitWuHnNqsdinGaQR1CJF4Qe9e5xK5jJS5YMqaU_tR","rarity":6,"price":4771},"6122":{"market_hash_name":"Chroma Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_ipJ4P-vJv05daDCDzGRw74i5uc6Gy-1wR8j4WjVwt2udn6ROlUjW5ZwFrQMsRGm0oqwitzjS5Q","rarity":6,"price":1158},"6123":{"market_hash_name":"Guardian 3 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-jda_fanaapSc77KV2TAlbkk4OA8Fi3jlBgm4jvQm9esI3iWOlQoW5VxF-Ze5hC-wIWzKaq8sP_rqume","rarity":3,"price":244},"6124":{"market_hash_name":"Canals Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_iNV7v69JvM7d6WRDTbFk7514rJoGnmyzEh0tW-DzNj9eS2ROFQoW5V3QOZb4EWm0oqwd_tTteU","rarity":3,"price":275},"6125":{"market_hash_name":"Welcome to the Clutch Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6idX7P2jbZt5L8-HBmKvwuJjpOJhAX_nlh535W_cmNerdnufbwNzWJRzRuVZ5kS9xtS0MLvi5A2N2Y9HzX_gznQeAZAPHrk","rarity":3,"price":304},"6126":{"market_hash_name":"Death Sentence Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-Sda-_qRe6FjNPWdDWLew7h047E9GijmzE935mXWytirdinFPwV0A8MkQbRYtBe-m4W0Yb7g7xue1dzixNaRHA","rarity":3,"price":319},"6127":{"market_hash_name":"Inferno 2 Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9Cxd6uCgZ5s_bqWVVzWRlbcksbM4HSjnxRt-tW2AytmrcX_Fb1cmD8d0E-9YsRG-wNP5d7S1bIMTRb4","rarity":4,"price":292},"6128":{"market_hash_name":"Wildfire Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf6itX6_SneqEjIvPLDDbGx-wnsrk7Fyzmx0R35T_TwomudyrGalckX5RzRLYMtUS8wMqnab2__2r_Pw","rarity":4,"price":396},"6129":{"market_hash_name":"Easy Peasy Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf-CNI9s2-baV-Ob7CDWPDxeok5bc4HX-yzEp0427Twor4c3uQawIgCMB0F7NbsRa5kYDlKaq8sEkrBB7j","rarity":4,"price":307},"6130":{"market_hash_name":"Aces High Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_CFe_M2mYaNlbqTKCzHAlLon57c5Fy3nzRhxt2-Am974IinFbVJxD5V4Q7UJthjplN35d7S1i96h-Rg","rarity":5,"price":736},"6131":{"market_hash_name":"Hydra Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9Ttf_fPgMfduefKSDDPDlL8j47g4SnnhkBx05zjRyNyqc3LFagUgWJZ2TOMJ4A74zIOghqDGLQ","rarity":5,"price":540},"6132":{"market_hash_name":"Howl Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf9S1M47ytaaFsePOWXD7GmL0uteVsTnvrwUh35GnTyIqvcH-WaVV1A8cjEOBYrFDmxemoXWxJ","rarity":6,"price":4488},"6133":{"market_hash_name":"Brigadier General Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_zBS6POqYaF_H_eWAGKCwOI45LloHCvjkxtw5j7Rz93_JS-fbQQkX5olQrMC4RTqwd2yZerl41eIiZUFk3ubFYxEoQ","rarity":6,"price":1292},"6134":{"market_hash_name":"Alyx Pin","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJai2l-lQ8ndwMWvJjSU6lp58YTg41vrRCLhl5jf_C5C983_OOo6c6jECmXEluoltLBsTCqywht14m7Wm9qgIi-eaA8nDJdxQOQK5BPqjJS5YAqVR3CV","rarity":6,"price":2854}},"containers":{"4001":{"market_hash_name":"CS:GO Weapon Case"},"4002":{"market_hash_name":"eSports 2013 Case"},"4003":{"market_hash_name":"Operation Bravo Case"},"4004":{"market_hash_name":"CS:GO Weapon Case 2"},"4005":{"market_hash_name":"eSports 2013 Winter Case"},"4006":{"market_hash_name":"DreamHack 2013 Souvenir Package"},"4007":{"market_hash_name":"Sticker Capsule"},"4009":{"market_hash_name":"Winter Offensive Weapon Case"},"4010":{"market_hash_name":"CS:GO Weapon Case 3"},"4011":{"market_hash_name":"Operation Phoenix Weapon Case"},"4012":{"market_hash_name":"Sticker Capsule 2"},"4013":{"market_hash_name":"EMS One 2014 Souvenir Package"},"4014":{"market_hash_name":"EMS Katowice 2014 Challengers"},"4015":{"market_hash_name":"EMS Katowice 2014 Legends"},"4016":{"market_hash_name":"Community Sticker Capsule 1"},"4017":{"market_hash_name":"Huntsman Weapon Case"},"4018":{"market_hash_name":"Operation Breakout Weapon Case"},"4019":{"market_hash_name":"eSports 2014 Summer Case"},"4020":{"market_hash_name":"ESL One Cologne 2014 Legends"},"4021":{"market_hash_name":"ESL One Cologne 2014 Challengers"},"4022":{"market_hash_name":"ESL One Cologne 2014 Dust II Souvenir Package"},"4023":{"market_hash_name":"ESL One Cologne 2014 Inferno Souvenir Package"},"4024":{"market_hash_name":"ESL One Cologne 2014 Mirage Souvenir Package"},"4025":{"market_hash_name":"ESL One Cologne 2014 Nuke Souvenir Package"},"4026":{"market_hash_name":"ESL One Cologne 2014 Cache Souvenir Package"},"4027":{"market_hash_name":"ESL One Cologne 2014 Cobblestone Souvenir Package"},"4028":{"market_hash_name":"ESL One Cologne 2014 Overpass Souvenir Package"},"4029":{"market_hash_name":"Operation Vanguard Weapon Case"},"4030":{"market_hash_name":"DreamHack 2014 Legends (Holo-Foil)"},"4031":{"market_hash_name":"DreamHack 2014 Dust II Souvenir Package"},"4032":{"market_hash_name":"DreamHack 2014 Inferno Souvenir Package"},"4033":{"market_hash_name":"DreamHack 2014 Mirage Souvenir Package"},"4034":{"market_hash_name":"DreamHack 2014 Nuke Souvenir Package"},"4035":{"market_hash_name":"DreamHack 2014 Cache Souvenir Package"},"4036":{"market_hash_name":"DreamHack 2014 Cobblestone Souvenir Package"},"4037":{"market_hash_name":"DreamHack 2014 Overpass Souvenir Package"},"4061":{"market_hash_name":"Chroma Case"},"4079":{"market_hash_name":"ESL One Katowice 2015 Dust II Souvenir Package"},"4080":{"market_hash_name":"ESL One Katowice 2015 Inferno Souvenir Package"},"4081":{"market_hash_name":"ESL One Katowice 2015 Mirage Souvenir Package"},"4082":{"market_hash_name":"ESL One Katowice 2015 Nuke Souvenir Package"},"4083":{"market_hash_name":"ESL One Katowice 2015 Cache Souvenir Package"},"4084":{"market_hash_name":"ESL One Katowice 2015 Cobblestone Souvenir Package"},"4085":{"market_hash_name":"ESL One Katowice 2015 Overpass Souvenir Package"},"4086":{"market_hash_name":"ESL One Katowice 2015 Legends (Holo-Foil)"},"4087":{"market_hash_name":"ESL One Katowice 2015 Challengers (Holo-Foil)"},"4089":{"market_hash_name":"Chroma 2 Case"},"4090":{"market_hash_name":"Enfu Sticker Capsule"},"4091":{"market_hash_name":"Falchion Case"},"4109":{"market_hash_name":"ESL One Cologne 2015 Legends (Foil)"},"4110":{"market_hash_name":"ESL One Cologne 2015 Challengers (Foil)"},"4111":{"market_hash_name":"Autograph Capsule | Group A (Foil) | Cologne 2015"},"4112":{"market_hash_name":"Autograph Capsule | Group B (Foil) | Cologne 2015"},"4113":{"market_hash_name":"Autograph Capsule | Group C (Foil) | Cologne 2015"},"4114":{"market_hash_name":"Autograph Capsule | Group D (Foil) | Cologne 2015"},"4115":{"market_hash_name":"Autograph Capsule | Fnatic | Cologne 2015"},"4116":{"market_hash_name":"Autograph Capsule | Luminosity Gaming | Cologne 2015"},"4117":{"market_hash_name":"Autograph Capsule | Natus Vincere | Cologne 2015"},"4118":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | Cologne 2015"},"4119":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Cologne 2015"},"4120":{"market_hash_name":"Autograph Capsule | Titan | Cologne 2015"},"4121":{"market_hash_name":"Autograph Capsule | Team SoloMid | Cologne 2015"},"4122":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Cologne 2015"},"4123":{"market_hash_name":"Autograph Capsule | mousesports | Cologne 2015"},"4124":{"market_hash_name":"Autograph Capsule | Renegades | Cologne 2015"},"4125":{"market_hash_name":"Autograph Capsule | Team Immunity | Cologne 2015"},"4126":{"market_hash_name":"Autograph Capsule | Team eBettle | Cologne 2015"},"4127":{"market_hash_name":"Autograph Capsule | Team Kinguin | Cologne 2015"},"4128":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Cologne 2015"},"4129":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | Cologne 2015"},"4130":{"market_hash_name":"Autograph Capsule | Cloud9 G2A | Cologne 2015"},"4131":{"market_hash_name":"ESL One Cologne 2015 Dust II Souvenir Package"},"4132":{"market_hash_name":"ESL One Cologne 2015 Mirage Souvenir Package"},"4133":{"market_hash_name":"ESL One Cologne 2015 Inferno Souvenir Package"},"4134":{"market_hash_name":"ESL One Cologne 2015 Cobblestone Souvenir Package"},"4135":{"market_hash_name":"ESL One Cologne 2015 Overpass Souvenir Package"},"4136":{"market_hash_name":"ESL One Cologne 2015 Cache Souvenir Package"},"4137":{"market_hash_name":"ESL One Cologne 2015 Train Souvenir Package"},"4138":{"market_hash_name":"Shadow Case"},"4156":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Legends (Foil)"},"4157":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Challengers (Foil)"},"4158":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | Cluj-Napoca 2015"},"4159":{"market_hash_name":"Autograph Capsule | Legends (Foil) | Cluj-Napoca 2015"},"4160":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | Cluj-Napoca 2015"},"4161":{"market_hash_name":"Autograph Capsule | Team Dignitas | Cluj-Napoca 2015"},"4162":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | Cluj-Napoca 2015"},"4163":{"market_hash_name":"Autograph Capsule | Vexed Gaming | Cluj-Napoca 2015"},"4164":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Cluj-Napoca 2015"},"4165":{"market_hash_name":"Autograph Capsule | Team Liquid | Cluj-Napoca 2015"},"4166":{"market_hash_name":"Autograph Capsule | mousesports | Cluj-Napoca 2015"},"4167":{"market_hash_name":"Autograph Capsule | Natus Vincere | Cluj-Napoca 2015"},"4168":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Cluj-Napoca 2015"},"4169":{"market_hash_name":"Autograph Capsule | Cloud9 | Cluj-Napoca 2015"},"4170":{"market_hash_name":"Autograph Capsule | G2 Esports | Cluj-Napoca 2015"},"4171":{"market_hash_name":"Autograph Capsule | Titan | Cluj-Napoca 2015"},"4172":{"market_hash_name":"Autograph Capsule | Team SoloMid | Cluj-Napoca 2015"},"4173":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Cluj-Napoca 2015"},"4174":{"market_hash_name":"Autograph Capsule | Fnatic | Cluj-Napoca 2015"},"4175":{"market_hash_name":"Autograph Capsule | Luminosity Gaming | Cluj-Napoca 2015"},"4176":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Dust II Souvenir Package"},"4177":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Mirage Souvenir Package"},"4178":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Inferno Souvenir Package"},"4179":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package"},"4180":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Overpass Souvenir Package"},"4181":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Cache Souvenir Package"},"4182":{"market_hash_name":"DreamHack Cluj-Napoca 2015 Train Souvenir Package"},"4183":{"market_hash_name":"Pinups Capsule"},"4184":{"market_hash_name":"Slid3 Capsule"},"4185":{"market_hash_name":"Team Roles Capsule"},"4186":{"market_hash_name":"Revolver Case"},"4187":{"market_hash_name":"Operation Wildfire Case"},"4205":{"market_hash_name":"MLG Columbus 2016 Legends (Holo-Foil)"},"4206":{"market_hash_name":"MLG Columbus 2016 Challengers (Holo-Foil)"},"4207":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | MLG Columbus 2016"},"4208":{"market_hash_name":"Autograph Capsule | Legends (Foil) | MLG Columbus 2016"},"4209":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | MLG Columbus 2016"},"4210":{"market_hash_name":"Autograph Capsule | Splyce | MLG Columbus 2016"},"4211":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | MLG Columbus 2016"},"4212":{"market_hash_name":"Autograph Capsule | Gambit Gaming | MLG Columbus 2016"},"4213":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | MLG Columbus 2016"},"4214":{"market_hash_name":"Autograph Capsule | Team Liquid | MLG Columbus 2016"},"4215":{"market_hash_name":"Autograph Capsule | mousesports | MLG Columbus 2016"},"4216":{"market_hash_name":"Autograph Capsule | Natus Vincere | MLG Columbus 2016"},"4217":{"market_hash_name":"Autograph Capsule | Virtus.Pro | MLG Columbus 2016"},"4218":{"market_hash_name":"Autograph Capsule | Cloud9 | MLG Columbus 2016"},"4219":{"market_hash_name":"Autograph Capsule | G2 Esports | MLG Columbus 2016"},"4220":{"market_hash_name":"Autograph Capsule | FaZe Clan | MLG Columbus 2016"},"4221":{"market_hash_name":"Autograph Capsule | Astralis | MLG Columbus 2016"},"4222":{"market_hash_name":"Autograph Capsule | Team EnVyUs | MLG Columbus 2016"},"4223":{"market_hash_name":"Autograph Capsule | Fnatic | MLG Columbus 2016"},"4224":{"market_hash_name":"Autograph Capsule | Luminosity Gaming | MLG Columbus 2016"},"4225":{"market_hash_name":"MLG Columbus 2016 Dust II Souvenir Package"},"4226":{"market_hash_name":"MLG Columbus 2016 Mirage Souvenir Package"},"4227":{"market_hash_name":"MLG Columbus 2016 Inferno Souvenir Package"},"4228":{"market_hash_name":"MLG Columbus 2016 Cobblestone Souvenir Package"},"4229":{"market_hash_name":"MLG Columbus 2016 Overpass Souvenir Package"},"4230":{"market_hash_name":"MLG Columbus 2016 Cache Souvenir Package"},"4231":{"market_hash_name":"MLG Columbus 2016 Train Souvenir Package"},"4232":{"market_hash_name":"MLG Columbus 2016 Nuke Souvenir Package"},"4233":{"market_hash_name":"Chroma 3 Case"},"4234":{"market_hash_name":"Community Graffiti Box 1"},"4235":{"market_hash_name":"Collectible Pins Capsule Series 1"},"4236":{"market_hash_name":"Gamma Case"},"4254":{"market_hash_name":"Cologne 2016 Legends (Holo-Foil)"},"4255":{"market_hash_name":"Cologne 2016 Challengers (Holo-Foil)"},"4256":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | Cologne 2016"},"4257":{"market_hash_name":"Autograph Capsule | Legends (Foil) | Cologne 2016"},"4258":{"market_hash_name":"Autograph Capsule | Ninjas in Pyjamas | Cologne 2016"},"4259":{"market_hash_name":"Autograph Capsule | OpTic Gaming | Cologne 2016"},"4260":{"market_hash_name":"Autograph Capsule | Counter Logic Gaming | Cologne 2016"},"4261":{"market_hash_name":"Autograph Capsule | Gambit Gaming | Cologne 2016"},"4262":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Cologne 2016"},"4263":{"market_hash_name":"Autograph Capsule | Team Liquid | Cologne 2016"},"4264":{"market_hash_name":"Autograph Capsule | mousesports | Cologne 2016"},"4265":{"market_hash_name":"Autograph Capsule | Natus Vincere | Cologne 2016"},"4266":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Cologne 2016"},"4267":{"market_hash_name":"Autograph Capsule | SK Gaming | Cologne 2016"},"4268":{"market_hash_name":"Autograph Capsule | G2 Esports | Cologne 2016"},"4269":{"market_hash_name":"Autograph Capsule | FaZe Clan | Cologne 2016"},"4270":{"market_hash_name":"Autograph Capsule | Astralis | Cologne 2016"},"4271":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Cologne 2016"},"4272":{"market_hash_name":"Autograph Capsule | Fnatic | Cologne 2016"},"4273":{"market_hash_name":"Autograph Capsule | Team Dignitas | Cologne 2016"},"4274":{"market_hash_name":"Cologne 2016 Dust II Souvenir Package"},"4275":{"market_hash_name":"Cologne 2016 Mirage Souvenir Package"},"4276":{"market_hash_name":"Cologne 2016 Cobblestone Souvenir Package"},"4277":{"market_hash_name":"Cologne 2016 Overpass Souvenir Package"},"4278":{"market_hash_name":"Cologne 2016 Cache Souvenir Package"},"4279":{"market_hash_name":"Cologne 2016 Train Souvenir Package"},"4280":{"market_hash_name":"Cologne 2016 Nuke Souvenir Package"},"4281":{"market_hash_name":"Gamma 2 Case"},"4282":{"market_hash_name":"Sugarface Capsule"},"4283":{"market_hash_name":"Bestiary Capsule"},"4284":{"market_hash_name":"Collectible Pins Capsule Series 2"},"4285":{"market_hash_name":"CS:GO Graffiti Box"},"4286":{"market_hash_name":"Perfect World Graffiti Box"},"4287":{"market_hash_name":"StatTrak™ Radicals Box"},"4288":{"market_hash_name":"Glove Case"},"4323":{"market_hash_name":"Atlanta 2017 Legends (Holo-Foil)"},"4324":{"market_hash_name":"Atlanta 2017 Challengers (Holo-Foil)"},"4325":{"market_hash_name":"Autograph Capsule | Challengers (Foil) | Atlanta 2017"},"4326":{"market_hash_name":"Autograph Capsule | Legends (Foil) | Atlanta 2017"},"4327":{"market_hash_name":"Autograph Capsule | Astralis | Atlanta 2017"},"4328":{"market_hash_name":"Autograph Capsule | Team EnVyUs | Atlanta 2017"},"4329":{"market_hash_name":"Autograph Capsule | FaZe Clan | Atlanta 2017"},"4330":{"market_hash_name":"Autograph Capsule | Flipsid3 Tactics | Atlanta 2017"},"4331":{"market_hash_name":"Autograph Capsule | Fnatic | Atlanta 2017"},"4332":{"market_hash_name":"Autograph Capsule | G2 Esports | Atlanta 2017"},"4333":{"market_hash_name":"Autograph Capsule | Gambit Gaming | Atlanta 2017"},"4334":{"market_hash_name":"Autograph Capsule | GODSENT | Atlanta 2017"},"4335":{"market_hash_name":"Autograph Capsule | HellRaisers | Atlanta 2017"},"4336":{"market_hash_name":"Autograph Capsule | mousesports | Atlanta 2017"},"4337":{"market_hash_name":"Autograph Capsule | Natus Vincere | Atlanta 2017"},"4338":{"market_hash_name":"Autograph Capsule | North | Atlanta 2017"},"4339":{"market_hash_name":"Autograph Capsule | OpTic Gaming | Atlanta 2017"},"4340":{"market_hash_name":"Autograph Capsule | SK Gaming | Atlanta 2017"},"4341":{"market_hash_name":"Autograph Capsule | Team Liquid | Atlanta 2017"},"4342":{"market_hash_name":"Autograph Capsule | Virtus.Pro | Atlanta 2017"},"4344":{"market_hash_name":"Atlanta 2017 Dust II Souvenir Package"},"4345":{"market_hash_name":"Atlanta 2017 Mirage Souvenir Package"},"4346":{"market_hash_name":"Atlanta 2017 Cobblestone Souvenir Package"},"4347":{"market_hash_name":"Atlanta 2017 Overpass Souvenir Package"},"4348":{"market_hash_name":"Atlanta 2017 Cache Souvenir Package"},"4349":{"market_hash_name":"Atlanta 2017 Train Souvenir Package"},"4350":{"market_hash_name":"Atlanta 2017 Nuke Souvenir Package"},"4351":{"market_hash_name":"Spectrum Case"},"4352":{"market_hash_name":"Operation Hydra Case"},"4391":{"market_hash_name":"Krakow 2017 Legends (Holo-Foil)"},"4392":{"market_hash_name":"Krakow 2017 Challengers (Holo-Foil)"},"4393":{"market_hash_name":"Krakow 2017 Challengers Autograph Capsule"},"4394":{"market_hash_name":"Krakow 2017 Legends Autograph Capsule"},"4396":{"market_hash_name":"Krakow 2017 Inferno Souvenir Package"},"4397":{"market_hash_name":"Krakow 2017 Mirage Souvenir Package"},"4398":{"market_hash_name":"Krakow 2017 Cobblestone Souvenir Package"},"4399":{"market_hash_name":"Krakow 2017 Overpass Souvenir Package"},"4400":{"market_hash_name":"Krakow 2017 Cache Souvenir Package"},"4401":{"market_hash_name":"Krakow 2017 Train Souvenir Package"},"4402":{"market_hash_name":"Krakow 2017 Nuke Souvenir Package"},"4403":{"market_hash_name":"Spectrum 2 Case"},"4404":{"market_hash_name":"Perfect World Sticker Capsule 1"},"4405":{"market_hash_name":"Perfect World Sticker Capsule 2"},"4456":{"market_hash_name":"Boston 2018 Legends (Holo-Foil)"},"4457":{"market_hash_name":"Boston 2018 Returning Challengers (Holo-Foil)"},"4458":{"market_hash_name":"Boston 2018 Minor Challengers (Holo-Foil)"},"4459":{"market_hash_name":"Boston 2018 Legends Autograph Capsule"},"4460":{"market_hash_name":"Boston 2018 Returning Challengers Autograph Capsule"},"4461":{"market_hash_name":"Boston 2018 Minor Challengers Autograph Capsule"},"4463":{"market_hash_name":"Boston 2018 Inferno Souvenir Package"},"4464":{"market_hash_name":"Boston 2018 Mirage Souvenir Package"},"4465":{"market_hash_name":"Boston 2018 Cobblestone Souvenir Package"},"4466":{"market_hash_name":"Boston 2018 Overpass Souvenir Package"},"4467":{"market_hash_name":"Boston 2018 Cache Souvenir Package"},"4468":{"market_hash_name":"Boston 2018 Train Souvenir Package"},"4469":{"market_hash_name":"Boston 2018 Nuke Souvenir Package"},"4470":{"market_hash_name":"Community Capsule 2018"},"4471":{"market_hash_name":"Clutch Case"},"4474":{"market_hash_name":"Boston 2018 Minor Challengers with Flash Gaming (Holo-Foil)"},"4475":{"market_hash_name":"Boston 2018 Minor Challengers with Flash Gaming Autograph Capsule"},"4477":{"market_hash_name":"Chicken Capsule"},"4478":{"market_hash_name":"Boston 2018 Attending Legends (Holo-Foil)"},"4479":{"market_hash_name":"Boston 2018 Attending Legends Autograph Capsule"},"4481":{"market_hash_name":"Collectible Pins Capsule Series 3"},"4482":{"market_hash_name":"Horizon Case"},"4533":{"market_hash_name":"London 2018 Legends (Holo-Foil)"},"4534":{"market_hash_name":"London 2018 Returning Challengers (Holo-Foil)"},"4535":{"market_hash_name":"London 2018 Minor Challengers (Holo-Foil)"},"4536":{"market_hash_name":"London 2018 Legends Autograph Capsule"},"4537":{"market_hash_name":"London 2018 Returning Challengers Autograph Capsule"},"4538":{"market_hash_name":"London 2018 Minor Challengers Autograph Capsule"},"4540":{"market_hash_name":"London 2018 Inferno Souvenir Package"},"4541":{"market_hash_name":"London 2018 Mirage Souvenir Package"},"4542":{"market_hash_name":"London 2018 Dust II Souvenir Package"},"4543":{"market_hash_name":"London 2018 Overpass Souvenir Package"},"4544":{"market_hash_name":"London 2018 Cache Souvenir Package"},"4545":{"market_hash_name":"London 2018 Train Souvenir Package"},"4546":{"market_hash_name":"London 2018 Nuke Souvenir Package"},"4547":{"market_hash_name":"Skill Groups Capsule"},"4548":{"market_hash_name":"Danger Zone Case"},"4584":{"market_hash_name":"Katowice 2019 Legends (Holo-Foil)"},"4585":{"market_hash_name":"Katowice 2019 Returning Challengers (Holo-Foil)"},"4586":{"market_hash_name":"Katowice 2019 Minor Challengers (Holo-Foil)"},"4587":{"market_hash_name":"Katowice 2019 Legends Autograph Capsule"},"4588":{"market_hash_name":"Katowice 2019 Returning Challengers Autograph Capsule"},"4589":{"market_hash_name":"Katowice 2019 Minor Challengers Autograph Capsule"},"4590":{"market_hash_name":"Katowice 2019 Inferno Souvenir Package"},"4591":{"market_hash_name":"Katowice 2019 Mirage Souvenir Package"},"4592":{"market_hash_name":"Katowice 2019 Dust II Souvenir Package"},"4593":{"market_hash_name":"Katowice 2019 Overpass Souvenir Package"},"4594":{"market_hash_name":"Katowice 2019 Cache Souvenir Package"},"4595":{"market_hash_name":"Katowice 2019 Train Souvenir Package"},"4596":{"market_hash_name":"Katowice 2019 Nuke Souvenir Package"},"4597":{"market_hash_name":"Halo Capsule"},"4598":{"market_hash_name":"Prisma Case"},"4599":{"market_hash_name":"Feral Predators Capsule"},"4610":{"market_hash_name":"CS:GO Patch Pack"},"4615":{"market_hash_name":"Half-Life: Alyx Patch Pack"},"4616":{"market_hash_name":"Warhammer 40,000 Sticker Capsule"},"4620":{"market_hash_name":"Shattered Web Case"},"4654":{"market_hash_name":"Berlin 2019 Legends (Holo-Foil)"},"4655":{"market_hash_name":"Berlin 2019 Returning Challengers (Holo-Foil)"},"4656":{"market_hash_name":"Berlin 2019 Minor Challengers (Holo-Foil)"},"4657":{"market_hash_name":"Berlin 2019 Legends Autograph Capsule"},"4658":{"market_hash_name":"Berlin 2019 Returning Challengers Autograph Capsule"},"4659":{"market_hash_name":"Berlin 2019 Minor Challengers Autograph Capsule"},"4660":{"market_hash_name":"Berlin 2019 Inferno Souvenir Package"},"4661":{"market_hash_name":"Berlin 2019 Mirage Souvenir Package"},"4662":{"market_hash_name":"Berlin 2019 Dust II Souvenir Package"},"4663":{"market_hash_name":"Berlin 2019 Overpass Souvenir Package"},"4664":{"market_hash_name":"Berlin 2019 Train Souvenir Package"},"4665":{"market_hash_name":"Berlin 2019 Nuke Souvenir Package"},"4666":{"market_hash_name":"Berlin 2019 Vertigo Souvenir Package"},"4668":{"market_hash_name":"X-Ray P250 Package"},"4669":{"market_hash_name":"CS20 Case"},"4670":{"market_hash_name":"CS20 Sticker Capsule"},"4693":{"market_hash_name":"Half-Life: Alyx Collectible Pins Capsule"},"4694":{"market_hash_name":"Half-Life: Alyx Sticker Capsule"},"4695":{"market_hash_name":"Prisma 2 Case"},"4696":{"market_hash_name":"Masterminds Music Kit Box"},"4697":{"market_hash_name":"StatTrak™ Masterminds Music Kit Box"},"4698":{"market_hash_name":"Fracture Case"},"4717":{"market_hash_name":"Operation Broken Fang Case"},"4743":{"market_hash_name":"2020 RMR Legends"},"4744":{"market_hash_name":"2020 RMR Challengers"},"4745":{"market_hash_name":"2020 RMR Contenders"},"4746":{"market_hash_name":"Poorly Drawn Capsule"},"4747":{"market_hash_name":"Snakebite Case"},"4754":{"market_hash_name":"Tacticians Music Kit Box"},"4755":{"market_hash_name":"StatTrak™ Tacticians Music Kit Box"},"4782":{"market_hash_name":"2021 Community Sticker Capsule"},"4784":{"market_hash_name":"The Boardroom Sticker Capsule"},"4789":{"market_hash_name":"Battlefield 2042 Sticker Capsule"},"4790":{"market_hash_name":"Operation Riptide Case"},"4803":{"market_hash_name":"Stockholm 2021 Legends Sticker Capsule"},"4804":{"market_hash_name":"Stockholm 2021 Challengers Sticker Capsule"},"4805":{"market_hash_name":"Stockholm 2021 Contenders Sticker Capsule"},"4806":{"market_hash_name":"Stockholm 2021 Legends Patch Pack"},"4807":{"market_hash_name":"Stockholm 2021 Challengers Patch Pack"},"4808":{"market_hash_name":"Stockholm 2021 Contenders Patch Pack"},"4809":{"market_hash_name":"Stockholm 2021 Inferno Souvenir Package"},"4810":{"market_hash_name":"Stockholm 2021 Mirage Souvenir Package"},"4811":{"market_hash_name":"Stockholm 2021 Dust II Souvenir Package"},"4812":{"market_hash_name":"Stockholm 2021 Overpass Souvenir Package"},"4813":{"market_hash_name":"Stockholm 2021 Ancient Souvenir Package"},"4814":{"market_hash_name":"Stockholm 2021 Nuke Souvenir Package"},"4815":{"market_hash_name":"Stockholm 2021 Vertigo Souvenir Package"},"4816":{"market_hash_name":"Stockholm 2021 Champions Autograph Capsule"},"4817":{"market_hash_name":"Stockholm 2021 Finalists Autograph Capsule"},"4818":{"market_hash_name":"Dreams \u0026 Nightmares Case"},"4832":{"market_hash_name":"Antwerp 2022 Legends Sticker Capsule"},"4833":{"market_hash_name":"Antwerp 2022 Challengers Sticker Capsule"},"4834":{"market_hash_name":"Antwerp 2022 Contenders Sticker Capsule"},"4835":{"market_hash_name":"Antwerp 2022 Inferno Souvenir Package"},"4836":{"market_hash_name":"Antwerp 2022 Mirage Souvenir Package"},"4837":{"market_hash_name":"Antwerp 2022 Dust II Souvenir Package"},"4838":{"market_hash_name":"Antwerp 2022 Overpass Souvenir Package"},"4839":{"market_hash_name":"Antwerp 2022 Ancient Souvenir Package"},"4840":{"market_hash_name":"Antwerp 2022 Nuke Souvenir Package"},"4841":{"market_hash_name":"Antwerp 2022 Vertigo Souvenir Package"},"4842":{"market_hash_name":"Antwerp 2022 Legends Autograph Capsule"},"4843":{"market_hash_name":"Antwerp 2022 Challengers Autograph Capsule"},"4844":{"market_hash_name":"Antwerp 2022 Contenders Autograph Capsule"},"4845":{"market_hash_name":"Antwerp 2022 Champions Autograph Capsule"},"4846":{"market_hash_name":"Recoil Case"},"4847":{"market_hash_name":"10 Year Birthday Sticker Capsule"},"4848":{"market_hash_name":"Initiators Music Kit Box"},"4849":{"market_hash_name":"StatTrak™ Initiators Music Kit Box"},"4857":{"market_hash_name":"Rio 2022 Legends Sticker Capsule"},"4858":{"market_hash_name":"Rio 2022 Challengers Sticker Capsule"},"4859":{"market_hash_name":"Rio 2022 Contenders Sticker Capsule"},"4860":{"market_hash_name":"Rio 2022 Inferno Souvenir Package"},"4861":{"market_hash_name":"Rio 2022 Mirage Souvenir Package"},"4862":{"market_hash_name":"Rio 2022 Dust II Souvenir Package"},"4863":{"market_hash_name":"Rio 2022 Overpass Souvenir Package"},"4864":{"market_hash_name":"Rio 2022 Ancient Souvenir Package"},"4865":{"market_hash_name":"Rio 2022 Nuke Souvenir Package"},"4866":{"market_hash_name":"Rio 2022 Vertigo Souvenir Package"},"4867":{"market_hash_name":"Rio 2022 Legends Autograph Capsule"},"4868":{"market_hash_name":"Rio 2022 Challengers Autograph Capsule"},"4869":{"market_hash_name":"Rio 2022 Contenders Autograph Capsule"},"4870":{"market_hash_name":"Rio 2022 Champions Autograph Capsule"},"4879":{"market_hash_name":"Espionage Sticker Capsule"},"4880":{"market_hash_name":"Revolution Case"},"4882":{"market_hash_name":"Anubis Collection Package"},"4890":{"market_hash_name":"Paris 2023 Legends Sticker Capsule"},"4891":{"market_hash_name":"Paris 2023 Challengers Sticker Capsule"},"4892":{"market_hash_name":"Paris 2023 Contenders Sticker Capsule"},"4893":{"market_hash_name":"Paris 2023 Inferno Souvenir Package"},"4894":{"market_hash_name":"Paris 2023 Mirage Souvenir Package"},"4895":{"market_hash_name":"Paris 2023 Anubis Souvenir Package"},"4896":{"market_hash_name":"Paris 2023 Overpass Souvenir Package"},"4897":{"market_hash_name":"Paris 2023 Ancient Souvenir Package"},"4898":{"market_hash_name":"Paris 2023 Nuke Souvenir Package"},"4899":{"market_hash_name":"Paris 2023 Vertigo Souvenir Package"},"4900":{"market_hash_name":"Paris 2023 Legends Autograph Capsule"},"4901":{"market_hash_name":"Paris 2023 Challengers Autograph Capsule"},"4902":{"market_hash_name":"Paris 2023 Contenders Autograph Capsule"},"4903":{"market_hash_name":"Paris 2023 Champions Autograph Capsule"},"4904":{"market_hash_name":"Kilowatt Case"},"4905":{"market_hash_name":"Ambush Sticker Capsule"},"4914":{"market_hash_name":"NIGHTMODE Music Kit Box"},"4915":{"market_hash_name":"StatTrak™ NIGHTMODE Music Kit Box"},"4923":{"market_hash_name":"Copenhagen 2024 Legends Sticker Capsule"},"4924":{"market_hash_name":"Copenhagen 2024 Challengers Sticker Capsule"},"4925":{"market_hash_name":"Copenhagen 2024 Contenders Sticker Capsule"},"4926":{"market_hash_name":"Copenhagen 2024 Inferno Souvenir Package"},"4927":{"market_hash_name":"Copenhagen 2024 Mirage Souvenir Package"},"4928":{"market_hash_name":"Copenhagen 2024 Anubis Souvenir Package"},"4929":{"market_hash_name":"Copenhagen 2024 Overpass Souvenir Package"},"4930":{"market_hash_name":"Copenhagen 2024 Ancient Souvenir Package"},"4931":{"market_hash_name":"Copenhagen 2024 Nuke Souvenir Package"},"4932":{"market_hash_name":"Copenhagen 2024 Vertigo Souvenir Package"},"4937":{"market_hash_name":"Copenhagen 2024 Legends Autograph Capsule"},"4938":{"market_hash_name":"Copenhagen 2024 Challengers Autograph Capsule"},"4939":{"market_hash_name":"Copenhagen 2024 Contenders Autograph Capsule"},"4940":{"market_hash_name":"Copenhagen 2024 Champions Autograph Capsule"},"4946":{"market_hash_name":"Masterminds 2 Music Kit Box"},"4947":{"market_hash_name":"StatTrak™ Masterminds 2 Music Kit Box"},"4964":{"market_hash_name":"Shanghai 2024 Legends Sticker Capsule"},"4965":{"market_hash_name":"Shanghai 2024 Challengers Sticker Capsule"},"4966":{"market_hash_name":"Shanghai 2024 Contenders Sticker Capsule"},"4967":{"market_hash_name":"Shanghai 2024 Inferno Souvenir Package"},"4968":{"market_hash_name":"Shanghai 2024 Mirage Souvenir Package"},"4969":{"market_hash_name":"Shanghai 2024 Anubis Souvenir Package"},"4970":{"market_hash_name":"Shanghai 2024 Dust II Souvenir Package"},"4971":{"market_hash_name":"Shanghai 2024 Ancient Souvenir Package"},"4972":{"market_hash_name":"Shanghai 2024 Nuke Souvenir Package"},"4973":{"market_hash_name":"Shanghai 2024 Vertigo Souvenir Package"},"4978":{"market_hash_name":"Shanghai 2024 Legends Autograph Capsule"},"4979":{"market_hash_name":"Shanghai 2024 Challengers Autograph Capsule"},"4980":{"market_hash_name":"Shanghai 2024 Contenders Autograph Capsule"},"4981":{"market_hash_name":"Shanghai 2024 Champions Autograph Capsule"},"5117":{"market_hash_name":"Austin 2025 Legends Sticker Capsule"},"5118":{"market_hash_name":"Austin 2025 Challengers Sticker Capsule"},"5119":{"market_hash_name":"Austin 2025 Contenders Sticker Capsule"},"5120":{"market_hash_name":"Austin 2025 Inferno Souvenir Package","highlight_market_hash_name":"Austin 2025 Inferno Souvenir Highlight Package"},"5121":{"market_hash_name":"Austin 2025 Mirage Souvenir Package","highlight_market_hash_name":"Austin 2025 Mirage Souvenir Highlight Package"},"5122":{"market_hash_name":"Austin 2025 Anubis Souvenir Package","highlight_market_hash_name":"Austin 2025 Anubis Souvenir Highlight Package"},"5123":{"market_hash_name":"Austin 2025 Dust II Souvenir Package","highlight_market_hash_name":"Austin 2025 Dust II Souvenir Highlight Package"},"5124":{"market_hash_name":"Austin 2025 Ancient Souvenir Package","highlight_market_hash_name":"Austin 2025 Ancient Souvenir Highlight Package"},"5125":{"market_hash_name":"Austin 2025 Nuke Souvenir Package","highlight_market_hash_name":"Austin 2025 Nuke Souvenir Highlight Package"},"5126":{"market_hash_name":"Austin 2025 Train Souvenir Package","highlight_market_hash_name":"Austin 2025 Train Souvenir Highlight Package"},"5131":{"market_hash_name":"Austin 2025 Legends Autograph Capsule"},"5132":{"market_hash_name":"Austin 2025 Challengers Autograph Capsule"},"5133":{"market_hash_name":"Austin 2025 Contenders Autograph Capsule"},"5134":{"market_hash_name":"Austin 2025 Champions Autograph Capsule"},"5176":{"market_hash_name":"Sealed Genesis Terminal"},"5181":{"market_hash_name":"Sealed Dead Hand Terminal"},"5216":{"market_hash_name":"Budapest 2025 Legends Sticker Capsule"},"5217":{"market_hash_name":"Budapest 2025 Challengers Sticker Capsule"},"5218":{"market_hash_name":"Budapest 2025 Contenders Sticker Capsule"},"5219":{"market_hash_name":"Budapest 2025 Inferno Souvenir Package","highlight_market_hash_name":"Budapest 2025 Inferno Souvenir Highlight Package"},"5220":{"market_hash_name":"Budapest 2025 Mirage Souvenir Package","highlight_market_hash_name":"Budapest 2025 Mirage Souvenir Highlight Package"},"5221":{"market_hash_name":"Budapest 2025 Overpass Souvenir Package","highlight_market_hash_name":"Budapest 2025 Overpass Souvenir Highlight Package"},"5222":{"market_hash_name":"Budapest 2025 Dust II Souvenir Package","highlight_market_hash_name":"Budapest 2025 Dust II Souvenir Highlight Package"},"5223":{"market_hash_name":"Budapest 2025 Ancient Souvenir Package","highlight_market_hash_name":"Budapest 2025 Ancient Souvenir Highlight Package"},"5224":{"market_hash_name":"Budapest 2025 Nuke Souvenir Package","highlight_market_hash_name":"Budapest 2025 Nuke Souvenir Highlight Package"},"5225":{"market_hash_name":"Budapest 2025 Train Souvenir Package","highlight_market_hash_name":"Budapest 2025 Train Souvenir Highlight Package"},"5230":{"market_hash_name":"Budapest 2025 Legends Autograph Capsule"},"5231":{"market_hash_name":"Budapest 2025 Challengers Autograph Capsule"},"5232":{"market_hash_name":"Budapest 2025 Contenders Autograph Capsule"},"5233":{"market_hash_name":"Budapest 2025 Champions Autograph Capsule"},"5316":{"market_hash_name":"Cologne 2026 Sticker Capsule"},"5317":{"market_hash_name":"Cologne 2026 Team Sticker Capsule"},"5318":{"market_hash_name":"Cologne 2026 Autograph Capsule"},"7003":{"market_hash_name":"Gallery Case"},"7007":{"market_hash_name":"Fever Case"},"7011":{"market_hash_name":"Warhammer 40,000 Traitor Astartes Sticker Capsule"},"7013":{"market_hash_name":"Warhammer 40,000 Adeptus Astartes Sticker Capsule"},"7015":{"market_hash_name":"Warhammer 40,000 Imperium Sticker Capsule"},"7017":{"market_hash_name":"Warhammer 40,000 Xenos Sticker Capsule"},"7019":{"market_hash_name":"Deluge Music Kit Box"},"7021":{"market_hash_name":"StatTrak™ Deluge Music Kit Box"}},"agents":{"4613":{"market_hash_name":"Bloody Darryl The Strapped | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWlKAhtLhqHXDilxgm4z7dztesJH2SbgApCMchFrQNsRSxw4XhYeK0swbYlcsbmucxTysR","rarity":5,"price":3397,"faction":"t"},"4619":{"market_hash_name":"'Blueberries' Buckshot | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPrdXWLElL5ytbBsTXrqzUxzsWmHzN-gI3-TbwQmC5pzQLELsUbrx9bmP_SiuVJe8Pfo4Q","rarity":4,"price":1625,"faction":"ct"},"4680":{"market_hash_name":"'Two Times' McCoy | TACP Cavalry","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPzdCGbJxb1zs-JvGCrql0h3tm7cyov_JS-XblImDcAhQe8OtBK4k4bgZPSiuVIHzmbjrQ","rarity":5,"price":823,"faction":"ct"},"4711":{"market_hash_name":"Cmdr. Mae 'Dead Cold' Jamison | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSWQDGVlbx34-Q8HC3nk012tWzTzY79JHiQOgYpW8B3EeYN40HtxtzlNuz8p1uJLMIs6sE","rarity":6,"price":2166,"faction":"ct"},"4712":{"market_hash_name":"1st Lieutenant Farlow | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSVQGLFx7h0tbU6GHG1lERz62WEm9j6cimebgB0WZd4Ee4Ks0a-lNbjZrj8p1uJLRQDiME","rarity":5,"price":982,"faction":"ct"},"4713":{"market_hash_name":"John 'Van Healen' Kask | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSUQDLIle0jtOM-SXm2xBkjsW_dyImhc3iWOgcmAsR0TLVe4BjrkIWzN-P8p1uJ4p5BSY8","rarity":4,"price":1264,"faction":"ct"},"4714":{"market_hash_name":"Bio-Haz Specialist | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSbQDPGkO0i4bE4THq1xRh3sjuEz9muJX7EZlIiC8RyQbIPsBPtk9fmNrj8p1uJwRLd8H0","rarity":3,"price":1157,"faction":"ct"},"4715":{"market_hash_name":"Sergeant Bombson | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSaQD6Umbp15-RtHX21kxl-sG-Gy9f6ci2XPA8lDMAiTbJc5BfuwNXgYbn8p1uJ3rbO8bk","rarity":4,"price":1399,"faction":"ct"},"4716":{"market_hash_name":"Chem-Haz Specialist | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSZQGKRmOpyseJsF3rkzR4ht2_TwtugcH7DbAQgW5VyFLIDuxnqmtPiNb78p1uJZinYneA","rarity":3,"price":1133,"faction":"ct"},"4718":{"market_hash_name":"Rezan the Redshirt | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBSnClrkg5eBoGSvikU915G_dyo2vcimTOFAoX8cmR7MDsBS_m4G2Zui2-UWA3FkeyBmz","rarity":5,"price":802,"faction":"t"},"4726":{"market_hash_name":"Sir Bloody Miami Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWj-gn47Q-GH7qxkhwsWjWyN6pJynGZld0CJR3QOdbtRa4lIGxY7_g7wfAy9USZdxTISw","rarity":6,"price":9320,"faction":"t"},"4727":{"market_hash_name":"Safecracker Voltzmann | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WXj7536LVoFivmkEghsWXQmd37IniRPwUoCMFwEeAItxCwkdXvNr624wXAy9USEc8H9qQ","rarity":5,"price":1919,"faction":"t"},"4728":{"market_hash_name":"Little Kev | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WYj74g6LVvGyznlB8itm7XyY2od3LBOA4jWcByEe4J40S_kYfmYurm41fAy9USidzQq1U","rarity":4,"price":3240,"faction":"t"},"4730":{"market_hash_name":"Getaway Sally | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3Waj-0h4LM5H3jjzR9-4zmHzIuucXOWaAEkCsR5FrFcsEG5wNGzNeng71TAy9UScc7Ksy8","rarity":4,"price":7474,"faction":"t"},"4732":{"market_hash_name":"Number K | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WZj7wuseM-GnG2lh4h5m2EmderdX7DaA9zW8N2QuBbtBG-mty2N-i0tADAy9USaSI87As","rarity":5,"price":4947,"faction":"t"},"4733":{"market_hash_name":"Sir Bloody Silent Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWkKAv5OVoGyjilkR14mzcmdz4JHiXaQQiDZAkTO5euxW-loC1Zbm25wSPlcsbmmtPiU71","rarity":6,"price":3556,"faction":"t"},"4734":{"market_hash_name":"Sir Bloody Skullhead Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWk6Ajs7FtHni2lh5_smmDnNj8I3yVOFJyW5J5FLRYtxO6l9GxZu7h4AeIlcsbmjPHDP8B","rarity":6,"price":3684,"faction":"t"},"4735":{"market_hash_name":"Sir Bloody Darryl Royale | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWkqAg6ec5THznk05-4jvXntz7JHjBOwYkDZAhQrZfskXuw9HiN-m3tAfclcsbmmRuIYiQ","rarity":6,"price":4495,"faction":"t"},"4736":{"market_hash_name":"Sir Bloody Loudmouth Darryl | The Professionals","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYby8iRe_OGnZ6psLM-FD3WWlaAlsrk9G3C1xkl-5T_Vyo6odSmWPFRzC5FyEONfuhK9lYG2Nem04gPclcsbmsgBcrK7","rarity":6,"price":5885,"faction":"t"},"4749":{"market_hash_name":"Sous-Lieutenant Medic | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBisa9qTnjhxBwk5D-Ano79cXnGbgYmDJJ2FO4MtxK-l9HnZb_h5Qba3d5N02yg2UOShGfb","rarity":4,"price":1523,"faction":"ct"},"4750":{"market_hash_name":"Chem-Haz Capitaine | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBisq9tGnnhkxt0sTjcwtyrcnqXO1AgDZJyQbEMsxbqwIayZrnhswHfg4gU02yg2bd7mpZ0","rarity":5,"price":2213,"faction":"ct"},"4751":{"market_hash_name":"Chef d'Escadron Rouchard | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBis69vSijgx01-4WvUytireS2SalVyDpoiR-MN4Rfsw4HnMem2tgbc3d5B02yg2bQY5H89","rarity":6,"price":2191,"faction":"ct"},"4752":{"market_hash_name":"Aspirant | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBitK8-HH22w0Ul42mAw4r_eSnBPQB0DZp0FOBY4RPsw4a2PrzhtgDdjt5D02yg2f2sw1lc","rarity":3,"price":1549,"faction":"ct"},"4753":{"market_hash_name":"Officer Jacques Beltram | Gendarmerie Nationale","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nn-Cxf7uCjbbZkJc-FD3WZwOBita87GCuxzBwl5jjVyNyveXvCbgQhCsN3EOACsBOwktGyYrnn5FOI3okT02yg2Q7tnUpK","rarity":4,"price":1837,"faction":"ct"},"4756":{"market_hash_name":"Lieutenant 'Tree Hugger' Farlow | SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6iNP0OSveq1sLuSYQDDAk75w4bU7FivkkBsj52vWz9f8cCqTbVN0W5R1ELJYukWxkdXmZOr8p1uJJ_LT_Tg","rarity":4,"price":2057,"faction":"ct"},"4757":{"market_hash_name":"Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nk9DRe_c24abZkIf6HDymVwLhz4rJsHH6xzEQk5zyDydaudi6XZwJxDJUkRrIItULpw4W1Ybvk-UWA3FCleMc7","rarity":6,"price":4647,"faction":"ct"},"4771":{"market_hash_name":"Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nk9DRe_c24abZkIf6HDCmSkrh35uRvHXG1lkp_6zjUzY2gcimRP1N2XJJxTOYKuhDsxNC2YePi-UWA3IGWyCLX","rarity":6,"price":4407,"faction":"ct"},"4772":{"market_hash_name":"Lieutenant Rex Krikey | SEAL Frogman","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nk9DRe_c24abZkIf6HDSmUxbd05bIxH3vqzRgj4GXTm4qtJXPGbg8oXpt2QeVYs0TpkdDmMuPq-UWA3P4QMOVd","rarity":5,"price":2886,"faction":"ct"},"4773":{"market_hash_name":"Elite Trapper Solman | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOAnSSjqwkUi5W-ByYz4cnyVZlIgDJciQu8LsxXumta0Nrjh4gTf2NpGnzK-0H1TOhLF6Q","rarity":5,"price":3504,"faction":"t"},"4774":{"market_hash_name":"Crasswater The Forgotten | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOMnTH-3kU8m5D6Gz4qodX2SbAdxCJUlROAD5kS7w4WyYuyz4QOMj94QmzK-0H2dcvV-Fg","rarity":6,"price":2511,"faction":"t"},"4775":{"market_hash_name":"Arno The Overgrown | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOInTSrkwRlx6z7Xwtn9In6eZwQnDsd5TOYDsxi9xNe2N7-0slHe2NlDmzK-0H38E8rQtQ","rarity":5,"price":2134,"faction":"t"},"4776":{"market_hash_name":"Col. Mangos Dabisi | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOUnSXy3w0gjt2rVy42rcirFO1UgDpElTOYDtRexxtS1Ybmw4gzb3YlAyjK-0H0x0ZHEbw","rarity":4,"price":2940,"faction":"t"},"4777":{"market_hash_name":"Vypa Sista of the Revolution | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOQnGH3rzRt_4miDmNb8dinBPwF2ApJ2FuRe5hW4xNfjZbzk5gDajI8QzTK-0H0XsiWpag","rarity":6,"price":4405,"faction":"t"},"4778":{"market_hash_name":"Trapper Aggressor | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOcnS3u1xEp042mAz9n_IinBPQckCpAkR7UC40TtltKxMu3h4gWLjI9AzzK-0H3_4J31MA","rarity":3,"price":2494,"faction":"t"},"4780":{"market_hash_name":"'Medium Rare' Crasswater | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOM7AXGwwBxz5G2Gy9qqdy_GaARyDcF2FrUK50LuwICzM-3i4wzZj4NFyn_gznQeAuFLUp4","rarity":6,"price":2796,"faction":"t"},"4781":{"market_hash_name":"Trapper | Guerrilla Warfare","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZz18yVX6s28aa1pJeKsGGaCyO94pOc7ASi2zRwj5TuEz9yreHLBbAInW5YlEbQNsxCxkdXgNe-25gTaj9lNznngznQecRJv7X0","rarity":4,"price":2929,"faction":"t"},"5105":{"market_hash_name":"Ground Rebel | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPfdVmHAxOgj4uNtGyqxxRki52jSyoqseHiRalRyWcdzE-APuxK8xNbmYvSiuVLQnSKAnQ","rarity":3,"price":957,"faction":"t"},"5106":{"market_hash_name":"Osiris | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPjdDDXEk7p35uAxTHDqxRh25DuDzI2sdC7BOwZ1W5BwRe4O4BfsktKxZPSiuVIisGC3vg","rarity":4,"price":861,"faction":"t"},"5107":{"market_hash_name":"Prof. Shahmat | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPndCDCTk74k4LA5GX_mxR4mtWSDmYz9cy6ROAQoCMB1E-AK5BG9wNziNPSiuVKTaodKjw","rarity":5,"price":791,"faction":"t"},"5108":{"market_hash_name":"The Elite Mr. Muhlik | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPbdDTORmbsl5LQ-F3DlwE1y6jnWytqucnmfawMmWJEkFuQJskKwmoexM_SiuVLDZa0BGw","rarity":6,"price":1083,"faction":"t"},"5109":{"market_hash_name":"Jungle Rebel | Elite Crew","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZrl-DZk-fO8YaVjNPrdWDWRlrch5LU6H3-wzEoj5Dncn9evcXuTOAZyW5p4QuJc50TqwdPlPvSiuVKlREwxsg","rarity":3,"price":2890,"faction":"t"},"5205":{"market_hash_name":"Soldier | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGm_elrd05uUwSn-wxB5_52zRyd39cHuWOgEmW5R3QbQM5xi4mtayMunq5hue1dxmxRjA3w","rarity":3,"price":558,"faction":"t"},"5206":{"market_hash_name":"Enforcer | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGmHexbZ3tLM9G3jhzRt-5WqEydaqdS-QPAMjX8NxFLRY5hftx9XkNOm35xue1dyPr1iSWw","rarity":3,"price":604,"faction":"t"},"5207":{"market_hash_name":"Slingshot | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGmDelb8n4LAwHHqxxU8jtjndztf7dC_EOFQnCpV3QrUCshG4wYHjNeu25hue1dzy4v_RuA","rarity":4,"price":808,"faction":"t"},"5208":{"market_hash_name":"Street Soldier | Phoenix","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oYbo8idV5uqRfqV_KfGdGm7ex78n4LU_GSrmzBxx4Dncntn_InmWPwcmCccjTO8L50awwdC2N-uwsxue1dwGHFtFrw","rarity":3,"price":2508,"faction":"t"},"5305":{"market_hash_name":"Operator | FBI SWAT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPbdCjfAkbcl5LM6S3jkxUsj42TQzdf7JH_Caw5zDMMlEOAIt0Hqk9bmY_SiuVKnm4HYYQ","rarity":3,"price":971,"faction":"ct"},"5306":{"market_hash_name":"Markus Delrow | FBI HRT","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPfdWT7Dx7dy5OJtGnDhkE5xtj6Hyd6veXjEbVUnW8YiRrVeuhTtk4fvY_SiuVKEkIDFLQ","rarity":4,"price":839,"faction":"ct"},"5307":{"market_hash_name":"Michael Syfers | FBI Sniper","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPjdXjWRkegi57FoHyrglkh-62ndz4yrIimfOFRxCZQmQeQOsEK9wNfnYvSiuVJ9Bmql3Q","rarity":5,"price":1216,"faction":"ct"},"5308":{"market_hash_name":"Special Agent Ava | FBI","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nm_ytk-fO8YaVjNPLdXz6TkLdw5LY4Hnmwl0wktj7dn4r9I3OWPFApC5F1QeAO5xi4lIDiM_SiuVKk3V4ZcQ","rarity":6,"price":1974,"faction":"ct"},"5400":{"market_hash_name":"3rd Commando Company | KSK","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPvdWTbJwOsm4rI4GnDjx0t3sWWHw934IH_BO1UnWZd1EO8K5kK4l4fgMvSiuVLu5GcAvQ","rarity":3,"price":1189,"faction":"ct"},"5401":{"market_hash_name":"Seal Team 6 Soldier | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPXdXDHBxLZz4bI-Fn-yxhwhsjyDyNepcSjEbgQmApclFOMNthbslNKyPvSiuVLpMkmXWg","rarity":3,"price":1025,"faction":"ct"},"5402":{"market_hash_name":"Buckshot | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPfdCzfBx7gl5LQ-GnrkkR4l4DyDzIv8cnKXaQ4jXsQjEOcJ4RHuxNTuMPSiuVIYxifJkQ","rarity":4,"price":673,"faction":"ct"},"5403":{"market_hash_name":"'Two Times' McCoy | USAF TACP","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNP3dDDLHl7kks7U4Gi2xkUoj42XXntypcHyQO1J0DsZzFuAJsBW4kNPlN_SiuVKK_o8s4A","rarity":5,"price":768,"faction":"ct"},"5404":{"market_hash_name":"Lt. Commander Ricksaw | NSWC SEAL","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNPndVz-Ul74hsbNoHi21kUly6mrQzNagcijBPQEnCsciTOdY4Rm6m4XvN_SiuVLIl2LQXw","rarity":6,"price":2200,"faction":"ct"},"5405":{"market_hash_name":"Primeiro Tenente | Brazilian 1st Battalion","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz6XRk-fO8YaVjNP7dV2bFlesvtbM_Sn7gx010tTncmdn7ICqePQ4mWMB5EeALtRS7w4XuP_SiuVLSDPMGxQ","rarity":3,"price":8485,"faction":"ct"},"5500":{"market_hash_name":"Dragomir | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HCCnExbdz5uIxF3jiwUp1sD-Gyon6cniQb1dyWMQjTbQMs0G9w4KzZLi0-UWA3DCqT-14","rarity":4,"price":668,"faction":"t"},"5501":{"market_hash_name":"Maximus | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBynEl7wg5bc4Tnm1k0V34GSGntupdCnCbwEiW8ElTOMCsUTtm4XmNOng-UWA3F74ACBx","rarity":4,"price":691,"faction":"t"},"5502":{"market_hash_name":"Rezan The Ready | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HCSnCk79w47BqGSvjxEt3tjuDmYyocy2UbgRzXJIiEeULsRXqmtCxYrm2-UWA3FAo97Sl","rarity":5,"price":839,"faction":"t"},"5503":{"market_hash_name":"Blackwolf | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBCnIxLxw5uI9HXHklh4m4TjXw4qsIHPFOFByCMAmTbQJ4Ua4kdfhN7u3-UWA3G22ywJ7","rarity":5,"price":807,"faction":"t"},"5504":{"market_hash_name":"'The Doctor' Romanov | Sabre","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HBinGlu0k4bU7Givnk01352yByd_6IHLGZgElDpchEbNZtxewx9zhNr_m-UWA3HK9C48i","rarity":6,"price":1324,"faction":"t"},"5505":{"market_hash_name":"Dragomir | Sabre Footsoldier","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fgn8oZTh8Sla4c24abZkIf6HAimWlb9w57hoGHrmlB9_4j-Gm439d3rCPAEiDZNwQrUD40K9m9GzNu-0-UWA3CLCQ0Kd","rarity":3,"price":925,"faction":"t"},"5601":{"market_hash_name":"B Squadron Officer | SAS","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz_DFk-fO8YaVjNPbdXmTGk-hw4rlvGSzjx0tz6jnWwo2odHnDblIjCcZwFu4NsBexkYexMvSiuVIb0S_y2g","rarity":3,"price":990,"faction":"ct"},"5602":{"market_hash_name":"D Squadron Officer | NZSAS","image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIa-2lmxU-LR0dnuNm6E8Vl45Iv181z1fh7lk6nz_DFk-fO8YaVjNPfdWDDDxeokseNoTX-1k0R-smSDz4qqcHieZlUhA5QkRuIMu0KwwdDmYfSiuVJoTILK3g","rarity":3,"price":7198,"faction":"ct"}},"custom_stickers":{"C10003":{"group":3,"name":"Sticker | 100 Thieves (Normal)","count":2},"C10011":{"group":3,"name":"Sticker | 100 Thieves (Foil)","count":2},"C10019":{"group":3,"name":"Sticker | 100 Thieves (Gold)","count":2},"C10027":{"group":3,"name":"Sticker | 100 Thieves (Holo)","count":2},"C10123":{"group":3,"name":"Sticker | Flash Gaming","count":4},"C10131":{"group":3,"name":"Sticker | Flash Gaming (Normal)","count":1},"C10139":{"group":3,"name":"Sticker | Flash Gaming (Foil)","count":1},"C10147":{"group":3,"name":"Sticker | Flash Gaming (Gold)","count":1},"C10155":{"group":3,"name":"Sticker | Flash Gaming (Holo)","count":1},"C10204271498":{"group":2,"name":"Sticker | coldzera","count":38},"C10204271506":{"group":2,"name":"Sticker | coldzera (Normal)","count":12},"C10204271514":{"group":2,"name":"Sticker | coldzera (Foil)","count":10},"C10204271522":{"group":2,"name":"Sticker | coldzera (Gold)","count":12},"C10204271530":{"group":2,"name":"Sticker | coldzera (Holo)","count":2},"C10204271538":{"group":2,"name":"Sticker | coldzera (Glitter)","count":2},"C10230901898":{"group":2,"name":"Sticker | speed4k","count":3},"C10230901906":{"group":2,"name":"Sticker | speed4k (Normal)","count":1},"C10230901914":{"group":2,"name":"Sticker | speed4k (Foil)","count":1},"C10230901922":{"group":2,"name":"Sticker | speed4k (Gold)","count":1},"C10251":{"group":3,"name":"Sticker | MIBR","count":32},"C10259":{"group":3,"name":"Sticker | MIBR (Normal)","count":8},"C10267":{"group":3,"name":"Sticker | MIBR (Foil)","count":5},"C10275":{"group":3,"name":"Sticker | MIBR (Gold)","count":8},"C10279868426":{"group":2,"name":"Sticker | sdy","count":14},"C10279868434":{"group":2,"name":"Sticker | sdy (Normal)","count":4},"C10279868442":{"group":2,"name":"Sticker | sdy (Foil)","count":2},"C10279868450":{"group":2,"name":"Sticker | sdy (Gold)","count":4},"C10279868458":{"group":2,"name":"Sticker | sdy (Holo)","count":2},"C10279868466":{"group":2,"name":"Sticker | sdy (Glitter)","count":2},"C10283":{"group":3,"name":"Sticker | MIBR (Holo)","count":8},"C10291":{"group":3,"name":"Sticker | MIBR (Glitter)","count":2},"C10299":{"group":3,"name":"Sticker | MIBR (Embroidered)","count":1},"C1033":{"group":1,"name":"Sticker | Cluj-Napoca 2015","count":291},"C10379":{"group":3,"name":"Sticker | Team Spirit","count":44},"C10387":{"group":3,"name":"Sticker | Team Spirit (Normal)","count":11},"C10387361930":{"group":2,"name":"Sticker | Dycha","count":16},"C10387361938":{"group":2,"name":"Sticker | Dycha (Normal)","count":4},"C10387361954":{"group":2,"name":"Sticker | Dycha (Gold)","count":4},"C10387361962":{"group":2,"name":"Sticker | Dycha (Holo)","count":4},"C10387361970":{"group":2,"name":"Sticker | Dycha (Glitter)","count":4},"C10395":{"group":3,"name":"Sticker | Team Spirit (Foil)","count":6},"C1039889290":{"group":2,"name":"Sticker | adamS","count":4},"C1039889298":{"group":2,"name":"Sticker | adamS (Normal)","count":1},"C1039889314":{"group":2,"name":"Sticker | adamS (Gold)","count":1},"C1039889322":{"group":2,"name":"Sticker | adamS (Holo)","count":1},"C1039889330":{"group":2,"name":"Sticker | adamS (Glitter)","count":1},"C10403":{"group":3,"name":"Sticker | Team Spirit (Gold)","count":11},"C1041":{"group":1,"name":"Sticker | Cluj-Napoca 2015 (Normal)","count":97},"C10411":{"group":3,"name":"Sticker | Team Spirit (Holo)","count":11},"C10419":{"group":3,"name":"Sticker | Team Spirit (Glitter)","count":4},"C10421459210":{"group":2,"name":"Sticker | NiKo","count":58},"C10421459218":{"group":2,"name":"Sticker | NiKo (Normal)","count":17},"C10421459226":{"group":2,"name":"Sticker | NiKo (Foil)","count":11},"C10421459234":{"group":2,"name":"Sticker | NiKo (Gold)","count":17},"C10421459242":{"group":2,"name":"Sticker | NiKo (Holo)","count":8},"C10421459250":{"group":2,"name":"Sticker | NiKo (Glitter)","count":4},"C10421459258":{"group":2,"name":"Sticker | NiKo (Embroidered)","count":1},"C10427":{"group":3,"name":"Sticker | Team Spirit (Embroidered)","count":1},"C10473764234":{"group":2,"name":"Sticker | LETN1","count":3},"C10473764242":{"group":2,"name":"Sticker | LETN1 (Normal)","count":1},"C10473764250":{"group":2,"name":"Sticker | LETN1 (Foil)","count":1},"C10473764258":{"group":2,"name":"Sticker | LETN1 (Gold)","count":1},"C1049":{"group":1,"name":"Sticker | Cluj-Napoca 2015 (Foil)","count":97},"C10507":{"group":3,"name":"Sticker | Rogue","count":4},"C10515":{"group":3,"name":"Sticker | Rogue (Normal)","count":1},"C10523":{"group":3,"name":"Sticker | Rogue (Foil)","count":1},"C10531":{"group":3,"name":"Sticker | Rogue (Gold)","count":1},"C10539":{"group":3,"name":"Sticker | Rogue (Holo)","count":1},"C105634314":{"group":2,"name":"Sticker | dimasick","count":3},"C105634322":{"group":2,"name":"Sticker | dimasick (Normal)","count":1},"C105634330":{"group":2,"name":"Sticker | dimasick (Foil)","count":1},"C105634338":{"group":2,"name":"Sticker | dimasick (Gold)","count":1},"C1057":{"group":1,"name":"Sticker | Cluj-Napoca 2015 (Gold)","count":97},"C10616409610":{"group":2,"name":"Sticker | ableJ","count":6},"C10616409618":{"group":2,"name":"Sticker | ableJ (Normal)","count":2},"C10616409626":{"group":2,"name":"Sticker | ableJ (Foil)","count":2},"C10616409634":{"group":2,"name":"Sticker | ableJ (Gold)","count":2},"C10635":{"group":3,"name":"Sticker | Winstrike Team","count":8},"C10643":{"group":3,"name":"Sticker | Winstrike Team (Normal)","count":2},"C10651":{"group":3,"name":"Sticker | Winstrike Team (Foil)","count":2},"C10659":{"group":3,"name":"Sticker | Winstrike Team (Gold)","count":2},"C10667":{"group":3,"name":"Sticker | Winstrike Team (Holo)","count":2},"C10688492042":{"group":2,"name":"Sticker | arT","count":37},"C10688492050":{"group":2,"name":"Sticker | arT (Normal)","count":10},"C10688492058":{"group":2,"name":"Sticker | arT (Foil)","count":4},"C10688492066":{"group":2,"name":"Sticker | arT (Gold)","count":10},"C10688492074":{"group":2,"name":"Sticker | arT (Holo)","count":8},"C10688492082":{"group":2,"name":"Sticker | arT (Glitter)","count":4},"C10688492090":{"group":2,"name":"Sticker | arT (Embroidered)","count":1},"C10704176138":{"group":2,"name":"Sticker | JUGi","count":6},"C10704176146":{"group":2,"name":"Sticker | JUGi (Normal)","count":2},"C10704176154":{"group":2,"name":"Sticker | JUGi (Foil)","count":2},"C10704176162":{"group":2,"name":"Sticker | JUGi (Gold)","count":2},"C10723760522":{"group":2,"name":"Sticker | electronic","count":45},"C10723760530":{"group":2,"name":"Sticker | electronic (Normal)","count":13},"C10723760538":{"group":2,"name":"Sticker | electronic (Foil)","count":7},"C10723760546":{"group":2,"name":"Sticker | electronic (Gold)","count":13},"C10723760554":{"group":2,"name":"Sticker | electronic (Holo)","count":7},"C10723760562":{"group":2,"name":"Sticker | electronic (Glitter)","count":5},"C10724135050":{"group":2,"name":"Sticker | almazer","count":3},"C10724135058":{"group":2,"name":"Sticker | almazer (Normal)","count":1},"C10724135066":{"group":2,"name":"Sticker | almazer (Foil)","count":1},"C10724135074":{"group":2,"name":"Sticker | almazer (Gold)","count":1},"C10733192714":{"group":2,"name":"Sticker | XANTARES","count":29},"C10733192722":{"group":2,"name":"Sticker | XANTARES (Normal)","count":8},"C10733192730":{"group":2,"name":"Sticker | XANTARES (Foil)","count":5},"C10733192738":{"group":2,"name":"Sticker | XANTARES (Gold)","count":8},"C10733192746":{"group":2,"name":"Sticker | XANTARES (Holo)","count":5},"C10733192754":{"group":2,"name":"Sticker | XANTARES (Glitter)","count":2},"C10733192762":{"group":2,"name":"Sticker | XANTARES (Embroidered)","count":1},"C107401522442":{"group":2,"name":"Sticker | degster","count":16},"C107401522450":{"group":2,"name":"Sticker | degster (Normal)","count":4},"C107401522466":{"group":2,"name":"Sticker | degster (Gold)","count":4},"C107401522474":{"group":2,"name":"Sticker | degster (Holo)","count":4},"C107401522482":{"group":2,"name":"Sticker | degster (Glitter)","count":4},"C107512811402":{"group":2,"name":"Sticker | noway","count":16},"C107512811410":{"group":2,"name":"Sticker | noway (Normal)","count":4},"C107512811418":{"group":2,"name":"Sticker | noway (Foil)","count":1},"C107512811426":{"group":2,"name":"Sticker | noway (Gold)","count":4},"C107512811434":{"group":2,"name":"Sticker | noway (Holo)","count":4},"C107512811442":{"group":2,"name":"Sticker | noway (Glitter)","count":2},"C107512811450":{"group":2,"name":"Sticker | noway (Embroidered)","count":1},"C107518438154":{"group":2,"name":"Sticker | jambo","count":8},"C107518438162":{"group":2,"name":"Sticker | jambo (Normal)","count":2},"C107518438178":{"group":2,"name":"Sticker | jambo (Gold)","count":2},"C107518438186":{"group":2,"name":"Sticker | jambo (Holo)","count":2},"C107518438194":{"group":2,"name":"Sticker | jambo (Glitter)","count":1},"C107518438202":{"group":2,"name":"Sticker | jambo (Embroidered)","count":1},"C10763":{"group":3,"name":"Sticker | ENCE","count":28},"C10771":{"group":3,"name":"Sticker | ENCE (Normal)","count":7},"C10779":{"group":3,"name":"Sticker | ENCE (Foil)","count":3},"C10787":{"group":3,"name":"Sticker | ENCE (Gold)","count":7},"C10795":{"group":3,"name":"Sticker | ENCE (Holo)","count":7},"C10803":{"group":3,"name":"Sticker | ENCE (Glitter)","count":4},"C10850821898":{"group":2,"name":"Sticker | EspiranTo","count":3},"C10850821906":{"group":2,"name":"Sticker | EspiranTo (Normal)","count":1},"C10850821914":{"group":2,"name":"Sticker | EspiranTo (Foil)","count":1},"C10850821922":{"group":2,"name":"Sticker | EspiranTo (Gold)","count":1},"C108697158154":{"group":2,"name":"Sticker | koala","count":4},"C108697158162":{"group":2,"name":"Sticker | koala (Normal)","count":1},"C108697158170":{"group":2,"name":"Sticker | koala (Foil)","count":1},"C108697158178":{"group":2,"name":"Sticker | koala (Gold)","count":1},"C108697158186":{"group":2,"name":"Sticker | koala (Holo)","count":1},"C10891":{"group":3,"name":"Sticker | FURIA","count":48},"C10896879754":{"group":2,"name":"Sticker | somebody","count":16},"C10896879762":{"group":2,"name":"Sticker | somebody (Normal)","count":5},"C10896879770":{"group":2,"name":"Sticker | somebody (Foil)","count":4},"C10896879778":{"group":2,"name":"Sticker | somebody (Gold)","count":5},"C10896879786":{"group":2,"name":"Sticker | somebody (Holo)","count":1},"C10896879794":{"group":2,"name":"Sticker | somebody (Glitter)","count":1},"C10899":{"group":3,"name":"Sticker | FURIA (Normal)","count":12},"C10901449738":{"group":2,"name":"Sticker | Ax1Le","count":23},"C10901449746":{"group":2,"name":"Sticker | Ax1Le (Normal)","count":6},"C10901449754":{"group":2,"name":"Sticker | Ax1Le (Foil)","count":1},"C10901449762":{"group":2,"name":"Sticker | Ax1Le (Gold)","count":6},"C10901449770":{"group":2,"name":"Sticker | Ax1Le (Holo)","count":6},"C10901449778":{"group":2,"name":"Sticker | Ax1Le (Glitter)","count":4},"C10907":{"group":3,"name":"Sticker | FURIA (Foil)","count":6},"C109087768970":{"group":2,"name":"Sticker | Wicadia","count":16},"C109087768978":{"group":2,"name":"Sticker | Wicadia (Normal)","count":4},"C109087768986":{"group":2,"name":"Sticker | Wicadia (Foil)","count":2},"C109087768994":{"group":2,"name":"Sticker | Wicadia (Gold)","count":4},"C109087769002":{"group":2,"name":"Sticker | Wicadia (Holo)","count":4},"C109087769010":{"group":2,"name":"Sticker | Wicadia (Glitter)","count":1},"C109087769018":{"group":2,"name":"Sticker | Wicadia (Embroidered)","count":1},"C10915":{"group":3,"name":"Sticker | FURIA (Gold)","count":12},"C10923":{"group":3,"name":"Sticker | FURIA (Holo)","count":12},"C10925866634":{"group":2,"name":"Sticker | Karsa","count":3},"C10925866642":{"group":2,"name":"Sticker | Karsa (Normal)","count":1},"C10925866650":{"group":2,"name":"Sticker | Karsa (Foil)","count":1},"C10925866658":{"group":2,"name":"Sticker | Karsa (Gold)","count":1},"C10931":{"group":3,"name":"Sticker | FURIA (Glitter)","count":5},"C10939":{"group":3,"name":"Sticker | FURIA (Embroidered)","count":1},"C10940229898":{"group":2,"name":"Sticker | Marek","count":4},"C10940229906":{"group":2,"name":"Sticker | Marek (Normal)","count":1},"C10940229922":{"group":2,"name":"Sticker | Marek (Gold)","count":1},"C10940229930":{"group":2,"name":"Sticker | Marek (Holo)","count":1},"C10940229946":{"group":2,"name":"Sticker | Marek (Embroidered)","count":1},"C10940676234":{"group":2,"name":"Sticker | Maka","count":12},"C10940676242":{"group":2,"name":"Sticker | Maka (Normal)","count":3},"C10940676250":{"group":2,"name":"Sticker | Maka (Foil)","count":1},"C10940676258":{"group":2,"name":"Sticker | Maka (Gold)","count":3},"C10940676266":{"group":2,"name":"Sticker | Maka (Holo)","count":3},"C10940676274":{"group":2,"name":"Sticker | Maka (Glitter)","count":1},"C10940676282":{"group":2,"name":"Sticker | Maka (Embroidered)","count":1},"C10961041418":{"group":2,"name":"Sticker | chopper","count":40},"C10961041426":{"group":2,"name":"Sticker | chopper (Normal)","count":11},"C10961041434":{"group":2,"name":"Sticker | chopper (Foil)","count":5},"C10961041442":{"group":2,"name":"Sticker | chopper (Gold)","count":11},"C10961041450":{"group":2,"name":"Sticker | chopper (Holo)","count":7},"C10961041458":{"group":2,"name":"Sticker | chopper (Glitter)","count":5},"C10961041466":{"group":2,"name":"Sticker | chopper (Embroidered)","count":1},"C109627606154":{"group":2,"name":"Sticker | EmiliaQAQ","count":16},"C109627606162":{"group":2,"name":"Sticker | EmiliaQAQ (Normal)","count":4},"C109627606170":{"group":2,"name":"Sticker | EmiliaQAQ (Foil)","count":2},"C109627606178":{"group":2,"name":"Sticker | EmiliaQAQ (Gold)","count":4},"C109627606186":{"group":2,"name":"Sticker | EmiliaQAQ (Holo)","count":4},"C109627606194":{"group":2,"name":"Sticker | EmiliaQAQ (Glitter)","count":1},"C109627606202":{"group":2,"name":"Sticker | EmiliaQAQ (Embroidered)","count":1},"C11008386058":{"group":2,"name":"Sticker | ShahZaM","count":12},"C11008386066":{"group":2,"name":"Sticker | ShahZaM (Normal)","count":4},"C11008386074":{"group":2,"name":"Sticker | ShahZaM (Foil)","count":4},"C11008386082":{"group":2,"name":"Sticker | ShahZaM (Gold)","count":4},"C11019":{"group":3,"name":"Sticker | Grayhound Gaming","count":16},"C11027":{"group":3,"name":"Sticker | Grayhound Gaming (Normal)","count":4},"C11035":{"group":3,"name":"Sticker | Grayhound Gaming (Foil)","count":2},"C11043":{"group":3,"name":"Sticker | Grayhound Gaming (Gold)","count":4},"C110484494730":{"group":2,"name":"Sticker | sk0R","count":16},"C110484494738":{"group":2,"name":"Sticker | sk0R (Normal)","count":4},"C110484494754":{"group":2,"name":"Sticker | sk0R (Gold)","count":4},"C110484494762":{"group":2,"name":"Sticker | sk0R (Holo)","count":4},"C110484494770":{"group":2,"name":"Sticker | sk0R (Glitter)","count":3},"C110484494778":{"group":2,"name":"Sticker | sk0R (Embroidered)","count":1},"C11051":{"group":3,"name":"Sticker | Grayhound Gaming (Holo)","count":4},"C11059":{"group":3,"name":"Sticker | Grayhound Gaming (Glitter)","count":2},"C111174922":{"group":2,"name":"Sticker | magixx","count":28},"C111174930":{"group":2,"name":"Sticker | magixx (Normal)","count":7},"C111174938":{"group":2,"name":"Sticker | magixx (Foil)","count":2},"C111174946":{"group":2,"name":"Sticker | magixx (Gold)","count":7},"C111174954":{"group":2,"name":"Sticker | magixx (Holo)","count":7},"C111174962":{"group":2,"name":"Sticker | magixx (Glitter)","count":5},"C11127451786":{"group":2,"name":"Sticker | kraghen","count":4},"C11127451794":{"group":2,"name":"Sticker | kraghen (Normal)","count":1},"C11127451810":{"group":2,"name":"Sticker | kraghen (Gold)","count":1},"C11127451818":{"group":2,"name":"Sticker | kraghen (Holo)","count":1},"C11127451826":{"group":2,"name":"Sticker | kraghen (Glitter)","count":1},"C11147":{"group":3,"name":"Sticker | NRG","count":20},"C11153553162":{"group":2,"name":"Sticker | stadodo","count":4},"C11153553170":{"group":2,"name":"Sticker | stadodo (Normal)","count":1},"C11153553186":{"group":2,"name":"Sticker | stadodo (Gold)","count":1},"C11153553194":{"group":2,"name":"Sticker | stadodo (Holo)","count":1},"C11153553202":{"group":2,"name":"Sticker | stadodo (Glitter)","count":1},"C11155":{"group":3,"name":"Sticker | NRG (Normal)","count":5},"C11162471178":{"group":2,"name":"Sticker | oSee","count":20},"C11162471186":{"group":2,"name":"Sticker | oSee (Normal)","count":5},"C11162471194":{"group":2,"name":"Sticker | oSee (Foil)","count":2},"C11162471202":{"group":2,"name":"Sticker | oSee (Gold)","count":5},"C11162471210":{"group":2,"name":"Sticker | oSee (Holo)","count":5},"C11162471218":{"group":2,"name":"Sticker | oSee (Glitter)","count":3},"C11163":{"group":3,"name":"Sticker | NRG (Foil)","count":4},"C11171":{"group":3,"name":"Sticker | NRG (Gold)","count":5},"C11179":{"group":3,"name":"Sticker | NRG (Holo)","count":5},"C11195":{"group":3,"name":"Sticker | NRG (Embroidered)","count":1},"C11214238986":{"group":2,"name":"Sticker | Djoko","count":4},"C11214238994":{"group":2,"name":"Sticker | Djoko (Normal)","count":1},"C11214239010":{"group":2,"name":"Sticker | Djoko (Gold)","count":1},"C11214239018":{"group":2,"name":"Sticker | Djoko (Holo)","count":1},"C11214239026":{"group":2,"name":"Sticker | Djoko (Glitter)","count":1},"C112237015050":{"group":2,"name":"Sticker | 1eeR","count":4},"C112237015058":{"group":2,"name":"Sticker | 1eeR (Normal)","count":1},"C112237015066":{"group":2,"name":"Sticker | 1eeR (Foil)","count":1},"C112237015074":{"group":2,"name":"Sticker | 1eeR (Gold)","count":1},"C112237015082":{"group":2,"name":"Sticker | 1eeR (Holo)","count":1},"C112455277322":{"group":2,"name":"Sticker | mzinho","count":20},"C112455277330":{"group":2,"name":"Sticker | mzinho (Normal)","count":5},"C112455277338":{"group":2,"name":"Sticker | mzinho (Foil)","count":2},"C112455277346":{"group":2,"name":"Sticker | mzinho (Gold)","count":5},"C112455277354":{"group":2,"name":"Sticker | mzinho (Holo)","count":5},"C112455277362":{"group":2,"name":"Sticker | mzinho (Glitter)","count":2},"C112455277370":{"group":2,"name":"Sticker | mzinho (Embroidered)","count":1},"C112517137546":{"group":2,"name":"Sticker | Xant3r","count":4},"C112517137554":{"group":2,"name":"Sticker | Xant3r (Normal)","count":1},"C112517137562":{"group":2,"name":"Sticker | Xant3r (Foil)","count":1},"C112517137570":{"group":2,"name":"Sticker | Xant3r (Gold)","count":1},"C112517137578":{"group":2,"name":"Sticker | Xant3r (Holo)","count":1},"C11264132618":{"group":2,"name":"Sticker | Attacker","count":17},"C11264132626":{"group":2,"name":"Sticker | Attacker (Normal)","count":5},"C11264132634":{"group":2,"name":"Sticker | Attacker (Foil)","count":4},"C11264132642":{"group":2,"name":"Sticker | Attacker (Gold)","count":5},"C11264132650":{"group":2,"name":"Sticker | Attacker (Holo)","count":2},"C11264132666":{"group":2,"name":"Sticker | Attacker (Embroidered)","count":1},"C11275":{"group":3,"name":"Sticker | ViCi Gaming","count":4},"C11283":{"group":3,"name":"Sticker | ViCi Gaming (Normal)","count":1},"C11291":{"group":3,"name":"Sticker | ViCi Gaming (Foil)","count":1},"C112970558474":{"group":2,"name":"Sticker | cool4st","count":4},"C112970558482":{"group":2,"name":"Sticker | cool4st (Normal)","count":1},"C112970558490":{"group":2,"name":"Sticker | cool4st (Foil)","count":1},"C112970558498":{"group":2,"name":"Sticker | cool4st (Gold)","count":1},"C112970558506":{"group":2,"name":"Sticker | cool4st (Holo)","count":1},"C11299":{"group":3,"name":"Sticker | ViCi Gaming (Gold)","count":1},"C11307":{"group":3,"name":"Sticker | ViCi Gaming (Holo)","count":1},"C113301880074":{"group":2,"name":"Sticker | Kvem","count":4},"C113301880082":{"group":2,"name":"Sticker | Kvem (Normal)","count":1},"C113301880098":{"group":2,"name":"Sticker | Kvem (Gold)","count":1},"C113301880106":{"group":2,"name":"Sticker | Kvem (Holo)","count":1},"C113301880122":{"group":2,"name":"Sticker | Kvem (Embroidered)","count":1},"C113888570634":{"group":2,"name":"Sticker | latto","count":20},"C113888570642":{"group":2,"name":"Sticker | latto (Normal)","count":5},"C113888570650":{"group":2,"name":"Sticker | latto (Foil)","count":2},"C113888570658":{"group":2,"name":"Sticker | latto (Gold)","count":5},"C113888570666":{"group":2,"name":"Sticker | latto (Holo)","count":5},"C113888570674":{"group":2,"name":"Sticker | latto (Glitter)","count":2},"C113888570682":{"group":2,"name":"Sticker | latto (Embroidered)","count":1},"C114022631818":{"group":2,"name":"Sticker | adamb","count":4},"C114022631826":{"group":2,"name":"Sticker | adamb (Normal)","count":1},"C114022631834":{"group":2,"name":"Sticker | adamb (Foil)","count":1},"C114022631842":{"group":2,"name":"Sticker | adamb (Gold)","count":1},"C114022631850":{"group":2,"name":"Sticker | adamb (Holo)","count":1},"C11403":{"group":3,"name":"Sticker | Vitality","count":48},"C11411":{"group":3,"name":"Sticker | Vitality (Normal)","count":12},"C11419":{"group":3,"name":"Sticker | Vitality (Foil)","count":6},"C11427":{"group":3,"name":"Sticker | Vitality (Gold)","count":12},"C11435":{"group":3,"name":"Sticker | Vitality (Holo)","count":12},"C11443":{"group":3,"name":"Sticker | Vitality (Glitter)","count":5},"C11451":{"group":3,"name":"Sticker | Vitality (Embroidered)","count":1},"C114574028426":{"group":2,"name":"Sticker | Jimpphat","count":20},"C114574028434":{"group":2,"name":"Sticker | Jimpphat (Normal)","count":5},"C114574028442":{"group":2,"name":"Sticker | Jimpphat (Foil)","count":2},"C114574028450":{"group":2,"name":"Sticker | Jimpphat (Gold)","count":5},"C114574028458":{"group":2,"name":"Sticker | Jimpphat (Holo)","count":5},"C114574028466":{"group":2,"name":"Sticker | Jimpphat (Glitter)","count":2},"C114574028474":{"group":2,"name":"Sticker | Jimpphat (Embroidered)","count":1},"C11459674378":{"group":2,"name":"Sticker | DeStiNy","count":3},"C11459674386":{"group":2,"name":"Sticker | DeStiNy (Normal)","count":1},"C11459674394":{"group":2,"name":"Sticker | DeStiNy (Foil)","count":1},"C11459674402":{"group":2,"name":"Sticker | DeStiNy (Gold)","count":1},"C114638189066":{"group":2,"name":"Sticker | brnz4n","count":16},"C114638189074":{"group":2,"name":"Sticker | brnz4n (Normal)","count":4},"C114638189082":{"group":2,"name":"Sticker | brnz4n (Foil)","count":2},"C114638189090":{"group":2,"name":"Sticker | brnz4n (Gold)","count":4},"C114638189098":{"group":2,"name":"Sticker | brnz4n (Holo)","count":4},"C114638189106":{"group":2,"name":"Sticker | brnz4n (Glitter)","count":1},"C114638189114":{"group":2,"name":"Sticker | brnz4n (Embroidered)","count":1},"C114824377098":{"group":2,"name":"Sticker | rox","count":4},"C114824377106":{"group":2,"name":"Sticker | rox (Normal)","count":1},"C114824377122":{"group":2,"name":"Sticker | rox (Gold)","count":1},"C114824377130":{"group":2,"name":"Sticker | rox (Holo)","count":1},"C114824377138":{"group":2,"name":"Sticker | rox (Glitter)","count":1},"C11518016650":{"group":2,"name":"Sticker | iM","count":32},"C11518016658":{"group":2,"name":"Sticker | iM (Normal)","count":8},"C11518016666":{"group":2,"name":"Sticker | iM (Foil)","count":2},"C11518016674":{"group":2,"name":"Sticker | iM (Gold)","count":8},"C11518016682":{"group":2,"name":"Sticker | iM (Holo)","count":8},"C11518016690":{"group":2,"name":"Sticker | iM (Glitter)","count":5},"C11518016698":{"group":2,"name":"Sticker | iM (Embroidered)","count":1},"C11528890378":{"group":2,"name":"Sticker | yel","count":3},"C11528890386":{"group":2,"name":"Sticker | yel (Normal)","count":1},"C11528890394":{"group":2,"name":"Sticker | yel (Foil)","count":1},"C11528890402":{"group":2,"name":"Sticker | yel (Gold)","count":1},"C11531":{"group":3,"name":"Sticker | forZe eSports","count":12},"C11539":{"group":3,"name":"Sticker | forZe eSports (Normal)","count":3},"C11547":{"group":3,"name":"Sticker | forZe eSports (Foil)","count":1},"C11555":{"group":3,"name":"Sticker | forZe eSports (Gold)","count":3},"C11563":{"group":3,"name":"Sticker | forZe eSports (Holo)","count":3},"C11568482954":{"group":2,"name":"Sticker | nex","count":21},"C11568482962":{"group":2,"name":"Sticker | nex (Normal)","count":7},"C11568482970":{"group":2,"name":"Sticker | nex (Foil)","count":7},"C11568482978":{"group":2,"name":"Sticker | nex (Gold)","count":7},"C11571":{"group":3,"name":"Sticker | forZe eSports (Glitter)","count":2},"C11604003850":{"group":2,"name":"Sticker | hades","count":16},"C11604003858":{"group":2,"name":"Sticker | hades (Normal)","count":4},"C11604003866":{"group":2,"name":"Sticker | hades (Foil)","count":1},"C11604003874":{"group":2,"name":"Sticker | hades (Gold)","count":4},"C11604003882":{"group":2,"name":"Sticker | hades (Holo)","count":4},"C11604003890":{"group":2,"name":"Sticker | hades (Glitter)","count":3},"C11607708682":{"group":2,"name":"Sticker | aizy","count":24},"C11607708690":{"group":2,"name":"Sticker | aizy (Normal)","count":8},"C11607708698":{"group":2,"name":"Sticker | aizy (Foil)","count":8},"C11607708706":{"group":2,"name":"Sticker | aizy (Gold)","count":8},"C1161":{"group":1,"name":"Sticker | Columbus 2016","count":308},"C1163":{"group":3,"name":"Sticker | LGB eSports","count":7},"C11659":{"group":3,"name":"Sticker | CR4ZY","count":4},"C11667":{"group":3,"name":"Sticker | CR4ZY (Normal)","count":1},"C116683915914":{"group":2,"name":"Sticker | zevy","count":12},"C116683915922":{"group":2,"name":"Sticker | zevy (Normal)","count":3},"C116683915930":{"group":2,"name":"Sticker | zevy (Foil)","count":1},"C116683915938":{"group":2,"name":"Sticker | zevy (Gold)","count":3},"C116683915946":{"group":2,"name":"Sticker | zevy (Holo)","count":3},"C116683915954":{"group":2,"name":"Sticker | zevy (Glitter)","count":1},"C116683915962":{"group":2,"name":"Sticker | zevy (Embroidered)","count":1},"C116703672330":{"group":2,"name":"Sticker | tN1R","count":8},"C116703672338":{"group":2,"name":"Sticker | tN1R (Normal)","count":2},"C116703672346":{"group":2,"name":"Sticker | tN1R (Foil)","count":2},"C116703672354":{"group":2,"name":"Sticker | tN1R (Gold)","count":2},"C116703672362":{"group":2,"name":"Sticker | tN1R (Holo)","count":2},"C11675":{"group":3,"name":"Sticker | CR4ZY (Foil)","count":1},"C11683":{"group":3,"name":"Sticker | CR4ZY (Gold)","count":1},"C1169":{"group":1,"name":"Sticker | Columbus 2016 (Normal)","count":97},"C11691":{"group":3,"name":"Sticker | CR4ZY (Holo)","count":1},"C1171":{"group":3,"name":"Sticker | LGB eSports (Normal)","count":2},"C117167033738":{"group":2,"name":"Sticker | dem0n","count":4},"C117167033746":{"group":2,"name":"Sticker | dem0n (Normal)","count":1},"C117167033754":{"group":2,"name":"Sticker | dem0n (Foil)","count":1},"C117167033762":{"group":2,"name":"Sticker | dem0n (Gold)","count":1},"C117167033770":{"group":2,"name":"Sticker | dem0n (Holo)","count":1},"C1177":{"group":1,"name":"Sticker | Columbus 2016 (Foil)","count":97},"C117764328330":{"group":2,"name":"Sticker | Starry","count":16},"C117764328338":{"group":2,"name":"Sticker | Starry (Normal)","count":4},"C117764328346":{"group":2,"name":"Sticker | Starry (Foil)","count":2},"C117764328354":{"group":2,"name":"Sticker | Starry (Gold)","count":4},"C117764328362":{"group":2,"name":"Sticker | Starry (Holo)","count":4},"C117764328370":{"group":2,"name":"Sticker | Starry (Glitter)","count":1},"C117764328378":{"group":2,"name":"Sticker | Starry (Embroidered)","count":1},"C11787":{"group":3,"name":"Sticker | Syman Gaming","count":4},"C1179":{"group":3,"name":"Sticker | LGB eSports (Foil)","count":2},"C11795":{"group":3,"name":"Sticker | Syman Gaming (Normal)","count":1},"C11803":{"group":3,"name":"Sticker | Syman Gaming (Foil)","count":1},"C1180722698":{"group":2,"name":"Sticker | BIT","count":3},"C1180722706":{"group":2,"name":"Sticker | BIT (Normal)","count":1},"C1180722714":{"group":2,"name":"Sticker | BIT (Foil)","count":1},"C1180722722":{"group":2,"name":"Sticker | BIT (Gold)","count":1},"C11811":{"group":3,"name":"Sticker | Syman Gaming (Gold)","count":1},"C11811908746":{"group":2,"name":"Sticker | Calyx","count":14},"C11811908754":{"group":2,"name":"Sticker | Calyx (Normal)","count":4},"C11811908762":{"group":2,"name":"Sticker | Calyx (Foil)","count":2},"C11811908770":{"group":2,"name":"Sticker | Calyx (Gold)","count":4},"C11811908778":{"group":2,"name":"Sticker | Calyx (Holo)","count":2},"C11811908786":{"group":2,"name":"Sticker | Calyx (Glitter)","count":2},"C11819":{"group":3,"name":"Sticker | Syman Gaming (Holo)","count":1},"C118421067402":{"group":2,"name":"Sticker | History","count":8},"C118421067410":{"group":2,"name":"Sticker | History (Normal)","count":2},"C118421067426":{"group":2,"name":"Sticker | History (Gold)","count":2},"C118421067434":{"group":2,"name":"Sticker | History (Holo)","count":2},"C118421067442":{"group":2,"name":"Sticker | History (Glitter)","count":1},"C118421067450":{"group":2,"name":"Sticker | History (Embroidered)","count":1},"C1185":{"group":1,"name":"Sticker | Columbus 2016 (Gold)","count":97},"C118524426":{"group":2,"name":"Sticker | Maikelele","count":9},"C118524434":{"group":2,"name":"Sticker | Maikelele (Normal)","count":3},"C118524442":{"group":2,"name":"Sticker | Maikelele (Foil)","count":3},"C118524450":{"group":2,"name":"Sticker | Maikelele (Gold)","count":3},"C11855669130":{"group":2,"name":"Sticker | vexite","count":24},"C11855669138":{"group":2,"name":"Sticker | vexite (Normal)","count":6},"C11855669146":{"group":2,"name":"Sticker | vexite (Foil)","count":2},"C11855669154":{"group":2,"name":"Sticker | vexite (Gold)","count":6},"C11855669162":{"group":2,"name":"Sticker | vexite (Holo)","count":6},"C11855669170":{"group":2,"name":"Sticker | vexite (Glitter)","count":3},"C11855669178":{"group":2,"name":"Sticker | vexite (Embroidered)","count":1},"C1187":{"group":3,"name":"Sticker | LGB eSports (Gold)","count":1},"C11886197386":{"group":2,"name":"Sticker | NertZ","count":24},"C11886197394":{"group":2,"name":"Sticker | NertZ (Normal)","count":6},"C11886197402":{"group":2,"name":"Sticker | NertZ (Foil)","count":2},"C11886197410":{"group":2,"name":"Sticker | NertZ (Gold)","count":6},"C11886197418":{"group":2,"name":"Sticker | NertZ (Holo)","count":6},"C11886197426":{"group":2,"name":"Sticker | NertZ (Glitter)","count":3},"C11886197434":{"group":2,"name":"Sticker | NertZ (Embroidered)","count":1},"C118908710026":{"group":2,"name":"Sticker | riskyb0b","count":4},"C118908710034":{"group":2,"name":"Sticker | riskyb0b (Normal)","count":1},"C118908710042":{"group":2,"name":"Sticker | riskyb0b (Foil)","count":1},"C118908710050":{"group":2,"name":"Sticker | riskyb0b (Gold)","count":1},"C118908710058":{"group":2,"name":"Sticker | riskyb0b (Holo)","count":1},"C119068937738":{"group":2,"name":"Sticker | L00m1","count":4},"C119068937746":{"group":2,"name":"Sticker | L00m1 (Normal)","count":1},"C119068937754":{"group":2,"name":"Sticker | L00m1 (Foil)","count":1},"C119068937762":{"group":2,"name":"Sticker | L00m1 (Gold)","count":1},"C119068937770":{"group":2,"name":"Sticker | L00m1 (Holo)","count":1},"C11915":{"group":3,"name":"Sticker | DreamEaters","count":4},"C11923":{"group":3,"name":"Sticker | DreamEaters (Normal)","count":1},"C1193":{"group":1,"name":"Sticker | Columbus 2016 (Holo)","count":17},"C11931":{"group":3,"name":"Sticker | DreamEaters (Foil)","count":1},"C11939":{"group":3,"name":"Sticker | DreamEaters (Gold)","count":1},"C11947":{"group":3,"name":"Sticker | DreamEaters (Holo)","count":1},"C1195":{"group":3,"name":"Sticker | LGB eSports (Holo)","count":2},"C11996682":{"group":2,"name":"Sticker | f0rest","count":21},"C11996690":{"group":2,"name":"Sticker | f0rest (Normal)","count":7},"C11996698":{"group":2,"name":"Sticker | f0rest (Foil)","count":7},"C11996706":{"group":2,"name":"Sticker | f0rest (Gold)","count":7},"C12003462410":{"group":2,"name":"Sticker | neaLaN","count":7},"C12003462418":{"group":2,"name":"Sticker | neaLaN (Normal)","count":2},"C12003462426":{"group":2,"name":"Sticker | neaLaN (Foil)","count":1},"C12003462434":{"group":2,"name":"Sticker | neaLaN (Gold)","count":2},"C12003462442":{"group":2,"name":"Sticker | neaLaN (Holo)","count":1},"C12003462450":{"group":2,"name":"Sticker | neaLaN (Glitter)","count":1},"C12043":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB","count":4},"C12051":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Normal)","count":1},"C1205655306":{"group":2,"name":"Sticker | pronax","count":9},"C1205655314":{"group":2,"name":"Sticker | pronax (Normal)","count":3},"C1205655322":{"group":2,"name":"Sticker | pronax (Foil)","count":3},"C1205655330":{"group":2,"name":"Sticker | pronax (Gold)","count":3},"C12059":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Foil)","count":1},"C12067":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Gold)","count":1},"C12075":{"group":3,"name":"Sticker | INTZ E-SPORTS CLUB (Holo)","count":1},"C12103008778":{"group":2,"name":"Sticker | JOTA","count":8},"C12103008786":{"group":2,"name":"Sticker | JOTA (Normal)","count":2},"C12103008794":{"group":2,"name":"Sticker | JOTA (Foil)","count":1},"C12103008802":{"group":2,"name":"Sticker | JOTA (Gold)","count":2},"C12103008810":{"group":2,"name":"Sticker | JOTA (Holo)","count":2},"C12103008818":{"group":2,"name":"Sticker | JOTA (Glitter)","count":1},"C12108212618":{"group":2,"name":"Sticker | Brehze","count":10},"C12108212626":{"group":2,"name":"Sticker | Brehze (Normal)","count":3},"C12108212634":{"group":2,"name":"Sticker | Brehze (Foil)","count":2},"C12108212642":{"group":2,"name":"Sticker | Brehze (Gold)","count":3},"C12108212650":{"group":2,"name":"Sticker | Brehze (Holo)","count":1},"C12108212658":{"group":2,"name":"Sticker | Brehze (Glitter)","count":1},"C12109455498":{"group":2,"name":"Sticker | autimatic","count":16},"C12109455506":{"group":2,"name":"Sticker | autimatic (Normal)","count":5},"C12109455514":{"group":2,"name":"Sticker | autimatic (Foil)","count":4},"C12109455522":{"group":2,"name":"Sticker | autimatic (Gold)","count":5},"C12109455530":{"group":2,"name":"Sticker | autimatic (Holo)","count":1},"C12109455538":{"group":2,"name":"Sticker | autimatic (Glitter)","count":1},"C12139942410":{"group":2,"name":"Sticker | ICY","count":12},"C12139942418":{"group":2,"name":"Sticker | ICY (Normal)","count":3},"C12139942426":{"group":2,"name":"Sticker | ICY (Foil)","count":1},"C12139942434":{"group":2,"name":"Sticker | ICY (Gold)","count":3},"C12139942442":{"group":2,"name":"Sticker | ICY (Holo)","count":3},"C12139942450":{"group":2,"name":"Sticker | ICY (Glitter)","count":2},"C12171":{"group":3,"name":"Sticker | HEROIC","count":36},"C12179":{"group":3,"name":"Sticker | HEROIC (Normal)","count":9},"C12187":{"group":3,"name":"Sticker | HEROIC (Foil)","count":4},"C12195":{"group":3,"name":"Sticker | HEROIC (Gold)","count":9},"C12203":{"group":3,"name":"Sticker | HEROIC (Holo)","count":9},"C12211":{"group":3,"name":"Sticker | HEROIC (Glitter)","count":5},"C122938149002":{"group":2,"name":"Sticker | Senzu","count":16},"C122938149010":{"group":2,"name":"Sticker | Senzu (Normal)","count":4},"C122938149018":{"group":2,"name":"Sticker | Senzu (Foil)","count":1},"C122938149026":{"group":2,"name":"Sticker | Senzu (Gold)","count":4},"C122938149034":{"group":2,"name":"Sticker | Senzu (Holo)","count":4},"C122938149042":{"group":2,"name":"Sticker | Senzu (Glitter)","count":2},"C122938149050":{"group":2,"name":"Sticker | Senzu (Embroidered)","count":1},"C12299":{"group":3,"name":"Sticker | OG","count":16},"C12307":{"group":3,"name":"Sticker | OG (Normal)","count":4},"C12315":{"group":3,"name":"Sticker | OG (Foil)","count":2},"C12323":{"group":3,"name":"Sticker | OG (Gold)","count":4},"C12331":{"group":3,"name":"Sticker | OG (Holo)","count":4},"C12339":{"group":3,"name":"Sticker | OG (Glitter)","count":2},"C12418138122":{"group":2,"name":"Sticker | kyxsan","count":24},"C12418138130":{"group":2,"name":"Sticker | kyxsan (Normal)","count":6},"C12418138138":{"group":2,"name":"Sticker | kyxsan (Foil)","count":2},"C12418138146":{"group":2,"name":"Sticker | kyxsan (Gold)","count":6},"C12418138154":{"group":2,"name":"Sticker | kyxsan (Holo)","count":6},"C12418138162":{"group":2,"name":"Sticker | kyxsan (Glitter)","count":3},"C12418138170":{"group":2,"name":"Sticker | kyxsan (Embroidered)","count":1},"C12427":{"group":3,"name":"Sticker | ESPADA","count":4},"C12435":{"group":3,"name":"Sticker | ESPADA (Normal)","count":1},"C12443":{"group":3,"name":"Sticker | ESPADA (Foil)","count":1},"C12451":{"group":3,"name":"Sticker | ESPADA (Gold)","count":1},"C12459":{"group":3,"name":"Sticker | ESPADA (Holo)","count":1},"C125067154186":{"group":2,"name":"Sticker | ROUX","count":4},"C125067154194":{"group":2,"name":"Sticker | ROUX (Normal)","count":1},"C125067154202":{"group":2,"name":"Sticker | ROUX (Foil)","count":1},"C125067154210":{"group":2,"name":"Sticker | ROUX (Gold)","count":1},"C125067154218":{"group":2,"name":"Sticker | ROUX (Holo)","count":1},"C12520454410":{"group":2,"name":"Sticker | znajder","count":3},"C12520454418":{"group":2,"name":"Sticker | znajder (Normal)","count":1},"C12520454426":{"group":2,"name":"Sticker | znajder (Foil)","count":1},"C12520454434":{"group":2,"name":"Sticker | znajder (Gold)","count":1},"C12555":{"group":3,"name":"Sticker | Evil Geniuses","count":12},"C12563":{"group":3,"name":"Sticker | Evil Geniuses (Normal)","count":3},"C12571":{"group":3,"name":"Sticker | Evil Geniuses (Foil)","count":2},"C12574049802":{"group":2,"name":"Sticker | KSCERATO","count":41},"C12574049810":{"group":2,"name":"Sticker | KSCERATO (Normal)","count":11},"C12574049818":{"group":2,"name":"Sticker | KSCERATO (Foil)","count":4},"C12574049826":{"group":2,"name":"Sticker | KSCERATO (Gold)","count":11},"C12574049834":{"group":2,"name":"Sticker | KSCERATO (Holo)","count":9},"C12574049842":{"group":2,"name":"Sticker | KSCERATO (Glitter)","count":5},"C12574049850":{"group":2,"name":"Sticker | KSCERATO (Embroidered)","count":1},"C12579":{"group":3,"name":"Sticker | Evil Geniuses (Gold)","count":3},"C12587":{"group":3,"name":"Sticker | Evil Geniuses (Holo)","count":3},"C12595":{"group":3,"name":"Sticker | Evil Geniuses (Glitter)","count":1},"C12683":{"group":3,"name":"Sticker | Gen.G Esports","count":4},"C126873845770":{"group":2,"name":"Sticker | khaN","count":4},"C126873845778":{"group":2,"name":"Sticker | khaN (Normal)","count":1},"C126873845786":{"group":2,"name":"Sticker | khaN (Foil)","count":1},"C126873845794":{"group":2,"name":"Sticker | khaN (Gold)","count":1},"C126873845802":{"group":2,"name":"Sticker | khaN (Holo)","count":1},"C12691":{"group":3,"name":"Sticker | Gen.G Esports (Normal)","count":1},"C12699":{"group":3,"name":"Sticker | Gen.G Esports (Foil)","count":1},"C12707":{"group":3,"name":"Sticker | Gen.G Esports (Gold)","count":1},"C12715":{"group":3,"name":"Sticker | Gen.G Esports (Holo)","count":1},"C12716630282":{"group":2,"name":"Sticker | zorte","count":16},"C12716630290":{"group":2,"name":"Sticker | zorte (Normal)","count":4},"C12716630298":{"group":2,"name":"Sticker | zorte (Foil)","count":2},"C12716630306":{"group":2,"name":"Sticker | zorte (Gold)","count":4},"C12716630314":{"group":2,"name":"Sticker | zorte (Holo)","count":4},"C12716630322":{"group":2,"name":"Sticker | zorte (Glitter)","count":2},"C12729395210":{"group":2,"name":"Sticker | nafany","count":11},"C12729395218":{"group":2,"name":"Sticker | nafany (Normal)","count":3},"C12729395234":{"group":2,"name":"Sticker | nafany (Gold)","count":3},"C12729395242":{"group":2,"name":"Sticker | nafany (Holo)","count":3},"C12729395250":{"group":2,"name":"Sticker | nafany (Glitter)","count":2},"C12735256586":{"group":2,"name":"Sticker | zhokiNg","count":3},"C12735256594":{"group":2,"name":"Sticker | zhokiNg (Normal)","count":1},"C12735256602":{"group":2,"name":"Sticker | zhokiNg (Foil)","count":1},"C12735256610":{"group":2,"name":"Sticker | zhokiNg (Gold)","count":1},"C127570421130":{"group":2,"name":"Sticker | Zero","count":4},"C127570421138":{"group":2,"name":"Sticker | Zero (Normal)","count":1},"C127570421146":{"group":2,"name":"Sticker | Zero (Foil)","count":1},"C127570421154":{"group":2,"name":"Sticker | Zero (Gold)","count":1},"C127570421162":{"group":2,"name":"Sticker | Zero (Holo)","count":1},"C127943470090":{"group":2,"name":"Sticker | bLitz","count":32},"C127943470098":{"group":2,"name":"Sticker | bLitz (Normal)","count":8},"C127943470106":{"group":2,"name":"Sticker | bLitz (Foil)","count":2},"C127943470114":{"group":2,"name":"Sticker | bLitz (Gold)","count":8},"C127943470122":{"group":2,"name":"Sticker | bLitz (Holo)","count":8},"C127943470130":{"group":2,"name":"Sticker | bLitz (Glitter)","count":5},"C127943470138":{"group":2,"name":"Sticker | bLitz (Embroidered)","count":1},"C12811":{"group":3,"name":"Sticker | Boom Esports","count":4},"C12813002506":{"group":2,"name":"Sticker | hallzerk","count":20},"C12813002514":{"group":2,"name":"Sticker | hallzerk (Normal)","count":5},"C12813002522":{"group":2,"name":"Sticker | hallzerk (Foil)","count":1},"C12813002530":{"group":2,"name":"Sticker | hallzerk (Gold)","count":5},"C12813002538":{"group":2,"name":"Sticker | hallzerk (Holo)","count":5},"C12813002546":{"group":2,"name":"Sticker | hallzerk (Glitter)","count":3},"C12813002554":{"group":2,"name":"Sticker | hallzerk (Embroidered)","count":1},"C12819":{"group":3,"name":"Sticker | Boom Esports (Normal)","count":1},"C12827":{"group":3,"name":"Sticker | Boom Esports (Foil)","count":1},"C12827912330":{"group":2,"name":"Sticker | br0","count":12},"C12827912338":{"group":2,"name":"Sticker | br0 (Normal)","count":3},"C12827912346":{"group":2,"name":"Sticker | br0 (Foil)","count":2},"C12827912354":{"group":2,"name":"Sticker | br0 (Gold)","count":3},"C12827912362":{"group":2,"name":"Sticker | br0 (Holo)","count":3},"C12827912378":{"group":2,"name":"Sticker | br0 (Embroidered)","count":1},"C12828751498":{"group":2,"name":"Sticker | sterling","count":3},"C12828751506":{"group":2,"name":"Sticker | sterling (Normal)","count":1},"C12828751514":{"group":2,"name":"Sticker | sterling (Foil)","count":1},"C12828751522":{"group":2,"name":"Sticker | sterling (Gold)","count":1},"C1283227018":{"group":2,"name":"Sticker | Havoc","count":3},"C1283227026":{"group":2,"name":"Sticker | Havoc (Normal)","count":1},"C1283227034":{"group":2,"name":"Sticker | Havoc (Foil)","count":1},"C1283227042":{"group":2,"name":"Sticker | Havoc (Gold)","count":1},"C12835":{"group":3,"name":"Sticker | Boom Esports (Gold)","count":1},"C12843":{"group":3,"name":"Sticker | Boom Esports (Holo)","count":1},"C128483453834":{"group":2,"name":"Sticker | s-chilla","count":4},"C128483453842":{"group":2,"name":"Sticker | s-chilla (Normal)","count":1},"C128483453858":{"group":2,"name":"Sticker | s-chilla (Gold)","count":1},"C128483453866":{"group":2,"name":"Sticker | s-chilla (Holo)","count":1},"C128483453874":{"group":2,"name":"Sticker | s-chilla (Glitter)","count":1},"C12868390026":{"group":2,"name":"Sticker | DAVEY","count":3},"C12868390034":{"group":2,"name":"Sticker | DAVEY (Normal)","count":1},"C12868390042":{"group":2,"name":"Sticker | DAVEY (Foil)","count":1},"C12868390050":{"group":2,"name":"Sticker | DAVEY (Gold)","count":1},"C128777527306":{"group":2,"name":"Sticker | Techno4K","count":32},"C128777527314":{"group":2,"name":"Sticker | Techno4K (Normal)","count":8},"C128777527322":{"group":2,"name":"Sticker | Techno4K (Foil)","count":2},"C128777527330":{"group":2,"name":"Sticker | Techno4K (Gold)","count":8},"C128777527338":{"group":2,"name":"Sticker | Techno4K (Holo)","count":8},"C128777527346":{"group":2,"name":"Sticker | Techno4K (Glitter)","count":5},"C128777527354":{"group":2,"name":"Sticker | Techno4K (Embroidered)","count":1},"C1289":{"group":1,"name":"Sticker | Cologne 2016","count":308},"C1291":{"group":3,"name":"Sticker | Copenhagen Wolves","count":5},"C12939":{"group":3,"name":"Sticker | Copenhagen Flames","count":8},"C12947":{"group":3,"name":"Sticker | Copenhagen Flames (Normal)","count":2},"C12948224266":{"group":2,"name":"Sticker | insani","count":16},"C12948224274":{"group":2,"name":"Sticker | insani (Normal)","count":4},"C12948224282":{"group":2,"name":"Sticker | insani (Foil)","count":2},"C12948224290":{"group":2,"name":"Sticker | insani (Gold)","count":4},"C12948224298":{"group":2,"name":"Sticker | insani (Holo)","count":4},"C12948224306":{"group":2,"name":"Sticker | insani (Glitter)","count":1},"C12948224314":{"group":2,"name":"Sticker | insani (Embroidered)","count":1},"C12955":{"group":3,"name":"Sticker | Copenhagen Flames (Foil)","count":1},"C129603856010":{"group":2,"name":"Sticker | lauNX","count":8},"C129603856018":{"group":2,"name":"Sticker | lauNX (Normal)","count":2},"C129603856026":{"group":2,"name":"Sticker | lauNX (Foil)","count":1},"C129603856034":{"group":2,"name":"Sticker | lauNX (Gold)","count":2},"C129603856042":{"group":2,"name":"Sticker | lauNX (Holo)","count":2},"C129603856050":{"group":2,"name":"Sticker | lauNX (Glitter)","count":1},"C12963":{"group":3,"name":"Sticker | Copenhagen Flames (Gold)","count":2},"C129697502858":{"group":2,"name":"Sticker | Tiger","count":4},"C129697502866":{"group":2,"name":"Sticker | Tiger (Normal)","count":1},"C129697502882":{"group":2,"name":"Sticker | Tiger (Gold)","count":1},"C129697502890":{"group":2,"name":"Sticker | Tiger (Holo)","count":1},"C129697502906":{"group":2,"name":"Sticker | Tiger (Embroidered)","count":1},"C1297":{"group":1,"name":"Sticker | Cologne 2016 (Normal)","count":97},"C12971":{"group":3,"name":"Sticker | Copenhagen Flames (Holo)","count":2},"C12979":{"group":3,"name":"Sticker | Copenhagen Flames (Glitter)","count":1},"C129821235338":{"group":2,"name":"Sticker | AZUWU","count":4},"C129821235346":{"group":2,"name":"Sticker | AZUWU (Normal)","count":1},"C129821235354":{"group":2,"name":"Sticker | AZUWU (Foil)","count":1},"C129821235362":{"group":2,"name":"Sticker | AZUWU (Gold)","count":1},"C129821235370":{"group":2,"name":"Sticker | AZUWU (Holo)","count":1},"C129894950282":{"group":2,"name":"Sticker | nota","count":8},"C129894950290":{"group":2,"name":"Sticker | nota (Normal)","count":2},"C129894950298":{"group":2,"name":"Sticker | nota (Foil)","count":1},"C129894950306":{"group":2,"name":"Sticker | nota (Gold)","count":2},"C129894950314":{"group":2,"name":"Sticker | nota (Holo)","count":2},"C129894950330":{"group":2,"name":"Sticker | nota (Embroidered)","count":1},"C1299":{"group":3,"name":"Sticker | Copenhagen Wolves (Normal)","count":2},"C12991727114":{"group":2,"name":"Sticker | n1ssim","count":16},"C12991727122":{"group":2,"name":"Sticker | n1ssim (Normal)","count":4},"C12991727130":{"group":2,"name":"Sticker | n1ssim (Foil)","count":2},"C12991727138":{"group":2,"name":"Sticker | n1ssim (Gold)","count":4},"C12991727146":{"group":2,"name":"Sticker | n1ssim (Holo)","count":4},"C12991727154":{"group":2,"name":"Sticker | n1ssim (Glitter)","count":1},"C12991727162":{"group":2,"name":"Sticker | n1ssim (Embroidered)","count":1},"C129943927306":{"group":2,"name":"Sticker | Woro2k","count":4},"C129943927314":{"group":2,"name":"Sticker | Woro2k (Normal)","count":1},"C129943927330":{"group":2,"name":"Sticker | Woro2k (Gold)","count":1},"C129943927338":{"group":2,"name":"Sticker | Woro2k (Holo)","count":1},"C129943927346":{"group":2,"name":"Sticker | Woro2k (Glitter)","count":1},"C12996545674":{"group":2,"name":"Sticker | dexter","count":22},"C12996545682":{"group":2,"name":"Sticker | dexter (Normal)","count":6},"C12996545690":{"group":2,"name":"Sticker | dexter (Foil)","count":3},"C12996545698":{"group":2,"name":"Sticker | dexter (Gold)","count":6},"C12996545706":{"group":2,"name":"Sticker | dexter (Holo)","count":4},"C12996545714":{"group":2,"name":"Sticker | dexter (Glitter)","count":3},"C130141373962":{"group":2,"name":"Sticker | XotiC","count":4},"C130141373970":{"group":2,"name":"Sticker | XotiC (Normal)","count":1},"C130141373986":{"group":2,"name":"Sticker | XotiC (Gold)","count":1},"C130141373994":{"group":2,"name":"Sticker | XotiC (Holo)","count":1},"C130141374010":{"group":2,"name":"Sticker | XotiC (Embroidered)","count":1},"C1305":{"group":1,"name":"Sticker | Cologne 2016 (Foil)","count":97},"C13067":{"group":3,"name":"Sticker | paiN Gaming","count":28},"C1307":{"group":3,"name":"Sticker | Copenhagen Wolves (Foil)","count":1},"C13075":{"group":3,"name":"Sticker | paiN Gaming (Normal)","count":7},"C13083":{"group":3,"name":"Sticker | paiN Gaming (Foil)","count":3},"C13091":{"group":3,"name":"Sticker | paiN Gaming (Gold)","count":7},"C13099":{"group":3,"name":"Sticker | paiN Gaming (Holo)","count":7},"C13107":{"group":3,"name":"Sticker | paiN Gaming (Glitter)","count":3},"C13115":{"group":3,"name":"Sticker | paiN Gaming (Embroidered)","count":1},"C1313":{"group":1,"name":"Sticker | Cologne 2016 (Gold)","count":97},"C1315":{"group":3,"name":"Sticker | Copenhagen Wolves (Gold)","count":1},"C13193046922":{"group":2,"name":"Sticker | Spinx","count":36},"C13193046930":{"group":2,"name":"Sticker | Spinx (Normal)","count":9},"C13193046938":{"group":2,"name":"Sticker | Spinx (Foil)","count":2},"C13193046946":{"group":2,"name":"Sticker | Spinx (Gold)","count":9},"C13193046954":{"group":2,"name":"Sticker | Spinx (Holo)","count":9},"C13193046962":{"group":2,"name":"Sticker | Spinx (Glitter)","count":6},"C13193046970":{"group":2,"name":"Sticker | Spinx (Embroidered)","count":1},"C13195":{"group":3,"name":"Sticker | Movistar Riders","count":4},"C131969625226":{"group":2,"name":"Sticker | Krabeni","count":4},"C131969625234":{"group":2,"name":"Sticker | Krabeni (Normal)","count":1},"C131969625242":{"group":2,"name":"Sticker | Krabeni (Foil)","count":1},"C131969625250":{"group":2,"name":"Sticker | Krabeni (Gold)","count":1},"C131969625258":{"group":2,"name":"Sticker | Krabeni (Holo)","count":1},"C13203":{"group":3,"name":"Sticker | Movistar Riders (Normal)","count":1},"C1321":{"group":1,"name":"Sticker | Cologne 2016 (Holo)","count":17},"C13211":{"group":3,"name":"Sticker | Movistar Riders (Foil)","count":1},"C13219":{"group":3,"name":"Sticker | Movistar Riders (Gold)","count":1},"C13227":{"group":3,"name":"Sticker | Movistar Riders (Holo)","count":1},"C1323":{"group":3,"name":"Sticker | Copenhagen Wolves (Holo)","count":1},"C132558739082":{"group":2,"name":"Sticker | zont1x","count":24},"C132558739090":{"group":2,"name":"Sticker | zont1x (Normal)","count":6},"C132558739098":{"group":2,"name":"Sticker | zont1x (Foil)","count":2},"C132558739106":{"group":2,"name":"Sticker | zont1x (Gold)","count":6},"C132558739114":{"group":2,"name":"Sticker | zont1x (Holo)","count":6},"C132558739122":{"group":2,"name":"Sticker | zont1x (Glitter)","count":3},"C132558739130":{"group":2,"name":"Sticker | zont1x (Embroidered)","count":1},"C1325757578":{"group":2,"name":"Sticker | Hyper","count":6},"C1325757586":{"group":2,"name":"Sticker | Hyper (Normal)","count":2},"C1325757594":{"group":2,"name":"Sticker | Hyper (Foil)","count":2},"C1325757602":{"group":2,"name":"Sticker | Hyper (Gold)","count":2},"C13285533450":{"group":2,"name":"Sticker | junior","count":4},"C13285533458":{"group":2,"name":"Sticker | junior (Normal)","count":1},"C13285533474":{"group":2,"name":"Sticker | junior (Gold)","count":1},"C13285533482":{"group":2,"name":"Sticker | junior (Holo)","count":1},"C13285533490":{"group":2,"name":"Sticker | junior (Glitter)","count":1},"C13323":{"group":3,"name":"Sticker | Sharks Esports","count":8},"C13323192458":{"group":2,"name":"Sticker | slaxz-","count":16},"C13323192466":{"group":2,"name":"Sticker | slaxz- (Normal)","count":4},"C13323192474":{"group":2,"name":"Sticker | slaxz- (Foil)","count":2},"C13323192482":{"group":2,"name":"Sticker | slaxz- (Gold)","count":4},"C13323192490":{"group":2,"name":"Sticker | slaxz- (Holo)","count":4},"C13323192498":{"group":2,"name":"Sticker | slaxz- (Glitter)","count":1},"C13323192506":{"group":2,"name":"Sticker | slaxz- (Embroidered)","count":1},"C133282897162":{"group":2,"name":"Sticker | s1zzi","count":4},"C133282897170":{"group":2,"name":"Sticker | s1zzi (Normal)","count":1},"C133282897178":{"group":2,"name":"Sticker | s1zzi (Foil)","count":1},"C133282897186":{"group":2,"name":"Sticker | s1zzi (Gold)","count":1},"C133282897194":{"group":2,"name":"Sticker | s1zzi (Holo)","count":1},"C13331":{"group":3,"name":"Sticker | Sharks Esports (Normal)","count":2},"C13339":{"group":3,"name":"Sticker | Sharks Esports (Foil)","count":2},"C13347":{"group":3,"name":"Sticker | Sharks Esports (Gold)","count":2},"C13355":{"group":3,"name":"Sticker | Sharks Esports (Holo)","count":2},"C13355598986":{"group":2,"name":"Sticker | peet","count":6},"C13355598994":{"group":2,"name":"Sticker | peet (Normal)","count":2},"C13355599002":{"group":2,"name":"Sticker | peet (Foil)","count":2},"C13355599010":{"group":2,"name":"Sticker | peet (Gold)","count":2},"C13388604170":{"group":2,"name":"Sticker | refrezh","count":11},"C13388604178":{"group":2,"name":"Sticker | refrezh (Normal)","count":3},"C13388604194":{"group":2,"name":"Sticker | refrezh (Gold)","count":3},"C13388604202":{"group":2,"name":"Sticker | refrezh (Holo)","count":3},"C13388604210":{"group":2,"name":"Sticker | refrezh (Glitter)","count":2},"C134297974666":{"group":2,"name":"Sticker | ztr","count":8},"C134297974674":{"group":2,"name":"Sticker | ztr (Normal)","count":2},"C134297974690":{"group":2,"name":"Sticker | ztr (Gold)","count":2},"C134297974698":{"group":2,"name":"Sticker | ztr (Holo)","count":2},"C134297974706":{"group":2,"name":"Sticker | ztr (Glitter)","count":1},"C134297974714":{"group":2,"name":"Sticker | ztr (Embroidered)","count":1},"C13451":{"group":3,"name":"Sticker | Entropiq","count":4},"C13459":{"group":3,"name":"Sticker | Entropiq (Normal)","count":1},"C13463376906":{"group":2,"name":"Sticker | story","count":8},"C13463376914":{"group":2,"name":"Sticker | story (Normal)","count":2},"C13463376922":{"group":2,"name":"Sticker | story (Foil)","count":1},"C13463376930":{"group":2,"name":"Sticker | story (Gold)","count":2},"C13463376938":{"group":2,"name":"Sticker | story (Holo)","count":2},"C13463376946":{"group":2,"name":"Sticker | story (Glitter)","count":1},"C13467":{"group":3,"name":"Sticker | Entropiq (Foil)","count":1},"C13475":{"group":3,"name":"Sticker | Entropiq (Gold)","count":1},"C13483":{"group":3,"name":"Sticker | Entropiq (Holo)","count":1},"C135160395530":{"group":2,"name":"Sticker | L1haNg","count":8},"C135160395538":{"group":2,"name":"Sticker | L1haNg (Normal)","count":2},"C135160395554":{"group":2,"name":"Sticker | L1haNg (Gold)","count":2},"C135160395562":{"group":2,"name":"Sticker | L1haNg (Holo)","count":2},"C135160395570":{"group":2,"name":"Sticker | L1haNg (Glitter)","count":1},"C135160395578":{"group":2,"name":"Sticker | L1haNg (Embroidered)","count":1},"C13579":{"group":3,"name":"Sticker | MOUZ","count":32},"C13587":{"group":3,"name":"Sticker | MOUZ (Normal)","count":8},"C13595":{"group":3,"name":"Sticker | MOUZ (Foil)","count":3},"C13603":{"group":3,"name":"Sticker | MOUZ (Gold)","count":8},"C13611":{"group":3,"name":"Sticker | MOUZ (Holo)","count":8},"C13619":{"group":3,"name":"Sticker | MOUZ (Glitter)","count":4},"C13622785418":{"group":2,"name":"Sticker | EliGE","count":56},"C13622785426":{"group":2,"name":"Sticker | EliGE (Normal)","count":16},"C13622785434":{"group":2,"name":"Sticker | EliGE (Foil)","count":10},"C13622785442":{"group":2,"name":"Sticker | EliGE (Gold)","count":16},"C13622785450":{"group":2,"name":"Sticker | EliGE (Holo)","count":8},"C13622785458":{"group":2,"name":"Sticker | EliGE (Glitter)","count":5},"C13622785466":{"group":2,"name":"Sticker | EliGE (Embroidered)","count":1},"C13627":{"group":3,"name":"Sticker | MOUZ (Embroidered)","count":1},"C137":{"group":1,"name":"Sticker | DreamHack 2013","count":12},"C137050428170":{"group":2,"name":"Sticker | maxxkor","count":4},"C137050428178":{"group":2,"name":"Sticker | maxxkor (Normal)","count":1},"C137050428186":{"group":2,"name":"Sticker | maxxkor (Foil)","count":1},"C137050428194":{"group":2,"name":"Sticker | maxxkor (Gold)","count":1},"C137050428202":{"group":2,"name":"Sticker | maxxkor (Holo)","count":1},"C13706552330":{"group":2,"name":"Sticker | imoRR","count":4},"C13706552338":{"group":2,"name":"Sticker | imoRR (Normal)","count":1},"C13706552354":{"group":2,"name":"Sticker | imoRR (Gold)","count":1},"C13706552362":{"group":2,"name":"Sticker | imoRR (Holo)","count":1},"C13706552370":{"group":2,"name":"Sticker | imoRR (Glitter)","count":1},"C13707":{"group":3,"name":"Sticker | Nemiga","count":8},"C13715":{"group":3,"name":"Sticker | Nemiga (Normal)","count":2},"C137182783498":{"group":2,"name":"Sticker | kyousuke","count":8},"C137182783506":{"group":2,"name":"Sticker | kyousuke (Normal)","count":2},"C137182783514":{"group":2,"name":"Sticker | kyousuke (Foil)","count":1},"C137182783522":{"group":2,"name":"Sticker | kyousuke (Gold)","count":2},"C137182783530":{"group":2,"name":"Sticker | kyousuke (Holo)","count":2},"C137182783546":{"group":2,"name":"Sticker | kyousuke (Embroidered)","count":1},"C13723":{"group":3,"name":"Sticker | Nemiga (Foil)","count":2},"C13731":{"group":3,"name":"Sticker | Nemiga (Gold)","count":2},"C13739":{"group":3,"name":"Sticker | Nemiga (Holo)","count":2},"C13754428170":{"group":2,"name":"Sticker | luchov","count":4},"C13754428178":{"group":2,"name":"Sticker | luchov (Normal)","count":1},"C13754428186":{"group":2,"name":"Sticker | luchov (Foil)","count":1},"C13754428194":{"group":2,"name":"Sticker | luchov (Gold)","count":1},"C13754428202":{"group":2,"name":"Sticker | luchov (Holo)","count":1},"C13759756810":{"group":2,"name":"Sticker | chelo","count":23},"C13759756818":{"group":2,"name":"Sticker | chelo (Normal)","count":6},"C13759756826":{"group":2,"name":"Sticker | chelo (Foil)","count":1},"C13759756834":{"group":2,"name":"Sticker | chelo (Gold)","count":6},"C13759756842":{"group":2,"name":"Sticker | chelo (Holo)","count":5},"C13759756850":{"group":2,"name":"Sticker | chelo (Glitter)","count":4},"C13759756858":{"group":2,"name":"Sticker | chelo (Embroidered)","count":1},"C13782037898":{"group":2,"name":"Sticker | KrizzeN","count":6},"C13782037906":{"group":2,"name":"Sticker | KrizzeN (Normal)","count":2},"C13782037914":{"group":2,"name":"Sticker | KrizzeN (Foil)","count":2},"C13782037922":{"group":2,"name":"Sticker | KrizzeN (Gold)","count":2},"C13790369930":{"group":2,"name":"Sticker | Heavygod","count":16},"C13790369938":{"group":2,"name":"Sticker | Heavygod (Normal)","count":4},"C13790369946":{"group":2,"name":"Sticker | Heavygod (Foil)","count":2},"C13790369954":{"group":2,"name":"Sticker | Heavygod (Gold)","count":4},"C13790369962":{"group":2,"name":"Sticker | Heavygod (Holo)","count":4},"C13790369970":{"group":2,"name":"Sticker | Heavygod (Glitter)","count":1},"C13790369978":{"group":2,"name":"Sticker | Heavygod (Embroidered)","count":1},"C13833833610":{"group":2,"name":"Sticker | dennis","count":24},"C13833833618":{"group":2,"name":"Sticker | dennis (Normal)","count":8},"C13833833626":{"group":2,"name":"Sticker | dennis (Foil)","count":8},"C13833833634":{"group":2,"name":"Sticker | dennis (Gold)","count":8},"C13835":{"group":3,"name":"Sticker | IHC Esports","count":8},"C13843":{"group":3,"name":"Sticker | IHC Esports (Normal)","count":2},"C13844100362":{"group":2,"name":"Sticker | frozen","count":27},"C13844100370":{"group":2,"name":"Sticker | frozen (Normal)","count":7},"C13844100378":{"group":2,"name":"Sticker | frozen (Foil)","count":2},"C13844100386":{"group":2,"name":"Sticker | frozen (Gold)","count":7},"C13844100394":{"group":2,"name":"Sticker | frozen (Holo)","count":6},"C13844100402":{"group":2,"name":"Sticker | frozen (Glitter)","count":4},"C13844100410":{"group":2,"name":"Sticker | frozen (Embroidered)","count":1},"C13859":{"group":3,"name":"Sticker | IHC Esports (Gold)","count":2},"C13867":{"group":3,"name":"Sticker | IHC Esports (Holo)","count":2},"C13875":{"group":3,"name":"Sticker | IHC Esports (Glitter)","count":2},"C139":{"group":3,"name":"Sticker | Ninjas in Pyjamas","count":64},"C139035234954":{"group":2,"name":"Sticker | MATYS","count":12},"C139035234962":{"group":2,"name":"Sticker | MATYS (Normal)","count":3},"C139035234970":{"group":2,"name":"Sticker | MATYS (Foil)","count":1},"C139035234978":{"group":2,"name":"Sticker | MATYS (Gold)","count":3},"C139035234986":{"group":2,"name":"Sticker | MATYS (Holo)","count":3},"C139035234994":{"group":2,"name":"Sticker | MATYS (Glitter)","count":1},"C139035235002":{"group":2,"name":"Sticker | MATYS (Embroidered)","count":1},"C13910940554":{"group":2,"name":"Sticker | AmaNEk","count":9},"C13910940562":{"group":2,"name":"Sticker | AmaNEk (Normal)","count":3},"C13910940570":{"group":2,"name":"Sticker | AmaNEk (Foil)","count":2},"C13910940578":{"group":2,"name":"Sticker | AmaNEk (Gold)","count":3},"C13910940586":{"group":2,"name":"Sticker | AmaNEk (Holo)","count":1},"C13921290506":{"group":2,"name":"Sticker | FugLy","count":9},"C13921290514":{"group":2,"name":"Sticker | FugLy (Normal)","count":3},"C13921290522":{"group":2,"name":"Sticker | FugLy (Foil)","count":3},"C13921290530":{"group":2,"name":"Sticker | FugLy (Gold)","count":3},"C13956628746":{"group":2,"name":"Sticker | captainMo","count":6},"C13956628754":{"group":2,"name":"Sticker | captainMo (Normal)","count":2},"C13956628762":{"group":2,"name":"Sticker | captainMo (Foil)","count":2},"C13956628770":{"group":2,"name":"Sticker | captainMo (Gold)","count":2},"C13963":{"group":3,"name":"Sticker | Outsiders","count":8},"C13971":{"group":3,"name":"Sticker | Outsiders (Normal)","count":2},"C13987":{"group":3,"name":"Sticker | Outsiders (Gold)","count":2},"C139921290":{"group":2,"name":"Sticker | Lekr0","count":15},"C139921298":{"group":2,"name":"Sticker | Lekr0 (Normal)","count":5},"C139921306":{"group":2,"name":"Sticker | Lekr0 (Foil)","count":5},"C139921314":{"group":2,"name":"Sticker | Lekr0 (Gold)","count":5},"C13995":{"group":3,"name":"Sticker | Outsiders (Holo)","count":2},"C14003":{"group":3,"name":"Sticker | Outsiders (Glitter)","count":2},"C14015683338":{"group":2,"name":"Sticker | spaze","count":3},"C14015683346":{"group":2,"name":"Sticker | spaze (Normal)","count":1},"C14015683354":{"group":2,"name":"Sticker | spaze (Foil)","count":1},"C14015683362":{"group":2,"name":"Sticker | spaze (Gold)","count":1},"C14057837578":{"group":2,"name":"Sticker | xand","count":3},"C14057837586":{"group":2,"name":"Sticker | xand (Normal)","count":1},"C14057837594":{"group":2,"name":"Sticker | xand (Foil)","count":1},"C14057837602":{"group":2,"name":"Sticker | xand (Gold)","count":1},"C14091":{"group":3,"name":"Sticker | Eternal Fire","count":8},"C14099":{"group":3,"name":"Sticker | Eternal Fire (Normal)","count":2},"C14115":{"group":3,"name":"Sticker | Eternal Fire (Gold)","count":2},"C141158798346":{"group":2,"name":"Sticker | w0nderful","count":28},"C141158798354":{"group":2,"name":"Sticker | w0nderful (Normal)","count":7},"C141158798362":{"group":2,"name":"Sticker | w0nderful (Foil)","count":2},"C141158798370":{"group":2,"name":"Sticker | w0nderful (Gold)","count":7},"C141158798378":{"group":2,"name":"Sticker | w0nderful (Holo)","count":7},"C141158798386":{"group":2,"name":"Sticker | w0nderful (Glitter)","count":4},"C141158798394":{"group":2,"name":"Sticker | w0nderful (Embroidered)","count":1},"C14123":{"group":3,"name":"Sticker | Eternal Fire (Holo)","count":2},"C14131":{"group":3,"name":"Sticker | Eternal Fire (Glitter)","count":2},"C14158149386":{"group":2,"name":"Sticker | Nodios","count":4},"C14158149394":{"group":2,"name":"Sticker | Nodios (Normal)","count":1},"C14158149410":{"group":2,"name":"Sticker | Nodios (Gold)","count":1},"C14158149418":{"group":2,"name":"Sticker | Nodios (Holo)","count":1},"C14158149426":{"group":2,"name":"Sticker | Nodios (Glitter)","count":1},"C1417":{"group":1,"name":"Sticker | Atlanta 2017","count":308},"C14219":{"group":3,"name":"Sticker | Complexity Gaming","count":20},"C14227":{"group":3,"name":"Sticker | Complexity Gaming (Normal)","count":5},"C14235":{"group":3,"name":"Sticker | Complexity Gaming (Foil)","count":1},"C14243":{"group":3,"name":"Sticker | Complexity Gaming (Gold)","count":5},"C1425":{"group":1,"name":"Sticker | Atlanta 2017 (Normal)","count":97},"C14251":{"group":3,"name":"Sticker | Complexity Gaming (Holo)","count":5},"C14259":{"group":3,"name":"Sticker | Complexity Gaming (Glitter)","count":4},"C14263911562":{"group":2,"name":"Sticker | snatchie","count":3},"C14263911570":{"group":2,"name":"Sticker | snatchie (Normal)","count":1},"C14263911578":{"group":2,"name":"Sticker | snatchie (Foil)","count":1},"C14263911586":{"group":2,"name":"Sticker | snatchie (Gold)","count":1},"C142838257162":{"group":2,"name":"Sticker | makazze","count":8},"C142838257170":{"group":2,"name":"Sticker | makazze (Normal)","count":2},"C142838257178":{"group":2,"name":"Sticker | makazze (Foil)","count":1},"C142838257186":{"group":2,"name":"Sticker | makazze (Gold)","count":2},"C142838257194":{"group":2,"name":"Sticker | makazze (Holo)","count":2},"C142838257210":{"group":2,"name":"Sticker | makazze (Embroidered)","count":1},"C14290513546":{"group":2,"name":"Sticker | isak","count":16},"C14290513554":{"group":2,"name":"Sticker | isak (Normal)","count":4},"C14290513562":{"group":2,"name":"Sticker | isak (Foil)","count":1},"C14290513570":{"group":2,"name":"Sticker | isak (Gold)","count":4},"C14290513578":{"group":2,"name":"Sticker | isak (Holo)","count":4},"C14290513586":{"group":2,"name":"Sticker | isak (Glitter)","count":3},"C14312641546":{"group":2,"name":"Sticker | BnTeT","count":12},"C14312641554":{"group":2,"name":"Sticker | BnTeT (Normal)","count":4},"C14312641562":{"group":2,"name":"Sticker | BnTeT (Foil)","count":4},"C14312641570":{"group":2,"name":"Sticker | BnTeT (Gold)","count":4},"C1433":{"group":1,"name":"Sticker | Atlanta 2017 (Foil)","count":97},"C14337820938":{"group":2,"name":"Sticker | xsepower","count":3},"C14337820946":{"group":2,"name":"Sticker | xsepower (Normal)","count":1},"C14337820954":{"group":2,"name":"Sticker | xsepower (Foil)","count":1},"C14337820962":{"group":2,"name":"Sticker | xsepower (Gold)","count":1},"C14343166474":{"group":2,"name":"Sticker | Liazz","count":30},"C14343166482":{"group":2,"name":"Sticker | Liazz (Normal)","count":8},"C14343166490":{"group":2,"name":"Sticker | Liazz (Foil)","count":4},"C14343166498":{"group":2,"name":"Sticker | Liazz (Gold)","count":8},"C14343166506":{"group":2,"name":"Sticker | Liazz (Holo)","count":6},"C14343166514":{"group":2,"name":"Sticker | Liazz (Glitter)","count":4},"C14347":{"group":3,"name":"Sticker | 9z Team","count":12},"C14355":{"group":3,"name":"Sticker | 9z Team (Normal)","count":3},"C14363":{"group":3,"name":"Sticker | 9z Team (Foil)","count":1},"C14371":{"group":3,"name":"Sticker | 9z Team (Gold)","count":3},"C14379":{"group":3,"name":"Sticker | 9z Team (Holo)","count":3},"C14387":{"group":3,"name":"Sticker | 9z Team (Glitter)","count":2},"C1441":{"group":1,"name":"Sticker | Atlanta 2017 (Gold)","count":97},"C14444979082":{"group":2,"name":"Sticker | nicoodoz","count":20},"C14444979090":{"group":2,"name":"Sticker | nicoodoz (Normal)","count":5},"C14444979098":{"group":2,"name":"Sticker | nicoodoz (Foil)","count":1},"C14444979106":{"group":2,"name":"Sticker | nicoodoz (Gold)","count":5},"C14444979114":{"group":2,"name":"Sticker | nicoodoz (Holo)","count":5},"C14444979122":{"group":2,"name":"Sticker | nicoodoz (Glitter)","count":4},"C14475":{"group":3,"name":"Sticker | Imperial Esports","count":24},"C14483":{"group":3,"name":"Sticker | Imperial Esports (Normal)","count":6},"C1449":{"group":1,"name":"Sticker | Atlanta 2017 (Holo)","count":17},"C14491":{"group":3,"name":"Sticker | Imperial Esports (Foil)","count":1},"C14499":{"group":3,"name":"Sticker | Imperial Esports (Gold)","count":6},"C145":{"group":1,"name":"Sticker | DreamHack 2013 (Normal)","count":7},"C14507":{"group":3,"name":"Sticker | Imperial Esports (Holo)","count":6},"C14515":{"group":3,"name":"Sticker | Imperial Esports (Glitter)","count":4},"C14523":{"group":3,"name":"Sticker | Imperial Esports (Embroidered)","count":1},"C145377972874":{"group":2,"name":"Sticker | kye","count":8},"C145377972882":{"group":2,"name":"Sticker | kye (Normal)","count":2},"C145377972890":{"group":2,"name":"Sticker | kye (Foil)","count":1},"C145377972898":{"group":2,"name":"Sticker | kye (Gold)","count":2},"C145377972906":{"group":2,"name":"Sticker | kye (Holo)","count":2},"C145377972922":{"group":2,"name":"Sticker | kye (Embroidered)","count":1},"C14560248330":{"group":2,"name":"Sticker | lux","count":16},"C14560248338":{"group":2,"name":"Sticker | lux (Normal)","count":4},"C14560248346":{"group":2,"name":"Sticker | lux (Foil)","count":1},"C14560248354":{"group":2,"name":"Sticker | lux (Gold)","count":4},"C14560248362":{"group":2,"name":"Sticker | lux (Holo)","count":4},"C14560248370":{"group":2,"name":"Sticker | lux (Glitter)","count":2},"C14560248378":{"group":2,"name":"Sticker | lux (Embroidered)","count":1},"C145978894090":{"group":2,"name":"Sticker | dziugss","count":4},"C145978894098":{"group":2,"name":"Sticker | dziugss (Normal)","count":1},"C145978894106":{"group":2,"name":"Sticker | dziugss (Foil)","count":1},"C145978894114":{"group":2,"name":"Sticker | dziugss (Gold)","count":1},"C145978894122":{"group":2,"name":"Sticker | dziugss (Holo)","count":1},"C14603":{"group":3,"name":"Sticker | Bad News Eagles","count":12},"C14611":{"group":3,"name":"Sticker | Bad News Eagles (Normal)","count":3},"C14627":{"group":3,"name":"Sticker | Bad News Eagles (Gold)","count":3},"C14635":{"group":3,"name":"Sticker | Bad News Eagles (Holo)","count":3},"C14643":{"group":3,"name":"Sticker | Bad News Eagles (Glitter)","count":3},"C14655625354":{"group":2,"name":"Sticker | m0NESY","count":28},"C14655625362":{"group":2,"name":"Sticker | m0NESY (Normal)","count":7},"C14655625370":{"group":2,"name":"Sticker | m0NESY (Foil)","count":2},"C14655625378":{"group":2,"name":"Sticker | m0NESY (Gold)","count":7},"C14655625386":{"group":2,"name":"Sticker | m0NESY (Holo)","count":7},"C14655625394":{"group":2,"name":"Sticker | m0NESY (Glitter)","count":4},"C14655625402":{"group":2,"name":"Sticker | m0NESY (Embroidered)","count":1},"C147":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Normal)","count":17},"C14731":{"group":3,"name":"Sticker | GamerLegion","count":24},"C14739":{"group":3,"name":"Sticker | GamerLegion (Normal)","count":6},"C14747":{"group":3,"name":"Sticker | GamerLegion (Foil)","count":1},"C14748599434":{"group":2,"name":"Sticker | jmqa","count":6},"C14748599442":{"group":2,"name":"Sticker | jmqa (Normal)","count":2},"C14748599450":{"group":2,"name":"Sticker | jmqa (Foil)","count":2},"C14748599458":{"group":2,"name":"Sticker | jmqa (Gold)","count":2},"C14755":{"group":3,"name":"Sticker | GamerLegion (Gold)","count":6},"C14763":{"group":3,"name":"Sticker | GamerLegion (Holo)","count":6},"C14771":{"group":3,"name":"Sticker | GamerLegion (Glitter)","count":4},"C14779":{"group":3,"name":"Sticker | GamerLegion (Embroidered)","count":1},"C14814994570":{"group":2,"name":"Sticker | facecrack","count":3},"C14814994578":{"group":2,"name":"Sticker | facecrack (Normal)","count":1},"C14814994586":{"group":2,"name":"Sticker | facecrack (Foil)","count":1},"C14814994594":{"group":2,"name":"Sticker | facecrack (Gold)","count":1},"C148585322890":{"group":2,"name":"Sticker | zeRRoFIX","count":4},"C148585322898":{"group":2,"name":"Sticker | zeRRoFIX (Normal)","count":1},"C148585322914":{"group":2,"name":"Sticker | zeRRoFIX (Gold)","count":1},"C148585322922":{"group":2,"name":"Sticker | zeRRoFIX (Holo)","count":1},"C148585322930":{"group":2,"name":"Sticker | zeRRoFIX (Glitter)","count":1},"C14859":{"group":3,"name":"Sticker | 00 Nation","count":4},"C14867":{"group":3,"name":"Sticker | 00 Nation (Normal)","count":1},"C148757130":{"group":2,"name":"Sticker | gob b","count":18},"C148757138":{"group":2,"name":"Sticker | gob b (Normal)","count":6},"C148757146":{"group":2,"name":"Sticker | gob b (Foil)","count":6},"C148757154":{"group":2,"name":"Sticker | gob b (Gold)","count":6},"C14883":{"group":3,"name":"Sticker | 00 Nation (Gold)","count":1},"C14891":{"group":3,"name":"Sticker | 00 Nation (Holo)","count":1},"C14899":{"group":3,"name":"Sticker | 00 Nation (Glitter)","count":1},"C14903169674":{"group":2,"name":"Sticker | Kylar","count":8},"C14903169682":{"group":2,"name":"Sticker | Kylar (Normal)","count":2},"C14903169698":{"group":2,"name":"Sticker | Kylar (Gold)","count":2},"C14903169706":{"group":2,"name":"Sticker | Kylar (Holo)","count":2},"C14903169714":{"group":2,"name":"Sticker | Kylar (Glitter)","count":2},"C14913215626":{"group":2,"name":"Sticker | Golden","count":12},"C14913215634":{"group":2,"name":"Sticker | Golden (Normal)","count":4},"C14913215642":{"group":2,"name":"Sticker | Golden (Foil)","count":4},"C14913215650":{"group":2,"name":"Sticker | Golden (Gold)","count":4},"C14933119114":{"group":2,"name":"Sticker | devoduvek","count":3},"C14933119122":{"group":2,"name":"Sticker | devoduvek (Normal)","count":1},"C14933119130":{"group":2,"name":"Sticker | devoduvek (Foil)","count":1},"C14933119138":{"group":2,"name":"Sticker | devoduvek (Gold)","count":1},"C14987":{"group":3,"name":"Sticker | Apeks","count":8},"C14995":{"group":3,"name":"Sticker | Apeks (Normal)","count":2},"C15011":{"group":3,"name":"Sticker | Apeks (Gold)","count":2},"C15019":{"group":3,"name":"Sticker | Apeks (Holo)","count":2},"C1502378634":{"group":2,"name":"Sticker | Ex6TenZ","count":12},"C1502378642":{"group":2,"name":"Sticker | Ex6TenZ (Normal)","count":4},"C1502378650":{"group":2,"name":"Sticker | Ex6TenZ (Foil)","count":4},"C1502378658":{"group":2,"name":"Sticker | Ex6TenZ (Gold)","count":4},"C15027":{"group":3,"name":"Sticker | Apeks (Glitter)","count":2},"C150640406666":{"group":2,"name":"Sticker | yxngstxr","count":8},"C150640406674":{"group":2,"name":"Sticker | yxngstxr (Normal)","count":2},"C150640406682":{"group":2,"name":"Sticker | yxngstxr (Foil)","count":2},"C150640406690":{"group":2,"name":"Sticker | yxngstxr (Gold)","count":2},"C150640406698":{"group":2,"name":"Sticker | yxngstxr (Holo)","count":2},"C15115":{"group":3,"name":"Sticker | Into The Breach","count":4},"C15123":{"group":3,"name":"Sticker | Into The Breach (Normal)","count":1},"C15139":{"group":3,"name":"Sticker | Into The Breach (Gold)","count":1},"C15147":{"group":3,"name":"Sticker | Into The Breach (Holo)","count":1},"C15155":{"group":3,"name":"Sticker | Into The Breach (Glitter)","count":1},"C15168722570":{"group":2,"name":"Sticker | JDC","count":16},"C15168722578":{"group":2,"name":"Sticker | JDC (Normal)","count":4},"C15168722586":{"group":2,"name":"Sticker | JDC (Foil)","count":1},"C15168722594":{"group":2,"name":"Sticker | JDC (Gold)","count":4},"C15168722602":{"group":2,"name":"Sticker | JDC (Holo)","count":4},"C15168722610":{"group":2,"name":"Sticker | JDC (Glitter)","count":3},"C15221457034":{"group":2,"name":"Sticker | spooke","count":4},"C15221457042":{"group":2,"name":"Sticker | spooke (Normal)","count":1},"C15221457050":{"group":2,"name":"Sticker | spooke (Foil)","count":1},"C15221457058":{"group":2,"name":"Sticker | spooke (Gold)","count":1},"C15221457066":{"group":2,"name":"Sticker | spooke (Holo)","count":1},"C152261968010":{"group":2,"name":"Sticker | esenthial","count":12},"C152261968018":{"group":2,"name":"Sticker | esenthial (Normal)","count":3},"C152261968026":{"group":2,"name":"Sticker | esenthial (Foil)","count":2},"C152261968034":{"group":2,"name":"Sticker | esenthial (Gold)","count":3},"C152261968042":{"group":2,"name":"Sticker | esenthial (Holo)","count":3},"C152261968058":{"group":2,"name":"Sticker | esenthial (Embroidered)","count":1},"C15243":{"group":3,"name":"Sticker | Monte","count":8},"C15251":{"group":3,"name":"Sticker | Monte (Normal)","count":2},"C15259":{"group":3,"name":"Sticker | Monte (Foil)","count":1},"C15267":{"group":3,"name":"Sticker | Monte (Gold)","count":2},"C15275":{"group":3,"name":"Sticker | Monte (Holo)","count":2},"C15283":{"group":3,"name":"Sticker | Monte (Glitter)","count":1},"C1533080202":{"group":2,"name":"Sticker | JaCkz","count":13},"C1533080210":{"group":2,"name":"Sticker | JaCkz (Normal)","count":4},"C1533080218":{"group":2,"name":"Sticker | JaCkz (Foil)","count":2},"C1533080226":{"group":2,"name":"Sticker | JaCkz (Gold)","count":4},"C1533080234":{"group":2,"name":"Sticker | JaCkz (Holo)","count":2},"C1533080242":{"group":2,"name":"Sticker | JaCkz (Glitter)","count":1},"C15340648714":{"group":2,"name":"Sticker | fame","count":20},"C15340648722":{"group":2,"name":"Sticker | fame (Normal)","count":5},"C15340648730":{"group":2,"name":"Sticker | fame (Foil)","count":1},"C15340648738":{"group":2,"name":"Sticker | fame (Gold)","count":5},"C15340648746":{"group":2,"name":"Sticker | fame (Holo)","count":5},"C15340648754":{"group":2,"name":"Sticker | fame (Glitter)","count":4},"C15371":{"group":3,"name":"Sticker | 9INE","count":4},"C15379":{"group":3,"name":"Sticker | 9INE (Normal)","count":1},"C15395":{"group":3,"name":"Sticker | 9INE (Gold)","count":1},"C15403":{"group":3,"name":"Sticker | 9INE (Holo)","count":1},"C15411":{"group":3,"name":"Sticker | 9INE (Glitter)","count":1},"C15415989130":{"group":2,"name":"Sticker | malbsMd","count":16},"C15415989138":{"group":2,"name":"Sticker | malbsMd (Normal)","count":4},"C15415989146":{"group":2,"name":"Sticker | malbsMd (Foil)","count":2},"C15415989154":{"group":2,"name":"Sticker | malbsMd (Gold)","count":4},"C15415989162":{"group":2,"name":"Sticker | malbsMd (Holo)","count":4},"C15415989170":{"group":2,"name":"Sticker | malbsMd (Glitter)","count":1},"C15415989178":{"group":2,"name":"Sticker | malbsMd (Embroidered)","count":1},"C1544357770":{"group":2,"name":"Sticker | GuardiaN","count":30},"C1544357778":{"group":2,"name":"Sticker | GuardiaN (Normal)","count":10},"C1544357786":{"group":2,"name":"Sticker | GuardiaN (Foil)","count":10},"C1544357794":{"group":2,"name":"Sticker | GuardiaN (Gold)","count":10},"C1545":{"group":1,"name":"Sticker | Krakow 2017","count":308},"C1547":{"group":3,"name":"Sticker | Natus Vincere","count":92},"C15499":{"group":3,"name":"Sticker | Fluxo","count":12},"C155":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Foil)","count":13},"C15507":{"group":3,"name":"Sticker | Fluxo (Normal)","count":3},"C15515":{"group":3,"name":"Sticker | Fluxo (Foil)","count":1},"C15516038026":{"group":2,"name":"Sticker | sh1ro","count":35},"C15516038034":{"group":2,"name":"Sticker | sh1ro (Normal)","count":9},"C15516038042":{"group":2,"name":"Sticker | sh1ro (Foil)","count":2},"C15516038050":{"group":2,"name":"Sticker | sh1ro (Gold)","count":9},"C15516038058":{"group":2,"name":"Sticker | sh1ro (Holo)","count":9},"C15516038066":{"group":2,"name":"Sticker | sh1ro (Glitter)","count":5},"C15516038074":{"group":2,"name":"Sticker | sh1ro (Embroidered)","count":1},"C15521687434":{"group":2,"name":"Sticker | misutaaa","count":7},"C15521687442":{"group":2,"name":"Sticker | misutaaa (Normal)","count":2},"C15521687458":{"group":2,"name":"Sticker | misutaaa (Gold)","count":2},"C15521687466":{"group":2,"name":"Sticker | misutaaa (Holo)","count":2},"C15521687474":{"group":2,"name":"Sticker | misutaaa (Glitter)","count":1},"C15523":{"group":3,"name":"Sticker | Fluxo (Gold)","count":3},"C1553":{"group":1,"name":"Sticker | Krakow 2017 (Normal)","count":97},"C15531":{"group":3,"name":"Sticker | Fluxo (Holo)","count":3},"C15539":{"group":3,"name":"Sticker | Fluxo (Glitter)","count":1},"C15542016138":{"group":2,"name":"Sticker | KEi","count":4},"C15542016146":{"group":2,"name":"Sticker | KEi (Normal)","count":1},"C15542016162":{"group":2,"name":"Sticker | KEi (Gold)","count":1},"C15542016170":{"group":2,"name":"Sticker | KEi (Holo)","count":1},"C15542016178":{"group":2,"name":"Sticker | KEi (Glitter)","count":1},"C15547":{"group":3,"name":"Sticker | Fluxo (Embroidered)","count":1},"C1555":{"group":3,"name":"Sticker | Natus Vincere (Normal)","count":24},"C1561":{"group":1,"name":"Sticker | Krakow 2017 (Foil)","count":97},"C15627":{"group":3,"name":"Sticker | The MongolZ","count":24},"C1563":{"group":3,"name":"Sticker | Natus Vincere (Foil)","count":18},"C15635":{"group":3,"name":"Sticker | The MongolZ (Normal)","count":6},"C15643":{"group":3,"name":"Sticker | The MongolZ (Foil)","count":2},"C15651":{"group":3,"name":"Sticker | The MongolZ (Gold)","count":6},"C15659":{"group":3,"name":"Sticker | The MongolZ (Holo)","count":6},"C15667":{"group":3,"name":"Sticker | The MongolZ (Glitter)","count":3},"C15675":{"group":3,"name":"Sticker | The MongolZ (Embroidered)","count":1},"C1569":{"group":1,"name":"Sticker | Krakow 2017 (Gold)","count":97},"C156921866":{"group":2,"name":"Sticker | tabseN","count":28},"C156921874":{"group":2,"name":"Sticker | tabseN (Normal)","count":8},"C156921882":{"group":2,"name":"Sticker | tabseN (Foil)","count":5},"C156921890":{"group":2,"name":"Sticker | tabseN (Gold)","count":8},"C156921898":{"group":2,"name":"Sticker | tabseN (Holo)","count":4},"C156921906":{"group":2,"name":"Sticker | tabseN (Glitter)","count":3},"C1571":{"group":3,"name":"Sticker | Natus Vincere (Gold)","count":22},"C15755":{"group":3,"name":"Sticker | AMKAL ESPORTS","count":4},"C15763":{"group":3,"name":"Sticker | AMKAL ESPORTS (Normal)","count":1},"C1577":{"group":1,"name":"Sticker | Krakow 2017 (Holo)","count":17},"C15772131594":{"group":2,"name":"Sticker | woxic","count":29},"C15772131602":{"group":2,"name":"Sticker | woxic (Normal)","count":8},"C15772131610":{"group":2,"name":"Sticker | woxic (Foil)","count":5},"C15772131618":{"group":2,"name":"Sticker | woxic (Gold)","count":8},"C15772131626":{"group":2,"name":"Sticker | woxic (Holo)","count":5},"C15772131634":{"group":2,"name":"Sticker | woxic (Glitter)","count":2},"C15772131642":{"group":2,"name":"Sticker | woxic (Embroidered)","count":1},"C15779":{"group":3,"name":"Sticker | AMKAL ESPORTS (Gold)","count":1},"C15787":{"group":3,"name":"Sticker | AMKAL ESPORTS (Holo)","count":1},"C1579":{"group":3,"name":"Sticker | Natus Vincere (Holo)","count":22},"C15795":{"group":3,"name":"Sticker | AMKAL ESPORTS (Glitter)","count":1},"C1587":{"group":3,"name":"Sticker | Natus Vincere (Glitter)","count":5},"C15883":{"group":3,"name":"Sticker | ECSTATIC","count":4},"C15891":{"group":3,"name":"Sticker | ECSTATIC (Normal)","count":1},"C15907":{"group":3,"name":"Sticker | ECSTATIC (Gold)","count":1},"C159142094986":{"group":2,"name":"Sticker | 910","count":20},"C159142094994":{"group":2,"name":"Sticker | 910 (Normal)","count":5},"C159142095002":{"group":2,"name":"Sticker | 910 (Foil)","count":2},"C159142095010":{"group":2,"name":"Sticker | 910 (Gold)","count":5},"C159142095018":{"group":2,"name":"Sticker | 910 (Holo)","count":5},"C159142095026":{"group":2,"name":"Sticker | 910 (Glitter)","count":2},"C159142095034":{"group":2,"name":"Sticker | 910 (Embroidered)","count":1},"C15915":{"group":3,"name":"Sticker | ECSTATIC (Holo)","count":1},"C15923":{"group":3,"name":"Sticker | ECSTATIC (Glitter)","count":1},"C1595":{"group":3,"name":"Sticker | Natus Vincere (Embroidered)","count":1},"C16011":{"group":3,"name":"Sticker | KOI","count":4},"C16019":{"group":3,"name":"Sticker | KOI (Normal)","count":1},"C16035":{"group":3,"name":"Sticker | KOI (Gold)","count":1},"C16043":{"group":3,"name":"Sticker | KOI (Holo)","count":1},"C16051":{"group":3,"name":"Sticker | KOI (Glitter)","count":1},"C16139":{"group":3,"name":"Sticker | Legacy","count":16},"C16147":{"group":3,"name":"Sticker | Legacy (Normal)","count":4},"C16155":{"group":3,"name":"Sticker | Legacy (Foil)","count":2},"C16163":{"group":3,"name":"Sticker | Legacy (Gold)","count":4},"C16171":{"group":3,"name":"Sticker | Legacy (Holo)","count":4},"C16179":{"group":3,"name":"Sticker | Legacy (Glitter)","count":1},"C16187":{"group":3,"name":"Sticker | Legacy (Embroidered)","count":1},"C16215068426":{"group":2,"name":"Sticker | hampus","count":15},"C16215068434":{"group":2,"name":"Sticker | hampus (Normal)","count":4},"C16215068442":{"group":2,"name":"Sticker | hampus (Foil)","count":1},"C16215068450":{"group":2,"name":"Sticker | hampus (Gold)","count":4},"C16215068458":{"group":2,"name":"Sticker | hampus (Holo)","count":4},"C16215068466":{"group":2,"name":"Sticker | hampus (Glitter)","count":2},"C16267":{"group":3,"name":"Sticker | Lynn Vision","count":16},"C16275":{"group":3,"name":"Sticker | Lynn Vision (Normal)","count":4},"C1628175882":{"group":2,"name":"Sticker | waterfaLLZ","count":6},"C1628175890":{"group":2,"name":"Sticker | waterfaLLZ (Normal)","count":2},"C1628175898":{"group":2,"name":"Sticker | waterfaLLZ (Foil)","count":2},"C1628175906":{"group":2,"name":"Sticker | waterfaLLZ (Gold)","count":2},"C16283":{"group":3,"name":"Sticker | Lynn Vision (Foil)","count":2},"C16291":{"group":3,"name":"Sticker | Lynn Vision (Gold)","count":4},"C16299":{"group":3,"name":"Sticker | Lynn Vision (Holo)","count":4},"C163":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Gold)","count":15},"C16307":{"group":3,"name":"Sticker | Lynn Vision (Glitter)","count":1},"C16315":{"group":3,"name":"Sticker | Lynn Vision (Embroidered)","count":1},"C164755570186":{"group":2,"name":"Sticker | efire","count":4},"C164755570194":{"group":2,"name":"Sticker | efire (Normal)","count":1},"C164755570202":{"group":2,"name":"Sticker | efire (Foil)","count":1},"C164755570210":{"group":2,"name":"Sticker | efire (Gold)","count":1},"C164755570218":{"group":2,"name":"Sticker | efire (Holo)","count":1},"C1647995402":{"group":2,"name":"Sticker | mezii","count":36},"C1647995410":{"group":2,"name":"Sticker | mezii (Normal)","count":9},"C1647995418":{"group":2,"name":"Sticker | mezii (Foil)","count":3},"C1647995426":{"group":2,"name":"Sticker | mezii (Gold)","count":9},"C1647995434":{"group":2,"name":"Sticker | mezii (Holo)","count":9},"C1647995442":{"group":2,"name":"Sticker | mezii (Glitter)","count":4},"C1647995450":{"group":2,"name":"Sticker | mezii (Embroidered)","count":2},"C16523":{"group":3,"name":"Sticker | SAW","count":4},"C16531":{"group":3,"name":"Sticker | SAW (Normal)","count":1},"C16547":{"group":3,"name":"Sticker | SAW (Gold)","count":1},"C16555":{"group":3,"name":"Sticker | SAW (Holo)","count":1},"C16563":{"group":3,"name":"Sticker | SAW (Glitter)","count":1},"C16651":{"group":3,"name":"Sticker | Wildcard","count":8},"C16659":{"group":3,"name":"Sticker | Wildcard (Normal)","count":2},"C16667":{"group":3,"name":"Sticker | Wildcard (Foil)","count":1},"C16675":{"group":3,"name":"Sticker | Wildcard (Gold)","count":2},"C16683":{"group":3,"name":"Sticker | Wildcard (Holo)","count":2},"C16691":{"group":3,"name":"Sticker | Wildcard (Glitter)","count":1},"C1673":{"group":1,"name":"Sticker | Boston 2018","count":479},"C16779":{"group":3,"name":"Sticker | Rare Atom","count":8},"C16787":{"group":3,"name":"Sticker | Rare Atom (Normal)","count":2},"C16803":{"group":3,"name":"Sticker | Rare Atom (Gold)","count":2},"C16807110154":{"group":2,"name":"Sticker | erkaSt","count":6},"C16807110162":{"group":2,"name":"Sticker | erkaSt (Normal)","count":2},"C16807110170":{"group":2,"name":"Sticker | erkaSt (Foil)","count":2},"C16807110178":{"group":2,"name":"Sticker | erkaSt (Gold)","count":2},"C1681":{"group":1,"name":"Sticker | Boston 2018 (Normal)","count":151},"C16811":{"group":3,"name":"Sticker | Rare Atom (Holo)","count":2},"C16819":{"group":3,"name":"Sticker | Rare Atom (Glitter)","count":1},"C16827":{"group":3,"name":"Sticker | Rare Atom (Embroidered)","count":1},"C1689":{"group":1,"name":"Sticker | Boston 2018 (Foil)","count":151},"C169":{"group":1,"name":"Sticker | DreamHack 2013 (Holo)","count":5},"C16907":{"group":3,"name":"Sticker | Flyquest","count":16},"C16915":{"group":3,"name":"Sticker | Flyquest (Normal)","count":4},"C16923":{"group":3,"name":"Sticker | Flyquest (Foil)","count":2},"C16931":{"group":3,"name":"Sticker | Flyquest (Gold)","count":4},"C16939":{"group":3,"name":"Sticker | Flyquest (Holo)","count":4},"C16947":{"group":3,"name":"Sticker | Flyquest (Glitter)","count":1},"C16955":{"group":3,"name":"Sticker | Flyquest (Embroidered)","count":1},"C1697":{"group":1,"name":"Sticker | Boston 2018 (Gold)","count":151},"C17035":{"group":3,"name":"Sticker | Passion UA","count":8},"C17039440266":{"group":2,"name":"Sticker | Bymas","count":4},"C17039440274":{"group":2,"name":"Sticker | Bymas (Normal)","count":1},"C17039440282":{"group":2,"name":"Sticker | Bymas (Foil)","count":1},"C17039440290":{"group":2,"name":"Sticker | Bymas (Gold)","count":1},"C17039440298":{"group":2,"name":"Sticker | Bymas (Holo)","count":1},"C17043":{"group":3,"name":"Sticker | Passion UA (Normal)","count":2},"C1705":{"group":1,"name":"Sticker | Boston 2018 (Holo)","count":26},"C17059":{"group":3,"name":"Sticker | Passion UA (Gold)","count":2},"C17067":{"group":3,"name":"Sticker | Passion UA (Holo)","count":2},"C17075":{"group":3,"name":"Sticker | Passion UA (Glitter)","count":1},"C17083":{"group":3,"name":"Sticker | Passion UA (Embroidered)","count":1},"C171":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Holo)","count":15},"C17163":{"group":3,"name":"Sticker | Aurora","count":12},"C17171":{"group":3,"name":"Sticker | Aurora (Normal)","count":3},"C17179":{"group":3,"name":"Sticker | Aurora (Foil)","count":2},"C17187":{"group":3,"name":"Sticker | Aurora (Gold)","count":3},"C17195":{"group":3,"name":"Sticker | Aurora (Holo)","count":3},"C17211":{"group":3,"name":"Sticker | Aurora (Embroidered)","count":1},"C172191498":{"group":2,"name":"Sticker | allu","count":18},"C172191506":{"group":2,"name":"Sticker | allu (Normal)","count":6},"C172191514":{"group":2,"name":"Sticker | allu (Foil)","count":6},"C172191522":{"group":2,"name":"Sticker | allu (Gold)","count":6},"C1723529610":{"group":2,"name":"Sticker | Spiidi","count":15},"C1723529618":{"group":2,"name":"Sticker | Spiidi (Normal)","count":5},"C1723529626":{"group":2,"name":"Sticker | Spiidi (Foil)","count":5},"C1723529634":{"group":2,"name":"Sticker | Spiidi (Gold)","count":5},"C1726985482":{"group":2,"name":"Sticker | arrozdoce","count":4},"C1726985490":{"group":2,"name":"Sticker | arrozdoce (Normal)","count":1},"C1726985506":{"group":2,"name":"Sticker | arrozdoce (Gold)","count":1},"C1726985514":{"group":2,"name":"Sticker | arrozdoce (Holo)","count":1},"C1726985522":{"group":2,"name":"Sticker | arrozdoce (Glitter)","count":1},"C17291":{"group":3,"name":"Sticker | B8","count":12},"C17299":{"group":3,"name":"Sticker | B8 (Normal)","count":3},"C17307":{"group":3,"name":"Sticker | B8 (Foil)","count":2},"C17315":{"group":3,"name":"Sticker | B8 (Gold)","count":3},"C17323":{"group":3,"name":"Sticker | B8 (Holo)","count":3},"C173273923978":{"group":2,"name":"Sticker | cmtry","count":4},"C173273923986":{"group":2,"name":"Sticker | cmtry (Normal)","count":1},"C173273923994":{"group":2,"name":"Sticker | cmtry (Foil)","count":1},"C173273924002":{"group":2,"name":"Sticker | cmtry (Gold)","count":1},"C173273924010":{"group":2,"name":"Sticker | cmtry (Holo)","count":1},"C17339":{"group":3,"name":"Sticker | B8 (Embroidered)","count":1},"C17347613066":{"group":2,"name":"Sticker | juanflatroo","count":12},"C17347613074":{"group":2,"name":"Sticker | juanflatroo (Normal)","count":3},"C17347613090":{"group":2,"name":"Sticker | juanflatroo (Gold)","count":3},"C17347613098":{"group":2,"name":"Sticker | juanflatroo (Holo)","count":3},"C17347613106":{"group":2,"name":"Sticker | juanflatroo (Glitter)","count":3},"C17360743946":{"group":2,"name":"Sticker | doc","count":4},"C17360743954":{"group":2,"name":"Sticker | doc (Normal)","count":1},"C17360743962":{"group":2,"name":"Sticker | doc (Foil)","count":1},"C17360743970":{"group":2,"name":"Sticker | doc (Gold)","count":1},"C17360743978":{"group":2,"name":"Sticker | doc (Holo)","count":1},"C1738251530":{"group":2,"name":"Sticker | pashaBiceps","count":24},"C1738251538":{"group":2,"name":"Sticker | pashaBiceps (Normal)","count":8},"C1738251546":{"group":2,"name":"Sticker | pashaBiceps (Foil)","count":8},"C1738251554":{"group":2,"name":"Sticker | pashaBiceps (Gold)","count":8},"C17405371914":{"group":2,"name":"Sticker | vice","count":3},"C17405371922":{"group":2,"name":"Sticker | vice (Normal)","count":1},"C17405371930":{"group":2,"name":"Sticker | vice (Foil)","count":1},"C17405371938":{"group":2,"name":"Sticker | vice (Gold)","count":1},"C174852234":{"group":2,"name":"Sticker | adreN","count":6},"C174852242":{"group":2,"name":"Sticker | adreN (Normal)","count":2},"C174852250":{"group":2,"name":"Sticker | adreN (Foil)","count":2},"C174852258":{"group":2,"name":"Sticker | adreN (Gold)","count":2},"C17547":{"group":3,"name":"Sticker | BetBoom","count":8},"C17555":{"group":3,"name":"Sticker | BetBoom (Normal)","count":2},"C17563":{"group":3,"name":"Sticker | BetBoom (Foil)","count":2},"C17571":{"group":3,"name":"Sticker | BetBoom (Gold)","count":2},"C17579":{"group":3,"name":"Sticker | BetBoom (Holo)","count":2},"C17639163530":{"group":2,"name":"Sticker | sl3nd","count":4},"C17639163538":{"group":2,"name":"Sticker | sl3nd (Normal)","count":1},"C17639163554":{"group":2,"name":"Sticker | sl3nd (Gold)","count":1},"C17639163562":{"group":2,"name":"Sticker | sl3nd (Holo)","count":1},"C17639163570":{"group":2,"name":"Sticker | sl3nd (Glitter)","count":1},"C17674050058":{"group":2,"name":"Sticker | Keoz","count":15},"C17674050066":{"group":2,"name":"Sticker | Keoz (Normal)","count":4},"C17674050074":{"group":2,"name":"Sticker | Keoz (Foil)","count":1},"C17674050082":{"group":2,"name":"Sticker | Keoz (Gold)","count":4},"C17674050090":{"group":2,"name":"Sticker | Keoz (Holo)","count":3},"C17674050098":{"group":2,"name":"Sticker | Keoz (Glitter)","count":3},"C17674365706":{"group":2,"name":"Sticker | aliStair","count":20},"C17674365714":{"group":2,"name":"Sticker | aliStair (Normal)","count":5},"C17674365722":{"group":2,"name":"Sticker | aliStair (Foil)","count":1},"C17674365730":{"group":2,"name":"Sticker | aliStair (Gold)","count":5},"C17674365738":{"group":2,"name":"Sticker | aliStair (Holo)","count":5},"C17674365746":{"group":2,"name":"Sticker | aliStair (Glitter)","count":4},"C17675":{"group":3,"name":"Sticker | Chinggis Warriors","count":4},"C17683":{"group":3,"name":"Sticker | Chinggis Warriors (Normal)","count":1},"C17684001290":{"group":2,"name":"Sticker | oBo","count":3},"C17684001298":{"group":2,"name":"Sticker | oBo (Normal)","count":1},"C17684001306":{"group":2,"name":"Sticker | oBo (Foil)","count":1},"C17684001314":{"group":2,"name":"Sticker | oBo (Gold)","count":1},"C17689280138":{"group":2,"name":"Sticker | regali","count":8},"C17689280146":{"group":2,"name":"Sticker | regali (Normal)","count":2},"C17689280154":{"group":2,"name":"Sticker | regali (Foil)","count":1},"C17689280162":{"group":2,"name":"Sticker | regali (Gold)","count":2},"C17689280170":{"group":2,"name":"Sticker | regali (Holo)","count":2},"C17689280186":{"group":2,"name":"Sticker | regali (Embroidered)","count":1},"C17691":{"group":3,"name":"Sticker | Chinggis Warriors (Foil)","count":1},"C17699":{"group":3,"name":"Sticker | Chinggis Warriors (Gold)","count":1},"C17707":{"group":3,"name":"Sticker | Chinggis Warriors (Holo)","count":1},"C17803":{"group":3,"name":"Sticker | Falcons","count":12},"C17811":{"group":3,"name":"Sticker | Falcons (Normal)","count":3},"C17819":{"group":3,"name":"Sticker | Falcons (Foil)","count":2},"C17827":{"group":3,"name":"Sticker | Falcons (Gold)","count":3},"C17835":{"group":3,"name":"Sticker | Falcons (Holo)","count":3},"C17851":{"group":3,"name":"Sticker | Falcons (Embroidered)","count":1},"C179":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Glitter)","count":3},"C17931":{"group":3,"name":"Sticker | M80","count":12},"C17939":{"group":3,"name":"Sticker | M80 (Normal)","count":3},"C17947":{"group":3,"name":"Sticker | M80 (Foil)","count":2},"C17949341962":{"group":2,"name":"Sticker | saadzin","count":12},"C17949341970":{"group":2,"name":"Sticker | saadzin (Normal)","count":3},"C17949341978":{"group":2,"name":"Sticker | saadzin (Foil)","count":2},"C17949341986":{"group":2,"name":"Sticker | saadzin (Gold)","count":3},"C17949341994":{"group":2,"name":"Sticker | saadzin (Holo)","count":3},"C17949342010":{"group":2,"name":"Sticker | saadzin (Embroidered)","count":1},"C17955":{"group":3,"name":"Sticker | M80 (Gold)","count":3},"C17963":{"group":3,"name":"Sticker | M80 (Holo)","count":3},"C17979":{"group":3,"name":"Sticker | M80 (Embroidered)","count":1},"C1801":{"group":1,"name":"Sticker | London 2018","count":460},"C1803":{"group":3,"name":"Sticker | SK Gaming","count":16},"C18059":{"group":3,"name":"Sticker | Metizport","count":4},"C18067":{"group":3,"name":"Sticker | Metizport (Normal)","count":1},"C18075":{"group":3,"name":"Sticker | Metizport (Foil)","count":1},"C18083":{"group":3,"name":"Sticker | Metizport (Gold)","count":1},"C1809":{"group":1,"name":"Sticker | London 2018 (Normal)","count":145},"C18091":{"group":3,"name":"Sticker | Metizport (Holo)","count":1},"C1811":{"group":3,"name":"Sticker | SK Gaming (Normal)","count":4},"C1817":{"group":1,"name":"Sticker | London 2018 (Foil)","count":145},"C18175750154":{"group":2,"name":"Sticker | salazar","count":4},"C18175750162":{"group":2,"name":"Sticker | salazar (Normal)","count":1},"C18175750178":{"group":2,"name":"Sticker | salazar (Gold)","count":1},"C18175750186":{"group":2,"name":"Sticker | salazar (Holo)","count":1},"C18175750194":{"group":2,"name":"Sticker | salazar (Glitter)","count":1},"C18187":{"group":3,"name":"Sticker | PARIVISION","count":8},"C1819":{"group":3,"name":"Sticker | SK Gaming (Foil)","count":4},"C18195":{"group":3,"name":"Sticker | PARIVISION (Normal)","count":2},"C18203":{"group":3,"name":"Sticker | PARIVISION (Foil)","count":1},"C18211":{"group":3,"name":"Sticker | PARIVISION (Gold)","count":2},"C18219":{"group":3,"name":"Sticker | PARIVISION (Holo)","count":2},"C18235":{"group":3,"name":"Sticker | PARIVISION (Embroidered)","count":1},"C1825":{"group":1,"name":"Sticker | London 2018 (Gold)","count":145},"C1827":{"group":3,"name":"Sticker | SK Gaming (Gold)","count":4},"C18315":{"group":3,"name":"Sticker | The Huns","count":4},"C18323":{"group":3,"name":"Sticker | The Huns (Normal)","count":1},"C1833":{"group":1,"name":"Sticker | London 2018 (Holo)","count":25},"C1833205642":{"group":2,"name":"Sticker | SmithZz","count":18},"C1833205650":{"group":2,"name":"Sticker | SmithZz (Normal)","count":6},"C1833205658":{"group":2,"name":"Sticker | SmithZz (Foil)","count":6},"C1833205666":{"group":2,"name":"Sticker | SmithZz (Gold)","count":6},"C18339":{"group":3,"name":"Sticker | The Huns (Gold)","count":1},"C18347":{"group":3,"name":"Sticker | The Huns (Holo)","count":1},"C1835":{"group":3,"name":"Sticker | SK Gaming (Holo)","count":4},"C18363":{"group":3,"name":"Sticker | The Huns (Embroidered)","count":1},"C18443":{"group":3,"name":"Sticker | RED Canids","count":4},"C18451":{"group":3,"name":"Sticker | RED Canids (Normal)","count":1},"C18467":{"group":3,"name":"Sticker | RED Canids (Gold)","count":1},"C18475":{"group":3,"name":"Sticker | RED Canids (Holo)","count":1},"C18478229130":{"group":2,"name":"Sticker | LNZ","count":11},"C18478229138":{"group":2,"name":"Sticker | LNZ (Normal)","count":3},"C18478229146":{"group":2,"name":"Sticker | LNZ (Foil)","count":2},"C18478229154":{"group":2,"name":"Sticker | LNZ (Gold)","count":3},"C18478229162":{"group":2,"name":"Sticker | LNZ (Holo)","count":3},"C18491":{"group":3,"name":"Sticker | RED Canids (Embroidered)","count":1},"C18571":{"group":3,"name":"Sticker | FUT","count":4},"C18579":{"group":3,"name":"Sticker | FUT (Normal)","count":1},"C18587":{"group":3,"name":"Sticker | FUT (Foil)","count":1},"C18595":{"group":3,"name":"Sticker | FUT (Gold)","count":1},"C18603":{"group":3,"name":"Sticker | FUT (Holo)","count":1},"C18699":{"group":3,"name":"Sticker | Gaimin Gladiators","count":4},"C187":{"group":3,"name":"Sticker | Ninjas in Pyjamas (Embroidered)","count":1},"C18707":{"group":3,"name":"Sticker | Gaimin Gladiators (Normal)","count":1},"C18715":{"group":3,"name":"Sticker | Gaimin Gladiators (Foil)","count":1},"C18723":{"group":3,"name":"Sticker | Gaimin Gladiators (Gold)","count":1},"C18731":{"group":3,"name":"Sticker | Gaimin Gladiators (Holo)","count":1},"C18770115850":{"group":2,"name":"Sticker | Dosia","count":18},"C18770115858":{"group":2,"name":"Sticker | Dosia (Normal)","count":6},"C18770115866":{"group":2,"name":"Sticker | Dosia (Foil)","count":6},"C18770115874":{"group":2,"name":"Sticker | Dosia (Gold)","count":6},"C18812711946":{"group":2,"name":"Sticker | westmelon","count":16},"C18812711954":{"group":2,"name":"Sticker | westmelon (Normal)","count":4},"C18812711962":{"group":2,"name":"Sticker | westmelon (Foil)","count":2},"C18812711970":{"group":2,"name":"Sticker | westmelon (Gold)","count":4},"C18812711978":{"group":2,"name":"Sticker | westmelon (Holo)","count":4},"C18812711986":{"group":2,"name":"Sticker | westmelon (Glitter)","count":1},"C18812711994":{"group":2,"name":"Sticker | westmelon (Embroidered)","count":1},"C188237577610":{"group":2,"name":"Sticker | cobra","count":8},"C188237577618":{"group":2,"name":"Sticker | cobra (Normal)","count":2},"C188237577626":{"group":2,"name":"Sticker | cobra (Foil)","count":1},"C188237577634":{"group":2,"name":"Sticker | cobra (Gold)","count":2},"C188237577642":{"group":2,"name":"Sticker | cobra (Holo)","count":2},"C188237577658":{"group":2,"name":"Sticker | cobra (Embroidered)","count":1},"C18827":{"group":3,"name":"Sticker | SINNERS","count":4},"C18835":{"group":3,"name":"Sticker | SINNERS (Normal)","count":1},"C18843":{"group":3,"name":"Sticker | SINNERS (Foil)","count":1},"C18851":{"group":3,"name":"Sticker | SINNERS (Gold)","count":1},"C18859":{"group":3,"name":"Sticker | SINNERS (Holo)","count":1},"C18879503114":{"group":2,"name":"Sticker | Ramz1kBO$$","count":3},"C18879503122":{"group":2,"name":"Sticker | Ramz1kBO$$ (Normal)","count":1},"C18879503130":{"group":2,"name":"Sticker | Ramz1kBO$$ (Foil)","count":1},"C18879503138":{"group":2,"name":"Sticker | Ramz1kBO$$ (Gold)","count":1},"C18955":{"group":3,"name":"Sticker | THUNDERdOWNUNDER","count":4},"C18963":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Normal)","count":1},"C18971":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Foil)","count":1},"C18979":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Gold)","count":1},"C18987":{"group":3,"name":"Sticker | THUNDERdOWNUNDER (Holo)","count":1},"C19011936138":{"group":2,"name":"Sticker | Mercury","count":12},"C19011936146":{"group":2,"name":"Sticker | Mercury (Normal)","count":3},"C19011936154":{"group":2,"name":"Sticker | Mercury (Foil)","count":2},"C19011936162":{"group":2,"name":"Sticker | Mercury (Gold)","count":3},"C19011936170":{"group":2,"name":"Sticker | Mercury (Holo)","count":3},"C19011936186":{"group":2,"name":"Sticker | Mercury (Embroidered)","count":1},"C1902607754":{"group":2,"name":"Sticker | Sonic","count":16},"C1902607762":{"group":2,"name":"Sticker | Sonic (Normal)","count":4},"C1902607770":{"group":2,"name":"Sticker | Sonic (Foil)","count":2},"C1902607778":{"group":2,"name":"Sticker | Sonic (Gold)","count":4},"C1902607786":{"group":2,"name":"Sticker | Sonic (Holo)","count":4},"C1902607794":{"group":2,"name":"Sticker | Sonic (Glitter)","count":1},"C1902607802":{"group":2,"name":"Sticker | Sonic (Embroidered)","count":1},"C1929":{"group":1,"name":"Sticker | Katowice 2019","count":460},"C1937":{"group":1,"name":"Sticker | Katowice 2019 (Normal)","count":145},"C1945":{"group":1,"name":"Sticker | Katowice 2019 (Foil)","count":145},"C1953":{"group":1,"name":"Sticker | Katowice 2019 (Gold)","count":145},"C1961":{"group":1,"name":"Sticker | Katowice 2019 (Holo)","count":25},"C19635259530":{"group":2,"name":"Sticker | ZywOo","count":53},"C19635259538":{"group":2,"name":"Sticker | ZywOo (Normal)","count":14},"C19635259546":{"group":2,"name":"Sticker | ZywOo (Foil)","count":5},"C19635259554":{"group":2,"name":"Sticker | ZywOo (Gold)","count":14},"C19635259562":{"group":2,"name":"Sticker | ZywOo (Holo)","count":12},"C19635259570":{"group":2,"name":"Sticker | ZywOo (Glitter)","count":6},"C19635259578":{"group":2,"name":"Sticker | ZywOo (Embroidered)","count":2},"C19797009930":{"group":2,"name":"Sticker | v4lde","count":13},"C19797009938":{"group":2,"name":"Sticker | v4lde (Normal)","count":4},"C19797009946":{"group":2,"name":"Sticker | v4lde (Foil)","count":3},"C19797009954":{"group":2,"name":"Sticker | v4lde (Gold)","count":4},"C19797009962":{"group":2,"name":"Sticker | v4lde (Holo)","count":1},"C19797009970":{"group":2,"name":"Sticker | v4lde (Glitter)","count":1},"C20000966154":{"group":2,"name":"Sticker | flamie","count":30},"C20000966162":{"group":2,"name":"Sticker | flamie (Normal)","count":10},"C20000966170":{"group":2,"name":"Sticker | flamie (Foil)","count":10},"C20000966178":{"group":2,"name":"Sticker | flamie (Gold)","count":10},"C2014541066":{"group":2,"name":"Sticker | tonyblack","count":6},"C2014541074":{"group":2,"name":"Sticker | tonyblack (Normal)","count":2},"C2014541082":{"group":2,"name":"Sticker | tonyblack (Foil)","count":2},"C2014541090":{"group":2,"name":"Sticker | tonyblack (Gold)","count":2},"C20215086602":{"group":2,"name":"Sticker | faveN","count":12},"C20215086610":{"group":2,"name":"Sticker | faveN (Normal)","count":3},"C20215086618":{"group":2,"name":"Sticker | faveN (Foil)","count":1},"C20215086626":{"group":2,"name":"Sticker | faveN (Gold)","count":3},"C20215086634":{"group":2,"name":"Sticker | faveN (Holo)","count":3},"C20215086642":{"group":2,"name":"Sticker | faveN (Glitter)","count":2},"C20272757258":{"group":2,"name":"Sticker | skullz","count":16},"C20272757266":{"group":2,"name":"Sticker | skullz (Normal)","count":4},"C20272757274":{"group":2,"name":"Sticker | skullz (Foil)","count":1},"C20272757282":{"group":2,"name":"Sticker | skullz (Gold)","count":4},"C20272757290":{"group":2,"name":"Sticker | skullz (Holo)","count":4},"C20272757298":{"group":2,"name":"Sticker | skullz (Glitter)","count":2},"C20272757306":{"group":2,"name":"Sticker | skullz (Embroidered)","count":1},"C20330568202":{"group":2,"name":"Sticker | CRUC1AL","count":4},"C20330568210":{"group":2,"name":"Sticker | CRUC1AL (Normal)","count":1},"C20330568226":{"group":2,"name":"Sticker | CRUC1AL (Gold)","count":1},"C20330568234":{"group":2,"name":"Sticker | CRUC1AL (Holo)","count":1},"C20330568242":{"group":2,"name":"Sticker | CRUC1AL (Glitter)","count":1},"C20367744906":{"group":2,"name":"Sticker | draken","count":3},"C20367744914":{"group":2,"name":"Sticker | draken (Normal)","count":1},"C20367744922":{"group":2,"name":"Sticker | draken (Foil)","count":1},"C20367744930":{"group":2,"name":"Sticker | draken (Gold)","count":1},"C20508874634":{"group":2,"name":"Sticker | dav1d","count":16},"C20508874642":{"group":2,"name":"Sticker | dav1d (Normal)","count":4},"C20508874650":{"group":2,"name":"Sticker | dav1d (Foil)","count":1},"C20508874658":{"group":2,"name":"Sticker | dav1d (Gold)","count":4},"C20508874666":{"group":2,"name":"Sticker | dav1d (Holo)","count":4},"C20508874674":{"group":2,"name":"Sticker | dav1d (Glitter)","count":2},"C20508874682":{"group":2,"name":"Sticker | dav1d (Embroidered)","count":1},"C20517327370":{"group":2,"name":"Sticker | jabbi","count":20},"C20517327378":{"group":2,"name":"Sticker | jabbi (Normal)","count":5},"C20517327386":{"group":2,"name":"Sticker | jabbi (Foil)","count":1},"C20517327394":{"group":2,"name":"Sticker | jabbi (Gold)","count":5},"C20517327402":{"group":2,"name":"Sticker | jabbi (Holo)","count":5},"C20517327410":{"group":2,"name":"Sticker | jabbi (Glitter)","count":3},"C20517327418":{"group":2,"name":"Sticker | jabbi (Embroidered)","count":1},"C2057":{"group":1,"name":"Sticker | Berlin 2019","count":460},"C20602209034":{"group":2,"name":"Sticker | Perfecto","count":26},"C20602209042":{"group":2,"name":"Sticker | Perfecto (Normal)","count":7},"C20602209050":{"group":2,"name":"Sticker | Perfecto (Foil)","count":1},"C20602209058":{"group":2,"name":"Sticker | Perfecto (Gold)","count":7},"C20602209066":{"group":2,"name":"Sticker | Perfecto (Holo)","count":6},"C20602209074":{"group":2,"name":"Sticker | Perfecto (Glitter)","count":5},"C20639537674":{"group":2,"name":"Sticker | kabal","count":8},"C20639537682":{"group":2,"name":"Sticker | kabal (Normal)","count":2},"C20639537698":{"group":2,"name":"Sticker | kabal (Gold)","count":2},"C20639537706":{"group":2,"name":"Sticker | kabal (Holo)","count":2},"C20639537714":{"group":2,"name":"Sticker | kabal (Glitter)","count":2},"C20641652106":{"group":2,"name":"Sticker | disco doplan","count":3},"C20641652114":{"group":2,"name":"Sticker | disco doplan (Normal)","count":1},"C20641652122":{"group":2,"name":"Sticker | disco doplan (Foil)","count":1},"C20641652130":{"group":2,"name":"Sticker | disco doplan (Gold)","count":1},"C2064325258":{"group":2,"name":"Sticker | Kaze","count":10},"C2064325266":{"group":2,"name":"Sticker | Kaze (Normal)","count":3},"C2064325274":{"group":2,"name":"Sticker | Kaze (Foil)","count":2},"C2064325282":{"group":2,"name":"Sticker | Kaze (Gold)","count":3},"C2064325290":{"group":2,"name":"Sticker | Kaze (Holo)","count":1},"C2064325298":{"group":2,"name":"Sticker | Kaze (Glitter)","count":1},"C2065":{"group":1,"name":"Sticker | Berlin 2019 (Normal)","count":145},"C20683530":{"group":2,"name":"Sticker | koosta","count":3},"C20683538":{"group":2,"name":"Sticker | koosta (Normal)","count":1},"C20683546":{"group":2,"name":"Sticker | koosta (Foil)","count":1},"C20683554":{"group":2,"name":"Sticker | koosta (Gold)","count":1},"C2073":{"group":1,"name":"Sticker | Berlin 2019 (Foil)","count":145},"C2081":{"group":1,"name":"Sticker | Berlin 2019 (Gold)","count":145},"C2087488138":{"group":2,"name":"Sticker | zehN","count":6},"C2087488146":{"group":2,"name":"Sticker | zehN (Normal)","count":2},"C2087488154":{"group":2,"name":"Sticker | zehN (Foil)","count":2},"C2087488162":{"group":2,"name":"Sticker | zehN (Gold)","count":2},"C2089":{"group":1,"name":"Sticker | Berlin 2019 (Holo)","count":25},"C20909890698":{"group":2,"name":"Sticker | Nifty","count":6},"C20909890706":{"group":2,"name":"Sticker | Nifty (Normal)","count":2},"C20909890714":{"group":2,"name":"Sticker | Nifty (Foil)","count":2},"C20909890722":{"group":2,"name":"Sticker | Nifty (Gold)","count":2},"C20992522":{"group":2,"name":"Sticker | seang@res","count":9},"C20992530":{"group":2,"name":"Sticker | seang@res (Normal)","count":3},"C20992538":{"group":2,"name":"Sticker | seang@res (Foil)","count":3},"C20992546":{"group":2,"name":"Sticker | seang@res (Gold)","count":3},"C21094771594":{"group":2,"name":"Sticker | kl1m","count":8},"C21094771602":{"group":2,"name":"Sticker | kl1m (Normal)","count":2},"C21094771610":{"group":2,"name":"Sticker | kl1m (Foil)","count":1},"C21094771618":{"group":2,"name":"Sticker | kl1m (Gold)","count":2},"C21094771626":{"group":2,"name":"Sticker | kl1m (Holo)","count":2},"C21094771642":{"group":2,"name":"Sticker | kl1m (Embroidered)","count":1},"C21235929354":{"group":2,"name":"Sticker | DemQQ","count":4},"C21235929362":{"group":2,"name":"Sticker | DemQQ (Normal)","count":1},"C21235929378":{"group":2,"name":"Sticker | DemQQ (Gold)","count":1},"C21235929386":{"group":2,"name":"Sticker | DemQQ (Holo)","count":1},"C21235929394":{"group":2,"name":"Sticker | DemQQ (Glitter)","count":1},"C21372231946":{"group":2,"name":"Sticker | qikert","count":28},"C21372231954":{"group":2,"name":"Sticker | qikert (Normal)","count":8},"C21372231962":{"group":2,"name":"Sticker | qikert (Foil)","count":3},"C21372231970":{"group":2,"name":"Sticker | qikert (Gold)","count":8},"C21372231978":{"group":2,"name":"Sticker | qikert (Holo)","count":5},"C21372231986":{"group":2,"name":"Sticker | qikert (Glitter)","count":3},"C21372231994":{"group":2,"name":"Sticker | qikert (Embroidered)","count":1},"C21529327370":{"group":2,"name":"Sticker | nin9","count":8},"C21529327378":{"group":2,"name":"Sticker | nin9 (Normal)","count":2},"C21529327394":{"group":2,"name":"Sticker | nin9 (Gold)","count":2},"C21529327402":{"group":2,"name":"Sticker | nin9 (Holo)","count":2},"C21529327410":{"group":2,"name":"Sticker | nin9 (Glitter)","count":1},"C21529327418":{"group":2,"name":"Sticker | nin9 (Embroidered)","count":1},"C2155450378":{"group":2,"name":"Sticker | jks","count":31},"C2155450386":{"group":2,"name":"Sticker | jks (Normal)","count":9},"C2155450394":{"group":2,"name":"Sticker | jks (Foil)","count":6},"C2155450402":{"group":2,"name":"Sticker | jks (Gold)","count":9},"C2155450410":{"group":2,"name":"Sticker | jks (Holo)","count":4},"C2155450418":{"group":2,"name":"Sticker | jks (Glitter)","count":2},"C2155450426":{"group":2,"name":"Sticker | jks (Embroidered)","count":1},"C2161033098":{"group":2,"name":"Sticker | freakazoid","count":9},"C2161033106":{"group":2,"name":"Sticker | freakazoid (Normal)","count":3},"C2161033114":{"group":2,"name":"Sticker | freakazoid (Foil)","count":3},"C2161033122":{"group":2,"name":"Sticker | freakazoid (Gold)","count":3},"C21654758666":{"group":2,"name":"Sticker | Ethan","count":6},"C21654758674":{"group":2,"name":"Sticker | Ethan (Normal)","count":2},"C21654758682":{"group":2,"name":"Sticker | Ethan (Foil)","count":2},"C21654758690":{"group":2,"name":"Sticker | Ethan (Gold)","count":2},"C21736813322":{"group":2,"name":"Sticker | b4rtiN","count":4},"C21736813330":{"group":2,"name":"Sticker | b4rtiN (Normal)","count":1},"C21736813346":{"group":2,"name":"Sticker | b4rtiN (Gold)","count":1},"C21736813354":{"group":2,"name":"Sticker | b4rtiN (Holo)","count":1},"C21736813362":{"group":2,"name":"Sticker | b4rtiN (Glitter)","count":1},"C21757774986":{"group":2,"name":"Sticker | DD","count":6},"C21757774994":{"group":2,"name":"Sticker | DD (Normal)","count":2},"C21757775002":{"group":2,"name":"Sticker | DD (Foil)","count":2},"C21757775010":{"group":2,"name":"Sticker | DD (Gold)","count":2},"C21782857482":{"group":2,"name":"Sticker | fnx","count":13},"C21782857490":{"group":2,"name":"Sticker | fnx (Normal)","count":4},"C21782857498":{"group":2,"name":"Sticker | fnx (Foil)","count":3},"C21782857506":{"group":2,"name":"Sticker | fnx (Gold)","count":4},"C21782857514":{"group":2,"name":"Sticker | fnx (Holo)","count":1},"C21782857522":{"group":2,"name":"Sticker | fnx (Glitter)","count":1},"C2185":{"group":1,"name":"Sticker | RMR 2020","count":96},"C2193":{"group":1,"name":"Sticker | RMR 2020 (Normal)","count":24},"C21942411274":{"group":2,"name":"Sticker | oskar","count":12},"C21942411282":{"group":2,"name":"Sticker | oskar (Normal)","count":4},"C21942411290":{"group":2,"name":"Sticker | oskar (Foil)","count":4},"C21942411298":{"group":2,"name":"Sticker | oskar (Gold)","count":4},"C21985337866":{"group":2,"name":"Sticker | fEAR","count":8},"C21985337874":{"group":2,"name":"Sticker | fEAR (Normal)","count":2},"C21985337890":{"group":2,"name":"Sticker | fEAR (Gold)","count":2},"C21985337898":{"group":2,"name":"Sticker | fEAR (Holo)","count":2},"C21985337906":{"group":2,"name":"Sticker | fEAR (Glitter)","count":1},"C21985337914":{"group":2,"name":"Sticker | fEAR (Embroidered)","count":1},"C2201":{"group":1,"name":"Sticker | RMR 2020 (Foil)","count":24},"C2209":{"group":1,"name":"Sticker | RMR 2020 (Gold)","count":24},"C2217":{"group":1,"name":"Sticker | RMR 2020 (Holo)","count":24},"C22289433226":{"group":2,"name":"Sticker | YEKINDAR","count":27},"C22289433234":{"group":2,"name":"Sticker | YEKINDAR (Normal)","count":7},"C22289433242":{"group":2,"name":"Sticker | YEKINDAR (Foil)","count":1},"C22289433250":{"group":2,"name":"Sticker | YEKINDAR (Gold)","count":7},"C22289433258":{"group":2,"name":"Sticker | YEKINDAR (Holo)","count":7},"C22289433266":{"group":2,"name":"Sticker | YEKINDAR (Glitter)","count":4},"C22289433274":{"group":2,"name":"Sticker | YEKINDAR (Embroidered)","count":1},"C22381787146":{"group":2,"name":"Sticker | S0tF1k","count":6},"C22381787154":{"group":2,"name":"Sticker | S0tF1k (Normal)","count":2},"C22381787162":{"group":2,"name":"Sticker | S0tF1k (Foil)","count":2},"C22381787170":{"group":2,"name":"Sticker | S0tF1k (Gold)","count":2},"C22395255050":{"group":2,"name":"Sticker | gafolo","count":4},"C22395255058":{"group":2,"name":"Sticker | gafolo (Normal)","count":1},"C22395255066":{"group":2,"name":"Sticker | gafolo (Foil)","count":1},"C22395255074":{"group":2,"name":"Sticker | gafolo (Gold)","count":1},"C22395255082":{"group":2,"name":"Sticker | gafolo (Holo)","count":1},"C2243328906":{"group":2,"name":"Sticker | kRYSTAL","count":6},"C2243328914":{"group":2,"name":"Sticker | kRYSTAL (Normal)","count":2},"C2243328922":{"group":2,"name":"Sticker | kRYSTAL (Foil)","count":2},"C2243328930":{"group":2,"name":"Sticker | kRYSTAL (Gold)","count":2},"C22478472970":{"group":2,"name":"Sticker | Plopski","count":11},"C22478472978":{"group":2,"name":"Sticker | Plopski (Normal)","count":3},"C22478472986":{"group":2,"name":"Sticker | Plopski (Foil)","count":1},"C22478472994":{"group":2,"name":"Sticker | Plopski (Gold)","count":3},"C22478473002":{"group":2,"name":"Sticker | Plopski (Holo)","count":3},"C22478473010":{"group":2,"name":"Sticker | Plopski (Glitter)","count":1},"C2248282378":{"group":2,"name":"Sticker | FNS","count":6},"C2248282386":{"group":2,"name":"Sticker | FNS (Normal)","count":2},"C2248282394":{"group":2,"name":"Sticker | FNS (Foil)","count":2},"C2248282402":{"group":2,"name":"Sticker | FNS (Gold)","count":2},"C22710887306":{"group":2,"name":"Sticker | xccurate","count":6},"C22710887314":{"group":2,"name":"Sticker | xccurate (Normal)","count":2},"C22710887322":{"group":2,"name":"Sticker | xccurate (Foil)","count":2},"C22710887330":{"group":2,"name":"Sticker | xccurate (Gold)","count":2},"C22719471754":{"group":2,"name":"Sticker | Furlan","count":6},"C22719471762":{"group":2,"name":"Sticker | Furlan (Normal)","count":2},"C22719471770":{"group":2,"name":"Sticker | Furlan (Foil)","count":2},"C22719471778":{"group":2,"name":"Sticker | Furlan (Gold)","count":2},"C22722270090":{"group":2,"name":"Sticker | z4KR","count":16},"C22722270098":{"group":2,"name":"Sticker | z4KR (Normal)","count":4},"C22722270106":{"group":2,"name":"Sticker | z4KR (Foil)","count":2},"C22722270114":{"group":2,"name":"Sticker | z4KR (Gold)","count":4},"C22722270122":{"group":2,"name":"Sticker | z4KR (Holo)","count":4},"C22722270130":{"group":2,"name":"Sticker | z4KR (Glitter)","count":1},"C22722270138":{"group":2,"name":"Sticker | z4KR (Embroidered)","count":1},"C22764551946":{"group":2,"name":"Sticker | Rainwaker","count":4},"C22764551954":{"group":2,"name":"Sticker | Rainwaker (Normal)","count":1},"C22764551962":{"group":2,"name":"Sticker | Rainwaker (Foil)","count":1},"C22764551970":{"group":2,"name":"Sticker | Rainwaker (Gold)","count":1},"C22764551978":{"group":2,"name":"Sticker | Rainwaker (Holo)","count":1},"C22856031626":{"group":2,"name":"Sticker | Brollan","count":35},"C22856031634":{"group":2,"name":"Sticker | Brollan (Normal)","count":9},"C22856031642":{"group":2,"name":"Sticker | Brollan (Foil)","count":3},"C22856031650":{"group":2,"name":"Sticker | Brollan (Gold)","count":9},"C22856031658":{"group":2,"name":"Sticker | Brollan (Holo)","count":8},"C22856031666":{"group":2,"name":"Sticker | Brollan (Glitter)","count":5},"C22856031674":{"group":2,"name":"Sticker | Brollan (Embroidered)","count":1},"C22883007370":{"group":2,"name":"Sticker | BOROS","count":4},"C22883007378":{"group":2,"name":"Sticker | BOROS (Normal)","count":1},"C22883007394":{"group":2,"name":"Sticker | BOROS (Gold)","count":1},"C22883007402":{"group":2,"name":"Sticker | BOROS (Holo)","count":1},"C22883007410":{"group":2,"name":"Sticker | BOROS (Glitter)","count":1},"C2289582346":{"group":2,"name":"Sticker | ngiN","count":6},"C2289582354":{"group":2,"name":"Sticker | ngiN (Normal)","count":2},"C2289582362":{"group":2,"name":"Sticker | ngiN (Foil)","count":2},"C2289582370":{"group":2,"name":"Sticker | ngiN (Gold)","count":2},"C2300879882":{"group":2,"name":"Sticker | Happy","count":18},"C2300879890":{"group":2,"name":"Sticker | Happy (Normal)","count":6},"C2300879898":{"group":2,"name":"Sticker | Happy (Foil)","count":6},"C2300879906":{"group":2,"name":"Sticker | Happy (Gold)","count":6},"C2311976330":{"group":2,"name":"Sticker | cajunb","count":24},"C2311976338":{"group":2,"name":"Sticker | cajunb (Normal)","count":8},"C2311976346":{"group":2,"name":"Sticker | cajunb (Foil)","count":8},"C2311976354":{"group":2,"name":"Sticker | cajunb (Gold)","count":8},"C2313":{"group":1,"name":"Sticker | Stockholm 2021","count":220},"C23168809482":{"group":2,"name":"Sticker | xiELO","count":8},"C23168809490":{"group":2,"name":"Sticker | xiELO (Normal)","count":2},"C23168809498":{"group":2,"name":"Sticker | xiELO (Foil)","count":1},"C23168809506":{"group":2,"name":"Sticker | xiELO (Gold)","count":2},"C23168809514":{"group":2,"name":"Sticker | xiELO (Holo)","count":2},"C23168809530":{"group":2,"name":"Sticker | xiELO (Embroidered)","count":1},"C2321":{"group":1,"name":"Sticker | Stockholm 2021 (Normal)","count":65},"C23283913354":{"group":2,"name":"Sticker | malta","count":6},"C23283913362":{"group":2,"name":"Sticker | malta (Normal)","count":2},"C23283913370":{"group":2,"name":"Sticker | malta (Foil)","count":2},"C23283913378":{"group":2,"name":"Sticker | malta (Gold)","count":2},"C2329":{"group":1,"name":"Sticker | Stockholm 2021 (Foil)","count":25},"C2331679626":{"group":2,"name":"Sticker | tarik","count":24},"C2331679634":{"group":2,"name":"Sticker | tarik (Normal)","count":8},"C2331679642":{"group":2,"name":"Sticker | tarik (Foil)","count":8},"C2331679650":{"group":2,"name":"Sticker | tarik (Gold)","count":8},"C2337":{"group":1,"name":"Sticker | Stockholm 2021 (Gold)","count":65},"C2345":{"group":1,"name":"Sticker | Stockholm 2021 (Holo)","count":65},"C2376887306":{"group":2,"name":"Sticker | FlameZ","count":36},"C2376887314":{"group":2,"name":"Sticker | FlameZ (Normal)","count":9},"C2376887322":{"group":2,"name":"Sticker | FlameZ (Foil)","count":3},"C2376887330":{"group":2,"name":"Sticker | FlameZ (Gold)","count":9},"C2376887338":{"group":2,"name":"Sticker | FlameZ (Holo)","count":9},"C2376887346":{"group":2,"name":"Sticker | FlameZ (Glitter)","count":4},"C2376887354":{"group":2,"name":"Sticker | FlameZ (Embroidered)","count":2},"C23800491274":{"group":2,"name":"Sticker | Boombl4","count":35},"C23800491282":{"group":2,"name":"Sticker | Boombl4 (Normal)","count":10},"C23800491290":{"group":2,"name":"Sticker | Boombl4 (Foil)","count":6},"C23800491298":{"group":2,"name":"Sticker | Boombl4 (Gold)","count":10},"C23800491306":{"group":2,"name":"Sticker | Boombl4 (Holo)","count":6},"C23800491314":{"group":2,"name":"Sticker | Boombl4 (Glitter)","count":3},"C238034698":{"group":2,"name":"Sticker | es3tag","count":8},"C238034706":{"group":2,"name":"Sticker | es3tag (Normal)","count":2},"C238034722":{"group":2,"name":"Sticker | es3tag (Gold)","count":2},"C238034730":{"group":2,"name":"Sticker | es3tag (Holo)","count":2},"C238034738":{"group":2,"name":"Sticker | es3tag (Glitter)","count":2},"C240995722":{"group":2,"name":"Sticker | NickelBack","count":4},"C240995730":{"group":2,"name":"Sticker | NickelBack (Normal)","count":1},"C240995746":{"group":2,"name":"Sticker | NickelBack (Gold)","count":1},"C240995754":{"group":2,"name":"Sticker | NickelBack (Holo)","count":1},"C240995762":{"group":2,"name":"Sticker | NickelBack (Glitter)","count":1},"C2414125322":{"group":2,"name":"Sticker | byali","count":24},"C2414125330":{"group":2,"name":"Sticker | byali (Normal)","count":8},"C2414125338":{"group":2,"name":"Sticker | byali (Foil)","count":8},"C2414125346":{"group":2,"name":"Sticker | byali (Gold)","count":8},"C2419616650":{"group":2,"name":"Sticker | USTILO","count":9},"C2419616658":{"group":2,"name":"Sticker | USTILO (Normal)","count":3},"C2419616666":{"group":2,"name":"Sticker | USTILO (Foil)","count":3},"C2419616674":{"group":2,"name":"Sticker | USTILO (Gold)","count":3},"C24372176906":{"group":2,"name":"Sticker | siuhy","count":28},"C24372176914":{"group":2,"name":"Sticker | siuhy (Normal)","count":7},"C24372176922":{"group":2,"name":"Sticker | siuhy (Foil)","count":2},"C24372176930":{"group":2,"name":"Sticker | siuhy (Gold)","count":7},"C24372176938":{"group":2,"name":"Sticker | siuhy (Holo)","count":7},"C24372176946":{"group":2,"name":"Sticker | siuhy (Glitter)","count":4},"C24372176954":{"group":2,"name":"Sticker | siuhy (Embroidered)","count":1},"C2441":{"group":1,"name":"Sticker | Antwerp 2022","count":600},"C2449":{"group":1,"name":"Sticker | Antwerp 2022 (Normal)","count":150},"C24578512906":{"group":2,"name":"Sticker | DickStacy","count":6},"C24578512914":{"group":2,"name":"Sticker | DickStacy (Normal)","count":2},"C24578512922":{"group":2,"name":"Sticker | DickStacy (Foil)","count":2},"C24578512930":{"group":2,"name":"Sticker | DickStacy (Gold)","count":2},"C24590394762":{"group":2,"name":"Sticker | SENER1","count":12},"C24590394770":{"group":2,"name":"Sticker | SENER1 (Normal)","count":3},"C24590394786":{"group":2,"name":"Sticker | SENER1 (Gold)","count":3},"C24590394794":{"group":2,"name":"Sticker | SENER1 (Holo)","count":3},"C24590394802":{"group":2,"name":"Sticker | SENER1 (Glitter)","count":3},"C2465":{"group":1,"name":"Sticker | Antwerp 2022 (Gold)","count":150},"C2473":{"group":1,"name":"Sticker | Antwerp 2022 (Holo)","count":150},"C24753425034":{"group":2,"name":"Sticker | nawwk","count":8},"C24753425042":{"group":2,"name":"Sticker | nawwk (Normal)","count":2},"C24753425058":{"group":2,"name":"Sticker | nawwk (Gold)","count":2},"C24753425066":{"group":2,"name":"Sticker | nawwk (Holo)","count":2},"C24753425074":{"group":2,"name":"Sticker | nawwk (Glitter)","count":2},"C247863434":{"group":2,"name":"Sticker | ANDROID","count":3},"C247863442":{"group":2,"name":"Sticker | ANDROID (Normal)","count":1},"C247863450":{"group":2,"name":"Sticker | ANDROID (Foil)","count":1},"C247863458":{"group":2,"name":"Sticker | ANDROID (Gold)","count":1},"C2481":{"group":1,"name":"Sticker | Antwerp 2022 (Glitter)","count":150},"C248260618":{"group":2,"name":"Sticker | fox","count":15},"C248260626":{"group":2,"name":"Sticker | fox (Normal)","count":5},"C248260634":{"group":2,"name":"Sticker | fox (Foil)","count":5},"C248260642":{"group":2,"name":"Sticker | fox (Gold)","count":5},"C2483641226":{"group":2,"name":"Sticker | k0nfig","count":23},"C2483641234":{"group":2,"name":"Sticker | k0nfig (Normal)","count":7},"C2483641242":{"group":2,"name":"Sticker | k0nfig (Foil)","count":5},"C2483641250":{"group":2,"name":"Sticker | k0nfig (Gold)","count":7},"C2483641258":{"group":2,"name":"Sticker | k0nfig (Holo)","count":2},"C2483641266":{"group":2,"name":"Sticker | k0nfig (Glitter)","count":2},"C24913776522":{"group":2,"name":"Sticker | Norwi","count":4},"C24913776530":{"group":2,"name":"Sticker | Norwi (Normal)","count":1},"C24913776546":{"group":2,"name":"Sticker | Norwi (Gold)","count":1},"C24913776554":{"group":2,"name":"Sticker | Norwi (Holo)","count":1},"C24913776562":{"group":2,"name":"Sticker | Norwi (Glitter)","count":1},"C25022556042":{"group":2,"name":"Sticker | volt","count":12},"C25022556050":{"group":2,"name":"Sticker | volt (Normal)","count":3},"C25022556066":{"group":2,"name":"Sticker | volt (Gold)","count":3},"C25022556074":{"group":2,"name":"Sticker | volt (Holo)","count":3},"C25022556082":{"group":2,"name":"Sticker | volt (Glitter)","count":3},"C25099283850":{"group":2,"name":"Sticker | CeRq","count":10},"C25099283858":{"group":2,"name":"Sticker | CeRq (Normal)","count":3},"C25099283866":{"group":2,"name":"Sticker | CeRq (Foil)","count":2},"C25099283874":{"group":2,"name":"Sticker | CeRq (Gold)","count":3},"C25099283882":{"group":2,"name":"Sticker | CeRq (Holo)","count":1},"C25099283890":{"group":2,"name":"Sticker | CeRq (Glitter)","count":1},"C2513107722":{"group":2,"name":"Sticker | emagine","count":3},"C2513107730":{"group":2,"name":"Sticker | emagine (Normal)","count":1},"C2513107738":{"group":2,"name":"Sticker | emagine (Foil)","count":1},"C2513107746":{"group":2,"name":"Sticker | emagine (Gold)","count":1},"C25231711370":{"group":2,"name":"Sticker | Lucaozy","count":12},"C25231711378":{"group":2,"name":"Sticker | Lucaozy (Normal)","count":3},"C25231711386":{"group":2,"name":"Sticker | Lucaozy (Foil)","count":1},"C25231711394":{"group":2,"name":"Sticker | Lucaozy (Gold)","count":3},"C25231711402":{"group":2,"name":"Sticker | Lucaozy (Holo)","count":3},"C25231711410":{"group":2,"name":"Sticker | Lucaozy (Glitter)","count":1},"C25231711418":{"group":2,"name":"Sticker | Lucaozy (Embroidered)","count":1},"C25358274058":{"group":2,"name":"Sticker | Zyphon","count":8},"C25358274066":{"group":2,"name":"Sticker | Zyphon (Normal)","count":2},"C25358274082":{"group":2,"name":"Sticker | Zyphon (Gold)","count":2},"C25358274090":{"group":2,"name":"Sticker | Zyphon (Holo)","count":2},"C25358274098":{"group":2,"name":"Sticker | Zyphon (Glitter)","count":2},"C2541730442":{"group":2,"name":"Sticker | syrsoN","count":12},"C2541730450":{"group":2,"name":"Sticker | syrsoN (Normal)","count":3},"C2541730466":{"group":2,"name":"Sticker | syrsoN (Gold)","count":3},"C2541730474":{"group":2,"name":"Sticker | syrsoN (Holo)","count":3},"C2541730482":{"group":2,"name":"Sticker | syrsoN (Glitter)","count":3},"C2546221194":{"group":2,"name":"Sticker | daps","count":6},"C2546221202":{"group":2,"name":"Sticker | daps (Normal)","count":2},"C2546221210":{"group":2,"name":"Sticker | daps (Foil)","count":2},"C2546221218":{"group":2,"name":"Sticker | daps (Gold)","count":2},"C2557328778":{"group":2,"name":"Sticker | Twist","count":6},"C2557328786":{"group":2,"name":"Sticker | Twist (Normal)","count":2},"C2557328794":{"group":2,"name":"Sticker | Twist (Foil)","count":2},"C2557328802":{"group":2,"name":"Sticker | Twist (Gold)","count":2},"C25656813706":{"group":2,"name":"Sticker | sjuush","count":27},"C25656813714":{"group":2,"name":"Sticker | sjuush (Normal)","count":7},"C25656813730":{"group":2,"name":"Sticker | sjuush (Gold)","count":7},"C25656813738":{"group":2,"name":"Sticker | sjuush (Holo)","count":7},"C25656813746":{"group":2,"name":"Sticker | sjuush (Glitter)","count":5},"C25656813754":{"group":2,"name":"Sticker | sjuush (Embroidered)","count":1},"C2569":{"group":1,"name":"Sticker | Rio 2022","count":600},"C25701227402":{"group":2,"name":"Sticker | nilo","count":4},"C25701227410":{"group":2,"name":"Sticker | nilo (Normal)","count":1},"C25701227418":{"group":2,"name":"Sticker | nilo (Foil)","count":1},"C25701227426":{"group":2,"name":"Sticker | nilo (Gold)","count":1},"C25701227434":{"group":2,"name":"Sticker | nilo (Holo)","count":1},"C2577":{"group":1,"name":"Sticker | Rio 2022 (Normal)","count":150},"C2593":{"group":1,"name":"Sticker | Rio 2022 (Gold)","count":150},"C2595011722":{"group":2,"name":"Sticker | DavCost","count":12},"C2595011730":{"group":2,"name":"Sticker | DavCost (Normal)","count":4},"C2595011738":{"group":2,"name":"Sticker | DavCost (Foil)","count":4},"C2595011746":{"group":2,"name":"Sticker | DavCost (Gold)","count":4},"C259742090":{"group":2,"name":"Sticker | Professor_Chaos","count":3},"C259742098":{"group":2,"name":"Sticker | Professor_Chaos (Normal)","count":1},"C259742106":{"group":2,"name":"Sticker | Professor_Chaos (Foil)","count":1},"C259742114":{"group":2,"name":"Sticker | Professor_Chaos (Gold)","count":1},"C2601":{"group":1,"name":"Sticker | Rio 2022 (Holo)","count":150},"C26049830666":{"group":2,"name":"Sticker | TjP","count":4},"C26049830674":{"group":2,"name":"Sticker | TjP (Normal)","count":1},"C26049830682":{"group":2,"name":"Sticker | TjP (Foil)","count":1},"C26049830690":{"group":2,"name":"Sticker | TjP (Gold)","count":1},"C26049830698":{"group":2,"name":"Sticker | TjP (Holo)","count":1},"C2609":{"group":1,"name":"Sticker | Rio 2022 (Glitter)","count":150},"C26202218506":{"group":2,"name":"Sticker | yuurih","count":41},"C26202218514":{"group":2,"name":"Sticker | yuurih (Normal)","count":11},"C26202218522":{"group":2,"name":"Sticker | yuurih (Foil)","count":4},"C26202218530":{"group":2,"name":"Sticker | yuurih (Gold)","count":11},"C26202218538":{"group":2,"name":"Sticker | yuurih (Holo)","count":9},"C26202218546":{"group":2,"name":"Sticker | yuurih (Glitter)","count":5},"C26202218554":{"group":2,"name":"Sticker | yuurih (Embroidered)","count":1},"C26247957386":{"group":2,"name":"Sticker | sinnopsyy","count":12},"C26247957394":{"group":2,"name":"Sticker | sinnopsyy (Normal)","count":3},"C26247957410":{"group":2,"name":"Sticker | sinnopsyy (Gold)","count":3},"C26247957418":{"group":2,"name":"Sticker | sinnopsyy (Holo)","count":3},"C26247957426":{"group":2,"name":"Sticker | sinnopsyy (Glitter)","count":3},"C26263846282":{"group":2,"name":"Sticker | maden","count":12},"C26263846290":{"group":2,"name":"Sticker | maden (Normal)","count":3},"C26263846306":{"group":2,"name":"Sticker | maden (Gold)","count":3},"C26263846314":{"group":2,"name":"Sticker | maden (Holo)","count":3},"C26263846322":{"group":2,"name":"Sticker | maden (Glitter)","count":3},"C26562475658":{"group":2,"name":"Sticker | S1ren","count":16},"C26562475666":{"group":2,"name":"Sticker | S1ren (Normal)","count":4},"C26562475674":{"group":2,"name":"Sticker | S1ren (Foil)","count":2},"C26562475682":{"group":2,"name":"Sticker | S1ren (Gold)","count":4},"C26562475690":{"group":2,"name":"Sticker | S1ren (Holo)","count":4},"C26562475698":{"group":2,"name":"Sticker | S1ren (Glitter)","count":2},"C26615356426":{"group":2,"name":"Sticker | Ex3rcice","count":12},"C26615356434":{"group":2,"name":"Sticker | Ex3rcice (Normal)","count":3},"C26615356442":{"group":2,"name":"Sticker | Ex3rcice (Foil)","count":1},"C26615356450":{"group":2,"name":"Sticker | Ex3rcice (Gold)","count":3},"C26615356458":{"group":2,"name":"Sticker | Ex3rcice (Holo)","count":3},"C26615356466":{"group":2,"name":"Sticker | Ex3rcice (Glitter)","count":1},"C26615356474":{"group":2,"name":"Sticker | Ex3rcice (Embroidered)","count":1},"C26641362442":{"group":2,"name":"Sticker | ryu","count":4},"C26641362450":{"group":2,"name":"Sticker | ryu (Normal)","count":1},"C26641362458":{"group":2,"name":"Sticker | ryu (Foil)","count":1},"C26641362466":{"group":2,"name":"Sticker | ryu (Gold)","count":1},"C26641362474":{"group":2,"name":"Sticker | ryu (Holo)","count":1},"C26669531530":{"group":2,"name":"Sticker | Freeman","count":6},"C26669531538":{"group":2,"name":"Sticker | Freeman (Normal)","count":2},"C26669531546":{"group":2,"name":"Sticker | Freeman (Foil)","count":2},"C26669531554":{"group":2,"name":"Sticker | Freeman (Gold)","count":2},"C26789704842":{"group":2,"name":"Sticker | SHOCK","count":4},"C26789704850":{"group":2,"name":"Sticker | SHOCK (Normal)","count":1},"C26789704858":{"group":2,"name":"Sticker | SHOCK (Foil)","count":1},"C26789704866":{"group":2,"name":"Sticker | SHOCK (Gold)","count":1},"C26789704874":{"group":2,"name":"Sticker | SHOCK (Holo)","count":1},"C26926766474":{"group":2,"name":"Sticker | Krimbo","count":12},"C26926766482":{"group":2,"name":"Sticker | Krimbo (Normal)","count":3},"C26926766498":{"group":2,"name":"Sticker | Krimbo (Gold)","count":3},"C26926766506":{"group":2,"name":"Sticker | Krimbo (Holo)","count":3},"C26926766514":{"group":2,"name":"Sticker | Krimbo (Glitter)","count":3},"C2697":{"group":1,"name":"Sticker | Paris 2023","count":600},"C2697692810":{"group":2,"name":"Sticker | Skadoodle","count":18},"C2697692818":{"group":2,"name":"Sticker | Skadoodle (Normal)","count":6},"C2697692826":{"group":2,"name":"Sticker | Skadoodle (Foil)","count":6},"C2697692834":{"group":2,"name":"Sticker | Skadoodle (Gold)","count":6},"C2705":{"group":1,"name":"Sticker | Paris 2023 (Normal)","count":150},"C27062219914":{"group":2,"name":"Sticker | smooya","count":6},"C27062219922":{"group":2,"name":"Sticker | smooya (Normal)","count":2},"C27062219930":{"group":2,"name":"Sticker | smooya (Foil)","count":2},"C27062219938":{"group":2,"name":"Sticker | smooya (Gold)","count":2},"C27066107018":{"group":2,"name":"Sticker | Cxzi","count":4},"C27066107026":{"group":2,"name":"Sticker | Cxzi (Normal)","count":1},"C27066107034":{"group":2,"name":"Sticker | Cxzi (Foil)","count":1},"C27066107042":{"group":2,"name":"Sticker | Cxzi (Gold)","count":1},"C27066107050":{"group":2,"name":"Sticker | Cxzi (Holo)","count":1},"C2719012746":{"group":2,"name":"Sticker | LEGIJA","count":6},"C2719012754":{"group":2,"name":"Sticker | LEGIJA (Normal)","count":2},"C2719012762":{"group":2,"name":"Sticker | LEGIJA (Foil)","count":2},"C2719012770":{"group":2,"name":"Sticker | LEGIJA (Gold)","count":2},"C27209125514":{"group":2,"name":"Sticker | rigoN","count":16},"C27209125522":{"group":2,"name":"Sticker | rigoN (Normal)","count":4},"C27209125538":{"group":2,"name":"Sticker | rigoN (Gold)","count":4},"C27209125546":{"group":2,"name":"Sticker | rigoN (Holo)","count":4},"C27209125554":{"group":2,"name":"Sticker | rigoN (Glitter)","count":4},"C2721":{"group":1,"name":"Sticker | Paris 2023 (Gold)","count":150},"C27255832970":{"group":2,"name":"Sticker | buster","count":16},"C27255832978":{"group":2,"name":"Sticker | buster (Normal)","count":5},"C27255832986":{"group":2,"name":"Sticker | buster (Foil)","count":3},"C27255832994":{"group":2,"name":"Sticker | buster (Gold)","count":5},"C27255833002":{"group":2,"name":"Sticker | buster (Holo)","count":2},"C27255833010":{"group":2,"name":"Sticker | buster (Glitter)","count":1},"C2729":{"group":1,"name":"Sticker | Paris 2023 (Holo)","count":150},"C2733517322":{"group":2,"name":"Sticker | gade","count":6},"C2733517330":{"group":2,"name":"Sticker | gade (Normal)","count":2},"C2733517338":{"group":2,"name":"Sticker | gade (Foil)","count":2},"C2733517346":{"group":2,"name":"Sticker | gade (Gold)","count":2},"C2737":{"group":1,"name":"Sticker | Paris 2023 (Glitter)","count":150},"C2762664330":{"group":2,"name":"Sticker | stanislaw","count":26},"C2762664338":{"group":2,"name":"Sticker | stanislaw (Normal)","count":8},"C2762664346":{"group":2,"name":"Sticker | stanislaw (Foil)","count":7},"C2762664354":{"group":2,"name":"Sticker | stanislaw (Gold)","count":8},"C2762664362":{"group":2,"name":"Sticker | stanislaw (Holo)","count":2},"C2762664370":{"group":2,"name":"Sticker | stanislaw (Glitter)","count":1},"C27726409610":{"group":2,"name":"Sticker | jL","count":20},"C27726409618":{"group":2,"name":"Sticker | jL (Normal)","count":5},"C27726409626":{"group":2,"name":"Sticker | jL (Foil)","count":1},"C27726409634":{"group":2,"name":"Sticker | jL (Gold)","count":5},"C27726409642":{"group":2,"name":"Sticker | jL (Holo)","count":5},"C27726409650":{"group":2,"name":"Sticker | jL (Glitter)","count":4},"C2786712330":{"group":2,"name":"Sticker | GeT_RiGhT","count":21},"C2786712338":{"group":2,"name":"Sticker | GeT_RiGhT (Normal)","count":7},"C2786712346":{"group":2,"name":"Sticker | GeT_RiGhT (Foil)","count":7},"C2786712354":{"group":2,"name":"Sticker | GeT_RiGhT (Gold)","count":7},"C27896752778":{"group":2,"name":"Sticker | xfl0ud","count":12},"C27896752786":{"group":2,"name":"Sticker | xfl0ud (Normal)","count":3},"C27896752794":{"group":2,"name":"Sticker | xfl0ud (Foil)","count":2},"C27896752802":{"group":2,"name":"Sticker | xfl0ud (Gold)","count":3},"C27896752810":{"group":2,"name":"Sticker | xfl0ud (Holo)","count":3},"C27896752818":{"group":2,"name":"Sticker | xfl0ud (Glitter)","count":1},"C27964377738":{"group":2,"name":"Sticker | jcobbb","count":4},"C27964377746":{"group":2,"name":"Sticker | jcobbb (Normal)","count":1},"C27964377762":{"group":2,"name":"Sticker | jcobbb (Gold)","count":1},"C27964377770":{"group":2,"name":"Sticker | jcobbb (Holo)","count":1},"C27964377786":{"group":2,"name":"Sticker | jcobbb (Embroidered)","count":1},"C2800108170":{"group":2,"name":"Sticker | Snax","count":40},"C2800108178":{"group":2,"name":"Sticker | Snax (Normal)","count":12},"C2800108186":{"group":2,"name":"Sticker | Snax (Foil)","count":10},"C2800108194":{"group":2,"name":"Sticker | Snax (Gold)","count":12},"C2800108202":{"group":2,"name":"Sticker | Snax (Holo)","count":4},"C2800108210":{"group":2,"name":"Sticker | Snax (Glitter)","count":2},"C28066915466":{"group":2,"name":"Sticker | Graviti","count":12},"C28066915474":{"group":2,"name":"Sticker | Graviti (Normal)","count":3},"C28066915482":{"group":2,"name":"Sticker | Graviti (Foil)","count":1},"C28066915490":{"group":2,"name":"Sticker | Graviti (Gold)","count":3},"C28066915498":{"group":2,"name":"Sticker | Graviti (Holo)","count":3},"C28066915506":{"group":2,"name":"Sticker | Graviti (Glitter)","count":1},"C28066915514":{"group":2,"name":"Sticker | Graviti (Embroidered)","count":1},"C2825":{"group":1,"name":"Sticker | Copenhagen 2024","count":600},"C2833":{"group":1,"name":"Sticker | Copenhagen 2024 (Normal)","count":150},"C28441197962":{"group":2,"name":"Sticker | k1to","count":4},"C28441197970":{"group":2,"name":"Sticker | k1to (Normal)","count":1},"C28441197986":{"group":2,"name":"Sticker | k1to (Gold)","count":1},"C28441197994":{"group":2,"name":"Sticker | k1to (Holo)","count":1},"C28441198002":{"group":2,"name":"Sticker | k1to (Glitter)","count":1},"C2849":{"group":1,"name":"Sticker | Copenhagen 2024 (Gold)","count":150},"C28510456714":{"group":2,"name":"Sticker | Swisher","count":12},"C28510456722":{"group":2,"name":"Sticker | Swisher (Normal)","count":3},"C28510456730":{"group":2,"name":"Sticker | Swisher (Foil)","count":2},"C28510456738":{"group":2,"name":"Sticker | Swisher (Gold)","count":3},"C28510456746":{"group":2,"name":"Sticker | Swisher (Holo)","count":3},"C28510456762":{"group":2,"name":"Sticker | Swisher (Embroidered)","count":1},"C2857":{"group":1,"name":"Sticker | Copenhagen 2024 (Holo)","count":150},"C2865":{"group":1,"name":"Sticker | Copenhagen 2024 (Glitter)","count":150},"C28657644426":{"group":2,"name":"Sticker | JBa","count":12},"C28657644434":{"group":2,"name":"Sticker | JBa (Normal)","count":3},"C28657644442":{"group":2,"name":"Sticker | JBa (Foil)","count":2},"C28657644450":{"group":2,"name":"Sticker | JBa (Gold)","count":3},"C28657644458":{"group":2,"name":"Sticker | JBa (Holo)","count":3},"C28657644466":{"group":2,"name":"Sticker | JBa (Glitter)","count":1},"C2914018058":{"group":2,"name":"Sticker | felps","count":25},"C2914018066":{"group":2,"name":"Sticker | felps (Normal)","count":7},"C2914018074":{"group":2,"name":"Sticker | felps (Foil)","count":4},"C2914018082":{"group":2,"name":"Sticker | felps (Gold)","count":7},"C2914018090":{"group":2,"name":"Sticker | felps (Holo)","count":4},"C2914018098":{"group":2,"name":"Sticker | felps (Glitter)","count":3},"C29465309834":{"group":2,"name":"Sticker | s1n","count":12},"C29465309842":{"group":2,"name":"Sticker | s1n (Normal)","count":3},"C29465309850":{"group":2,"name":"Sticker | s1n (Foil)","count":2},"C29465309858":{"group":2,"name":"Sticker | s1n (Gold)","count":3},"C29465309866":{"group":2,"name":"Sticker | s1n (Holo)","count":3},"C29465309882":{"group":2,"name":"Sticker | s1n (Embroidered)","count":1},"C2953":{"group":1,"name":"Sticker | Shanghai 2024","count":600},"C29564219786":{"group":2,"name":"Sticker | Grim","count":28},"C29564219794":{"group":2,"name":"Sticker | Grim (Normal)","count":7},"C29564219802":{"group":2,"name":"Sticker | Grim (Foil)","count":2},"C29564219810":{"group":2,"name":"Sticker | Grim (Gold)","count":7},"C29564219818":{"group":2,"name":"Sticker | Grim (Holo)","count":7},"C29564219826":{"group":2,"name":"Sticker | Grim (Glitter)","count":4},"C29564219834":{"group":2,"name":"Sticker | Grim (Embroidered)","count":1},"C2961":{"group":1,"name":"Sticker | Shanghai 2024 (Normal)","count":150},"C2977":{"group":1,"name":"Sticker | Shanghai 2024 (Gold)","count":150},"C29780712074":{"group":2,"name":"Sticker | sense","count":4},"C29780712082":{"group":2,"name":"Sticker | sense (Normal)","count":1},"C29780712098":{"group":2,"name":"Sticker | sense (Gold)","count":1},"C29780712106":{"group":2,"name":"Sticker | sense (Holo)","count":1},"C29780712114":{"group":2,"name":"Sticker | sense (Glitter)","count":1},"C29812275978":{"group":2,"name":"Sticker | xertioN","count":28},"C29812275986":{"group":2,"name":"Sticker | xertioN (Normal)","count":7},"C29812275994":{"group":2,"name":"Sticker | xertioN (Foil)","count":2},"C29812276002":{"group":2,"name":"Sticker | xertioN (Gold)","count":7},"C29812276010":{"group":2,"name":"Sticker | xertioN (Holo)","count":7},"C29812276018":{"group":2,"name":"Sticker | xertioN (Glitter)","count":4},"C29812276026":{"group":2,"name":"Sticker | xertioN (Embroidered)","count":1},"C2985":{"group":1,"name":"Sticker | Shanghai 2024 (Holo)","count":150},"C2993":{"group":1,"name":"Sticker | Shanghai 2024 (Glitter)","count":150},"C29958666":{"group":2,"name":"Sticker | TaZ","count":21},"C29958674":{"group":2,"name":"Sticker | TaZ (Normal)","count":7},"C29958682":{"group":2,"name":"Sticker | TaZ (Foil)","count":7},"C29958690":{"group":2,"name":"Sticker | TaZ (Gold)","count":7},"C29959627402":{"group":2,"name":"Sticker | dumau","count":20},"C29959627410":{"group":2,"name":"Sticker | dumau (Normal)","count":5},"C29959627418":{"group":2,"name":"Sticker | dumau (Foil)","count":2},"C29959627426":{"group":2,"name":"Sticker | dumau (Gold)","count":5},"C29959627434":{"group":2,"name":"Sticker | dumau (Holo)","count":5},"C29959627442":{"group":2,"name":"Sticker | dumau (Glitter)","count":2},"C29959627450":{"group":2,"name":"Sticker | dumau (Embroidered)","count":1},"C2998980362":{"group":2,"name":"Sticker | Edward","count":27},"C2998980370":{"group":2,"name":"Sticker | Edward (Normal)","count":9},"C2998980378":{"group":2,"name":"Sticker | Edward (Foil)","count":9},"C2998980386":{"group":2,"name":"Sticker | Edward (Gold)","count":9},"C30128273546":{"group":2,"name":"Sticker | meyern","count":4},"C30128273554":{"group":2,"name":"Sticker | meyern (Normal)","count":1},"C30128273562":{"group":2,"name":"Sticker | meyern (Foil)","count":1},"C30128273570":{"group":2,"name":"Sticker | meyern (Gold)","count":1},"C30128273578":{"group":2,"name":"Sticker | meyern (Holo)","count":1},"C3015290762":{"group":2,"name":"Sticker | SicK","count":9},"C3015290770":{"group":2,"name":"Sticker | SicK (Normal)","count":3},"C3015290778":{"group":2,"name":"Sticker | SicK (Foil)","count":3},"C3015290786":{"group":2,"name":"Sticker | SicK (Gold)","count":3},"C3032438154":{"group":2,"name":"Sticker | Magisk","count":39},"C3032438162":{"group":2,"name":"Sticker | Magisk (Normal)","count":11},"C3032438170":{"group":2,"name":"Sticker | Magisk (Foil)","count":6},"C3032438178":{"group":2,"name":"Sticker | Magisk (Gold)","count":11},"C3032438186":{"group":2,"name":"Sticker | Magisk (Holo)","count":6},"C3032438194":{"group":2,"name":"Sticker | Magisk (Glitter)","count":4},"C3032438202":{"group":2,"name":"Sticker | Magisk (Embroidered)","count":1},"C30601935626":{"group":2,"name":"Sticker | BUDA","count":4},"C30601935634":{"group":2,"name":"Sticker | BUDA (Normal)","count":1},"C30601935650":{"group":2,"name":"Sticker | BUDA (Gold)","count":1},"C30601935658":{"group":2,"name":"Sticker | BUDA (Holo)","count":1},"C30601935666":{"group":2,"name":"Sticker | BUDA (Glitter)","count":1},"C3081":{"group":1,"name":"Sticker | Austin 2025","count":792},"C30811719946":{"group":2,"name":"Sticker | molodoy","count":12},"C30811719954":{"group":2,"name":"Sticker | molodoy (Normal)","count":3},"C30811719962":{"group":2,"name":"Sticker | molodoy (Foil)","count":2},"C30811719970":{"group":2,"name":"Sticker | molodoy (Gold)","count":3},"C30811719978":{"group":2,"name":"Sticker | molodoy (Holo)","count":3},"C30811719994":{"group":2,"name":"Sticker | molodoy (Embroidered)","count":1},"C3083":{"group":3,"name":"Sticker | Team Dignitas","count":17},"C3089":{"group":1,"name":"Sticker | Austin 2025 (Normal)","count":198},"C3089266058":{"group":2,"name":"Sticker | MSL","count":18},"C3089266066":{"group":2,"name":"Sticker | MSL (Normal)","count":6},"C3089266074":{"group":2,"name":"Sticker | MSL (Foil)","count":6},"C3089266082":{"group":2,"name":"Sticker | MSL (Gold)","count":6},"C30893409546":{"group":2,"name":"Sticker | broky","count":32},"C30893409554":{"group":2,"name":"Sticker | broky (Normal)","count":8},"C30893409562":{"group":2,"name":"Sticker | broky (Foil)","count":1},"C30893409570":{"group":2,"name":"Sticker | broky (Gold)","count":8},"C30893409578":{"group":2,"name":"Sticker | broky (Holo)","count":8},"C30893409586":{"group":2,"name":"Sticker | broky (Glitter)","count":6},"C30893409594":{"group":2,"name":"Sticker | broky (Embroidered)","count":1},"C3091":{"group":3,"name":"Sticker | Team Dignitas (Normal)","count":5},"C3097":{"group":1,"name":"Sticker | Austin 2025 (Foil)","count":198},"C3099":{"group":3,"name":"Sticker | Team Dignitas (Foil)","count":5},"C3105":{"group":1,"name":"Sticker | Austin 2025 (Gold)","count":198},"C3107":{"group":3,"name":"Sticker | Team Dignitas (Gold)","count":3},"C3109785738":{"group":2,"name":"Sticker | friberg","count":12},"C3109785746":{"group":2,"name":"Sticker | friberg (Normal)","count":4},"C3109785754":{"group":2,"name":"Sticker | friberg (Foil)","count":4},"C3109785762":{"group":2,"name":"Sticker | friberg (Gold)","count":4},"C3113":{"group":1,"name":"Sticker | Austin 2025 (Holo)","count":198},"C3115":{"group":3,"name":"Sticker | Team Dignitas (Holo)","count":4},"C312983050":{"group":2,"name":"Sticker | Aerial","count":6},"C312983058":{"group":2,"name":"Sticker | Aerial (Normal)","count":2},"C312983066":{"group":2,"name":"Sticker | Aerial (Foil)","count":2},"C312983074":{"group":2,"name":"Sticker | Aerial (Gold)","count":2},"C31719499786":{"group":2,"name":"Sticker | interz","count":11},"C31719499794":{"group":2,"name":"Sticker | interz (Normal)","count":3},"C31719499810":{"group":2,"name":"Sticker | interz (Gold)","count":3},"C31719499818":{"group":2,"name":"Sticker | interz (Holo)","count":3},"C31719499826":{"group":2,"name":"Sticker | interz (Glitter)","count":2},"C3178530058":{"group":2,"name":"Sticker | AZR","count":15},"C3178530066":{"group":2,"name":"Sticker | AZR (Normal)","count":5},"C3178530074":{"group":2,"name":"Sticker | AZR (Foil)","count":5},"C3178530082":{"group":2,"name":"Sticker | AZR (Gold)","count":5},"C3183179914":{"group":2,"name":"Sticker | jasonR","count":3},"C3183179922":{"group":2,"name":"Sticker | jasonR (Normal)","count":1},"C3183179930":{"group":2,"name":"Sticker | jasonR (Foil)","count":1},"C3183179938":{"group":2,"name":"Sticker | jasonR (Gold)","count":1},"C3197575434":{"group":2,"name":"Sticker | mynio","count":4},"C3197575442":{"group":2,"name":"Sticker | mynio (Normal)","count":1},"C3197575458":{"group":2,"name":"Sticker | mynio (Gold)","count":1},"C3197575466":{"group":2,"name":"Sticker | mynio (Holo)","count":1},"C3197575474":{"group":2,"name":"Sticker | mynio (Glitter)","count":1},"C32046209418":{"group":2,"name":"Sticker | zweih","count":12},"C32046209426":{"group":2,"name":"Sticker | zweih (Normal)","count":3},"C32046209434":{"group":2,"name":"Sticker | zweih (Foil)","count":2},"C32046209442":{"group":2,"name":"Sticker | zweih (Gold)","count":3},"C32046209450":{"group":2,"name":"Sticker | zweih (Holo)","count":3},"C32046209466":{"group":2,"name":"Sticker | zweih (Embroidered)","count":1},"C3207788938":{"group":2,"name":"Sticker | abE","count":3},"C3207788946":{"group":2,"name":"Sticker | abE (Normal)","count":1},"C3207788954":{"group":2,"name":"Sticker | abE (Foil)","count":1},"C3207788962":{"group":2,"name":"Sticker | abE (Gold)","count":1},"C32085598090":{"group":2,"name":"Sticker | HexT","count":12},"C32085598098":{"group":2,"name":"Sticker | HexT (Normal)","count":3},"C32085598106":{"group":2,"name":"Sticker | HexT (Foil)","count":1},"C32085598114":{"group":2,"name":"Sticker | HexT (Gold)","count":3},"C32085598122":{"group":2,"name":"Sticker | HexT (Holo)","count":3},"C32085598130":{"group":2,"name":"Sticker | HexT (Glitter)","count":1},"C32085598138":{"group":2,"name":"Sticker | HexT (Embroidered)","count":1},"C3209":{"group":1,"name":"Sticker | Budapest 2025","count":792},"C3211":{"group":3,"name":"Sticker | HellRaisers","count":28},"C3217":{"group":1,"name":"Sticker | Budapest 2025 (Normal)","count":198},"C3219":{"group":3,"name":"Sticker | HellRaisers (Normal)","count":8},"C3227":{"group":3,"name":"Sticker | HellRaisers (Foil)","count":7},"C3233":{"group":1,"name":"Sticker | Budapest 2025 (Gold)","count":198},"C3235":{"group":3,"name":"Sticker | HellRaisers (Gold)","count":6},"C3238394506":{"group":2,"name":"Sticker | saffee","count":20},"C3238394514":{"group":2,"name":"Sticker | saffee (Normal)","count":5},"C3238394522":{"group":2,"name":"Sticker | saffee (Foil)","count":1},"C3238394530":{"group":2,"name":"Sticker | saffee (Gold)","count":5},"C3238394538":{"group":2,"name":"Sticker | saffee (Holo)","count":5},"C3238394546":{"group":2,"name":"Sticker | saffee (Glitter)","count":4},"C3241":{"group":1,"name":"Sticker | Budapest 2025 (Holo)","count":198},"C3243":{"group":3,"name":"Sticker | HellRaisers (Holo)","count":7},"C3257":{"group":1,"name":"Sticker | Budapest 2025 (Embroidered)","count":198},"C32661626506":{"group":2,"name":"Sticker | NEOFRAG","count":8},"C32661626514":{"group":2,"name":"Sticker | NEOFRAG (Normal)","count":2},"C32661626530":{"group":2,"name":"Sticker | NEOFRAG (Gold)","count":2},"C32661626538":{"group":2,"name":"Sticker | NEOFRAG (Holo)","count":2},"C32661626546":{"group":2,"name":"Sticker | NEOFRAG (Glitter)","count":2},"C32848108554":{"group":2,"name":"Sticker | dgt","count":20},"C32848108562":{"group":2,"name":"Sticker | dgt (Normal)","count":5},"C32848108570":{"group":2,"name":"Sticker | dgt (Foil)","count":2},"C32848108578":{"group":2,"name":"Sticker | dgt (Gold)","count":5},"C32848108586":{"group":2,"name":"Sticker | dgt (Holo)","count":5},"C32848108594":{"group":2,"name":"Sticker | dgt (Glitter)","count":2},"C32848108602":{"group":2,"name":"Sticker | dgt (Embroidered)","count":1},"C33023939210":{"group":2,"name":"Sticker | venomzera","count":8},"C33023939218":{"group":2,"name":"Sticker | venomzera (Normal)","count":2},"C33023939226":{"group":2,"name":"Sticker | venomzera (Foil)","count":1},"C33023939234":{"group":2,"name":"Sticker | venomzera (Gold)","count":2},"C33023939242":{"group":2,"name":"Sticker | venomzera (Holo)","count":2},"C33023939258":{"group":2,"name":"Sticker | venomzera (Embroidered)","count":1},"C33102505866":{"group":2,"name":"Sticker | aNdu","count":4},"C33102505874":{"group":2,"name":"Sticker | aNdu (Normal)","count":1},"C33102505890":{"group":2,"name":"Sticker | aNdu (Gold)","count":1},"C33102505898":{"group":2,"name":"Sticker | aNdu (Holo)","count":1},"C33102505906":{"group":2,"name":"Sticker | aNdu (Glitter)","count":1},"C3337":{"group":1,"name":"Sticker | Cologne 2026","count":772},"C3339":{"group":3,"name":"Sticker | Team LDLC.com","count":8},"C3345":{"group":1,"name":"Sticker | Cologne 2026 (Normal)","count":193},"C3347":{"group":3,"name":"Sticker | Team LDLC.com (Normal)","count":3},"C3353":{"group":1,"name":"Sticker | Cologne 2026 (Foil)","count":193},"C3355":{"group":3,"name":"Sticker | Team LDLC.com (Foil)","count":2},"C33558627338":{"group":2,"name":"Sticker | n0rb3r7","count":19},"C33558627346":{"group":2,"name":"Sticker | n0rb3r7 (Normal)","count":5},"C33558627354":{"group":2,"name":"Sticker | n0rb3r7 (Foil)","count":1},"C33558627362":{"group":2,"name":"Sticker | n0rb3r7 (Gold)","count":5},"C33558627370":{"group":2,"name":"Sticker | n0rb3r7 (Holo)","count":4},"C33558627378":{"group":2,"name":"Sticker | n0rb3r7 (Glitter)","count":4},"C3356798986":{"group":2,"name":"Sticker | Xizt","count":18},"C3356798994":{"group":2,"name":"Sticker | Xizt (Normal)","count":6},"C3356799002":{"group":2,"name":"Sticker | Xizt (Foil)","count":6},"C3356799010":{"group":2,"name":"Sticker | Xizt (Gold)","count":6},"C3361":{"group":1,"name":"Sticker | Cologne 2026 (Gold)","count":193},"C3363":{"group":3,"name":"Sticker | Team LDLC.com (Gold)","count":1},"C3369":{"group":1,"name":"Sticker | Cologne 2026 (Holo)","count":193},"C3371":{"group":3,"name":"Sticker | Team LDLC.com (Holo)","count":2},"C3386762":{"group":2,"name":"Sticker | pita","count":3},"C3386770":{"group":2,"name":"Sticker | pita (Normal)","count":1},"C3386778":{"group":2,"name":"Sticker | pita (Foil)","count":1},"C3386786":{"group":2,"name":"Sticker | pita (Gold)","count":1},"C3400132234":{"group":2,"name":"Sticker | innocent","count":6},"C3400132242":{"group":2,"name":"Sticker | innocent (Normal)","count":2},"C3400132250":{"group":2,"name":"Sticker | innocent (Foil)","count":2},"C3400132258":{"group":2,"name":"Sticker | innocent (Gold)","count":2},"C3449202570":{"group":2,"name":"Sticker | INS","count":28},"C3449202578":{"group":2,"name":"Sticker | INS (Normal)","count":7},"C3449202586":{"group":2,"name":"Sticker | INS (Foil)","count":2},"C3449202594":{"group":2,"name":"Sticker | INS (Gold)","count":7},"C3449202602":{"group":2,"name":"Sticker | INS (Holo)","count":7},"C3449202610":{"group":2,"name":"Sticker | INS (Glitter)","count":4},"C3449202618":{"group":2,"name":"Sticker | INS (Embroidered)","count":1},"C3455382922":{"group":2,"name":"Sticker | dephh","count":9},"C3455382930":{"group":2,"name":"Sticker | dephh (Normal)","count":3},"C3455382938":{"group":2,"name":"Sticker | dephh (Foil)","count":3},"C3455382946":{"group":2,"name":"Sticker | dephh (Gold)","count":3},"C3467":{"group":3,"name":"Sticker | Titan","count":16},"C3475":{"group":3,"name":"Sticker | Titan (Normal)","count":5},"C3483":{"group":3,"name":"Sticker | Titan (Foil)","count":5},"C3484687882":{"group":2,"name":"Sticker | mixwell","count":6},"C3484687890":{"group":2,"name":"Sticker | mixwell (Normal)","count":2},"C3484687898":{"group":2,"name":"Sticker | mixwell (Foil)","count":2},"C3484687906":{"group":2,"name":"Sticker | mixwell (Gold)","count":2},"C3491":{"group":3,"name":"Sticker | Titan (Gold)","count":3},"C3499":{"group":3,"name":"Sticker | Titan (Holo)","count":3},"C3513335818":{"group":2,"name":"Sticker | device","count":37},"C3513335826":{"group":2,"name":"Sticker | device (Normal)","count":12},"C3513335834":{"group":2,"name":"Sticker | device (Foil)","count":10},"C3513335842":{"group":2,"name":"Sticker | device (Gold)","count":12},"C3513335850":{"group":2,"name":"Sticker | device (Holo)","count":2},"C3513335866":{"group":2,"name":"Sticker | device (Embroidered)","count":1},"C35144924682":{"group":2,"name":"Sticker | gxx-","count":12},"C35144924690":{"group":2,"name":"Sticker | gxx- (Normal)","count":3},"C35144924706":{"group":2,"name":"Sticker | gxx- (Gold)","count":3},"C35144924714":{"group":2,"name":"Sticker | gxx- (Holo)","count":3},"C35144924722":{"group":2,"name":"Sticker | gxx- (Glitter)","count":3},"C357258":{"group":2,"name":"Sticker | Hiko","count":15},"C357266":{"group":2,"name":"Sticker | Hiko (Normal)","count":5},"C357274":{"group":2,"name":"Sticker | Hiko (Foil)","count":5},"C357282":{"group":2,"name":"Sticker | Hiko (Gold)","count":5},"C3595":{"group":3,"name":"Sticker | 3DMAX","count":21},"C3603":{"group":3,"name":"Sticker | 3DMAX (Normal)","count":6},"C3611":{"group":3,"name":"Sticker | 3DMAX (Foil)","count":3},"C36183635978":{"group":2,"name":"Sticker | max","count":12},"C36183635986":{"group":2,"name":"Sticker | max (Normal)","count":3},"C36183635994":{"group":2,"name":"Sticker | max (Foil)","count":1},"C36183636002":{"group":2,"name":"Sticker | max (Gold)","count":3},"C36183636010":{"group":2,"name":"Sticker | max (Holo)","count":3},"C36183636018":{"group":2,"name":"Sticker | max (Glitter)","count":2},"C3618992138":{"group":2,"name":"Sticker | chrisJ","count":27},"C3618992146":{"group":2,"name":"Sticker | chrisJ (Normal)","count":9},"C3618992154":{"group":2,"name":"Sticker | chrisJ (Foil)","count":9},"C3618992162":{"group":2,"name":"Sticker | chrisJ (Gold)","count":9},"C3619":{"group":3,"name":"Sticker | 3DMAX (Gold)","count":5},"C3627":{"group":3,"name":"Sticker | 3DMAX (Holo)","count":5},"C3630267530":{"group":2,"name":"Sticker | olofmeister","count":30},"C3630267538":{"group":2,"name":"Sticker | olofmeister (Normal)","count":10},"C3630267546":{"group":2,"name":"Sticker | olofmeister (Foil)","count":10},"C3630267554":{"group":2,"name":"Sticker | olofmeister (Gold)","count":10},"C3635":{"group":3,"name":"Sticker | 3DMAX (Glitter)","count":1},"C3643":{"group":3,"name":"Sticker | 3DMAX (Embroidered)","count":1},"C3648322570":{"group":2,"name":"Sticker | ScreaM","count":18},"C3648322578":{"group":2,"name":"Sticker | ScreaM (Normal)","count":6},"C3648322586":{"group":2,"name":"Sticker | ScreaM (Foil)","count":6},"C3648322594":{"group":2,"name":"Sticker | ScreaM (Gold)","count":6},"C36651743754":{"group":2,"name":"Sticker | b1t","count":39},"C36651743762":{"group":2,"name":"Sticker | b1t (Normal)","count":10},"C36651743770":{"group":2,"name":"Sticker | b1t (Foil)","count":2},"C36651743778":{"group":2,"name":"Sticker | b1t (Gold)","count":10},"C36651743786":{"group":2,"name":"Sticker | b1t (Holo)","count":10},"C36651743794":{"group":2,"name":"Sticker | b1t (Glitter)","count":6},"C36651743802":{"group":2,"name":"Sticker | b1t (Embroidered)","count":1},"C36952068362":{"group":2,"name":"Sticker | Buzz","count":4},"C36952068370":{"group":2,"name":"Sticker | Buzz (Normal)","count":1},"C36952068378":{"group":2,"name":"Sticker | Buzz (Foil)","count":1},"C36952068386":{"group":2,"name":"Sticker | Buzz (Gold)","count":1},"C36952068394":{"group":2,"name":"Sticker | Buzz (Holo)","count":1},"C36996736266":{"group":2,"name":"Sticker | hardzao","count":4},"C36996736274":{"group":2,"name":"Sticker | hardzao (Normal)","count":1},"C36996736290":{"group":2,"name":"Sticker | hardzao (Gold)","count":1},"C36996736298":{"group":2,"name":"Sticker | hardzao (Holo)","count":1},"C36996736306":{"group":2,"name":"Sticker | hardzao (Glitter)","count":1},"C3723":{"group":3,"name":"Sticker | mousesports","count":39},"C3731":{"group":3,"name":"Sticker | mousesports (Normal)","count":11},"C3732139146":{"group":2,"name":"Sticker | Snappi","count":19},"C3732139154":{"group":2,"name":"Sticker | Snappi (Normal)","count":5},"C3732139162":{"group":2,"name":"Sticker | Snappi (Foil)","count":1},"C3732139170":{"group":2,"name":"Sticker | Snappi (Gold)","count":5},"C3732139178":{"group":2,"name":"Sticker | Snappi (Holo)","count":4},"C3732139186":{"group":2,"name":"Sticker | Snappi (Glitter)","count":3},"C3732139194":{"group":2,"name":"Sticker | Snappi (Embroidered)","count":1},"C3733059210":{"group":2,"name":"Sticker | karrigan","count":59},"C3733059218":{"group":2,"name":"Sticker | karrigan (Normal)","count":17},"C3733059226":{"group":2,"name":"Sticker | karrigan (Foil)","count":10},"C3733059234":{"group":2,"name":"Sticker | karrigan (Gold)","count":17},"C3733059242":{"group":2,"name":"Sticker | karrigan (Holo)","count":8},"C3733059250":{"group":2,"name":"Sticker | karrigan (Glitter)","count":6},"C3733059258":{"group":2,"name":"Sticker | karrigan (Embroidered)","count":1},"C37333251082":{"group":2,"name":"Sticker | chayJESUS","count":8},"C37333251090":{"group":2,"name":"Sticker | chayJESUS (Normal)","count":2},"C37333251098":{"group":2,"name":"Sticker | chayJESUS (Foil)","count":1},"C37333251106":{"group":2,"name":"Sticker | chayJESUS (Gold)","count":2},"C37333251114":{"group":2,"name":"Sticker | chayJESUS (Holo)","count":2},"C37333251130":{"group":2,"name":"Sticker | chayJESUS (Embroidered)","count":1},"C37340009738":{"group":2,"name":"Sticker | Cypher","count":8},"C37340009746":{"group":2,"name":"Sticker | Cypher (Normal)","count":2},"C37340009762":{"group":2,"name":"Sticker | Cypher (Gold)","count":2},"C37340009770":{"group":2,"name":"Sticker | Cypher (Holo)","count":2},"C37340009778":{"group":2,"name":"Sticker | Cypher (Glitter)","count":1},"C37340009786":{"group":2,"name":"Sticker | Cypher (Embroidered)","count":1},"C3739":{"group":3,"name":"Sticker | mousesports (Foil)","count":10},"C37397602826":{"group":2,"name":"Sticker | F1KU","count":12},"C37397602834":{"group":2,"name":"Sticker | F1KU (Normal)","count":3},"C37397602842":{"group":2,"name":"Sticker | F1KU (Foil)","count":1},"C37397602850":{"group":2,"name":"Sticker | F1KU (Gold)","count":3},"C37397602858":{"group":2,"name":"Sticker | F1KU (Holo)","count":3},"C37397602866":{"group":2,"name":"Sticker | F1KU (Glitter)","count":2},"C37436972554":{"group":2,"name":"Sticker | kisserek","count":4},"C37436972562":{"group":2,"name":"Sticker | kisserek (Normal)","count":1},"C37436972570":{"group":2,"name":"Sticker | kisserek (Foil)","count":1},"C37436972578":{"group":2,"name":"Sticker | kisserek (Gold)","count":1},"C37436972586":{"group":2,"name":"Sticker | kisserek (Holo)","count":1},"C3747":{"group":3,"name":"Sticker | mousesports (Gold)","count":10},"C3755":{"group":3,"name":"Sticker | mousesports (Holo)","count":8},"C3755339786":{"group":2,"name":"Sticker | DeadFox","count":12},"C3755339794":{"group":2,"name":"Sticker | DeadFox (Normal)","count":4},"C3755339802":{"group":2,"name":"Sticker | DeadFox (Foil)","count":4},"C3755339810":{"group":2,"name":"Sticker | DeadFox (Gold)","count":4},"C37555813002":{"group":2,"name":"Sticker | BELCHONOKK","count":8},"C37555813010":{"group":2,"name":"Sticker | BELCHONOKK (Normal)","count":2},"C37555813018":{"group":2,"name":"Sticker | BELCHONOKK (Foil)","count":1},"C37555813026":{"group":2,"name":"Sticker | BELCHONOKK (Gold)","count":2},"C37555813034":{"group":2,"name":"Sticker | BELCHONOKK (Holo)","count":2},"C37555813050":{"group":2,"name":"Sticker | BELCHONOKK (Embroidered)","count":1},"C37685888778":{"group":2,"name":"Sticker | hypex","count":4},"C37685888786":{"group":2,"name":"Sticker | hypex (Normal)","count":1},"C37685888794":{"group":2,"name":"Sticker | hypex (Foil)","count":1},"C37685888802":{"group":2,"name":"Sticker | hypex (Gold)","count":1},"C37685888810":{"group":2,"name":"Sticker | hypex (Holo)","count":1},"C3772269450":{"group":2,"name":"Sticker | niko","count":7},"C3772269458":{"group":2,"name":"Sticker | niko (Normal)","count":2},"C3772269466":{"group":2,"name":"Sticker | niko (Foil)","count":1},"C3772269474":{"group":2,"name":"Sticker | niko (Gold)","count":2},"C3772269482":{"group":2,"name":"Sticker | niko (Holo)","count":1},"C3772269490":{"group":2,"name":"Sticker | niko (Glitter)","count":1},"C3773240202":{"group":2,"name":"Sticker | apEX","count":74},"C3773240210":{"group":2,"name":"Sticker | apEX (Normal)","count":21},"C3773240218":{"group":2,"name":"Sticker | apEX (Foil)","count":12},"C3773240226":{"group":2,"name":"Sticker | apEX (Gold)","count":21},"C3773240234":{"group":2,"name":"Sticker | apEX (Holo)","count":12},"C3773240242":{"group":2,"name":"Sticker | apEX (Glitter)","count":6},"C3773240250":{"group":2,"name":"Sticker | apEX (Embroidered)","count":2},"C38479088394":{"group":2,"name":"Sticker | Goofy","count":8},"C38479088402":{"group":2,"name":"Sticker | Goofy (Normal)","count":2},"C38479088418":{"group":2,"name":"Sticker | Goofy (Gold)","count":2},"C38479088426":{"group":2,"name":"Sticker | Goofy (Holo)","count":2},"C38479088434":{"group":2,"name":"Sticker | Goofy (Glitter)","count":2},"C3851":{"group":3,"name":"Sticker | Reason Gaming","count":3},"C3859":{"group":3,"name":"Sticker | Reason Gaming (Normal)","count":1},"C3867":{"group":3,"name":"Sticker | Reason Gaming (Foil)","count":1},"C38680900362":{"group":2,"name":"Sticker | ewjerkz","count":8},"C38680900370":{"group":2,"name":"Sticker | ewjerkz (Normal)","count":2},"C38680900386":{"group":2,"name":"Sticker | ewjerkz (Gold)","count":2},"C38680900394":{"group":2,"name":"Sticker | ewjerkz (Holo)","count":2},"C38680900402":{"group":2,"name":"Sticker | ewjerkz (Glitter)","count":1},"C38680900410":{"group":2,"name":"Sticker | ewjerkz (Embroidered)","count":1},"C3879139978":{"group":2,"name":"Sticker | hazed","count":12},"C3879139986":{"group":2,"name":"Sticker | hazed (Normal)","count":4},"C3879139994":{"group":2,"name":"Sticker | hazed (Foil)","count":4},"C3879140002":{"group":2,"name":"Sticker | hazed (Gold)","count":4},"C3883":{"group":3,"name":"Sticker | Reason Gaming (Holo)","count":1},"C38834014730":{"group":2,"name":"Sticker | CacaNito","count":4},"C38834014738":{"group":2,"name":"Sticker | CacaNito (Normal)","count":1},"C38834014754":{"group":2,"name":"Sticker | CacaNito (Gold)","count":1},"C38834014762":{"group":2,"name":"Sticker | CacaNito (Holo)","count":1},"C38834014770":{"group":2,"name":"Sticker | CacaNito (Glitter)","count":1},"C3893316362":{"group":2,"name":"Sticker | Xyp9x","count":34},"C3893316370":{"group":2,"name":"Sticker | Xyp9x (Normal)","count":11},"C3893316378":{"group":2,"name":"Sticker | Xyp9x (Foil)","count":10},"C3893316386":{"group":2,"name":"Sticker | Xyp9x (Gold)","count":11},"C3893316394":{"group":2,"name":"Sticker | Xyp9x (Holo)","count":1},"C3893316402":{"group":2,"name":"Sticker | Xyp9x (Glitter)","count":1},"C3924362":{"group":2,"name":"Sticker | yam","count":3},"C3924370":{"group":2,"name":"Sticker | yam (Normal)","count":1},"C3924378":{"group":2,"name":"Sticker | yam (Foil)","count":1},"C3924386":{"group":2,"name":"Sticker | yam (Gold)","count":1},"C393":{"group":1,"name":"Sticker | Katowice 2014","count":52},"C395":{"group":3,"name":"Sticker | compLexity Gaming","count":15},"C39564263818":{"group":2,"name":"Sticker | AW","count":4},"C39564263826":{"group":2,"name":"Sticker | AW (Normal)","count":1},"C39564263842":{"group":2,"name":"Sticker | AW (Gold)","count":1},"C39564263850":{"group":2,"name":"Sticker | AW (Holo)","count":1},"C39564263866":{"group":2,"name":"Sticker | AW (Embroidered)","count":1},"C3964027274":{"group":2,"name":"Sticker | roeJ","count":12},"C3964027282":{"group":2,"name":"Sticker | roeJ (Normal)","count":3},"C3964027298":{"group":2,"name":"Sticker | roeJ (Gold)","count":3},"C3964027306":{"group":2,"name":"Sticker | roeJ (Holo)","count":3},"C3964027314":{"group":2,"name":"Sticker | roeJ (Glitter)","count":3},"C3968843530":{"group":2,"name":"Sticker | ropz","count":56},"C3968843538":{"group":2,"name":"Sticker | ropz (Normal)","count":15},"C3968843546":{"group":2,"name":"Sticker | ropz (Foil)","count":7},"C3968843554":{"group":2,"name":"Sticker | ropz (Gold)","count":15},"C3968843562":{"group":2,"name":"Sticker | ropz (Holo)","count":11},"C3968843570":{"group":2,"name":"Sticker | ropz (Glitter)","count":6},"C3968843578":{"group":2,"name":"Sticker | ropz (Embroidered)","count":2},"C3978541450":{"group":2,"name":"Sticker | flusha","count":27},"C3978541458":{"group":2,"name":"Sticker | flusha (Normal)","count":9},"C3978541466":{"group":2,"name":"Sticker | flusha (Foil)","count":9},"C3978541474":{"group":2,"name":"Sticker | flusha (Gold)","count":9},"C3979":{"group":3,"name":"Sticker | Virtus.Pro","count":64},"C3987":{"group":3,"name":"Sticker | Virtus.Pro (Normal)","count":17},"C3989342474":{"group":2,"name":"Sticker | rallen","count":10},"C3989342482":{"group":2,"name":"Sticker | rallen (Normal)","count":3},"C3989342490":{"group":2,"name":"Sticker | rallen (Foil)","count":2},"C3989342498":{"group":2,"name":"Sticker | rallen (Gold)","count":3},"C3989342506":{"group":2,"name":"Sticker | rallen (Holo)","count":1},"C3989342514":{"group":2,"name":"Sticker | rallen (Glitter)","count":1},"C3991728138":{"group":2,"name":"Sticker | denis","count":21},"C3991728146":{"group":2,"name":"Sticker | denis (Normal)","count":7},"C3991728154":{"group":2,"name":"Sticker | denis (Foil)","count":7},"C3991728162":{"group":2,"name":"Sticker | denis (Gold)","count":7},"C3995":{"group":3,"name":"Sticker | Virtus.Pro (Foil)","count":15},"C39994571658":{"group":2,"name":"Sticker | FaNg","count":8},"C39994571666":{"group":2,"name":"Sticker | FaNg (Normal)","count":2},"C39994571682":{"group":2,"name":"Sticker | FaNg (Gold)","count":2},"C39994571690":{"group":2,"name":"Sticker | FaNg (Holo)","count":2},"C39994571698":{"group":2,"name":"Sticker | FaNg (Glitter)","count":2},"C4003":{"group":3,"name":"Sticker | Virtus.Pro (Gold)","count":15},"C401":{"group":1,"name":"Sticker | Katowice 2014 (Normal)","count":16},"C4011":{"group":3,"name":"Sticker | Virtus.Pro (Holo)","count":15},"C4019":{"group":3,"name":"Sticker | Virtus.Pro (Glitter)","count":2},"C403":{"group":3,"name":"Sticker | compLexity Gaming (Normal)","count":4},"C40425148682":{"group":2,"name":"Sticker | ANNIHILATION","count":8},"C40425148690":{"group":2,"name":"Sticker | ANNIHILATION (Normal)","count":2},"C40425148706":{"group":2,"name":"Sticker | ANNIHILATION (Gold)","count":2},"C40425148714":{"group":2,"name":"Sticker | ANNIHILATION (Holo)","count":2},"C40425148722":{"group":2,"name":"Sticker | ANNIHILATION (Glitter)","count":2},"C409":{"group":1,"name":"Sticker | Katowice 2014 (Foil)","count":20},"C4107":{"group":3,"name":"Sticker | Vox Eminor","count":10},"C411":{"group":3,"name":"Sticker | compLexity Gaming (Foil)","count":4},"C4115":{"group":3,"name":"Sticker | Vox Eminor (Normal)","count":3},"C411637898":{"group":2,"name":"Sticker | Rickeh","count":12},"C411637906":{"group":2,"name":"Sticker | Rickeh (Normal)","count":4},"C411637914":{"group":2,"name":"Sticker | Rickeh (Foil)","count":4},"C411637922":{"group":2,"name":"Sticker | Rickeh (Gold)","count":4},"C4123":{"group":3,"name":"Sticker | Vox Eminor (Foil)","count":3},"C4131":{"group":3,"name":"Sticker | Vox Eminor (Gold)","count":1},"C4139":{"group":3,"name":"Sticker | Vox Eminor (Holo)","count":3},"C41436607370":{"group":2,"name":"Sticker | ultimate","count":16},"C41436607378":{"group":2,"name":"Sticker | ultimate (Normal)","count":4},"C41436607386":{"group":2,"name":"Sticker | ultimate (Foil)","count":2},"C41436607394":{"group":2,"name":"Sticker | ultimate (Gold)","count":4},"C41436607402":{"group":2,"name":"Sticker | ultimate (Holo)","count":4},"C41436607410":{"group":2,"name":"Sticker | ultimate (Glitter)","count":1},"C41436607418":{"group":2,"name":"Sticker | ultimate (Embroidered)","count":1},"C414574986":{"group":2,"name":"Sticker | FASHR","count":8},"C414574994":{"group":2,"name":"Sticker | FASHR (Normal)","count":2},"C414575010":{"group":2,"name":"Sticker | FASHR (Gold)","count":2},"C414575018":{"group":2,"name":"Sticker | FASHR (Holo)","count":2},"C414575026":{"group":2,"name":"Sticker | FASHR (Glitter)","count":2},"C419":{"group":3,"name":"Sticker | compLexity Gaming (Gold)","count":3},"C42019209354":{"group":2,"name":"Sticker | Patsi","count":8},"C42019209362":{"group":2,"name":"Sticker | Patsi (Normal)","count":2},"C42019209378":{"group":2,"name":"Sticker | Patsi (Gold)","count":2},"C42019209386":{"group":2,"name":"Sticker | Patsi (Holo)","count":2},"C42019209394":{"group":2,"name":"Sticker | Patsi (Glitter)","count":2},"C4235":{"group":3,"name":"Sticker | Cloud9","count":46},"C4243":{"group":3,"name":"Sticker | Cloud9 (Normal)","count":12},"C425":{"group":1,"name":"Sticker | Katowice 2014 (Holo)","count":16},"C4250732810":{"group":2,"name":"Sticker | fitch","count":6},"C4250732818":{"group":2,"name":"Sticker | fitch (Normal)","count":2},"C4250732826":{"group":2,"name":"Sticker | fitch (Foil)","count":2},"C4250732834":{"group":2,"name":"Sticker | fitch (Gold)","count":2},"C4251":{"group":3,"name":"Sticker | Cloud9 (Foil)","count":8},"C42538633226":{"group":2,"name":"Sticker | Chr1zN","count":8},"C42538633234":{"group":2,"name":"Sticker | Chr1zN (Normal)","count":2},"C42538633242":{"group":2,"name":"Sticker | Chr1zN (Foil)","count":2},"C42538633250":{"group":2,"name":"Sticker | Chr1zN (Gold)","count":2},"C42538633258":{"group":2,"name":"Sticker | Chr1zN (Holo)","count":2},"C4259":{"group":3,"name":"Sticker | Cloud9 (Gold)","count":11},"C4267":{"group":3,"name":"Sticker | Cloud9 (Holo)","count":11},"C427":{"group":3,"name":"Sticker | compLexity Gaming (Holo)","count":4},"C4275":{"group":3,"name":"Sticker | Cloud9 (Glitter)","count":4},"C42766766346":{"group":2,"name":"Sticker | r1nkle","count":4},"C42766766354":{"group":2,"name":"Sticker | r1nkle (Normal)","count":1},"C42766766370":{"group":2,"name":"Sticker | r1nkle (Gold)","count":1},"C42766766378":{"group":2,"name":"Sticker | r1nkle (Holo)","count":1},"C42766766394":{"group":2,"name":"Sticker | r1nkle (Embroidered)","count":1},"C43027482378":{"group":2,"name":"Sticker | kRaSnaL","count":4},"C43027482386":{"group":2,"name":"Sticker | kRaSnaL (Normal)","count":1},"C43027482402":{"group":2,"name":"Sticker | kRaSnaL (Gold)","count":1},"C43027482410":{"group":2,"name":"Sticker | kRaSnaL (Holo)","count":1},"C43027482418":{"group":2,"name":"Sticker | kRaSnaL (Glitter)","count":1},"C4363":{"group":3,"name":"Sticker | dAT team","count":5},"C4366703114":{"group":2,"name":"Sticker | Tuurtle","count":4},"C4366703122":{"group":2,"name":"Sticker | Tuurtle (Normal)","count":1},"C4366703138":{"group":2,"name":"Sticker | Tuurtle (Gold)","count":1},"C4366703146":{"group":2,"name":"Sticker | Tuurtle (Holo)","count":1},"C4366703154":{"group":2,"name":"Sticker | Tuurtle (Glitter)","count":1},"C4368609674":{"group":2,"name":"Sticker | roman","count":4},"C4368609682":{"group":2,"name":"Sticker | roman (Normal)","count":1},"C4368609698":{"group":2,"name":"Sticker | roman (Gold)","count":1},"C4368609706":{"group":2,"name":"Sticker | roman (Holo)","count":1},"C4368609714":{"group":2,"name":"Sticker | roman (Glitter)","count":1},"C4371":{"group":3,"name":"Sticker | dAT team (Normal)","count":2},"C437380234":{"group":2,"name":"Sticker | HS","count":3},"C437380242":{"group":2,"name":"Sticker | HS (Normal)","count":1},"C437380250":{"group":2,"name":"Sticker | HS (Foil)","count":1},"C437380258":{"group":2,"name":"Sticker | HS (Gold)","count":1},"C4379":{"group":3,"name":"Sticker | dAT team (Foil)","count":1},"C4387":{"group":3,"name":"Sticker | dAT team (Gold)","count":1},"C438944778":{"group":2,"name":"Sticker | SIXER","count":6},"C438944786":{"group":2,"name":"Sticker | SIXER (Normal)","count":2},"C438944794":{"group":2,"name":"Sticker | SIXER (Foil)","count":2},"C438944802":{"group":2,"name":"Sticker | SIXER (Gold)","count":2},"C4390897674":{"group":2,"name":"Sticker | SPUNJ","count":3},"C4390897682":{"group":2,"name":"Sticker | SPUNJ (Normal)","count":1},"C4390897690":{"group":2,"name":"Sticker | SPUNJ (Foil)","count":1},"C4390897698":{"group":2,"name":"Sticker | SPUNJ (Gold)","count":1},"C4393233290":{"group":2,"name":"Sticker | Zero","count":3},"C4393233298":{"group":2,"name":"Sticker | Zero (Normal)","count":1},"C4393233306":{"group":2,"name":"Sticker | Zero (Foil)","count":1},"C4393233314":{"group":2,"name":"Sticker | Zero (Gold)","count":1},"C4395":{"group":3,"name":"Sticker | dAT team (Holo)","count":1},"C4398648714":{"group":2,"name":"Sticker | COLDYY1","count":6},"C4398648722":{"group":2,"name":"Sticker | COLDYY1 (Normal)","count":2},"C4398648730":{"group":2,"name":"Sticker | COLDYY1 (Foil)","count":2},"C4398648738":{"group":2,"name":"Sticker | COLDYY1 (Gold)","count":2},"C44012773258":{"group":2,"name":"Sticker | alex666","count":12},"C44012773266":{"group":2,"name":"Sticker | alex666 (Normal)","count":3},"C44012773274":{"group":2,"name":"Sticker | alex666 (Foil)","count":2},"C44012773282":{"group":2,"name":"Sticker | alex666 (Gold)","count":3},"C44012773290":{"group":2,"name":"Sticker | alex666 (Holo)","count":3},"C44012773306":{"group":2,"name":"Sticker | alex666 (Embroidered)","count":1},"C44053937674":{"group":2,"name":"Sticker | stressarN","count":4},"C44053937682":{"group":2,"name":"Sticker | stressarN (Normal)","count":1},"C44053937690":{"group":2,"name":"Sticker | stressarN (Foil)","count":1},"C44053937698":{"group":2,"name":"Sticker | stressarN (Gold)","count":1},"C44053937706":{"group":2,"name":"Sticker | stressarN (Holo)","count":1},"C4410476042":{"group":2,"name":"Sticker | loWel","count":9},"C4410476050":{"group":2,"name":"Sticker | loWel (Normal)","count":3},"C4410476058":{"group":2,"name":"Sticker | loWel (Foil)","count":3},"C4410476066":{"group":2,"name":"Sticker | loWel (Gold)","count":3},"C44130710538":{"group":2,"name":"Sticker | npl","count":16},"C44130710546":{"group":2,"name":"Sticker | npl (Normal)","count":4},"C44130710554":{"group":2,"name":"Sticker | npl (Foil)","count":2},"C44130710562":{"group":2,"name":"Sticker | npl (Gold)","count":4},"C44130710570":{"group":2,"name":"Sticker | npl (Holo)","count":4},"C44130710578":{"group":2,"name":"Sticker | npl (Glitter)","count":1},"C44130710586":{"group":2,"name":"Sticker | npl (Embroidered)","count":1},"C44320452490":{"group":2,"name":"Sticker | floppy","count":16},"C44320452498":{"group":2,"name":"Sticker | floppy (Normal)","count":4},"C44320452514":{"group":2,"name":"Sticker | floppy (Gold)","count":4},"C44320452522":{"group":2,"name":"Sticker | floppy (Holo)","count":4},"C44320452530":{"group":2,"name":"Sticker | floppy (Glitter)","count":4},"C44403991306":{"group":2,"name":"Sticker | decenty","count":16},"C44403991314":{"group":2,"name":"Sticker | decenty (Normal)","count":4},"C44403991322":{"group":2,"name":"Sticker | decenty (Foil)","count":1},"C44403991330":{"group":2,"name":"Sticker | decenty (Gold)","count":4},"C44403991338":{"group":2,"name":"Sticker | decenty (Holo)","count":4},"C44403991346":{"group":2,"name":"Sticker | decenty (Glitter)","count":2},"C44403991354":{"group":2,"name":"Sticker | decenty (Embroidered)","count":1},"C44475998730":{"group":2,"name":"Sticker | rdnzao","count":4},"C44475998738":{"group":2,"name":"Sticker | rdnzao (Normal)","count":1},"C44475998746":{"group":2,"name":"Sticker | rdnzao (Foil)","count":1},"C44475998754":{"group":2,"name":"Sticker | rdnzao (Gold)","count":1},"C44475998762":{"group":2,"name":"Sticker | rdnzao (Holo)","count":1},"C44745448074":{"group":2,"name":"Sticker | SunPayus","count":20},"C44745448082":{"group":2,"name":"Sticker | SunPayus (Normal)","count":5},"C44745448090":{"group":2,"name":"Sticker | SunPayus (Foil)","count":2},"C44745448098":{"group":2,"name":"Sticker | SunPayus (Gold)","count":5},"C44745448106":{"group":2,"name":"Sticker | SunPayus (Holo)","count":5},"C44745448114":{"group":2,"name":"Sticker | SunPayus (Glitter)","count":2},"C44745448122":{"group":2,"name":"Sticker | SunPayus (Embroidered)","count":1},"C44837856138":{"group":2,"name":"Sticker | PR","count":8},"C44837856146":{"group":2,"name":"Sticker | PR (Normal)","count":2},"C44837856154":{"group":2,"name":"Sticker | PR (Foil)","count":1},"C44837856162":{"group":2,"name":"Sticker | PR (Gold)","count":2},"C44837856170":{"group":2,"name":"Sticker | PR (Holo)","count":2},"C44837856186":{"group":2,"name":"Sticker | PR (Embroidered)","count":1},"C4491":{"group":3,"name":"Sticker | Epsilon eSports","count":3},"C4493309834":{"group":2,"name":"Sticker | RUBINO","count":6},"C4493309842":{"group":2,"name":"Sticker | RUBINO (Normal)","count":2},"C4493309850":{"group":2,"name":"Sticker | RUBINO (Foil)","count":2},"C4493309858":{"group":2,"name":"Sticker | RUBINO (Gold)","count":2},"C4499":{"group":3,"name":"Sticker | Epsilon eSports (Normal)","count":1},"C4507":{"group":3,"name":"Sticker | Epsilon eSports (Foil)","count":1},"C4523":{"group":3,"name":"Sticker | Epsilon eSports (Holo)","count":1},"C4523008778":{"group":2,"name":"Sticker | James","count":3},"C4523008786":{"group":2,"name":"Sticker | James (Normal)","count":1},"C4523008794":{"group":2,"name":"Sticker | James (Foil)","count":1},"C4523008802":{"group":2,"name":"Sticker | James (Gold)","count":1},"C4550626954":{"group":2,"name":"Sticker | FL1T","count":30},"C4550626962":{"group":2,"name":"Sticker | FL1T (Normal)","count":8},"C4550626970":{"group":2,"name":"Sticker | FL1T (Foil)","count":2},"C4550626978":{"group":2,"name":"Sticker | FL1T (Gold)","count":8},"C4550626986":{"group":2,"name":"Sticker | FL1T (Holo)","count":7},"C4550626994":{"group":2,"name":"Sticker | FL1T (Glitter)","count":5},"C4559872266":{"group":2,"name":"Sticker | nitr0","count":48},"C4559872274":{"group":2,"name":"Sticker | nitr0 (Normal)","count":14},"C4559872282":{"group":2,"name":"Sticker | nitr0 (Foil)","count":10},"C4559872290":{"group":2,"name":"Sticker | nitr0 (Gold)","count":14},"C4559872298":{"group":2,"name":"Sticker | nitr0 (Holo)","count":6},"C4559872306":{"group":2,"name":"Sticker | nitr0 (Glitter)","count":3},"C4559872314":{"group":2,"name":"Sticker | nitr0 (Embroidered)","count":1},"C4561004554":{"group":2,"name":"Sticker | svyat","count":3},"C4561004562":{"group":2,"name":"Sticker | svyat (Normal)","count":1},"C4561004570":{"group":2,"name":"Sticker | svyat (Foil)","count":1},"C4561004578":{"group":2,"name":"Sticker | svyat (Gold)","count":1},"C45624377098":{"group":2,"name":"Sticker | Tauson","count":8},"C45624377106":{"group":2,"name":"Sticker | Tauson (Normal)","count":2},"C45624377114":{"group":2,"name":"Sticker | Tauson (Foil)","count":1},"C45624377122":{"group":2,"name":"Sticker | Tauson (Gold)","count":2},"C45624377130":{"group":2,"name":"Sticker | Tauson (Holo)","count":2},"C45624377146":{"group":2,"name":"Sticker | Tauson (Embroidered)","count":1},"C45742279178":{"group":2,"name":"Sticker | SANJI","count":3},"C45742279186":{"group":2,"name":"Sticker | SANJI (Normal)","count":1},"C45742279194":{"group":2,"name":"Sticker | SANJI (Foil)","count":1},"C45742279202":{"group":2,"name":"Sticker | SANJI (Gold)","count":1},"C4577418":{"group":2,"name":"Sticker | Maniac","count":3},"C4577426":{"group":2,"name":"Sticker | Maniac (Normal)","count":1},"C4577434":{"group":2,"name":"Sticker | Maniac (Foil)","count":1},"C4577442":{"group":2,"name":"Sticker | Maniac (Gold)","count":1},"C46010557450":{"group":2,"name":"Sticker | HUASOPEEK","count":4},"C46010557458":{"group":2,"name":"Sticker | HUASOPEEK (Normal)","count":1},"C46010557466":{"group":2,"name":"Sticker | HUASOPEEK (Foil)","count":1},"C46010557474":{"group":2,"name":"Sticker | HUASOPEEK (Gold)","count":1},"C46010557482":{"group":2,"name":"Sticker | HUASOPEEK (Holo)","count":1},"C4619":{"group":3,"name":"Sticker | London Conspiracy","count":5},"C4621370378":{"group":2,"name":"Sticker | VINI","count":33},"C4621370386":{"group":2,"name":"Sticker | VINI (Normal)","count":9},"C4621370394":{"group":2,"name":"Sticker | VINI (Foil)","count":3},"C4621370402":{"group":2,"name":"Sticker | VINI (Gold)","count":9},"C4621370410":{"group":2,"name":"Sticker | VINI (Holo)","count":7},"C4621370418":{"group":2,"name":"Sticker | VINI (Glitter)","count":4},"C4621370426":{"group":2,"name":"Sticker | VINI (Embroidered)","count":1},"C4627":{"group":3,"name":"Sticker | London Conspiracy (Normal)","count":2},"C4635":{"group":3,"name":"Sticker | London Conspiracy (Foil)","count":1},"C4643":{"group":3,"name":"Sticker | London Conspiracy (Gold)","count":1},"C4651":{"group":3,"name":"Sticker | London Conspiracy (Holo)","count":1},"C4660806410":{"group":2,"name":"Sticker | TeSeS","count":35},"C4660806418":{"group":2,"name":"Sticker | TeSeS (Normal)","count":9},"C4660806426":{"group":2,"name":"Sticker | TeSeS (Foil)","count":2},"C4660806434":{"group":2,"name":"Sticker | TeSeS (Gold)","count":9},"C4660806442":{"group":2,"name":"Sticker | TeSeS (Holo)","count":9},"C4660806450":{"group":2,"name":"Sticker | TeSeS (Glitter)","count":5},"C4660806458":{"group":2,"name":"Sticker | TeSeS (Embroidered)","count":1},"C466998794":{"group":2,"name":"Sticker | seized","count":21},"C466998802":{"group":2,"name":"Sticker | seized (Normal)","count":7},"C466998810":{"group":2,"name":"Sticker | seized (Foil)","count":7},"C466998818":{"group":2,"name":"Sticker | seized (Gold)","count":7},"C46950713610":{"group":2,"name":"Sticker | soulfly","count":4},"C46950713618":{"group":2,"name":"Sticker | soulfly (Normal)","count":1},"C46950713626":{"group":2,"name":"Sticker | soulfly (Foil)","count":1},"C46950713634":{"group":2,"name":"Sticker | soulfly (Gold)","count":1},"C46950713642":{"group":2,"name":"Sticker | soulfly (Holo)","count":1},"C4701720074":{"group":2,"name":"Sticker | WorldEdit","count":24},"C4701720082":{"group":2,"name":"Sticker | WorldEdit (Normal)","count":8},"C4701720090":{"group":2,"name":"Sticker | WorldEdit (Foil)","count":8},"C4701720098":{"group":2,"name":"Sticker | WorldEdit (Gold)","count":8},"C47216821770":{"group":2,"name":"Sticker | xerolte","count":4},"C47216821778":{"group":2,"name":"Sticker | xerolte (Normal)","count":1},"C47216821794":{"group":2,"name":"Sticker | xerolte (Gold)","count":1},"C47216821802":{"group":2,"name":"Sticker | xerolte (Holo)","count":1},"C47216821818":{"group":2,"name":"Sticker | xerolte (Embroidered)","count":1},"C4733622282":{"group":2,"name":"Sticker | crush","count":6},"C4733622290":{"group":2,"name":"Sticker | crush (Normal)","count":2},"C4733622298":{"group":2,"name":"Sticker | crush (Foil)","count":2},"C4733622306":{"group":2,"name":"Sticker | crush (Gold)","count":2},"C4746941322":{"group":2,"name":"Sticker | rain","count":62},"C4746941330":{"group":2,"name":"Sticker | rain (Normal)","count":18},"C4746941338":{"group":2,"name":"Sticker | rain (Foil)","count":11},"C4746941346":{"group":2,"name":"Sticker | rain (Gold)","count":18},"C4746941354":{"group":2,"name":"Sticker | rain (Holo)","count":8},"C4746941362":{"group":2,"name":"Sticker | rain (Glitter)","count":6},"C4746941370":{"group":2,"name":"Sticker | rain (Embroidered)","count":1},"C4747":{"group":3,"name":"Sticker | MTS GameGod Wolf","count":3},"C4755":{"group":3,"name":"Sticker | MTS GameGod Wolf (Normal)","count":1},"C4763":{"group":3,"name":"Sticker | MTS GameGod Wolf (Foil)","count":1},"C4763510026":{"group":2,"name":"Sticker | tenzki","count":6},"C4763510034":{"group":2,"name":"Sticker | tenzki (Normal)","count":2},"C4763510042":{"group":2,"name":"Sticker | tenzki (Foil)","count":2},"C4763510050":{"group":2,"name":"Sticker | tenzki (Gold)","count":2},"C47690178954":{"group":2,"name":"Sticker | nettik","count":12},"C47690178962":{"group":2,"name":"Sticker | nettik (Normal)","count":3},"C47690178970":{"group":2,"name":"Sticker | nettik (Foil)","count":2},"C47690178978":{"group":2,"name":"Sticker | nettik (Gold)","count":3},"C47690178986":{"group":2,"name":"Sticker | nettik (Holo)","count":3},"C47690179002":{"group":2,"name":"Sticker | nettik (Embroidered)","count":1},"C4773274634":{"group":2,"name":"Sticker | tiziaN","count":10},"C4773274642":{"group":2,"name":"Sticker | tiziaN (Normal)","count":3},"C4773274650":{"group":2,"name":"Sticker | tiziaN (Foil)","count":2},"C4773274658":{"group":2,"name":"Sticker | tiziaN (Gold)","count":3},"C4773274666":{"group":2,"name":"Sticker | tiziaN (Holo)","count":1},"C4773274674":{"group":2,"name":"Sticker | tiziaN (Glitter)","count":1},"C4779":{"group":3,"name":"Sticker | MTS GameGod Wolf (Holo)","count":1},"C47942284938":{"group":2,"name":"Sticker | reck","count":4},"C47942284946":{"group":2,"name":"Sticker | reck (Normal)","count":1},"C47942284954":{"group":2,"name":"Sticker | reck (Foil)","count":1},"C47942284962":{"group":2,"name":"Sticker | reck (Gold)","count":1},"C47942284970":{"group":2,"name":"Sticker | reck (Holo)","count":1},"C4827576586":{"group":2,"name":"Sticker | MUTiRiS","count":4},"C4827576594":{"group":2,"name":"Sticker | MUTiRiS (Normal)","count":1},"C4827576610":{"group":2,"name":"Sticker | MUTiRiS (Gold)","count":1},"C4827576618":{"group":2,"name":"Sticker | MUTiRiS (Holo)","count":1},"C4827576626":{"group":2,"name":"Sticker | MUTiRiS (Glitter)","count":1},"C48283963914":{"group":2,"name":"Sticker | Lake","count":12},"C48283963922":{"group":2,"name":"Sticker | Lake (Normal)","count":3},"C48283963930":{"group":2,"name":"Sticker | Lake (Foil)","count":2},"C48283963938":{"group":2,"name":"Sticker | Lake (Gold)","count":3},"C48283963946":{"group":2,"name":"Sticker | Lake (Holo)","count":3},"C48283963962":{"group":2,"name":"Sticker | Lake (Embroidered)","count":1},"C4855249674":{"group":2,"name":"Sticker | mopoz","count":4},"C4855249682":{"group":2,"name":"Sticker | mopoz (Normal)","count":1},"C4855249698":{"group":2,"name":"Sticker | mopoz (Gold)","count":1},"C4855249706":{"group":2,"name":"Sticker | mopoz (Holo)","count":1},"C4855249714":{"group":2,"name":"Sticker | mopoz (Glitter)","count":1},"C4875":{"group":3,"name":"Sticker | myXMG","count":2},"C4883":{"group":3,"name":"Sticker | myXMG (Normal)","count":1},"C48953912330":{"group":2,"name":"Sticker | susp","count":12},"C48953912338":{"group":2,"name":"Sticker | susp (Normal)","count":3},"C48953912346":{"group":2,"name":"Sticker | susp (Foil)","count":2},"C48953912354":{"group":2,"name":"Sticker | susp (Gold)","count":3},"C48953912362":{"group":2,"name":"Sticker | susp (Holo)","count":3},"C48953912370":{"group":2,"name":"Sticker | susp (Glitter)","count":1},"C4899":{"group":3,"name":"Sticker | myXMG (Gold)","count":1},"C4907644170":{"group":2,"name":"Sticker | wayLander","count":18},"C4907644178":{"group":2,"name":"Sticker | wayLander (Normal)","count":6},"C4907644186":{"group":2,"name":"Sticker | wayLander (Foil)","count":6},"C4907644194":{"group":2,"name":"Sticker | wayLander (Gold)","count":6},"C49147041034":{"group":2,"name":"Sticker | Gizmy","count":4},"C49147041042":{"group":2,"name":"Sticker | Gizmy (Normal)","count":1},"C49147041050":{"group":2,"name":"Sticker | Gizmy (Foil)","count":1},"C49147041058":{"group":2,"name":"Sticker | Gizmy (Gold)","count":1},"C49147041066":{"group":2,"name":"Sticker | Gizmy (Holo)","count":1},"C4929213578":{"group":2,"name":"Sticker | xms","count":3},"C4929213586":{"group":2,"name":"Sticker | xms (Normal)","count":1},"C4929213594":{"group":2,"name":"Sticker | xms (Foil)","count":1},"C4929213602":{"group":2,"name":"Sticker | xms (Gold)","count":1},"C4948613386":{"group":2,"name":"Sticker | HooXi","count":20},"C4948613394":{"group":2,"name":"Sticker | HooXi (Normal)","count":5},"C4948613402":{"group":2,"name":"Sticker | HooXi (Foil)","count":1},"C4948613410":{"group":2,"name":"Sticker | HooXi (Gold)","count":5},"C4948613418":{"group":2,"name":"Sticker | HooXi (Holo)","count":5},"C4948613426":{"group":2,"name":"Sticker | HooXi (Glitter)","count":3},"C4948613434":{"group":2,"name":"Sticker | HooXi (Embroidered)","count":1},"C4958500106":{"group":2,"name":"Sticker | Stewie2K","count":18},"C4958500114":{"group":2,"name":"Sticker | Stewie2K (Normal)","count":6},"C4958500122":{"group":2,"name":"Sticker | Stewie2K (Foil)","count":6},"C4958500130":{"group":2,"name":"Sticker | Stewie2K (Gold)","count":6},"C4981916042":{"group":2,"name":"Sticker | fer","count":38},"C4981916050":{"group":2,"name":"Sticker | fer (Normal)","count":12},"C4981916058":{"group":2,"name":"Sticker | fer (Foil)","count":10},"C4981916066":{"group":2,"name":"Sticker | fer (Gold)","count":12},"C4981916074":{"group":2,"name":"Sticker | fer (Holo)","count":2},"C4981916082":{"group":2,"name":"Sticker | fer (Glitter)","count":2},"C49914287370":{"group":2,"name":"Sticker | MoDo","count":4},"C49914287378":{"group":2,"name":"Sticker | MoDo (Normal)","count":1},"C49914287386":{"group":2,"name":"Sticker | MoDo (Foil)","count":1},"C49914287394":{"group":2,"name":"Sticker | MoDo (Gold)","count":1},"C49914287402":{"group":2,"name":"Sticker | MoDo (Holo)","count":1},"C49929827466":{"group":2,"name":"Sticker | NQZ","count":24},"C49929827474":{"group":2,"name":"Sticker | NQZ (Normal)","count":6},"C49929827482":{"group":2,"name":"Sticker | NQZ (Foil)","count":2},"C49929827490":{"group":2,"name":"Sticker | NQZ (Gold)","count":6},"C49929827498":{"group":2,"name":"Sticker | NQZ (Holo)","count":6},"C49929827506":{"group":2,"name":"Sticker | NQZ (Glitter)","count":3},"C49929827514":{"group":2,"name":"Sticker | NQZ (Embroidered)","count":1},"C49932361482":{"group":2,"name":"Sticker | r3salt","count":4},"C49932361490":{"group":2,"name":"Sticker | r3salt (Normal)","count":1},"C49932361506":{"group":2,"name":"Sticker | r3salt (Gold)","count":1},"C49932361514":{"group":2,"name":"Sticker | r3salt (Holo)","count":1},"C49932361522":{"group":2,"name":"Sticker | r3salt (Glitter)","count":1},"C49963612298":{"group":2,"name":"Sticker | Kursy","count":4},"C49963612306":{"group":2,"name":"Sticker | Kursy (Normal)","count":1},"C49963612322":{"group":2,"name":"Sticker | Kursy (Gold)","count":1},"C49963612330":{"group":2,"name":"Sticker | Kursy (Holo)","count":1},"C49963612346":{"group":2,"name":"Sticker | Kursy (Embroidered)","count":1},"C5003":{"group":3,"name":"Sticker | PENTA Sports","count":10},"C5011":{"group":3,"name":"Sticker | PENTA Sports (Normal)","count":3},"C5019":{"group":3,"name":"Sticker | PENTA Sports (Foil)","count":2},"C50225968138":{"group":2,"name":"Sticker | ChildKing","count":8},"C50225968146":{"group":2,"name":"Sticker | ChildKing (Normal)","count":2},"C50225968162":{"group":2,"name":"Sticker | ChildKing (Gold)","count":2},"C50225968170":{"group":2,"name":"Sticker | ChildKing (Holo)","count":2},"C50225968178":{"group":2,"name":"Sticker | ChildKing (Glitter)","count":1},"C50225968186":{"group":2,"name":"Sticker | ChildKing (Embroidered)","count":1},"C5026117898":{"group":2,"name":"Sticker | Sico","count":15},"C5026117906":{"group":2,"name":"Sticker | Sico (Normal)","count":4},"C5026117914":{"group":2,"name":"Sticker | Sico (Foil)","count":1},"C5026117922":{"group":2,"name":"Sticker | Sico (Gold)","count":4},"C5026117930":{"group":2,"name":"Sticker | Sico (Holo)","count":3},"C5026117938":{"group":2,"name":"Sticker | Sico (Glitter)","count":3},"C5027":{"group":3,"name":"Sticker | PENTA Sports (Gold)","count":3},"C5035":{"group":3,"name":"Sticker | PENTA Sports (Holo)","count":2},"C50381261706":{"group":2,"name":"Sticker | jeorge","count":8},"C50381261714":{"group":2,"name":"Sticker | jeorge (Normal)","count":2},"C50381261722":{"group":2,"name":"Sticker | jeorge (Foil)","count":1},"C50381261730":{"group":2,"name":"Sticker | jeorge (Gold)","count":2},"C50381261738":{"group":2,"name":"Sticker | jeorge (Holo)","count":2},"C50381261754":{"group":2,"name":"Sticker | jeorge (Embroidered)","count":1},"C50551269642":{"group":2,"name":"Sticker | Moseyuh","count":12},"C50551269650":{"group":2,"name":"Sticker | Moseyuh (Normal)","count":3},"C50551269658":{"group":2,"name":"Sticker | Moseyuh (Foil)","count":2},"C50551269666":{"group":2,"name":"Sticker | Moseyuh (Gold)","count":3},"C50551269674":{"group":2,"name":"Sticker | Moseyuh (Holo)","count":3},"C50551269690":{"group":2,"name":"Sticker | Moseyuh (Embroidered)","count":1},"C50620605962":{"group":2,"name":"Sticker | torzsi","count":28},"C50620605970":{"group":2,"name":"Sticker | torzsi (Normal)","count":7},"C50620605978":{"group":2,"name":"Sticker | torzsi (Foil)","count":2},"C50620605986":{"group":2,"name":"Sticker | torzsi (Gold)","count":7},"C50620605994":{"group":2,"name":"Sticker | torzsi (Holo)","count":7},"C50620606002":{"group":2,"name":"Sticker | torzsi (Glitter)","count":4},"C50620606010":{"group":2,"name":"Sticker | torzsi (Embroidered)","count":1},"C5063640842":{"group":2,"name":"Sticker | nexa","count":14},"C5063640850":{"group":2,"name":"Sticker | nexa (Normal)","count":4},"C5063640858":{"group":2,"name":"Sticker | nexa (Foil)","count":1},"C5063640866":{"group":2,"name":"Sticker | nexa (Gold)","count":4},"C5063640874":{"group":2,"name":"Sticker | nexa (Holo)","count":3},"C5063640882":{"group":2,"name":"Sticker | nexa (Glitter)","count":2},"C51104537866":{"group":2,"name":"Sticker | headtr1ck","count":12},"C51104537874":{"group":2,"name":"Sticker | headtr1ck (Normal)","count":3},"C51104537882":{"group":2,"name":"Sticker | headtr1ck (Foil)","count":1},"C51104537890":{"group":2,"name":"Sticker | headtr1ck (Gold)","count":3},"C51104537898":{"group":2,"name":"Sticker | headtr1ck (Holo)","count":3},"C51104537906":{"group":2,"name":"Sticker | headtr1ck (Glitter)","count":1},"C51104537914":{"group":2,"name":"Sticker | headtr1ck (Embroidered)","count":1},"C51218164874":{"group":2,"name":"Sticker | Jee","count":16},"C51218164882":{"group":2,"name":"Sticker | Jee (Normal)","count":4},"C51218164890":{"group":2,"name":"Sticker | Jee (Foil)","count":2},"C51218164898":{"group":2,"name":"Sticker | Jee (Gold)","count":4},"C51218164906":{"group":2,"name":"Sticker | Jee (Holo)","count":4},"C51218164914":{"group":2,"name":"Sticker | Jee (Glitter)","count":1},"C51218164922":{"group":2,"name":"Sticker | Jee (Embroidered)","count":1},"C5131":{"group":3,"name":"Sticker | Bravado Gaming","count":2},"C5139":{"group":3,"name":"Sticker | Bravado Gaming (Normal)","count":1},"C51478072714":{"group":2,"name":"Sticker | controlez","count":4},"C51478072722":{"group":2,"name":"Sticker | controlez (Normal)","count":1},"C51478072730":{"group":2,"name":"Sticker | controlez (Foil)","count":1},"C51478072738":{"group":2,"name":"Sticker | controlez (Gold)","count":1},"C51478072746":{"group":2,"name":"Sticker | controlez (Holo)","count":1},"C51545421322":{"group":2,"name":"Sticker | xKacpersky","count":4},"C51545421330":{"group":2,"name":"Sticker | xKacpersky (Normal)","count":1},"C51545421346":{"group":2,"name":"Sticker | xKacpersky (Gold)","count":1},"C51545421354":{"group":2,"name":"Sticker | xKacpersky (Holo)","count":1},"C51545421370":{"group":2,"name":"Sticker | xKacpersky (Embroidered)","count":1},"C51546239370":{"group":2,"name":"Sticker | TRAVIS","count":4},"C51546239378":{"group":2,"name":"Sticker | TRAVIS (Normal)","count":1},"C51546239394":{"group":2,"name":"Sticker | TRAVIS (Gold)","count":1},"C51546239402":{"group":2,"name":"Sticker | TRAVIS (Holo)","count":1},"C51546239410":{"group":2,"name":"Sticker | TRAVIS (Glitter)","count":1},"C5155":{"group":3,"name":"Sticker | Bravado Gaming (Gold)","count":1},"C51797927690":{"group":2,"name":"Sticker | JamYoung","count":12},"C51797927698":{"group":2,"name":"Sticker | JamYoung (Normal)","count":3},"C51797927706":{"group":2,"name":"Sticker | JamYoung (Foil)","count":2},"C51797927714":{"group":2,"name":"Sticker | JamYoung (Gold)","count":3},"C51797927722":{"group":2,"name":"Sticker | JamYoung (Holo)","count":3},"C51797927738":{"group":2,"name":"Sticker | JamYoung (Embroidered)","count":1},"C51821127690":{"group":2,"name":"Sticker | TRY","count":16},"C51821127698":{"group":2,"name":"Sticker | TRY (Normal)","count":4},"C51821127706":{"group":2,"name":"Sticker | TRY (Foil)","count":1},"C51821127714":{"group":2,"name":"Sticker | TRY (Gold)","count":4},"C51821127722":{"group":2,"name":"Sticker | TRY (Holo)","count":4},"C51821127730":{"group":2,"name":"Sticker | TRY (Glitter)","count":2},"C51821127738":{"group":2,"name":"Sticker | TRY (Embroidered)","count":1},"C5186197386":{"group":2,"name":"Sticker | kioShiMa","count":18},"C5186197394":{"group":2,"name":"Sticker | kioShiMa (Normal)","count":6},"C5186197402":{"group":2,"name":"Sticker | kioShiMa (Foil)","count":6},"C5186197410":{"group":2,"name":"Sticker | kioShiMa (Gold)","count":6},"C51895292426":{"group":2,"name":"Sticker | shalfey","count":8},"C51895292434":{"group":2,"name":"Sticker | shalfey (Normal)","count":2},"C51895292450":{"group":2,"name":"Sticker | shalfey (Gold)","count":2},"C51895292458":{"group":2,"name":"Sticker | shalfey (Holo)","count":2},"C51895292466":{"group":2,"name":"Sticker | shalfey (Glitter)","count":2},"C5191945738":{"group":2,"name":"Sticker | mir","count":13},"C5191945746":{"group":2,"name":"Sticker | mir (Normal)","count":4},"C5191945754":{"group":2,"name":"Sticker | mir (Foil)","count":3},"C5191945762":{"group":2,"name":"Sticker | mir (Gold)","count":4},"C5191945770":{"group":2,"name":"Sticker | mir (Holo)","count":1},"C5191945778":{"group":2,"name":"Sticker | mir (Glitter)","count":1},"C521":{"group":1,"name":"Sticker | Cologne 2014","count":51},"C5233403786":{"group":2,"name":"Sticker | NAF","count":46},"C5233403794":{"group":2,"name":"Sticker | NAF (Normal)","count":13},"C5233403802":{"group":2,"name":"Sticker | NAF (Foil)","count":8},"C5233403810":{"group":2,"name":"Sticker | NAF (Gold)","count":13},"C5233403818":{"group":2,"name":"Sticker | NAF (Holo)","count":7},"C5233403826":{"group":2,"name":"Sticker | NAF (Glitter)","count":4},"C5233403834":{"group":2,"name":"Sticker | NAF (Embroidered)","count":1},"C5245760650":{"group":2,"name":"Sticker | Kvik","count":9},"C5245760658":{"group":2,"name":"Sticker | Kvik (Normal)","count":3},"C5245760666":{"group":2,"name":"Sticker | Kvik (Foil)","count":3},"C5245760674":{"group":2,"name":"Sticker | Kvik (Gold)","count":3},"C52468602122":{"group":2,"name":"Sticker | gr1ks","count":4},"C52468602130":{"group":2,"name":"Sticker | gr1ks (Normal)","count":1},"C52468602138":{"group":2,"name":"Sticker | gr1ks (Foil)","count":1},"C52468602146":{"group":2,"name":"Sticker | gr1ks (Gold)","count":1},"C52468602154":{"group":2,"name":"Sticker | gr1ks (Holo)","count":1},"C5259":{"group":3,"name":"Sticker | Planetkey Dynamics","count":2},"C5267":{"group":3,"name":"Sticker | Planetkey Dynamics (Normal)","count":1},"C52704958218":{"group":2,"name":"Sticker | Magnojez","count":8},"C52704958226":{"group":2,"name":"Sticker | Magnojez (Normal)","count":2},"C52704958234":{"group":2,"name":"Sticker | Magnojez (Foil)","count":2},"C52704958242":{"group":2,"name":"Sticker | Magnojez (Gold)","count":2},"C52704958250":{"group":2,"name":"Sticker | Magnojez (Holo)","count":2},"C52707466":{"group":2,"name":"Sticker | arya","count":3},"C52707474":{"group":2,"name":"Sticker | arya (Normal)","count":1},"C52707482":{"group":2,"name":"Sticker | arya (Foil)","count":1},"C52707490":{"group":2,"name":"Sticker | arya (Gold)","count":1},"C5283":{"group":3,"name":"Sticker | Planetkey Dynamics (Gold)","count":1},"C529":{"group":1,"name":"Sticker | Cologne 2014 (Normal)","count":19},"C53384975114":{"group":2,"name":"Sticker | snow","count":16},"C53384975122":{"group":2,"name":"Sticker | snow (Normal)","count":4},"C53384975130":{"group":2,"name":"Sticker | snow (Foil)","count":2},"C53384975138":{"group":2,"name":"Sticker | snow (Gold)","count":4},"C53384975146":{"group":2,"name":"Sticker | snow (Holo)","count":4},"C53384975154":{"group":2,"name":"Sticker | snow (Glitter)","count":1},"C53384975162":{"group":2,"name":"Sticker | snow (Embroidered)","count":1},"C5348615306":{"group":2,"name":"Sticker | advent","count":3},"C5348615314":{"group":2,"name":"Sticker | advent (Normal)","count":1},"C5348615322":{"group":2,"name":"Sticker | advent (Foil)","count":1},"C5348615330":{"group":2,"name":"Sticker | advent (Gold)","count":1},"C537":{"group":1,"name":"Sticker | Cologne 2014 (Foil)","count":16},"C5387":{"group":3,"name":"Sticker | ESC Gaming","count":2},"C5389622154":{"group":2,"name":"Sticker | kinqie","count":3},"C5389622162":{"group":2,"name":"Sticker | kinqie (Normal)","count":1},"C5389622170":{"group":2,"name":"Sticker | kinqie (Foil)","count":1},"C5389622178":{"group":2,"name":"Sticker | kinqie (Gold)","count":1},"C5395":{"group":3,"name":"Sticker | ESC Gaming (Normal)","count":1},"C54004215178":{"group":2,"name":"Sticker | kensizor","count":12},"C54004215186":{"group":2,"name":"Sticker | kensizor (Normal)","count":3},"C54004215194":{"group":2,"name":"Sticker | kensizor (Foil)","count":2},"C54004215202":{"group":2,"name":"Sticker | kensizor (Gold)","count":3},"C54004215210":{"group":2,"name":"Sticker | kensizor (Holo)","count":3},"C54004215226":{"group":2,"name":"Sticker | kensizor (Embroidered)","count":1},"C5411":{"group":3,"name":"Sticker | ESC Gaming (Gold)","count":1},"C5432693002":{"group":2,"name":"Sticker | jkaem","count":26},"C5432693010":{"group":2,"name":"Sticker | jkaem (Normal)","count":8},"C5432693018":{"group":2,"name":"Sticker | jkaem (Foil)","count":6},"C5432693026":{"group":2,"name":"Sticker | jkaem (Gold)","count":8},"C5432693034":{"group":2,"name":"Sticker | jkaem (Holo)","count":2},"C5432693042":{"group":2,"name":"Sticker | jkaem (Glitter)","count":2},"C54331786":{"group":2,"name":"Sticker | FalleN","count":58},"C54331794":{"group":2,"name":"Sticker | FalleN (Normal)","count":17},"C54331802":{"group":2,"name":"Sticker | FalleN (Foil)","count":12},"C54331810":{"group":2,"name":"Sticker | FalleN (Gold)","count":17},"C54331818":{"group":2,"name":"Sticker | FalleN (Holo)","count":7},"C54331826":{"group":2,"name":"Sticker | FalleN (Glitter)","count":4},"C54331834":{"group":2,"name":"Sticker | FalleN (Embroidered)","count":1},"C54450169226":{"group":2,"name":"Sticker | kauez","count":12},"C54450169234":{"group":2,"name":"Sticker | kauez (Normal)","count":3},"C54450169250":{"group":2,"name":"Sticker | kauez (Gold)","count":3},"C54450169258":{"group":2,"name":"Sticker | kauez (Holo)","count":3},"C54450169266":{"group":2,"name":"Sticker | kauez (Glitter)","count":2},"C54450169274":{"group":2,"name":"Sticker | kauez (Embroidered)","count":1},"C54527968650":{"group":2,"name":"Sticker | donk","count":24},"C54527968658":{"group":2,"name":"Sticker | donk (Normal)","count":6},"C54527968666":{"group":2,"name":"Sticker | donk (Foil)","count":2},"C54527968674":{"group":2,"name":"Sticker | donk (Gold)","count":6},"C54527968682":{"group":2,"name":"Sticker | donk (Holo)","count":6},"C54527968690":{"group":2,"name":"Sticker | donk (Glitter)","count":3},"C54527968698":{"group":2,"name":"Sticker | donk (Embroidered)","count":1},"C5462660490":{"group":2,"name":"Sticker | acoR","count":12},"C5462660498":{"group":2,"name":"Sticker | acoR (Normal)","count":3},"C5462660514":{"group":2,"name":"Sticker | acoR (Gold)","count":3},"C5462660522":{"group":2,"name":"Sticker | acoR (Holo)","count":3},"C5462660530":{"group":2,"name":"Sticker | acoR (Glitter)","count":3},"C54757229322":{"group":2,"name":"Sticker | drop","count":23},"C54757229330":{"group":2,"name":"Sticker | drop (Normal)","count":6},"C54757229346":{"group":2,"name":"Sticker | drop (Gold)","count":6},"C54757229354":{"group":2,"name":"Sticker | drop (Holo)","count":6},"C54757229362":{"group":2,"name":"Sticker | drop (Glitter)","count":4},"C54757229370":{"group":2,"name":"Sticker | drop (Embroidered)","count":1},"C5488183690":{"group":2,"name":"Sticker | WOOD7","count":8},"C5488183698":{"group":2,"name":"Sticker | WOOD7 (Normal)","count":2},"C5488183714":{"group":2,"name":"Sticker | WOOD7 (Gold)","count":2},"C5488183722":{"group":2,"name":"Sticker | WOOD7 (Holo)","count":2},"C5488183730":{"group":2,"name":"Sticker | WOOD7 (Glitter)","count":2},"C5515":{"group":3,"name":"Sticker | Flipsid3 Tactics","count":32},"C5523":{"group":3,"name":"Sticker | Flipsid3 Tactics (Normal)","count":9},"C553":{"group":1,"name":"Sticker | Cologne 2014 (Holo)","count":16},"C5531":{"group":3,"name":"Sticker | Flipsid3 Tactics (Foil)","count":8},"C5539":{"group":3,"name":"Sticker | Flipsid3 Tactics (Gold)","count":9},"C5547":{"group":3,"name":"Sticker | Flipsid3 Tactics (Holo)","count":6},"C5566785418":{"group":2,"name":"Sticker | jR","count":12},"C5566785426":{"group":2,"name":"Sticker | jR (Normal)","count":4},"C5566785434":{"group":2,"name":"Sticker | jR (Foil)","count":4},"C5566785442":{"group":2,"name":"Sticker | jR (Gold)","count":4},"C55817274250":{"group":2,"name":"Sticker | piriajr","count":8},"C55817274258":{"group":2,"name":"Sticker | piriajr (Normal)","count":2},"C55817274266":{"group":2,"name":"Sticker | piriajr (Foil)","count":2},"C55817274274":{"group":2,"name":"Sticker | piriajr (Gold)","count":2},"C55817274282":{"group":2,"name":"Sticker | piriajr (Holo)","count":2},"C5612772874":{"group":2,"name":"Sticker | cadiaN","count":18},"C5612772882":{"group":2,"name":"Sticker | cadiaN (Normal)","count":5},"C5612772890":{"group":2,"name":"Sticker | cadiaN (Foil)","count":1},"C5612772898":{"group":2,"name":"Sticker | cadiaN (Gold)","count":5},"C5612772906":{"group":2,"name":"Sticker | cadiaN (Holo)","count":4},"C5612772914":{"group":2,"name":"Sticker | cadiaN (Glitter)","count":3},"C56220221322":{"group":2,"name":"Sticker | mlhzin","count":4},"C56220221330":{"group":2,"name":"Sticker | mlhzin (Normal)","count":1},"C56220221338":{"group":2,"name":"Sticker | mlhzin (Foil)","count":1},"C56220221346":{"group":2,"name":"Sticker | mlhzin (Gold)","count":1},"C56220221354":{"group":2,"name":"Sticker | mlhzin (Holo)","count":1},"C56368710922":{"group":2,"name":"Sticker | KENSi","count":4},"C56368710930":{"group":2,"name":"Sticker | KENSi (Normal)","count":1},"C56368710946":{"group":2,"name":"Sticker | KENSi (Gold)","count":1},"C56368710954":{"group":2,"name":"Sticker | KENSi (Holo)","count":1},"C56368710962":{"group":2,"name":"Sticker | KENSi (Glitter)","count":1},"C5662543754":{"group":2,"name":"Sticker | DEVIL","count":6},"C5662543762":{"group":2,"name":"Sticker | DEVIL (Normal)","count":2},"C5662543770":{"group":2,"name":"Sticker | DEVIL (Foil)","count":2},"C5662543778":{"group":2,"name":"Sticker | DEVIL (Gold)","count":2},"C56940170":{"group":2,"name":"Sticker | NBK-","count":27},"C56940178":{"group":2,"name":"Sticker | NBK- (Normal)","count":9},"C56940186":{"group":2,"name":"Sticker | NBK- (Foil)","count":9},"C56940194":{"group":2,"name":"Sticker | NBK- (Gold)","count":9},"C5707421194":{"group":2,"name":"Sticker | dupreeh","count":46},"C5707421202":{"group":2,"name":"Sticker | dupreeh (Normal)","count":14},"C5707421210":{"group":2,"name":"Sticker | dupreeh (Foil)","count":10},"C5707421218":{"group":2,"name":"Sticker | dupreeh (Gold)","count":14},"C5707421226":{"group":2,"name":"Sticker | dupreeh (Holo)","count":4},"C5707421234":{"group":2,"name":"Sticker | dupreeh (Glitter)","count":4},"C5709530378":{"group":2,"name":"Sticker | ALEX","count":6},"C5709530386":{"group":2,"name":"Sticker | ALEX (Normal)","count":2},"C5709530394":{"group":2,"name":"Sticker | ALEX (Foil)","count":2},"C5709530402":{"group":2,"name":"Sticker | ALEX (Gold)","count":2},"C5728323850":{"group":2,"name":"Sticker | GruBy","count":6},"C5728323858":{"group":2,"name":"Sticker | GruBy (Normal)","count":2},"C5728323866":{"group":2,"name":"Sticker | GruBy (Foil)","count":2},"C5728323874":{"group":2,"name":"Sticker | GruBy (Gold)","count":2},"C57335464330":{"group":2,"name":"Sticker | phzy","count":12},"C57335464338":{"group":2,"name":"Sticker | phzy (Normal)","count":3},"C57335464346":{"group":2,"name":"Sticker | phzy (Foil)","count":2},"C57335464354":{"group":2,"name":"Sticker | phzy (Gold)","count":3},"C57335464362":{"group":2,"name":"Sticker | phzy (Holo)","count":3},"C57335464370":{"group":2,"name":"Sticker | phzy (Glitter)","count":1},"C5739787402":{"group":2,"name":"Sticker | Staehr","count":12},"C5739787410":{"group":2,"name":"Sticker | Staehr (Normal)","count":3},"C5739787418":{"group":2,"name":"Sticker | Staehr (Foil)","count":1},"C5739787426":{"group":2,"name":"Sticker | Staehr (Gold)","count":3},"C5739787434":{"group":2,"name":"Sticker | Staehr (Holo)","count":3},"C5739787442":{"group":2,"name":"Sticker | Staehr (Glitter)","count":1},"C5739787450":{"group":2,"name":"Sticker | Staehr (Embroidered)","count":1},"C57576893834":{"group":2,"name":"Sticker | nicx","count":8},"C57576893842":{"group":2,"name":"Sticker | nicx (Normal)","count":2},"C57576893850":{"group":2,"name":"Sticker | nicx (Foil)","count":1},"C57576893858":{"group":2,"name":"Sticker | nicx (Gold)","count":2},"C57576893866":{"group":2,"name":"Sticker | nicx (Holo)","count":2},"C57576893882":{"group":2,"name":"Sticker | nicx (Embroidered)","count":1},"C57662020490":{"group":2,"name":"Sticker | jottAAA","count":8},"C57662020498":{"group":2,"name":"Sticker | jottAAA (Normal)","count":2},"C57662020506":{"group":2,"name":"Sticker | jottAAA (Foil)","count":1},"C57662020514":{"group":2,"name":"Sticker | jottAAA (Gold)","count":2},"C57662020522":{"group":2,"name":"Sticker | jottAAA (Holo)","count":2},"C57662020538":{"group":2,"name":"Sticker | jottAAA (Embroidered)","count":1},"C578038538":{"group":2,"name":"Sticker | shroud","count":12},"C578038546":{"group":2,"name":"Sticker | shroud (Normal)","count":4},"C578038554":{"group":2,"name":"Sticker | shroud (Foil)","count":4},"C578038562":{"group":2,"name":"Sticker | shroud (Gold)","count":4},"C58383669258":{"group":2,"name":"Sticker | C4LLM3SU3","count":12},"C58383669266":{"group":2,"name":"Sticker | C4LLM3SU3 (Normal)","count":3},"C58383669274":{"group":2,"name":"Sticker | C4LLM3SU3 (Foil)","count":2},"C58383669282":{"group":2,"name":"Sticker | C4LLM3SU3 (Gold)","count":3},"C58383669290":{"group":2,"name":"Sticker | C4LLM3SU3 (Holo)","count":3},"C58383669306":{"group":2,"name":"Sticker | C4LLM3SU3 (Embroidered)","count":1},"C5849886858":{"group":2,"name":"Sticker | Kyojin","count":3},"C5849886866":{"group":2,"name":"Sticker | Kyojin (Normal)","count":1},"C5849886882":{"group":2,"name":"Sticker | Kyojin (Gold)","count":1},"C5849886890":{"group":2,"name":"Sticker | Kyojin (Holo)","count":1},"C58506537994":{"group":2,"name":"Sticker | dav1g","count":4},"C58506538002":{"group":2,"name":"Sticker | dav1g (Normal)","count":1},"C58506538018":{"group":2,"name":"Sticker | dav1g (Gold)","count":1},"C58506538026":{"group":2,"name":"Sticker | dav1g (Holo)","count":1},"C58506538034":{"group":2,"name":"Sticker | dav1g (Glitter)","count":1},"C58906378":{"group":2,"name":"Sticker | NEO","count":27},"C58906386":{"group":2,"name":"Sticker | NEO (Normal)","count":9},"C58906394":{"group":2,"name":"Sticker | NEO (Foil)","count":9},"C58906402":{"group":2,"name":"Sticker | NEO (Gold)","count":9},"C5899":{"group":3,"name":"Sticker | Team EnVyUs","count":26},"C5902625034":{"group":2,"name":"Sticker | luken","count":8},"C5902625042":{"group":2,"name":"Sticker | luken (Normal)","count":2},"C5902625050":{"group":2,"name":"Sticker | luken (Foil)","count":1},"C5902625058":{"group":2,"name":"Sticker | luken (Gold)","count":2},"C5902625066":{"group":2,"name":"Sticker | luken (Holo)","count":2},"C5902625074":{"group":2,"name":"Sticker | luken (Glitter)","count":1},"C5907":{"group":3,"name":"Sticker | Team EnVyUs (Normal)","count":7},"C5913725322":{"group":2,"name":"Sticker | AdreN","count":24},"C5913725330":{"group":2,"name":"Sticker | AdreN (Normal)","count":8},"C5913725338":{"group":2,"name":"Sticker | AdreN (Foil)","count":8},"C5913725346":{"group":2,"name":"Sticker | AdreN (Gold)","count":8},"C5915":{"group":3,"name":"Sticker | Team EnVyUs (Foil)","count":7},"C5916633354":{"group":2,"name":"Sticker | aumaN","count":3},"C5916633362":{"group":2,"name":"Sticker | aumaN (Normal)","count":1},"C5916633370":{"group":2,"name":"Sticker | aumaN (Foil)","count":1},"C5916633378":{"group":2,"name":"Sticker | aumaN (Gold)","count":1},"C5923":{"group":3,"name":"Sticker | Team EnVyUs (Gold)","count":7},"C5931":{"group":3,"name":"Sticker | Team EnVyUs (Holo)","count":5},"C5971784586":{"group":2,"name":"Sticker | shox","count":37},"C5971784594":{"group":2,"name":"Sticker | shox (Normal)","count":12},"C5971784602":{"group":2,"name":"Sticker | shox (Foil)","count":10},"C5971784610":{"group":2,"name":"Sticker | shox (Gold)","count":12},"C5971784618":{"group":2,"name":"Sticker | shox (Holo)","count":2},"C5971784626":{"group":2,"name":"Sticker | shox (Glitter)","count":1},"C6005586314":{"group":2,"name":"Sticker | bondik","count":18},"C6005586322":{"group":2,"name":"Sticker | bondik (Normal)","count":6},"C6005586330":{"group":2,"name":"Sticker | bondik (Foil)","count":6},"C6005586338":{"group":2,"name":"Sticker | bondik (Gold)","count":6},"C60091980042":{"group":2,"name":"Sticker | Ariucle","count":4},"C60091980050":{"group":2,"name":"Sticker | Ariucle (Normal)","count":1},"C60091980058":{"group":2,"name":"Sticker | Ariucle (Foil)","count":1},"C60091980066":{"group":2,"name":"Sticker | Ariucle (Gold)","count":1},"C60091980074":{"group":2,"name":"Sticker | Ariucle (Holo)","count":1},"C6027":{"group":3,"name":"Sticker | Vexed Gaming","count":3},"C6035":{"group":3,"name":"Sticker | Vexed Gaming (Normal)","count":1},"C6043":{"group":3,"name":"Sticker | Vexed Gaming (Foil)","count":1},"C6051":{"group":3,"name":"Sticker | Vexed Gaming (Gold)","count":1},"C6052724106":{"group":2,"name":"Sticker | t0rick","count":3},"C6052724114":{"group":2,"name":"Sticker | t0rick (Normal)","count":1},"C6052724122":{"group":2,"name":"Sticker | t0rick (Foil)","count":1},"C6052724130":{"group":2,"name":"Sticker | t0rick (Gold)","count":1},"C611919882":{"group":2,"name":"Sticker | LUCAS1","count":9},"C611919890":{"group":2,"name":"Sticker | LUCAS1 (Normal)","count":3},"C611919898":{"group":2,"name":"Sticker | LUCAS1 (Foil)","count":3},"C611919906":{"group":2,"name":"Sticker | LUCAS1 (Gold)","count":3},"C6155":{"group":3,"name":"Sticker | Team Liquid","count":67},"C61580365066":{"group":2,"name":"Sticker | Bart4k","count":8},"C61580365074":{"group":2,"name":"Sticker | Bart4k (Normal)","count":2},"C61580365090":{"group":2,"name":"Sticker | Bart4k (Gold)","count":2},"C61580365098":{"group":2,"name":"Sticker | Bart4k (Holo)","count":2},"C61580365106":{"group":2,"name":"Sticker | Bart4k (Glitter)","count":1},"C61580365114":{"group":2,"name":"Sticker | Bart4k (Embroidered)","count":1},"C6163":{"group":3,"name":"Sticker | Team Liquid (Normal)","count":17},"C6171":{"group":3,"name":"Sticker | Team Liquid (Foil)","count":12},"C6179":{"group":3,"name":"Sticker | Team Liquid (Gold)","count":17},"C6187":{"group":3,"name":"Sticker | Team Liquid (Holo)","count":16},"C6195":{"group":3,"name":"Sticker | Team Liquid (Glitter)","count":4},"C6203":{"group":3,"name":"Sticker | Team Liquid (Embroidered)","count":1},"C62230983178":{"group":2,"name":"Sticker | jackasmo","count":4},"C62230983186":{"group":2,"name":"Sticker | jackasmo (Normal)","count":1},"C62230983202":{"group":2,"name":"Sticker | jackasmo (Gold)","count":1},"C62230983210":{"group":2,"name":"Sticker | jackasmo (Holo)","count":1},"C62230983218":{"group":2,"name":"Sticker | jackasmo (Glitter)","count":1},"C6257455754":{"group":2,"name":"Sticker | LoveYY","count":3},"C6257455762":{"group":2,"name":"Sticker | LoveYY (Normal)","count":1},"C6257455770":{"group":2,"name":"Sticker | LoveYY (Foil)","count":1},"C6257455778":{"group":2,"name":"Sticker | LoveYY (Gold)","count":1},"C6283":{"group":3,"name":"Sticker | Counter Logic Gaming","count":18},"C6291":{"group":3,"name":"Sticker | Counter Logic Gaming (Normal)","count":5},"C6299":{"group":3,"name":"Sticker | Counter Logic Gaming (Foil)","count":5},"C6307":{"group":3,"name":"Sticker | Counter Logic Gaming (Gold)","count":5},"C6315":{"group":3,"name":"Sticker | Counter Logic Gaming (Holo)","count":3},"C6411":{"group":3,"name":"Sticker | Keyd Stars","count":4},"C6419":{"group":3,"name":"Sticker | Keyd Stars (Normal)","count":1},"C6426214410":{"group":2,"name":"Sticker | balblna","count":6},"C6426214418":{"group":2,"name":"Sticker | balblna (Normal)","count":2},"C6426214426":{"group":2,"name":"Sticker | balblna (Foil)","count":2},"C6426214434":{"group":2,"name":"Sticker | balblna (Gold)","count":2},"C6427":{"group":3,"name":"Sticker | Keyd Stars (Foil)","count":1},"C6429518602":{"group":2,"name":"Sticker | exit","count":16},"C6429518610":{"group":2,"name":"Sticker | exit (Normal)","count":4},"C6429518618":{"group":2,"name":"Sticker | exit (Foil)","count":1},"C6429518626":{"group":2,"name":"Sticker | exit (Gold)","count":4},"C6429518634":{"group":2,"name":"Sticker | exit (Holo)","count":4},"C6429518642":{"group":2,"name":"Sticker | exit (Glitter)","count":2},"C6429518650":{"group":2,"name":"Sticker | exit (Embroidered)","count":1},"C6431397514":{"group":2,"name":"Sticker | gla1ve","count":29},"C6431397522":{"group":2,"name":"Sticker | gla1ve (Normal)","count":9},"C6431397530":{"group":2,"name":"Sticker | gla1ve (Foil)","count":7},"C6431397538":{"group":2,"name":"Sticker | gla1ve (Gold)","count":9},"C6431397546":{"group":2,"name":"Sticker | gla1ve (Holo)","count":2},"C6431397554":{"group":2,"name":"Sticker | gla1ve (Glitter)","count":2},"C6435":{"group":3,"name":"Sticker | Keyd Stars (Gold)","count":1},"C6443":{"group":3,"name":"Sticker | Keyd Stars (Holo)","count":1},"C649":{"group":1,"name":"Sticker | DreamHack 2014","count":54},"C651":{"group":3,"name":"Sticker | iBUYPOWER","count":8},"C6539":{"group":3,"name":"Sticker | TSM Kinguin","count":4},"C6547":{"group":3,"name":"Sticker | TSM Kinguin (Normal)","count":1},"C6555":{"group":3,"name":"Sticker | TSM Kinguin (Foil)","count":1},"C6562692618":{"group":2,"name":"Sticker | keev","count":6},"C6562692626":{"group":2,"name":"Sticker | keev (Normal)","count":2},"C6562692634":{"group":2,"name":"Sticker | keev (Foil)","count":2},"C6562692642":{"group":2,"name":"Sticker | keev (Gold)","count":2},"C6563":{"group":3,"name":"Sticker | TSM Kinguin (Gold)","count":1},"C657":{"group":1,"name":"Sticker | DreamHack 2014 (Normal)","count":21},"C6571":{"group":3,"name":"Sticker | TSM Kinguin (Holo)","count":1},"C6587788170":{"group":2,"name":"Sticker | v$m","count":8},"C6587788178":{"group":2,"name":"Sticker | v$m (Normal)","count":2},"C6587788186":{"group":2,"name":"Sticker | v$m (Foil)","count":1},"C6587788194":{"group":2,"name":"Sticker | v$m (Gold)","count":2},"C6587788202":{"group":2,"name":"Sticker | v$m (Holo)","count":2},"C6587788210":{"group":2,"name":"Sticker | v$m (Glitter)","count":1},"C659":{"group":3,"name":"Sticker | iBUYPOWER (Normal)","count":3},"C6620002186":{"group":2,"name":"Sticker | Dima","count":6},"C6620002194":{"group":2,"name":"Sticker | Dima (Normal)","count":2},"C6620002202":{"group":2,"name":"Sticker | Dima (Foil)","count":2},"C6620002210":{"group":2,"name":"Sticker | Dima (Gold)","count":2},"C66401290":{"group":2,"name":"Sticker | reltuC","count":12},"C66401298":{"group":2,"name":"Sticker | reltuC (Normal)","count":4},"C66401306":{"group":2,"name":"Sticker | reltuC (Foil)","count":4},"C66401314":{"group":2,"name":"Sticker | reltuC (Gold)","count":4},"C665":{"group":1,"name":"Sticker | DreamHack 2014 (Foil)","count":7},"C6667":{"group":3,"name":"Sticker | Cloud9 G2A","count":7},"C667":{"group":3,"name":"Sticker | iBUYPOWER (Foil)","count":2},"C6675":{"group":3,"name":"Sticker | Cloud9 G2A (Normal)","count":2},"C6683":{"group":3,"name":"Sticker | Cloud9 G2A (Foil)","count":2},"C6691":{"group":3,"name":"Sticker | Cloud9 G2A (Gold)","count":2},"C6699":{"group":3,"name":"Sticker | Cloud9 G2A (Holo)","count":1},"C673":{"group":1,"name":"Sticker | DreamHack 2014 (Gold)","count":20},"C6733609610":{"group":2,"name":"Sticker | huNter-","count":34},"C6733609618":{"group":2,"name":"Sticker | huNter- (Normal)","count":9},"C6733609626":{"group":2,"name":"Sticker | huNter- (Foil)","count":3},"C6733609634":{"group":2,"name":"Sticker | huNter- (Gold)","count":9},"C6733609642":{"group":2,"name":"Sticker | huNter- (Holo)","count":8},"C6733609650":{"group":2,"name":"Sticker | huNter- (Glitter)","count":4},"C6733609658":{"group":2,"name":"Sticker | huNter- (Embroidered)","count":1},"C6742882186":{"group":2,"name":"Sticker | mou","count":18},"C6742882194":{"group":2,"name":"Sticker | mou (Normal)","count":6},"C6742882202":{"group":2,"name":"Sticker | mou (Foil)","count":6},"C6742882210":{"group":2,"name":"Sticker | mou (Gold)","count":6},"C6748430218":{"group":2,"name":"Sticker | JUST","count":4},"C6748430226":{"group":2,"name":"Sticker | JUST (Normal)","count":1},"C6748430242":{"group":2,"name":"Sticker | JUST (Gold)","count":1},"C6748430250":{"group":2,"name":"Sticker | JUST (Holo)","count":1},"C6748430258":{"group":2,"name":"Sticker | JUST (Glitter)","count":1},"C675":{"group":3,"name":"Sticker | iBUYPOWER (Gold)","count":1},"C6768200714":{"group":2,"name":"Sticker | TACO","count":28},"C6768200722":{"group":2,"name":"Sticker | TACO (Normal)","count":9},"C6768200730":{"group":2,"name":"Sticker | TACO (Foil)","count":8},"C6768200738":{"group":2,"name":"Sticker | TACO (Gold)","count":9},"C6768200746":{"group":2,"name":"Sticker | TACO (Holo)","count":1},"C6768200754":{"group":2,"name":"Sticker | TACO (Glitter)","count":1},"C6772067210":{"group":2,"name":"Sticker | xseveN","count":6},"C6772067218":{"group":2,"name":"Sticker | xseveN (Normal)","count":2},"C6772067226":{"group":2,"name":"Sticker | xseveN (Foil)","count":2},"C6772067234":{"group":2,"name":"Sticker | xseveN (Gold)","count":2},"C6779458442":{"group":2,"name":"Sticker | Summer","count":17},"C6779458450":{"group":2,"name":"Sticker | Summer (Normal)","count":5},"C6779458458":{"group":2,"name":"Sticker | Summer (Foil)","count":3},"C6779458466":{"group":2,"name":"Sticker | Summer (Gold)","count":5},"C6779458474":{"group":2,"name":"Sticker | Summer (Holo)","count":2},"C6779458482":{"group":2,"name":"Sticker | Summer (Glitter)","count":1},"C6779458490":{"group":2,"name":"Sticker | Summer (Embroidered)","count":1},"C6781132554":{"group":2,"name":"Sticker | Aleksib","count":42},"C6781132562":{"group":2,"name":"Sticker | Aleksib (Normal)","count":11},"C6781132570":{"group":2,"name":"Sticker | Aleksib (Foil)","count":4},"C6781132578":{"group":2,"name":"Sticker | Aleksib (Gold)","count":11},"C6781132586":{"group":2,"name":"Sticker | Aleksib (Holo)","count":9},"C6781132594":{"group":2,"name":"Sticker | Aleksib (Glitter)","count":6},"C6781132602":{"group":2,"name":"Sticker | Aleksib (Embroidered)","count":1},"C6787794826":{"group":2,"name":"Sticker | bodyy","count":30},"C6787794834":{"group":2,"name":"Sticker | bodyy (Normal)","count":9},"C6787794842":{"group":2,"name":"Sticker | bodyy (Foil)","count":7},"C6787794850":{"group":2,"name":"Sticker | bodyy (Gold)","count":9},"C6787794858":{"group":2,"name":"Sticker | bodyy (Holo)","count":3},"C6787794866":{"group":2,"name":"Sticker | bodyy (Glitter)","count":1},"C6787794874":{"group":2,"name":"Sticker | bodyy (Embroidered)","count":1},"C6795":{"group":3,"name":"Sticker | Renegades","count":31},"C6803":{"group":3,"name":"Sticker | Renegades (Normal)","count":8},"C681":{"group":1,"name":"Sticker | DreamHack 2014 (Holo)","count":6},"C6811":{"group":3,"name":"Sticker | Renegades (Foil)","count":7},"C6817041546":{"group":2,"name":"Sticker | B1ad3","count":21},"C6817041554":{"group":2,"name":"Sticker | B1ad3 (Normal)","count":7},"C6817041562":{"group":2,"name":"Sticker | B1ad3 (Foil)","count":7},"C6817041570":{"group":2,"name":"Sticker | B1ad3 (Gold)","count":7},"C6819":{"group":3,"name":"Sticker | Renegades (Gold)","count":8},"C6826358794":{"group":2,"name":"Sticker | Shara","count":6},"C6826358802":{"group":2,"name":"Sticker | Shara (Normal)","count":2},"C6826358810":{"group":2,"name":"Sticker | Shara (Foil)","count":2},"C6826358818":{"group":2,"name":"Sticker | Shara (Gold)","count":2},"C6827":{"group":3,"name":"Sticker | Renegades (Holo)","count":7},"C683":{"group":3,"name":"Sticker | iBUYPOWER (Holo)","count":2},"C6835":{"group":3,"name":"Sticker | Renegades (Glitter)","count":1},"C6910178954":{"group":2,"name":"Sticker | RpK","count":24},"C6910178962":{"group":2,"name":"Sticker | RpK (Normal)","count":8},"C6910178970":{"group":2,"name":"Sticker | RpK (Foil)","count":8},"C6910178978":{"group":2,"name":"Sticker | RpK (Gold)","count":8},"C6911155978":{"group":2,"name":"Sticker | FL4MUS","count":12},"C6911155986":{"group":2,"name":"Sticker | FL4MUS (Normal)","count":3},"C6911155994":{"group":2,"name":"Sticker | FL4MUS (Foil)","count":2},"C6911156002":{"group":2,"name":"Sticker | FL4MUS (Gold)","count":3},"C6911156010":{"group":2,"name":"Sticker | FL4MUS (Holo)","count":3},"C6911156018":{"group":2,"name":"Sticker | FL4MUS (Glitter)","count":1},"C6923":{"group":3,"name":"Sticker | Team Immunity","count":3},"C6931":{"group":3,"name":"Sticker | Team Immunity (Normal)","count":1},"C6939":{"group":3,"name":"Sticker | Team Immunity (Foil)","count":1},"C6947":{"group":3,"name":"Sticker | Team Immunity (Gold)","count":1},"C6977596682":{"group":2,"name":"Sticker | steel","count":9},"C6977596690":{"group":2,"name":"Sticker | steel (Normal)","count":3},"C6977596698":{"group":2,"name":"Sticker | steel (Foil)","count":3},"C6977596706":{"group":2,"name":"Sticker | steel (Gold)","count":3},"C7045523978":{"group":2,"name":"Sticker | biguzera","count":24},"C7045523986":{"group":2,"name":"Sticker | biguzera (Normal)","count":6},"C7045523994":{"group":2,"name":"Sticker | biguzera (Foil)","count":2},"C7045524002":{"group":2,"name":"Sticker | biguzera (Gold)","count":6},"C7045524010":{"group":2,"name":"Sticker | biguzera (Holo)","count":6},"C7045524018":{"group":2,"name":"Sticker | biguzera (Glitter)","count":3},"C7045524026":{"group":2,"name":"Sticker | biguzera (Embroidered)","count":1},"C7051":{"group":3,"name":"Sticker | Team Kinguin","count":3},"C7059":{"group":3,"name":"Sticker | Team Kinguin (Normal)","count":1},"C7067":{"group":3,"name":"Sticker | Team Kinguin (Foil)","count":1},"C7075":{"group":3,"name":"Sticker | Team Kinguin (Gold)","count":1},"C709591434":{"group":2,"name":"Sticker | Gratisfaction","count":6},"C709591442":{"group":2,"name":"Sticker | Gratisfaction (Normal)","count":2},"C709591450":{"group":2,"name":"Sticker | Gratisfaction (Foil)","count":2},"C709591458":{"group":2,"name":"Sticker | Gratisfaction (Gold)","count":2},"C7158839178":{"group":2,"name":"Sticker | STYKO","count":17},"C7158839186":{"group":2,"name":"Sticker | STYKO (Normal)","count":5},"C7158839194":{"group":2,"name":"Sticker | STYKO (Foil)","count":3},"C7158839202":{"group":2,"name":"Sticker | STYKO (Gold)","count":5},"C7158839210":{"group":2,"name":"Sticker | STYKO (Holo)","count":2},"C7158839218":{"group":2,"name":"Sticker | STYKO (Glitter)","count":2},"C7166653066":{"group":2,"name":"Sticker | Twistzz","count":36},"C7166653074":{"group":2,"name":"Sticker | Twistzz (Normal)","count":10},"C7166653082":{"group":2,"name":"Sticker | Twistzz (Foil)","count":5},"C7166653090":{"group":2,"name":"Sticker | Twistzz (Gold)","count":10},"C7166653098":{"group":2,"name":"Sticker | Twistzz (Holo)","count":6},"C7166653106":{"group":2,"name":"Sticker | Twistzz (Glitter)","count":5},"C7179":{"group":3,"name":"Sticker | Team eBettle","count":3},"C7187":{"group":3,"name":"Sticker | Team eBettle (Normal)","count":1},"C7195":{"group":3,"name":"Sticker | Team eBettle (Foil)","count":1},"C7203":{"group":3,"name":"Sticker | Team eBettle (Gold)","count":1},"C725409418":{"group":2,"name":"Sticker | markeloff","count":21},"C725409426":{"group":2,"name":"Sticker | markeloff (Normal)","count":7},"C725409434":{"group":2,"name":"Sticker | markeloff (Foil)","count":7},"C725409442":{"group":2,"name":"Sticker | markeloff (Gold)","count":7},"C7307":{"group":3,"name":"Sticker | Luminosity Gaming","count":10},"C7315":{"group":3,"name":"Sticker | Luminosity Gaming (Normal)","count":3},"C7323":{"group":3,"name":"Sticker | Luminosity Gaming (Foil)","count":3},"C7331":{"group":3,"name":"Sticker | Luminosity Gaming (Gold)","count":3},"C7336008586":{"group":2,"name":"Sticker | pyth","count":6},"C7336008594":{"group":2,"name":"Sticker | pyth (Normal)","count":2},"C7336008602":{"group":2,"name":"Sticker | pyth (Foil)","count":2},"C7336008610":{"group":2,"name":"Sticker | pyth (Gold)","count":2},"C7339":{"group":3,"name":"Sticker | Luminosity Gaming (Holo)","count":1},"C7347882634":{"group":2,"name":"Sticker | suNny","count":9},"C7347882642":{"group":2,"name":"Sticker | suNny (Normal)","count":3},"C7347882650":{"group":2,"name":"Sticker | suNny (Foil)","count":3},"C7347882658":{"group":2,"name":"Sticker | suNny (Gold)","count":3},"C7359585930":{"group":2,"name":"Sticker | yay","count":3},"C7359585938":{"group":2,"name":"Sticker | yay (Normal)","count":1},"C7359585946":{"group":2,"name":"Sticker | yay (Foil)","count":1},"C7359585954":{"group":2,"name":"Sticker | yay (Gold)","count":1},"C7391050250":{"group":2,"name":"Sticker | Pimp","count":6},"C7391050258":{"group":2,"name":"Sticker | Pimp (Normal)","count":2},"C7391050266":{"group":2,"name":"Sticker | Pimp (Foil)","count":2},"C7391050274":{"group":2,"name":"Sticker | Pimp (Gold)","count":2},"C7393476490":{"group":2,"name":"Sticker | HEN1","count":14},"C7393476498":{"group":2,"name":"Sticker | HEN1 (Normal)","count":4},"C7393476506":{"group":2,"name":"Sticker | HEN1 (Foil)","count":3},"C7393476514":{"group":2,"name":"Sticker | HEN1 (Gold)","count":4},"C7393476522":{"group":2,"name":"Sticker | HEN1 (Holo)","count":2},"C7393476530":{"group":2,"name":"Sticker | HEN1 (Glitter)","count":1},"C7435":{"group":3,"name":"Sticker | Team SoloMid","count":6},"C743671434":{"group":2,"name":"Sticker | hooch","count":6},"C743671442":{"group":2,"name":"Sticker | hooch (Normal)","count":2},"C743671450":{"group":2,"name":"Sticker | hooch (Foil)","count":2},"C743671458":{"group":2,"name":"Sticker | hooch (Gold)","count":2},"C7438550026":{"group":2,"name":"Sticker | boltz","count":17},"C7438550034":{"group":2,"name":"Sticker | boltz (Normal)","count":5},"C7438550042":{"group":2,"name":"Sticker | boltz (Foil)","count":3},"C7438550050":{"group":2,"name":"Sticker | boltz (Gold)","count":5},"C7438550058":{"group":2,"name":"Sticker | boltz (Holo)","count":2},"C7438550066":{"group":2,"name":"Sticker | boltz (Glitter)","count":2},"C7443":{"group":3,"name":"Sticker | Team SoloMid (Normal)","count":2},"C7451":{"group":3,"name":"Sticker | Team SoloMid (Foil)","count":2},"C7459":{"group":3,"name":"Sticker | Team SoloMid (Gold)","count":2},"C7543086474":{"group":2,"name":"Sticker | ANGE1","count":12},"C7543086482":{"group":2,"name":"Sticker | ANGE1 (Normal)","count":4},"C7543086490":{"group":2,"name":"Sticker | ANGE1 (Foil)","count":4},"C7543086498":{"group":2,"name":"Sticker | ANGE1 (Gold)","count":4},"C7560031242":{"group":2,"name":"Sticker | Zeus","count":30},"C7560031250":{"group":2,"name":"Sticker | Zeus (Normal)","count":10},"C7560031258":{"group":2,"name":"Sticker | Zeus (Foil)","count":10},"C7560031266":{"group":2,"name":"Sticker | Zeus (Gold)","count":10},"C7563":{"group":3,"name":"Sticker | G2 Esports","count":71},"C7571":{"group":3,"name":"Sticker | G2 Esports (Normal)","count":18},"C7579":{"group":3,"name":"Sticker | G2 Esports (Foil)","count":13},"C7587":{"group":3,"name":"Sticker | G2 Esports (Gold)","count":18},"C7595":{"group":3,"name":"Sticker | G2 Esports (Holo)","count":17},"C7603":{"group":3,"name":"Sticker | G2 Esports (Glitter)","count":4},"C7611":{"group":3,"name":"Sticker | G2 Esports (Embroidered)","count":1},"C7630697482":{"group":2,"name":"Sticker | Kjaerbye","count":18},"C7630697490":{"group":2,"name":"Sticker | Kjaerbye (Normal)","count":6},"C7630697498":{"group":2,"name":"Sticker | Kjaerbye (Foil)","count":6},"C7630697506":{"group":2,"name":"Sticker | Kjaerbye (Gold)","count":6},"C7644771594":{"group":2,"name":"Sticker | Patti","count":4},"C7644771602":{"group":2,"name":"Sticker | Patti (Normal)","count":1},"C7644771618":{"group":2,"name":"Sticker | Patti (Gold)","count":1},"C7644771626":{"group":2,"name":"Sticker | Patti (Holo)","count":1},"C7644771634":{"group":2,"name":"Sticker | Patti (Glitter)","count":1},"C7691":{"group":3,"name":"Sticker | Astralis","count":52},"C7699":{"group":3,"name":"Sticker | Astralis (Normal)","count":13},"C7707":{"group":3,"name":"Sticker | Astralis (Foil)","count":11},"C7715":{"group":3,"name":"Sticker | Astralis (Gold)","count":13},"C7723":{"group":3,"name":"Sticker | Astralis (Holo)","count":13},"C7725961610":{"group":2,"name":"Sticker | MICHU","count":3},"C7725961618":{"group":2,"name":"Sticker | MICHU (Normal)","count":1},"C7725961626":{"group":2,"name":"Sticker | MICHU (Foil)","count":1},"C7725961634":{"group":2,"name":"Sticker | MICHU (Gold)","count":1},"C7731":{"group":3,"name":"Sticker | Astralis (Glitter)","count":1},"C7739":{"group":3,"name":"Sticker | Astralis (Embroidered)","count":1},"C777":{"group":1,"name":"Sticker | Katowice 2015","count":67},"C779":{"group":3,"name":"Sticker | Fnatic","count":68},"C7819":{"group":3,"name":"Sticker | FaZe Clan","count":68},"C7827":{"group":3,"name":"Sticker | FaZe Clan (Normal)","count":17},"C7835":{"group":3,"name":"Sticker | FaZe Clan (Foil)","count":11},"C7843":{"group":3,"name":"Sticker | FaZe Clan (Gold)","count":17},"C785":{"group":1,"name":"Sticker | Katowice 2015 (Normal)","count":17},"C7851":{"group":3,"name":"Sticker | FaZe Clan (Holo)","count":17},"C7859":{"group":3,"name":"Sticker | FaZe Clan (Glitter)","count":5},"C7865519626":{"group":2,"name":"Sticker | JT","count":24},"C7865519634":{"group":2,"name":"Sticker | JT (Normal)","count":6},"C7865519642":{"group":2,"name":"Sticker | JT (Foil)","count":1},"C7865519650":{"group":2,"name":"Sticker | JT (Gold)","count":6},"C7865519658":{"group":2,"name":"Sticker | JT (Holo)","count":6},"C7865519666":{"group":2,"name":"Sticker | JT (Glitter)","count":4},"C7865519674":{"group":2,"name":"Sticker | JT (Embroidered)","count":1},"C7867":{"group":3,"name":"Sticker | FaZe Clan (Embroidered)","count":1},"C787":{"group":3,"name":"Sticker | Fnatic (Normal)","count":18},"C7883216650":{"group":2,"name":"Sticker | hutji","count":12},"C7883216658":{"group":2,"name":"Sticker | hutji (Normal)","count":4},"C7883216666":{"group":2,"name":"Sticker | hutji (Foil)","count":4},"C7883216674":{"group":2,"name":"Sticker | hutji (Gold)","count":4},"C793":{"group":1,"name":"Sticker | Katowice 2015 (Foil)","count":17},"C7947":{"group":3,"name":"Sticker | Splyce","count":4},"C7948788490":{"group":2,"name":"Sticker | stavn","count":15},"C7948788498":{"group":2,"name":"Sticker | stavn (Normal)","count":4},"C7948788514":{"group":2,"name":"Sticker | stavn (Gold)","count":4},"C7948788522":{"group":2,"name":"Sticker | stavn (Holo)","count":4},"C7948788530":{"group":2,"name":"Sticker | stavn (Glitter)","count":3},"C795":{"group":3,"name":"Sticker | Fnatic (Foil)","count":14},"C7955":{"group":3,"name":"Sticker | Splyce (Normal)","count":1},"C7963":{"group":3,"name":"Sticker | Splyce (Foil)","count":1},"C7971":{"group":3,"name":"Sticker | Splyce (Gold)","count":1},"C7979":{"group":3,"name":"Sticker | Splyce (Holo)","count":1},"C801":{"group":1,"name":"Sticker | Katowice 2015 (Gold)","count":17},"C803":{"group":3,"name":"Sticker | Fnatic (Gold)","count":16},"C8075":{"group":3,"name":"Sticker | Gambit Esports","count":28},"C8083":{"group":3,"name":"Sticker | Gambit Esports (Normal)","count":7},"C809":{"group":1,"name":"Sticker | Katowice 2015 (Holo)","count":16},"C8091":{"group":3,"name":"Sticker | Gambit Esports (Foil)","count":7},"C8099":{"group":3,"name":"Sticker | Gambit Esports (Gold)","count":7},"C8105803786":{"group":2,"name":"Sticker | RUSH","count":15},"C8105803794":{"group":2,"name":"Sticker | RUSH (Normal)","count":5},"C8105803802":{"group":2,"name":"Sticker | RUSH (Foil)","count":5},"C8105803810":{"group":2,"name":"Sticker | RUSH (Gold)","count":5},"C8107":{"group":3,"name":"Sticker | Gambit Esports (Holo)","count":7},"C811":{"group":3,"name":"Sticker | Fnatic (Holo)","count":16},"C8189747338":{"group":2,"name":"Sticker | Farlig","count":4},"C8189747346":{"group":2,"name":"Sticker | Farlig (Normal)","count":1},"C8189747362":{"group":2,"name":"Sticker | Farlig (Gold)","count":1},"C8189747370":{"group":2,"name":"Sticker | Farlig (Holo)","count":1},"C8189747378":{"group":2,"name":"Sticker | Farlig (Glitter)","count":1},"C819":{"group":3,"name":"Sticker | Fnatic (Glitter)","count":3},"C827":{"group":3,"name":"Sticker | Fnatic (Embroidered)","count":1},"C8273928714":{"group":2,"name":"Sticker | kennyS","count":30},"C8273928722":{"group":2,"name":"Sticker | kennyS (Normal)","count":10},"C8273928730":{"group":2,"name":"Sticker | kennyS (Foil)","count":10},"C8273928738":{"group":2,"name":"Sticker | kennyS (Gold)","count":10},"C8276743434":{"group":2,"name":"Sticker | hatz","count":4},"C8276743442":{"group":2,"name":"Sticker | hatz (Normal)","count":1},"C8276743458":{"group":2,"name":"Sticker | hatz (Gold)","count":1},"C8276743466":{"group":2,"name":"Sticker | hatz (Holo)","count":1},"C8276743474":{"group":2,"name":"Sticker | hatz (Glitter)","count":1},"C8343347466":{"group":2,"name":"Sticker | Thomas","count":4},"C8343347474":{"group":2,"name":"Sticker | Thomas (Normal)","count":1},"C8343347490":{"group":2,"name":"Sticker | Thomas (Gold)","count":1},"C8343347498":{"group":2,"name":"Sticker | Thomas (Holo)","count":1},"C8343347506":{"group":2,"name":"Sticker | Thomas (Glitter)","count":1},"C8393334026":{"group":2,"name":"Sticker | keshandr","count":6},"C8393334034":{"group":2,"name":"Sticker | keshandr (Normal)","count":2},"C8393334042":{"group":2,"name":"Sticker | keshandr (Foil)","count":2},"C8393334050":{"group":2,"name":"Sticker | keshandr (Gold)","count":2},"C8425270794":{"group":2,"name":"Sticker | Jerry","count":11},"C8425270802":{"group":2,"name":"Sticker | Jerry (Normal)","count":3},"C8425270810":{"group":2,"name":"Sticker | Jerry (Foil)","count":1},"C8425270818":{"group":2,"name":"Sticker | Jerry (Gold)","count":3},"C8425270826":{"group":2,"name":"Sticker | Jerry (Holo)","count":2},"C8425270834":{"group":2,"name":"Sticker | Jerry (Glitter)","count":2},"C8459":{"group":3,"name":"Sticker | OpTic Gaming","count":12},"C8467":{"group":3,"name":"Sticker | OpTic Gaming (Normal)","count":3},"C8475":{"group":3,"name":"Sticker | OpTic Gaming (Foil)","count":3},"C8483":{"group":3,"name":"Sticker | OpTic Gaming (Gold)","count":3},"C8491":{"group":3,"name":"Sticker | OpTic Gaming (Holo)","count":3},"C8586627210":{"group":2,"name":"Sticker | Forester","count":7},"C8586627218":{"group":2,"name":"Sticker | Forester (Normal)","count":2},"C8586627226":{"group":2,"name":"Sticker | Forester (Foil)","count":1},"C8586627234":{"group":2,"name":"Sticker | Forester (Gold)","count":2},"C8586627242":{"group":2,"name":"Sticker | Forester (Holo)","count":1},"C8586627250":{"group":2,"name":"Sticker | Forester (Glitter)","count":1},"C8587":{"group":3,"name":"Sticker | GODSENT","count":12},"C8595":{"group":3,"name":"Sticker | GODSENT (Normal)","count":3},"C8603":{"group":3,"name":"Sticker | GODSENT (Foil)","count":3},"C8611":{"group":3,"name":"Sticker | GODSENT (Gold)","count":3},"C861806474":{"group":2,"name":"Sticker | kNgV-","count":9},"C861806482":{"group":2,"name":"Sticker | kNgV- (Normal)","count":3},"C861806490":{"group":2,"name":"Sticker | kNgV- (Foil)","count":3},"C861806498":{"group":2,"name":"Sticker | kNgV- (Gold)","count":3},"C8619":{"group":3,"name":"Sticker | GODSENT (Holo)","count":3},"C8649484426":{"group":2,"name":"Sticker | sergej","count":6},"C8649484434":{"group":2,"name":"Sticker | sergej (Normal)","count":2},"C8649484442":{"group":2,"name":"Sticker | sergej (Foil)","count":2},"C8649484450":{"group":2,"name":"Sticker | sergej (Gold)","count":2},"C8707459850":{"group":2,"name":"Sticker | Hobbit","count":30},"C8707459858":{"group":2,"name":"Sticker | Hobbit (Normal)","count":9},"C8707459866":{"group":2,"name":"Sticker | Hobbit (Foil)","count":5},"C8707459874":{"group":2,"name":"Sticker | Hobbit (Gold)","count":9},"C8707459882":{"group":2,"name":"Sticker | Hobbit (Holo)","count":4},"C8707459890":{"group":2,"name":"Sticker | Hobbit (Glitter)","count":3},"C8715":{"group":3,"name":"Sticker | North","count":24},"C8723":{"group":3,"name":"Sticker | North (Normal)","count":6},"C8728713610":{"group":2,"name":"Sticker | blameF","count":16},"C8728713618":{"group":2,"name":"Sticker | blameF (Normal)","count":4},"C8728713626":{"group":2,"name":"Sticker | blameF (Foil)","count":1},"C8728713634":{"group":2,"name":"Sticker | blameF (Gold)","count":4},"C8728713642":{"group":2,"name":"Sticker | blameF (Holo)","count":4},"C8728713650":{"group":2,"name":"Sticker | blameF (Glitter)","count":2},"C8728713658":{"group":2,"name":"Sticker | blameF (Embroidered)","count":1},"C8731":{"group":3,"name":"Sticker | North (Foil)","count":6},"C8739":{"group":3,"name":"Sticker | North (Gold)","count":6},"C8747":{"group":3,"name":"Sticker | North (Holo)","count":6},"C8754075658":{"group":2,"name":"Sticker | asap","count":4},"C8754075666":{"group":2,"name":"Sticker | asap (Normal)","count":1},"C8754075674":{"group":2,"name":"Sticker | asap (Foil)","count":1},"C8754075682":{"group":2,"name":"Sticker | asap (Gold)","count":1},"C8754075690":{"group":2,"name":"Sticker | asap (Holo)","count":1},"C8771150730":{"group":2,"name":"Sticker | paz","count":6},"C8771150738":{"group":2,"name":"Sticker | paz (Normal)","count":2},"C8771150746":{"group":2,"name":"Sticker | paz (Foil)","count":2},"C8771150754":{"group":2,"name":"Sticker | paz (Gold)","count":2},"C8843":{"group":3,"name":"Sticker | BIG","count":40},"C8851":{"group":3,"name":"Sticker | BIG (Normal)","count":10},"C8859":{"group":3,"name":"Sticker | BIG (Foil)","count":7},"C8867":{"group":3,"name":"Sticker | BIG (Gold)","count":10},"C8875":{"group":3,"name":"Sticker | BIG (Holo)","count":10},"C8883":{"group":3,"name":"Sticker | BIG (Glitter)","count":3},"C8971":{"group":3,"name":"Sticker | Vega Squadron","count":16},"C8979":{"group":3,"name":"Sticker | Vega Squadron (Normal)","count":4},"C8987":{"group":3,"name":"Sticker | Vega Squadron (Foil)","count":4},"C8995":{"group":3,"name":"Sticker | Vega Squadron (Gold)","count":4},"C8995874442":{"group":2,"name":"Sticker | Queenix","count":4},"C8995874450":{"group":2,"name":"Sticker | Queenix (Normal)","count":1},"C8995874466":{"group":2,"name":"Sticker | Queenix (Gold)","count":1},"C8995874474":{"group":2,"name":"Sticker | Queenix (Holo)","count":1},"C8995874482":{"group":2,"name":"Sticker | Queenix (Glitter)","count":1},"C9003":{"group":3,"name":"Sticker | Vega Squadron (Holo)","count":4},"C905":{"group":1,"name":"Sticker | Cologne 2015","count":291},"C907":{"group":3,"name":"Sticker | Clan-Mystik","count":3},"C9099":{"group":3,"name":"Sticker | Immortals","count":4},"C9107":{"group":3,"name":"Sticker | Immortals (Normal)","count":1},"C9115":{"group":3,"name":"Sticker | Immortals (Foil)","count":1},"C9123":{"group":3,"name":"Sticker | Immortals (Gold)","count":1},"C9124924426":{"group":2,"name":"Sticker | JW","count":27},"C9124924434":{"group":2,"name":"Sticker | JW (Normal)","count":9},"C9124924442":{"group":2,"name":"Sticker | JW (Foil)","count":9},"C9124924450":{"group":2,"name":"Sticker | JW (Gold)","count":9},"C913":{"group":1,"name":"Sticker | Cologne 2015 (Normal)","count":97},"C9131":{"group":3,"name":"Sticker | Immortals (Holo)","count":1},"C9137389578":{"group":2,"name":"Sticker | KRIMZ","count":43},"C9137389586":{"group":2,"name":"Sticker | KRIMZ (Normal)","count":13},"C9137389594":{"group":2,"name":"Sticker | KRIMZ (Foil)","count":9},"C9137389602":{"group":2,"name":"Sticker | KRIMZ (Gold)","count":13},"C9137389610":{"group":2,"name":"Sticker | KRIMZ (Holo)","count":4},"C9137389618":{"group":2,"name":"Sticker | KRIMZ (Glitter)","count":3},"C9137389626":{"group":2,"name":"Sticker | KRIMZ (Embroidered)","count":1},"C915":{"group":3,"name":"Sticker | Clan-Mystik (Normal)","count":1},"C9167921546":{"group":2,"name":"Sticker | Lucky","count":18},"C9167921554":{"group":2,"name":"Sticker | Lucky (Normal)","count":5},"C9167921562":{"group":2,"name":"Sticker | Lucky (Foil)","count":3},"C9167921570":{"group":2,"name":"Sticker | Lucky (Gold)","count":5},"C9167921578":{"group":2,"name":"Sticker | Lucky (Holo)","count":3},"C9167921586":{"group":2,"name":"Sticker | Lucky (Glitter)","count":1},"C9167921594":{"group":2,"name":"Sticker | Lucky (Embroidered)","count":1},"C9170291722":{"group":2,"name":"Sticker | Krad","count":11},"C9170291730":{"group":2,"name":"Sticker | Krad (Normal)","count":3},"C9170291738":{"group":2,"name":"Sticker | Krad (Foil)","count":1},"C9170291746":{"group":2,"name":"Sticker | Krad (Gold)","count":3},"C9170291754":{"group":2,"name":"Sticker | Krad (Holo)","count":2},"C9170291762":{"group":2,"name":"Sticker | Krad (Glitter)","count":2},"C917396618":{"group":2,"name":"Sticker | MAJ3R","count":22},"C917396626":{"group":2,"name":"Sticker | MAJ3R (Normal)","count":6},"C917396634":{"group":2,"name":"Sticker | MAJ3R (Foil)","count":4},"C917396642":{"group":2,"name":"Sticker | MAJ3R (Gold)","count":6},"C917396650":{"group":2,"name":"Sticker | MAJ3R (Holo)","count":4},"C917396658":{"group":2,"name":"Sticker | MAJ3R (Glitter)","count":1},"C917396666":{"group":2,"name":"Sticker | MAJ3R (Embroidered)","count":1},"C921":{"group":1,"name":"Sticker | Cologne 2015 (Foil)","count":97},"C9227":{"group":3,"name":"Sticker | Sprout Esports","count":8},"C923":{"group":3,"name":"Sticker | Clan-Mystik (Foil)","count":1},"C9235":{"group":3,"name":"Sticker | Sprout Esports (Normal)","count":2},"C9243":{"group":3,"name":"Sticker | Sprout Esports (Foil)","count":1},"C924627466":{"group":2,"name":"Sticker | jdm64","count":18},"C924627474":{"group":2,"name":"Sticker | jdm64 (Normal)","count":6},"C924627482":{"group":2,"name":"Sticker | jdm64 (Foil)","count":6},"C924627490":{"group":2,"name":"Sticker | jdm64 (Gold)","count":6},"C9251":{"group":3,"name":"Sticker | Sprout Esports (Gold)","count":2},"C9259":{"group":3,"name":"Sticker | Sprout Esports (Holo)","count":2},"C9267":{"group":3,"name":"Sticker | Sprout Esports (Glitter)","count":1},"C929":{"group":1,"name":"Sticker | Cologne 2015 (Gold)","count":97},"C9355":{"group":3,"name":"Sticker | Space Soldiers","count":8},"C9363":{"group":3,"name":"Sticker | Space Soldiers (Normal)","count":2},"C9366146826":{"group":2,"name":"Sticker | beastik","count":4},"C9366146834":{"group":2,"name":"Sticker | beastik (Normal)","count":1},"C9366146842":{"group":2,"name":"Sticker | beastik (Foil)","count":1},"C9366146850":{"group":2,"name":"Sticker | beastik (Gold)","count":1},"C9366146858":{"group":2,"name":"Sticker | beastik (Holo)","count":1},"C9371":{"group":3,"name":"Sticker | Space Soldiers (Foil)","count":2},"C9379":{"group":3,"name":"Sticker | Space Soldiers (Gold)","count":2},"C9387":{"group":3,"name":"Sticker | Space Soldiers (Holo)","count":2},"C939":{"group":3,"name":"Sticker | Clan-Mystik (Holo)","count":1},"C9460055946":{"group":2,"name":"Sticker | REZ","count":32},"C9460055954":{"group":2,"name":"Sticker | REZ (Normal)","count":9},"C9460055962":{"group":2,"name":"Sticker | REZ (Foil)","count":4},"C9460055970":{"group":2,"name":"Sticker | REZ (Gold)","count":9},"C9460055978":{"group":2,"name":"Sticker | REZ (Holo)","count":6},"C9460055986":{"group":2,"name":"Sticker | REZ (Glitter)","count":3},"C9460055994":{"group":2,"name":"Sticker | REZ (Embroidered)","count":1},"C9463878026":{"group":2,"name":"Sticker | s1mple","count":39},"C9463878034":{"group":2,"name":"Sticker | s1mple (Normal)","count":12},"C9463878042":{"group":2,"name":"Sticker | s1mple (Foil)","count":8},"C9463878050":{"group":2,"name":"Sticker | s1mple (Gold)","count":12},"C9463878058":{"group":2,"name":"Sticker | s1mple (Holo)","count":4},"C9463878066":{"group":2,"name":"Sticker | s1mple (Glitter)","count":3},"C9483":{"group":3,"name":"Sticker | TYLOO","count":36},"C9491":{"group":3,"name":"Sticker | TYLOO (Normal)","count":9},"C9499":{"group":3,"name":"Sticker | TYLOO (Foil)","count":8},"C9507":{"group":3,"name":"Sticker | TYLOO (Gold)","count":9},"C9515":{"group":3,"name":"Sticker | TYLOO (Holo)","count":9},"C951878282":{"group":2,"name":"Sticker | SnypeR","count":3},"C951878290":{"group":2,"name":"Sticker | SnypeR (Normal)","count":1},"C951878298":{"group":2,"name":"Sticker | SnypeR (Foil)","count":1},"C951878306":{"group":2,"name":"Sticker | SnypeR (Gold)","count":1},"C9531":{"group":3,"name":"Sticker | TYLOO (Embroidered)","count":1},"C9608850314":{"group":2,"name":"Sticker | ottoNd","count":3},"C9608850322":{"group":2,"name":"Sticker | ottoNd (Normal)","count":1},"C9608850330":{"group":2,"name":"Sticker | ottoNd (Foil)","count":1},"C9608850338":{"group":2,"name":"Sticker | ottoNd (Gold)","count":1},"C9611":{"group":3,"name":"Sticker | Avangar","count":12},"C9619":{"group":3,"name":"Sticker | Avangar (Normal)","count":3},"C9627":{"group":3,"name":"Sticker | Avangar (Foil)","count":3},"C9635":{"group":3,"name":"Sticker | Avangar (Gold)","count":3},"C9640367754":{"group":2,"name":"Sticker | afro","count":8},"C9640367762":{"group":2,"name":"Sticker | afro (Normal)","count":2},"C9640367770":{"group":2,"name":"Sticker | afro (Foil)","count":1},"C9640367778":{"group":2,"name":"Sticker | afro (Gold)","count":2},"C9640367786":{"group":2,"name":"Sticker | afro (Holo)","count":2},"C9640367794":{"group":2,"name":"Sticker | afro (Glitter)","count":1},"C9643":{"group":3,"name":"Sticker | Avangar (Holo)","count":3},"C96676618":{"group":2,"name":"Sticker | n0thing","count":15},"C96676626":{"group":2,"name":"Sticker | n0thing (Normal)","count":5},"C96676634":{"group":2,"name":"Sticker | n0thing (Foil)","count":5},"C96676642":{"group":2,"name":"Sticker | n0thing (Gold)","count":5},"C9710061578":{"group":2,"name":"Sticker | Jame","count":40},"C9710061586":{"group":2,"name":"Sticker | Jame (Normal)","count":11},"C9710061594":{"group":2,"name":"Sticker | Jame (Foil)","count":4},"C9710061602":{"group":2,"name":"Sticker | Jame (Gold)","count":11},"C9710061610":{"group":2,"name":"Sticker | Jame (Holo)","count":8},"C9710061618":{"group":2,"name":"Sticker | Jame (Glitter)","count":5},"C9710061626":{"group":2,"name":"Sticker | Jame (Embroidered)","count":1},"C9739":{"group":3,"name":"Sticker | Quantum Bellator Fire","count":4},"C9747":{"group":3,"name":"Sticker | Quantum Bellator Fire (Normal)","count":1},"C9755":{"group":3,"name":"Sticker | Quantum Bellator Fire (Foil)","count":1},"C9763":{"group":3,"name":"Sticker | Quantum Bellator Fire (Gold)","count":1},"C9771":{"group":3,"name":"Sticker | Quantum Bellator Fire (Holo)","count":1},"C9807159306":{"group":2,"name":"Sticker | NEKiZ","count":12},"C9807159314":{"group":2,"name":"Sticker | NEKiZ (Normal)","count":3},"C9807159322":{"group":2,"name":"Sticker | NEKiZ (Foil)","count":1},"C9807159330":{"group":2,"name":"Sticker | NEKiZ (Gold)","count":3},"C9807159338":{"group":2,"name":"Sticker | NEKiZ (Holo)","count":3},"C9807159346":{"group":2,"name":"Sticker | NEKiZ (Glitter)","count":2},"C9867":{"group":3,"name":"Sticker | Misfits Gaming","count":4},"C9875":{"group":3,"name":"Sticker | Misfits Gaming (Normal)","count":1},"C9883":{"group":3,"name":"Sticker | Misfits Gaming (Foil)","count":1},"C9891":{"group":3,"name":"Sticker | Misfits Gaming (Gold)","count":1},"C9899":{"group":3,"name":"Sticker | Misfits Gaming (Holo)","count":1},"C9925981194":{"group":2,"name":"Sticker | ISSAA","count":9},"C9925981202":{"group":2,"name":"Sticker | ISSAA (Normal)","count":3},"C9925981210":{"group":2,"name":"Sticker | ISSAA (Foil)","count":3},"C9925981218":{"group":2,"name":"Sticker | ISSAA (Gold)","count":3},"C9995":{"group":3,"name":"Sticker | 100 Thieves","count":8}},"music_kits":{"10":{"market_hash_name":"Music Kit | Sasha, LNOE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqE7VdKpNa6sljjEB6jn5Pi-XMMt_aoO6BrJqDKDTOWkLcmsrY5GX23wUsj4mnXn8HpLyzD8oHEQA","normal_price":210,"stattrak_price":417},"100":{"market_hash_name":"Music Kit | borne, Give It To Me","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN3SF61NKpNa66VrjQhigmpCx-Xdf7qWvO_0_IfHBCmHCkrcm6LgwS3vkzUlzsD_Vm8HpLywQpLob3g","normal_price":422,"stattrak_price":723},"101":{"market_hash_name":"Music Kit | Pirapus, EVERYNITE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJXKF5EZg57ikuxewRUmkmMaw_yZY6qf3OPY6JKeRD2XIk78m5udtS3G1xhx-tT-Hy96obzvJOYRCqud0","normal_price":388,"stattrak_price":704},"102":{"market_hash_name":"Music Kit | Repiet \u0026 Julia Kleijn, On And On","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ36H7FNhy9elpFu3QkXyyZe3pHcI6_D8bPI0cvLCXzTCw7ovs7RtGXjhzEl-6z6Emda3MSXAtLvhCgA","normal_price":461,"stattrak_price":695},"103":{"market_hash_name":"Music Kit | ShockOne, Voices","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnOY5l16-oLLugipEE7zmM63-SFfuKv-MPc6eKfLWDHJk74l6eJoHC23zEh-t2yHyN_7dWXXMFFiTTCrFg","normal_price":387,"stattrak_price":559},"11":{"market_hash_name":"Music Kit | Skog, Metal","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnCY4mklpcmgsg--QhmlzMGw_3QOvqH7baJrd6WXXzXBkb8ktOM5Fn2xlxtz6mrW1J_3JjSDCT4B","normal_price":379,"stattrak_price":532},"12":{"market_hash_name":"Music Kit | Midnight Riders, All I Want for Christmas","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHKT619y_JPm413iUw7Ozseur3Ba66v6avw9IaDGVmaUku104bI-HC-wk00h5WSAzNahcn-ebwEmD4wwG7Dv5VTfwA","normal_price":247,"stattrak_price":517},"13":{"market_hash_name":"Music Kit | Matt Lange, IsoRhythm","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD8Vp0-oDx1Qm2DxykzcSx-3Bf7auobPw5I6nACzTIlesk6OU_H33rwkVz6mzWm4mhciqJLlh3-4p3w34","normal_price":147,"stattrak_price":534},"14":{"market_hash_name":"Music Kit | Mateo Messina, For No Mankind","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD4Fl48ZTn41fmfk2g0M-0-HUDuPD9bPY_d6jHX2KRlu8ls-U9Fy21l0R24mzWy46oIymWO1A-SswnqhmYKNo","normal_price":185,"stattrak_price":354},"15":{"market_hash_name":"Music Kit | Various Artists, Hotline Miami","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPXSD6V978Yr961Tufk2g0JLmpXsLt6T8OfxsJPOSCDfAw7Ygs-dvSS_kzUx-4jvXnNr7IimSbgY-SswntCV3CPU","normal_price":299,"stattrak_price":530},"16":{"market_hash_name":"Music Kit | Daniel Sadowski, Total Domination","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsSuqCMJuqKrbvRseaKQDGLAluwntuU8S3vllBsj4juBm9qrJXqXO1MoXowwG7D37VA97g","normal_price":339,"stattrak_price":594},"17":{"market_hash_name":"Music Kit | Damjan Mravunac, The Talos Principle","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqa71d7-ZX1_EzpQB7OzseuqHED7aT2bvY7JPGXCmOVku0u4-c_TiznwRki6mTRzY77di6fPQR0CowwG7A3iRcaNw","normal_price":294,"stattrak_price":595},"18":{"market_hash_name":"Music Kit | Proxy, Battlepack","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJWmY_U9KpNa6uwuwGEv0zs_m-3YM7KOqbPY4d6XEDWGWkbkg4eNvGCvrzU0jtT_WmMHpLyx6Oq1mFg","normal_price":154,"stattrak_price":348},"19":{"market_hash_name":"Music Kit | Ki:Theory, MOLOTOV","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnKD7VN65p7LugipEU30x8Hi-ScPv6D7Mfw6c_SVCzLCx-hz6LEwTHmyxUhz4mWBy97_J2XXMFElSD7z3A","normal_price":210,"stattrak_price":321},"20":{"market_hash_name":"Music Kit | Troels Folmann, Uber Blasto Phone","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWmY4Fpm8oj451jpTyKhz9i2ryEKtvf_bvBoJKOQXTeVwrwl6OU5F3G3kR534GvTzd78dHyTZwEiFNIuEg48vcSn","normal_price":203,"stattrak_price":457},"21":{"market_hash_name":"Music Kit | Kelly Bailey, Hazardous Environments","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPn6b6U939Y7470DYEUy_y5C2r3IIvvCsav1pdqjGV2OSk-gntrloGn7mlEsjsDnUytigInKVZhhgVMWDIHfBEw","normal_price":286,"stattrak_price":533},"22":{"market_hash_name":"Music Kit | Skog, II-Headshot","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnCY4mklpsnx71u-RRnzzcKw-3pav_D7O_RvcKnECDGRlugl5-JtFnvhxk5ztWjW1J_3JggDF25u","normal_price":174,"stattrak_price":398},"23":{"market_hash_name":"Music Kit | Daniel Sadowski, The 8-Bit Kit","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsWur3FduaX-bvw7JKPDXD7Alusn6bc8GHHjlxt3tT7Uztr4I3iUagQjD4wwG7CloiQLEg","normal_price":254,"stattrak_price":413},"24":{"market_hash_name":"Music Kit | AWOLNATION, I Am","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNGyY6Vh04I775Ga3EFOjmJDjrHQOv_OsbKFseaDKVzLHk70hsbc4GSvrlEVytWWGm9mhdy6TcEZ-XZaQ4-De","normal_price":305,"stattrak_price":545},"25":{"market_hash_name":"Music Kit | Mord Fustang, Diamonds","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHSF4VBg55P15F7YEUy_z8_irHdetqqtOfw-JaSQCDbBx74gteQwS3zqlEV-4zncy9qociqfPBhgVMVYMXeUSA","normal_price":191,"stattrak_price":369},"26":{"market_hash_name":"Music Kit | Michael Bross, Invasion!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHKU7Vdw-IXm5Ur0fk2g0Jfk-yQI7ParafU9IvOSVzORmLwm4rRqTHi1kU1y4T_Qm92qc3zGZlI-SswnxR50Dnw","normal_price":221,"stattrak_price":432},"27":{"market_hash_name":"Music Kit | Ian Hultquist, Lion's Mouth","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPHqZ7UN54Jbh40rzfk2g0MWxqHVduKT_bfw5d_KSWjXIw-xw6LNvTS-ywht35D7Sw934dC-RbAA-SswnHSbFbTg","normal_price":200,"stattrak_price":388},"28":{"market_hash_name":"Music Kit | New Beat Fund, Sponge Fingerz","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO36A51N04IHh5F3YEUy_mMGxrCBY66L9P6c9I_OQXzXBw71ztrVtHy3nwB9w5WnTmI6qIijEOxhgVMW0Zuhv-w","normal_price":253,"stattrak_price":471},"29":{"market_hash_name":"Music Kit | Beartooth, Disgusting","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN36W90J6-5P81Qm2D0ryxsS3ryMKu_P6P_08dvOWDDOSlLd0s7AxTXi1xxl3427TmNqsc3iJLlh34_7J-SA","normal_price":161,"stattrak_price":431},"3":{"market_hash_name":"Music Kit | Daniel Sadowski, Crimson Assault","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzseu_HBZ6aurOvI5cPWSXGOSw-gjtLE4GHCxwktx6jjVw4msJHzGaQIgAowwG7B47VZqDQ","normal_price":174,"stattrak_price":457},"30":{"market_hash_name":"Music Kit | Lennie Moore, Java Havana Funkaloo","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOX6Z619w-Yj7-FzYEUy_xsPl-yFevKGsbvFpc6DHWzWRmesu5OQ9Tnzmlkp_sGSHztuudn7DbRhgVMXA6cDp0w","normal_price":345,"stattrak_price":558},"31":{"market_hash_name":"Music Kit | Darude, Moments CSGO","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqF8FJwy9elpA7kGE_wy8awr3ULvKL_aaY7eKjACDGRkLoitrQwTCrhzUhw4mjXy4u3MSXAdefS6m8","normal_price":185,"stattrak_price":365},"32":{"market_hash_name":"Music Kit | Beartooth, Aggressive","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN36W90J6-5P81Qm1D0v0ncXjpHcDuqT5OfY1JKnHWjLFx7l147U8Fivhxxwj4W3Ty46ocyiJLlh39UDB3WA","normal_price":null,"stattrak_price":85},"33":{"market_hash_name":"Music Kit | Blitz Kids, The Good Youth","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN3ee8Ux-_YPn1Qm2D0j3zsK4rXYNt_T5avA7IajAVmWSlrgntOdtSSjjwkV_52vcn9z8cHyJLlh3QAIUPxY","normal_price":null,"stattrak_price":1285},"34":{"market_hash_name":"Music Kit | Hundredth, FREE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPW6Z4URw8JP81Qm2DxunzsWypXcL7qD4bf1vcfaXDT6Vmbol5eA8GH3hzU8l4WrSw92udXyJLlh3C_9f1qc","normal_price":null,"stattrak_price":69},"35":{"market_hash_name":"Music Kit | Neck Deep, Life's Not Out To Get You","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO36U7lJw8ZfLugipR0_zzMCzqHsMvKSoOvI-I6XCV2GSlOxwtuNoSXzqxR5ysD-BmYuodmXXMFGQ36ERJg","normal_price":null,"stattrak_price":1377},"36":{"market_hash_name":"Music Kit | Roam, Backbone","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ3SW6Gklpcnw7wC2GEujx5Cx-SQMuqSqOv01JKjCDWOSk7pz5rQxSiiwk0p36m2G1J_3JhtobOCh","normal_price":null,"stattrak_price":189},"37":{"market_hash_name":"Music Kit | Twin Atlantic, GLA","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWye61dh-Ib6_lDkfk2g0Jez-HQLuqT3bPQ4cqfBXzXHlLci4-M-SSjjlEhx4DjQw4v9cy2WbgM-SswnmggWEWw","normal_price":null,"stattrak_price":93},"38":{"market_hash_name":"Music Kit | Skog, III-Arena","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnCY4mklp8mm6w_lF0j3m8S0qXFY66D5PPU5I6iWDzPIl78is7VrFnrrwx505GqE1J_3JpXwBPe8","normal_price":null,"stattrak_price":61},"39":{"market_hash_name":"Music Kit | The Verkkars, EZ4ENCE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXOS81Nn_4z1-ErYEUy_ncG2pHQC66qtOfBsefHEWmTHkOgmtLRsSSq2w0ly4DvSmNipIy2TbRhgVMXK454YZg","normal_price":309,"stattrak_price":594},"4":{"market_hash_name":"Music Kit | Noisia, Sharpened","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO3Se9l90y9elpF_iFE-knZW1-HACuqD7P_Q1JqSXDTfHwr536bk_TnjixU1w5jvSw9m3MSXAtbhIJfc","normal_price":227,"stattrak_price":392},"41":{"market_hash_name":"Music Kit | Scarlxrd: King, Scar","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJniW91pt5oPLugipR0z1m5fl-XUI7KP9OvY7cPPLXTLEkLcusuI7SXvgkER06j_Uydb7cmXXMFHBwRoo_g","normal_price":216,"stattrak_price":377},"43":{"market_hash_name":"Music Kit | Austin Wintory, Bachram","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhzNjjpSRZuKr3bqVveKjGVjGUl7d04uNqF3vhxk51smqEwtn4JymfbVN0FNIuEmZnQsKn","normal_price":181,"stattrak_price":287},"44":{"market_hash_name":"Music Kit | Dren, Gunman Taco Truck","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmS62klpsmiuQ-zFh7ympPlrXQCvaf7bvU0dajKCjCTxLxy5eM-SyzmzEwmsmuH1J_3JsSHwbhj","normal_price":1364,"stattrak_price":2303},"45":{"market_hash_name":"Music Kit | Daniel Sadowski, Eye of the Dragon","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsKuqyBevaD_PvY_cqnBC2aSx-sitOA9Hy3iw0shsmrQm9n9cS_EO1UlD4wwG7C42cYiFA","normal_price":118,"stattrak_price":213},"46":{"market_hash_name":"Music Kit | Tree Adams and Ben Bromfield, M.U.D.D. FORCE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWmS4Fdx9Yrn1VviTx_jkZvm9CdX683-Oeo9ePOSVj-Tmegg5bFrGnvnk0p36jzWn938cX7CbQcmCpd3TOANs0O7jJS5YPSqCPlw","normal_price":52,"stattrak_price":90},"47":{"market_hash_name":"Music Kit | Tim Huling, Neo Noir","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXKa7UN5_Ynz1Qm2D0igxpfhqyAPufGra_RpeKDKCzaVmLYi4LU4TH_lkxl34zvXyI2pcX6JLlh3SgiXjNY","normal_price":63,"stattrak_price":106},"48":{"market_hash_name":"Music Kit | Sam Marshall, Bodacious","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqa6Fdn54_15lXYEUy_zsPh-SEJtqCvbvBsIvOVCzGTxbh04uU-GSjlxU93sj_dyt6rcyrDPxhgVMX0GDfl6g","normal_price":88,"stattrak_price":157},"49":{"market_hash_name":"Music Kit | Matt Levine, Drifter","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD8Vpw4o7672a3EFOoycLiqXcL6qT-PvE5d_HCXT-VkLt35bU5GnDkxEtzsT6Bzd_4eS6fcEZ-XQTUt-o7","normal_price":149,"stattrak_price":259},"5":{"market_hash_name":"Music Kit | Robert Allaire, Insurgency","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ3SV4ERh9Yv461D1RCKhz9i2rCNa6fb8P_U8JqWVWmaUk7gm47g5SXznwxsismrXntqueHmeZwYgFNIuEkQzDnuI","normal_price":289,"stattrak_price":579},"50":{"market_hash_name":"Music Kit | Amon Tobin, All for Dust","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNHaY60J69o761Qm2D0_ymMLmpSACt_P_OfVrI6jHWTLHl-x05uAxSSyxxk5x5zzXmYn4cCmJLlh3qmNAx_w","normal_price":301,"stattrak_price":421},"52":{"market_hash_name":"Music Kit | Neck Deep, The Lowlife Pack","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuO36U7lJw8ZfLugupRU2hm8W4_3AP66etafY1dfaXXTPEkL93tuI6GyvrwkkmsWXVmYuoI2XXMFG1wALONw","normal_price":294,"stattrak_price":578},"53":{"market_hash_name":"Music Kit | Scarlxrd, CHAIN$AW.LXADXUT.","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJniW91pt5oPLugupGBmnzcbkqCEPtqr6Oac-damWWGOVx750s7NsGyzhwR9x4T_XnN2qcmXXMFFfP0kuIw","normal_price":201,"stattrak_price":354},"54":{"market_hash_name":"Music Kit | Austin Wintory, Mocha Petal","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhzdixpSQNvaP9avU8JfOQCmXBk7wl57Q9GCjkzR51sD_Syon7dH_DZgQpFNIuEpzXvuPa","normal_price":144,"stattrak_price":257},"55":{"market_hash_name":"Music Kit | Chipzel, ~Yellow Magic~","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNnOe9Uxw-LikuxeyR0n1x5C1_HYPv_P3avI7eKDEDDSRkO135LFrSSzlxB8jtz7Rwtz6bzvJOed42IOv","normal_price":103,"stattrak_price":176},"56":{"market_hash_name":"Music Kit | Freaky DNA, Vici","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuM2mS5F1s8In11Qm2D0Snn5DhqXII6aevMaE9cqPHXj-VmbYi6bc6GXDgw0wl5zvQz9j_dX-JLlh3U7PBHho","normal_price":586,"stattrak_price":1079},"57":{"market_hash_name":"Music Kit | Jesse Harlin, Astro Bellum","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP36E9lN99ZX441fYEUy_xsC5pSMIvfGqbaZvJfXCWDXClO0k47BrTi3ml0l14W_QzI6tJS3CbBhgVMVNIuoA8w","normal_price":155,"stattrak_price":256},"58":{"market_hash_name":"Music Kit | Laura Shigihara: Work Hard, Play Hard","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOXqC91dm_I7z41HmUxzOzseuqyFY66CqOf09dKXAXjDHkr8n5eNoF3Gwxx4lsW7dw4uqJSqTaFJ2CYwwG7C58tQJhA","normal_price":214,"stattrak_price":422},"59":{"market_hash_name":"Music Kit | Sarah Schachner, KOLIBRI","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqF5F5m94_16VHpRA_OzseuqCMO7feoO_Q9IaTHCD-WlLp0sbJtF3jkx0lysD_WyImvdy-WPQ4lXIwwG7Cq-4RO3A","normal_price":590,"stattrak_price":840},"6":{"market_hash_name":"Music Kit | Sean Murray, A*D*8","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJn6W61tg5pX182a3EFOkm87k-HUI7PCvMac1d6XDVjLDlrxw5bNvGHmwlx50523Rn9n9IiiWcEZ-XdLc0038","normal_price":138,"stattrak_price":406},"60":{"market_hash_name":"Music Kit | bbno$, u mad!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN3mZ6kVKpNa6vgjlRByknJOw-CEK7KP_bPZrefPGVmSTk7py4bY8Tivlx0Vw4z_SzsHpLyyu3lGzoA","normal_price":279,"stattrak_price":477},"61":{"market_hash_name":"Music Kit | The Verkkars \u0026 n0thing, Flashbang Dance","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXOS81Nn_4z1-ErYEU-_zcS5rXEP7KT2PvU_JaiVXjeWkegn6OQ7Hy3klEVztWqByI2veX2VaRhgVMWDR-PWmQ","normal_price":295,"stattrak_price":519},"62":{"market_hash_name":"Music Kit | 3kliksphilip, Heading for the Source","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuZnCb7F1m5I_95lD3fk2g0MW3q3IKvqr4P6BsJPHHXjeSkLl147Q-GH3rkU5z5z7UztaoIHmfZgc-SswnBcYXqSs","normal_price":85,"stattrak_price":176},"63":{"market_hash_name":"Music Kit | Humanity's Last Breath, Void","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPXeV2gYkutf2ugHjR0T1yc7ir3EL6aD4av1od_WRWmHIxe134bBvHXDrl053tjvLioH-59nm0rc","normal_price":46,"stattrak_price":106},"64":{"market_hash_name":"Music Kit | Juelz, Shooters","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP26S6UxKpNa6ul2yGE3zzZLkqyEOt_asafQ4dPWWXjeWlLx36LA_GnDlwx8isW7UysHpLyxdw4RVEg","normal_price":67,"stattrak_price":125},"65":{"market_hash_name":"Music Kit | Knock2, dashstar*","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnWY5l0ny9elpFuwQhugx8G0qXVavqT_avw_I6HCDT-Vk-oi5rFtGnjjkBxy6zyGmNu3MSXAuEzdSoI","normal_price":1058,"stattrak_price":1985},"66":{"market_hash_name":"Music Kit | Meechy Darko, Gothic Luxury","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOH6S5l5s8Ibm4VbYEUy_y5Li-HsC6fT2afZoJqnKXDWUmbp3s7c4TSyxzB4j5WXQzduvI3OfaBhgVMWCMDEthw","normal_price":144,"stattrak_price":327},"67":{"market_hash_name":"Music Kit | Sullivan King, Lock Me Up","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJm6b6V9j9Yn_41fgfk2g0MG3rXUMvfH3OKc8IfOVXTPJxbwgs-BqTSuykUwm6mvTm9erdHmTbVU-SswnLnCCc2g","normal_price":72,"stattrak_price":146},"68":{"market_hash_name":"Music Kit | Perfect World, 花脸 Hua Lian (Painted Face)","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJX6F41N24JD7-FXjfk2g0MLlqScOt6L7PPxrdfTLX2HDkbgi4OM7TX2wkRsm6j-Ewor8InueOwY-Sswnc1NbBcg","normal_price":286,"stattrak_price":506},"69":{"market_hash_name":"Music Kit | Denzel Curry, ULTIMATE","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMX6Z_1N595Lm-EDYEUy_ncCzrXpZ6qf_avA9I6bADTeRxep05bA7SS-1wBl1sGTSy9z4Ii7EPxhgVMXpTAlXoQ","normal_price":286,"stattrak_price":533},"7":{"market_hash_name":"Music Kit | Feed Me, High Noon","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuM36S4Vtwy9elpAHhQhunysPlriAI7aD5PfBvJKmQWjDIxb8j57drHXmwl04k4mWDm9m3MSXA9LcoLxM","normal_price":263,"stattrak_price":574},"71":{"market_hash_name":"Music Kit | DRYDEN, Feel The Power","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmO4VN7y9elpF--RE71mJTjqSAJ6_GqavE1cfPAWT7EkLkvtLk-FivmzUki4zjWyIy3MSXA6R3KQQo","normal_price":138,"stattrak_price":248},"72":{"market_hash_name":"Music Kit | ISOxo, inhuman","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPGiY_VlKpNa6uVu-EUWpm5e4pSYC7qf4OfQ5caOVWjXHlugv6LI8HX23wRwj6j7RysHpLyzcbsFh4Q","normal_price":450,"stattrak_price":691},"73":{"market_hash_name":"Music Kit | KILL SCRIPT, All Night","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnKb6UV25o7k_ma3EFOlm8Xkr3tfuab5O_Brc_XLWjTCmewg57hqHHzikEUk627VzoupcH2fcEZ-XSdyZXLN","normal_price":213,"stattrak_price":414},"74":{"market_hash_name":"Music Kit | Knock2, Make U SWEAT!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnWY5l0ny9empA7kRxzwzMOz-CEDuqH2OPdudKOXVzaWxOgn5rhtHS_il053sD7Umdm3MSXAba0Weck","normal_price":105,"stattrak_price":202},"75":{"market_hash_name":"Music Kit | Rad Cat, Reason","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJ3qT5ldhy9elpA7mR0ulnZKyrnsK7vesPvdoJPaVWDPCkOgns-RvGy_lkRxxsTyHnta3MSXA5OJUCT8","normal_price":146,"stattrak_price":267},"76":{"market_hash_name":"Music Kit | TWERL and Ekko \u0026 Sidetrack, Under Bright Lights","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWyS91pKpNa67A7mF0qoyZK0_HUC66v-O_M6I_HHCmTCmO8ns7Y_SnmyxUlwsj_RmcHpLywcg16k7A","normal_price":794,"stattrak_price":1377},"78":{"market_hash_name":"Music Kit | Austin Wintory, The Devil Went Clubbing in Georgia","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhytiwpXNYv_aoO6JoI6DGWDKSkb9ytONsTSvhzU505z-BzoyvdX3Da1MnFNIuEmHVT0Jg","normal_price":1359,"stattrak_price":2177},"79":{"market_hash_name":"Music Kit | Ben Bromfield, Rabbit Hole","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuN36Z50R6-YH971Xjfk2g0MGw_nMJvKWtO6I9eaDCDWbJxO0utLI6TXjrzU934W6An46vdXqUPFc-Sswnvkalcgc","normal_price":72,"stattrak_price":127},"8":{"market_hash_name":"Music Kit | Dren, Death's Head Demolition","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmS62klpcny6Qu2Fkj3n8S4pCBftqv7O6BuI6eXWGTGlrx357RtFiznxxtx42TW1J_3JonMHxrk","normal_price":157,"stattrak_price":465},"80":{"market_hash_name":"Music Kit | Daniel Sadowski, Dead Shot","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMXqZ7FN554bw5U70ShTOzsOuqnACvKD5P6Fpd6SWCGPFlu0u4eA_SyqwzEwmsTvQyNapdi_CPFMlDYwwG7Abj54DYw","normal_price":60,"stattrak_price":132},"81":{"market_hash_name":"Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMWmS62klp8n3vQjkFkXymJe4-Xtavqf6bvM_dqOSC2PBlr8us7JtTH_rx0Ul5m3V1J_3JsxLaZwf","normal_price":223,"stattrak_price":408},"82":{"market_hash_name":"Music Kit | Matt Levine, Agency","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuOHqD8Vpw4o7672a3E1OnyJezrnNdu6r7bvNrI_HKVmGUw7h34eM8Hn_lxEVw6zuEyYqqd3vEcEZ-XfK-tm-7","normal_price":224,"stattrak_price":423},"83":{"market_hash_name":"Music Kit | Sam Marshall, Clutch","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJnqa6Fdn54_15lXYEU-_zJe0qnYJ66utOvI0c6LLWz7AmL8u4Lc9S3zjwUxwtW_dmdascCqSPxhgVMUkssBXcw","normal_price":79,"stattrak_price":144},"84":{"market_hash_name":"Music Kit | Tim Huling, Devil's Paintbrush","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXKa7UN5_Ynz1Qm1D0Six8Lh-SMDu6r5O6c8eaPBWzHJmb4i4-doFnvmxRl2tzvQy4yhJH2JLlh3Dy1Dksc","normal_price":120,"stattrak_price":234},"85":{"market_hash_name":"Music Kit | Tree Adams, Seventh Moon","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIWmS4Fdx9Yrn1Qm2Dxz3zcKy-XFYv6P4PPQ_eaHCVjOSmep35rRrF32wwBh042vSmYmoInmJLlh3TYKTTis","normal_price":132,"stattrak_price":251},"86":{"market_hash_name":"Music Kit | Perfect World, Ay Hey","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJX6F41N24JD7-FXjfk2j0M7ir3QOvKb8P6A1cPSSXzKSkbl14eU-GCu3x0V24jvWzo6veXuUbAQ-SswnjV5YWxY","normal_price":241,"stattrak_price":510},"87":{"market_hash_name":"Music Kit | Adam Beyer, Red Room","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNH-W6FRw7YLm1Qm2D0Wkms-yrnYJ7KX7PqA5JaHEWzWRkL8ltrExGS3kk05y42WHy9-tdXyJLlh3EzqKw-M","normal_price":350,"stattrak_price":623},"88":{"market_hash_name":"Music Kit | Ghost, Skeletá","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuMnOY9kJKpNa66w6xGE73xs-1q3ADu_D3OPw8d6THWWTAmLkg6LU_TH_gxBlxtzyAy8HpLywxtluAvA","normal_price":118,"stattrak_price":384},"89":{"market_hash_name":"Music Kit | HEALTH, RAT WARS","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPX6W6UJ9y9elpAm1EB-ompe0-3BZvfCta_c9I6KXCDaRlu8l47Y9FirnzU10tjvVn9i3MSXA0pDx6aQ","normal_price":279,"stattrak_price":484},"9":{"market_hash_name":"Music Kit | Austin Wintory, Desert Fire","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNG6E8V974476_lb1WCKhz9i1-HFZ6qWqP6ZpcvXCXDSUlrgv5rhsGC3iwkt25GjRz9epdSqRPQByFNIuEoOD6xBW","normal_price":287,"stattrak_price":484},"90":{"market_hash_name":"Music Kit | James and the Cold Gun, Chewing Glass","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP3qa4EV0-oPg4lzkThH1mYPuwnIKoaSvbKc-dKTHVzDEk7kv6eIxHy3ql09-t2vdmYz9c3ORbw8kW8YjRLIU8k7vAa5pUQE","normal_price":51,"stattrak_price":113},"91":{"market_hash_name":"Music Kit | Jonathan Young, Starship Velociraptor","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP3SZ5EJ99Ynt5UzpRiKhz9i3qXFY7KSvOKFvdPTADz_Hkup04LlsSyvglkUjsDuGyNihdy7DbA4lFNIuEilrDQgh","normal_price":96,"stattrak_price":254},"92":{"market_hash_name":"Music Kit | Juelz, Floorspace","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuP26S6UxKpNW6vFu2Qhn0yMC2rXoPu_T4MaE4IafAC2XGkOog6LE9GSvnxh91sj-DmcHpLywwZNUHhg","normal_price":123,"stattrak_price":227},"93":{"market_hash_name":"Music Kit | Killer Mike, MICHAEL","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuPnKb6VNn-Y7_72a3EFOinMW0ricLvPP8Mf00dPaXXzXJx7wj6OMxTCqwx0l_52qAy9-qInnDcEZ-XUn9CHoQ","normal_price":1197,"stattrak_price":1935},"94":{"market_hash_name":"Music Kit | PVRIS, Evergreen","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJW2F7EVKpNa671qwEEWnnJO1pXAKtvb-a6ZpdqaRXjeTl-90s-drGXDrxR8h5TyGzMHpLyxK6nz_mQ","normal_price":288,"stattrak_price":485},"95":{"market_hash_name":"Music Kit | Selective Response, No Love Only Pleasure","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuJn6b4FVh_ZHx-Fz0URL_jZPfrXMV7aaqbfY6IqiSXzDCwush4eU4S3jnk0tytjmGm96oI3LBbQZ1WZslTPlK7EfLu_uzOQ","normal_price":144,"stattrak_price":398},"96":{"market_hash_name":"Music Kit | Tigercub, The Perfume of Decay","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuIXKQ4ER24YXLugipRUmomJfkrXcKufatPfVsc_XHWD_Bmewg47I9Tn-1kRh_sWqBz4v4d2XXMFFcAYD9tQ","normal_price":48,"stattrak_price":104},"98":{"market_hash_name":"Music Kit | ALRT, DOPAMINE HIT","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNHeF8Wklpcmtu120GR6hy8O5-3MJ7Pb6PaY_I_bBXjHJmbd1s7Y8FyrkwEty5jjS1J_3JrXfbNYF","normal_price":453,"stattrak_price":716},"99":{"market_hash_name":"Music Kit | Altare, Change My Mind","rarity":3,"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIijyEKzb_3d19nuNHeD5ERwy9elpFq3Fx6hmJLlrHAJv_eqOKI1JKSVWDXGkLovtLJoF3Hik00htTzWyt-3MSXAv8iGC0E","normal_price":411,"stattrak_price":660}},"highlight_reels":{"1":{"name":"Austin 2025 Highlight | chopper Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | chopper Double Kill"},"10":{"name":"Austin 2025 Highlight | The Run And Gun","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Run And Gun"},"100":{"name":"Austin 2025 Highlight | Fire Fight","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fire Fight"},"101":{"name":"Austin 2025 Highlight | Anchor Man","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Anchor Man"},"102":{"name":"Austin 2025 Highlight | yuurih Entry Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | yuurih Entry Fragger"},"103":{"name":"Austin 2025 Highlight | biguzera Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | biguzera Double Kill"},"104":{"name":"Austin 2025 Highlight | dav1deuS Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deuS Double Anubis Kill"},"105":{"name":"Austin 2025 Highlight | Eco Frags","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Frags"},"106":{"name":"Austin 2025 Highlight | Closing Out","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Closing Out"},"107":{"name":"Austin 2025 Highlight | Clutching Up","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutching Up"},"108":{"name":"Austin 2025 Highlight | Smoke Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Defender"},"109":{"name":"Austin 2025 Highlight | Smoked'em","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoked'em"},"11":{"name":"Austin 2025 Highlight | Jimpphat Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Double Kill"},"110":{"name":"Austin 2025 Highlight | Stack Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Stack Kill"},"111":{"name":"Austin 2025 Highlight | Golden Opportunity","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Golden Opportunity"},"112":{"name":"Austin 2025 Highlight | Sneaky Pistol","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sneaky Pistol"},"113":{"name":"Austin 2025 Highlight | FalleN Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN Double Anubis Kill"},"114":{"name":"Austin 2025 Highlight | Quick Two","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Two"},"115":{"name":"Austin 2025 Highlight | KSCERATO Kobe","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Kobe"},"116":{"name":"Austin 2025 Highlight | KSCERATO Too Slow","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Too Slow"},"117":{"name":"Austin 2025 Highlight | KSCERATO Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Double Kill"},"118":{"name":"Austin 2025 Highlight | Missed'em","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed'em"},"119":{"name":"Austin 2025 Highlight | nqz Clutch Attempt","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Clutch Attempt"},"12":{"name":"Austin 2025 Highlight | Always Buy A Defuser","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Always Buy A Defuser"},"120":{"name":"Austin 2025 Highlight | nqz Quad Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Quad Kill"},"121":{"name":"Austin 2025 Highlight | nqz Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Double Anubis Kill"},"122":{"name":"Austin 2025 Highlight | snow Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | snow Double Kill"},"123":{"name":"Austin 2025 Highlight | Chaos Mode","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Chaos Mode"},"124":{"name":"Austin 2025 Highlight | snow Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | snow Triple Kill"},"125":{"name":"Austin 2025 Highlight | YEKINDAR Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | YEKINDAR Triple Kill"},"126":{"name":"Austin 2025 Highlight | Opening Up","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Opening Up"},"127":{"name":"Austin 2025 Highlight | yuurih Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | yuurih Double Kill"},"128":{"name":"Austin 2025 Highlight | biguzera: The Entry Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | biguzera: The Entry Demon"},"129":{"name":"Austin 2025 Highlight | Surprise Flank","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Flank"},"13":{"name":"Austin 2025 Highlight | Jimpphat: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat: The Clutch God"},"130":{"name":"Austin 2025 Highlight | Double Kill To Victory","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Kill To Victory"},"131":{"name":"Austin 2025 Highlight | Two FalleN Pistol Headshots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two FalleN Pistol Headshots"},"132":{"name":"Austin 2025 Highlight | FalleN King Of Banana","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN King Of Banana"},"133":{"name":"Austin 2025 Highlight | Afterplant Secured","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Afterplant Secured"},"134":{"name":"Austin 2025 Highlight | KSCERATO Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | KSCERATO Triple Kill"},"135":{"name":"Austin 2025 Highlight | Too Strong Jiggles","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Too Strong Jiggles"},"136":{"name":"Austin 2025 Highlight | The Anchor In Pit","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Anchor In Pit"},"137":{"name":"Austin 2025 Highlight | molodoy Almost The Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | molodoy Almost The Hero"},"138":{"name":"Austin 2025 Highlight | A Triple Into Overtime","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | A Triple Into Overtime"},"139":{"name":"Austin 2025 Highlight | Look Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Look Behind You"},"14":{"name":"Austin 2025 Highlight | 1v2 Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1v2 Clutch"},"140":{"name":"Austin 2025 Highlight | Miss Into A Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Miss Into A Double Kill"},"141":{"name":"Austin 2025 Highlight | nqz Too Slow","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Too Slow"},"142":{"name":"Austin 2025 Highlight | Peek Me And You're Dead","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Peek Me And You're Dead"},"143":{"name":"Austin 2025 Highlight | Applaud The Spray Transfer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Applaud The Spray Transfer"},"144":{"name":"Austin 2025 Highlight | Jiggle Too Wide And You're Dead","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jiggle Too Wide And You're Dead"},"145":{"name":"Austin 2025 Highlight | Two YEKINDAR Pistol Headshots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two YEKINDAR Pistol Headshots"},"146":{"name":"Austin 2025 Highlight | The Eco Hunter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Eco Hunter"},"147":{"name":"Austin 2025 Highlight | Utility Rush","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Utility Rush"},"148":{"name":"Austin 2025 Highlight | Sneaky Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sneaky Double Kill"},"149":{"name":"Austin 2025 Highlight | YEKINDAR King Of Banana","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | YEKINDAR King Of Banana"},"15":{"name":"Austin 2025 Highlight | Clutch King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch King"},"150":{"name":"Austin 2025 Highlight | Flying Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Flying Double Entry"},"151":{"name":"Austin 2025 Highlight | Instant Reaction Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Instant Reaction Headshot"},"152":{"name":"Austin 2025 Highlight | Two Is Not Enough","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two Is Not Enough"},"153":{"name":"Austin 2025 Highlight | The Grenadier","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Grenadier"},"154":{"name":"Austin 2025 Highlight | Aleksib Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Aleksib Double Kill"},"155":{"name":"Austin 2025 Highlight | b1t Double AK Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t Double AK Kill"},"156":{"name":"Austin 2025 Highlight | b1t Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t Double Entry"},"157":{"name":"Austin 2025 Highlight | b1t: The Mirage Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t: The Mirage Cowboy"},"158":{"name":"Austin 2025 Highlight | b1t Double MP9 Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t Double MP9 Kill"},"159":{"name":"Austin 2025 Highlight | The Spray Transfer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Spray Transfer"},"16":{"name":"Austin 2025 Highlight | Quick Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Reactions"},"160":{"name":"Austin 2025 Highlight | flameZ: The Entry Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ: The Entry Demon"},"161":{"name":"Austin 2025 Highlight | flameZ Triple Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Triple Entry"},"162":{"name":"Austin 2025 Highlight | iM Quad Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | iM Quad Kill"},"163":{"name":"Austin 2025 Highlight | An Entry And A Donk","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | An Entry And A Donk"},"164":{"name":"Austin 2025 Highlight | Triple Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Headshot"},"165":{"name":"Austin 2025 Highlight | mezii Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Double Mirage Kill"},"166":{"name":"Austin 2025 Highlight | Quad Kill And A Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quad Kill And A Clutch"},"167":{"name":"Austin 2025 Highlight | The Spraying Flick","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Spraying Flick"},"168":{"name":"Austin 2025 Highlight | B Site Survivor","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | B Site Survivor"},"169":{"name":"Austin 2025 Highlight | Double Spraydown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Spraydown"},"17":{"name":"Austin 2025 Highlight | Missed Him","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed Him"},"170":{"name":"Austin 2025 Highlight | w0nderful Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Double Deagle"},"171":{"name":"Austin 2025 Highlight | w0nderful Teamkiller","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Teamkiller"},"172":{"name":"Austin 2025 Highlight | w0nderful: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful: The Clutch God"},"173":{"name":"Austin 2025 Highlight | Triple AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple AWP Kill"},"174":{"name":"Austin 2025 Highlight | The Gamble","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Gamble"},"175":{"name":"Austin 2025 Highlight | Rare Misses But Manages A Flick","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rare Misses But Manages A Flick"},"176":{"name":"Austin 2025 Highlight | ZywOo Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Mirage Kill"},"177":{"name":"Austin 2025 Highlight | Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Denied"},"178":{"name":"Austin 2025 Highlight | He Can Rifle Too","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | He Can Rifle Too"},"179":{"name":"Austin 2025 Highlight | The Smoke Sneaker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Smoke Sneaker"},"18":{"name":"Austin 2025 Highlight | Two Nades To The Head","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Two Nades To The Head"},"180":{"name":"Austin 2025 Highlight | The Whiff","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Whiff"},"181":{"name":"Austin 2025 Highlight | Clutching MP9","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutching MP9"},"182":{"name":"Austin 2025 Highlight | 1 Bullet","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1 Bullet"},"183":{"name":"Austin 2025 Highlight | Bodyblocking Smokes","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Bodyblocking Smokes"},"184":{"name":"Austin 2025 Highlight | b1t: The Nuke Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | b1t: The Nuke Cowboy"},"185":{"name":"Austin 2025 Highlight | flameZ Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Double Nuke Kill"},"186":{"name":"Austin 2025 Highlight | Simultaneous Death","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Simultaneous Death"},"187":{"name":"Austin 2025 Highlight | mezii Triple Pistol Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Triple Pistol Kill"},"188":{"name":"Austin 2025 Highlight | mezii Triple Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Triple Entry"},"189":{"name":"Austin 2025 Highlight | mezii Teamkiller","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Teamkiller"},"19":{"name":"Austin 2025 Highlight | Almost","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost"},"190":{"name":"Austin 2025 Highlight | On The Ladder??","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | On The Ladder??"},"191":{"name":"Austin 2025 Highlight | Not Enough","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Not Enough"},"192":{"name":"Austin 2025 Highlight | Quad Kill Shutdown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quad Kill Shutdown"},"193":{"name":"Austin 2025 Highlight | ropz Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Double Nuke Kill"},"194":{"name":"Austin 2025 Highlight | w0nderful: The Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful: The Eco Fragger"},"195":{"name":"Austin 2025 Highlight | w0nderful Double AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Double AWP Kill"},"196":{"name":"Austin 2025 Highlight | w0nderful Combat AWP","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | w0nderful Combat AWP"},"197":{"name":"Austin 2025 Highlight | ZywOo Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Nuke Kill"},"198":{"name":"Austin 2025 Highlight | You Won't Get My AK","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | You Won't Get My AK"},"199":{"name":"Austin 2025 Highlight | The Backstabber","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Backstabber"},"2":{"name":"Austin 2025 Highlight | 100 Utility Damage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 100 Utility Damage"},"20":{"name":"Austin 2025 Highlight | Quick Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Double Kill"},"200":{"name":"Austin 2025 Highlight | There's No Escape","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | There's No Escape"},"201":{"name":"Austin 2025 Highlight | Look 1 Hand","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Look 1 Hand"},"202":{"name":"Austin 2025 Highlight | The AWP Headshooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Headshooter"},"203":{"name":"Austin 2025 Highlight | ZywOo: The Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo: The Cowboy"},"204":{"name":"Austin 2025 Highlight | Ramp Shutdown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Ramp Shutdown"},"205":{"name":"Austin 2025 Highlight | Deagle Supremacy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Deagle Supremacy"},"206":{"name":"Austin 2025 Highlight | 2 Pistol Headshots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2 Pistol Headshots"},"207":{"name":"Austin 2025 Highlight | 910 Triple Kill vs FaZe","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Triple Kill vs FaZe"},"208":{"name":"Austin 2025 Highlight | Almost 500 Damage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost 500 Damage"},"209":{"name":"Austin 2025 Highlight | bLitz Double Smoke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Smoke Kill"},"21":{"name":"Austin 2025 Highlight | Spinx Quadra Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Quadra Kill"},"210":{"name":"Austin 2025 Highlight | bLitz Kobe","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Kobe"},"211":{"name":"Austin 2025 Highlight | Quick Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Double"},"212":{"name":"Austin 2025 Highlight | Knife?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Knife?"},"213":{"name":"Austin 2025 Highlight | Catches Smoke","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Catches Smoke"},"214":{"name":"Austin 2025 Highlight | The Fast Rotation","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Fast Rotation"},"215":{"name":"Austin 2025 Highlight | Defending Connector","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Defending Connector"},"216":{"name":"Austin 2025 Highlight | Mid Is Karrigan","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Mid Is Karrigan"},"217":{"name":"Austin 2025 Highlight | karrigan Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | karrigan Double Headshot"},"218":{"name":"Austin 2025 Highlight | Smokey Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smokey Entry"},"219":{"name":"Austin 2025 Highlight | mzinho Double B-Site Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double B-Site Entry"},"22":{"name":"Austin 2025 Highlight | torzsi Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Triple Kill"},"220":{"name":"Austin 2025 Highlight | mzinho Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double Mirage Kill"},"221":{"name":"Austin 2025 Highlight | Clean Defense Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clean Defense Double"},"222":{"name":"Austin 2025 Highlight | rain Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | rain Double Headshot"},"223":{"name":"Austin 2025 Highlight | 2K Dualies","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2K Dualies"},"224":{"name":"Austin 2025 Highlight | Awareness","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Awareness"},"225":{"name":"Austin 2025 Highlight | 2 Crucial Misses","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2 Crucial Misses"},"226":{"name":"Austin 2025 Highlight | The AWP Triple","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Triple"},"227":{"name":"Austin 2025 Highlight | Footshooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Footshooter"},"228":{"name":"Austin 2025 Highlight | The AWP Head To Head","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Head To Head"},"229":{"name":"Austin 2025 Highlight | Don't Bring A Knife To A Gunfight","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Don't Bring A Knife To A Gunfight"},"23":{"name":"Austin 2025 Highlight | Burning Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Burning Triple Kill"},"230":{"name":"Austin 2025 Highlight | Senzu Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Double Entry"},"231":{"name":"Austin 2025 Highlight | Double From The Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double From The Defender"},"232":{"name":"Austin 2025 Highlight | Techno4K Double B-Site Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Double B-Site Kill"},"233":{"name":"Austin 2025 Highlight | AWP Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Defender"},"234":{"name":"Austin 2025 Highlight | AWP Shutdown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Shutdown"},"235":{"name":"Austin 2025 Highlight | bLitz Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Headshot"},"236":{"name":"Austin 2025 Highlight | EliGE: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | EliGE: The Clutch God"},"237":{"name":"Austin 2025 Highlight | Parkour Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Parkour Deagle"},"238":{"name":"Austin 2025 Highlight | Exposed","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Exposed"},"239":{"name":"Austin 2025 Highlight | Dancing Legend","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Dancing Legend"},"24":{"name":"Austin 2025 Highlight | zont1x Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | zont1x Triple Kill"},"240":{"name":"Austin 2025 Highlight | frozen Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | frozen Triple Kill"},"241":{"name":"Austin 2025 Highlight | frozen Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | frozen Double Headshot"},"242":{"name":"Austin 2025 Highlight | karrigan Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | karrigan Double Kill"},"243":{"name":"Austin 2025 Highlight | USA USA USA","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | USA USA USA"},"244":{"name":"Austin 2025 Highlight | The Running MAC-10","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Running MAC-10"},"245":{"name":"Austin 2025 Highlight | karrigan Entry Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | karrigan Entry Fragger"},"246":{"name":"Austin 2025 Highlight | mzinho Double Anubis Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double Anubis Kill"},"247":{"name":"Austin 2025 Highlight | Eco Finisher","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Finisher"},"248":{"name":"Austin 2025 Highlight | The Chase","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Chase"},"249":{"name":"Austin 2025 Highlight | rain Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | rain Double Kill"},"25":{"name":"Austin 2025 Highlight | A Triple And Icy Veins","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | A Triple And Icy Veins"},"250":{"name":"Austin 2025 Highlight | rain Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | rain Triple Kill"},"251":{"name":"Austin 2025 Highlight | Scared Of The Shotgun?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Scared Of The Shotgun?"},"252":{"name":"Austin 2025 Highlight | s1mple Double AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | s1mple Double AWP Kill"},"253":{"name":"Austin 2025 Highlight | s1mple Combat AWP","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | s1mple Combat AWP"},"254":{"name":"Austin 2025 Highlight | Clutch Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch Double Kill"},"255":{"name":"Austin 2025 Highlight | Senzu Triple Pistol Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Triple Pistol Kill"},"256":{"name":"Austin 2025 Highlight | Swift Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Swift Double Kill"},"257":{"name":"Austin 2025 Highlight | Techno4K Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Triple Kill"},"258":{"name":"Austin 2025 Highlight | Time Loss","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Time Loss"},"259":{"name":"Austin 2025 Highlight | Techno4K Fortress","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Fortress"},"26":{"name":"Austin 2025 Highlight | Brollan Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Double Kill"},"260":{"name":"Austin 2025 Highlight | 910 Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Double Deagle"},"261":{"name":"Austin 2025 Highlight | One Kill Is Enough","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Kill Is Enough"},"262":{"name":"Austin 2025 Highlight | 910 Double AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Double AWP Kill"},"263":{"name":"Austin 2025 Highlight | The Switcheroo","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Switcheroo"},"264":{"name":"Austin 2025 Highlight | bLitz Triple Kill vs paiN","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Triple Kill vs paiN"},"265":{"name":"Austin 2025 Highlight | Quick Double HS","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Double HS"},"266":{"name":"Austin 2025 Highlight | dav1deus Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deus Double Mirage Kill"},"267":{"name":"Austin 2025 Highlight | dav1deuS Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deuS Almost Clutch"},"268":{"name":"Austin 2025 Highlight | Missed A Spot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed A Spot"},"269":{"name":"Austin 2025 Highlight | dav1deuS Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dav1deuS Clutch Denied"},"27":{"name":"Austin 2025 Highlight | Brollan Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Triple Kill"},"270":{"name":"Austin 2025 Highlight | dgt Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dgt Triple Kill"},"271":{"name":"Austin 2025 Highlight | Matrix","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Matrix"},"272":{"name":"Austin 2025 Highlight | Swift Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Swift Double"},"273":{"name":"Austin 2025 Highlight | mzinho Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Triple Kill"},"274":{"name":"Austin 2025 Highlight | mzinho Double A-Site Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mzinho Double A-Site Entry"},"275":{"name":"Austin 2025 Highlight | Flying Mongolian","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Flying Mongolian"},"276":{"name":"Austin 2025 Highlight | No Money For You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | No Money For You"},"277":{"name":"Austin 2025 Highlight | Double Into Victory","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Into Victory"},"278":{"name":"Austin 2025 Highlight | nqz Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Triple Kill"},"279":{"name":"Austin 2025 Highlight | nqz AWP Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz AWP Rampage"},"28":{"name":"Austin 2025 Highlight | Brollan Smoke Criminal","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Smoke Criminal"},"280":{"name":"Austin 2025 Highlight | AWP Slayer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Slayer"},"281":{"name":"Austin 2025 Highlight | Instant Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Instant Headshot"},"282":{"name":"Austin 2025 Highlight | Senzu Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Double Headshot"},"283":{"name":"Austin 2025 Highlight | Triple Berettas","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Berettas"},"284":{"name":"Austin 2025 Highlight | Huggers","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Huggers"},"285":{"name":"Austin 2025 Highlight | Techno4K Double A-Site Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Double A-Site Kill"},"286":{"name":"Austin 2025 Highlight | 2 In The Back","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2 In The Back"},"287":{"name":"Austin 2025 Highlight | Techno4k: The Cowboy vs paiN","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4k: The Cowboy vs paiN"},"288":{"name":"Austin 2025 Highlight | Cleaning Up","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Cleaning Up"},"289":{"name":"Austin 2025 Highlight | Pistols Neutralized","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistols Neutralized"},"29":{"name":"Austin 2025 Highlight | The Iron Man","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Iron Man"},"290":{"name":"Austin 2025 Highlight | Off Target","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Off Target"},"291":{"name":"Austin 2025 Highlight | Versatile Shooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Versatile Shooter"},"292":{"name":"Austin 2025 Highlight | Brollan Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Closer"},"293":{"name":"Austin 2025 Highlight | Brollan Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Brollan Double Deagle"},"294":{"name":"Austin 2025 Highlight | Ace Unleashed","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Ace Unleashed"},"295":{"name":"Austin 2025 Highlight | flameZ Triple Kill vs MOUZ","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Triple Kill vs MOUZ"},"296":{"name":"Austin 2025 Highlight | Shut Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Shut Down"},"297":{"name":"Austin 2025 Highlight | Smoke Ambush","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Ambush"},"298":{"name":"Austin 2025 Highlight | Smoke Shots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Shots"},"299":{"name":"Austin 2025 Highlight | Surprise Grenade","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Grenade"},"3":{"name":"Austin 2025 Highlight | 1v2 Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1v2 Denied"},"30":{"name":"Austin 2025 Highlight | Too Fast Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Too Fast Reactions"},"300":{"name":"Austin 2025 Highlight | Jimpphat Clean Sweep","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Clean Sweep"},"301":{"name":"Austin 2025 Highlight | Ticket Takedown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Ticket Takedown"},"302":{"name":"Austin 2025 Highlight | Blocking B","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Blocking B"},"303":{"name":"Austin 2025 Highlight | Glock Carnage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Glock Carnage"},"304":{"name":"Austin 2025 Highlight | Massacre","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Massacre"},"305":{"name":"Austin 2025 Highlight | Cover Fire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Cover Fire"},"306":{"name":"Austin 2025 Highlight | Precision","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Precision"},"307":{"name":"Austin 2025 Highlight | Spinx Double Mirage Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Double Mirage Kill"},"308":{"name":"Austin 2025 Highlight | Pistol Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol Hero"},"309":{"name":"Austin 2025 Highlight | Tunnel Vision","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tunnel Vision"},"31":{"name":"Austin 2025 Highlight | The Flying Spray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Flying Spray"},"310":{"name":"Austin 2025 Highlight | xertioN Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN Double Kill"},"311":{"name":"Austin 2025 Highlight | Deadly Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Deadly Deagle"},"312":{"name":"Austin 2025 Highlight | Galil Power","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Galil Power"},"313":{"name":"Austin 2025 Highlight | Locked Out","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Locked Out"},"314":{"name":"Austin 2025 Highlight | Focused But Fallen","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Focused But Fallen"},"315":{"name":"Austin 2025 Highlight | Fast Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fast Double"},"316":{"name":"Austin 2025 Highlight | Vital","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Vital"},"317":{"name":"Austin 2025 Highlight | Cheeky Boost","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Cheeky Boost"},"318":{"name":"Austin 2025 Highlight | Peekaboo","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Peekaboo"},"319":{"name":"Austin 2025 Highlight | The Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Defender"},"32":{"name":"Austin 2025 Highlight | Almost The Ace","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost The Ace"},"320":{"name":"Austin 2025 Highlight | Surprise Play","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Play"},"321":{"name":"Austin 2025 Highlight | No Chance","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | No Chance"},"322":{"name":"Austin 2025 Highlight | Running Galil","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Running Galil"},"323":{"name":"Austin 2025 Highlight | flameZ Double Train Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Double Train Kill"},"324":{"name":"Austin 2025 Highlight | One Tap","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Tap"},"325":{"name":"Austin 2025 Highlight | Just Peek Me","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Just Peek Me"},"326":{"name":"Austin 2025 Highlight | Forgot About Me?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Forgot About Me?"},"327":{"name":"Austin 2025 Highlight | Trigger Happy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Trigger Happy"},"328":{"name":"Austin 2025 Highlight | USP Masterclass","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | USP Masterclass"},"329":{"name":"Austin 2025 Highlight | ropz Double Train Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Double Train Kill"},"33":{"name":"Austin 2025 Highlight | donk Ace","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | donk Ace"},"330":{"name":"Austin 2025 Highlight | Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Defender"},"331":{"name":"Austin 2025 Highlight | Backup Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Backup Is Here"},"332":{"name":"Austin 2025 Highlight | Shutdown By HE","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Shutdown By HE"},"333":{"name":"Austin 2025 Highlight | Opener","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Opener"},"334":{"name":"Austin 2025 Highlight | Failed Lurk","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Failed Lurk"},"335":{"name":"Austin 2025 Highlight | Spinx Train Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Train Triple Kill"},"336":{"name":"Austin 2025 Highlight | Train Double Dink","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Train Double Dink"},"337":{"name":"Austin 2025 Highlight | torzsi Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Clutch Denied"},"338":{"name":"Austin 2025 Highlight | xertioN: The Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Cowboy"},"339":{"name":"Austin 2025 Highlight | xertioN: The Train Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Train Eco Fragger"},"34":{"name":"Austin 2025 Highlight | Fast MP9 Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fast MP9 Double Kill"},"340":{"name":"Austin 2025 Highlight | ZywOo Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Kill"},"341":{"name":"Austin 2025 Highlight | The AWP Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The AWP Double"},"342":{"name":"Austin 2025 Highlight | ZywOo AWP Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo AWP Rampage"},"343":{"name":"Austin 2025 Highlight | The Dominator","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Dominator"},"344":{"name":"Austin 2025 Highlight | ZywOo Double Headshot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Double Headshot"},"345":{"name":"Austin 2025 Highlight | Strikes Back","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Strikes Back"},"346":{"name":"Austin 2025 Highlight | 910 Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Clutch Denied"},"347":{"name":"Austin 2025 Highlight | 910 Triple Kill vs Vitality","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Triple Kill vs Vitality"},"348":{"name":"Austin 2025 Highlight | 910 Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Double Kill"},"349":{"name":"Austin 2025 Highlight | 910 Ace","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Ace"},"35":{"name":"Austin 2025 Highlight | 1 Holds 1 Dodges","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 1 Holds 1 Dodges"},"350":{"name":"Austin 2025 Highlight | apEX Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX Triple Kill"},"351":{"name":"Austin 2025 Highlight | The Nade Delivery","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Nade Delivery"},"352":{"name":"Austin 2025 Highlight | Unlucky","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Unlucky"},"353":{"name":"Austin 2025 Highlight | apEX: The Joker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX: The Joker"},"354":{"name":"Austin 2025 Highlight | bLitz Triple Kill vs Vitality","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Triple Kill vs Vitality"},"355":{"name":"Austin 2025 Highlight | bLitz Almost The Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Almost The Hero"},"356":{"name":"Austin 2025 Highlight | bLitz Double Connector Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Connector Kill"},"357":{"name":"Austin 2025 Highlight | flameZ Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Clutch Denied"},"358":{"name":"Austin 2025 Highlight | flameZ Triple Kill vs MongolZ","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Triple Kill vs MongolZ"},"359":{"name":"Austin 2025 Highlight | The Teamflash","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Teamflash"},"36":{"name":"Austin 2025 Highlight | I'm Right Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | I'm Right Behind You"},"360":{"name":"Austin 2025 Highlight | mezii Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Almost Clutch"},"361":{"name":"Austin 2025 Highlight | mezii Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Clutch Denied"},"362":{"name":"Austin 2025 Highlight | The Suspect","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Suspect"},"363":{"name":"Austin 2025 Highlight | ropz: The Cowboy","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz: The Cowboy"},"364":{"name":"Austin 2025 Highlight | Senzu: The Eco Fragger - Top Mid","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu: The Eco Fragger - Top Mid"},"365":{"name":"Austin 2025 Highlight | Senzu: The Eco Fragger - Cat","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu: The Eco Fragger - Cat"},"366":{"name":"Austin 2025 Highlight | Techno4K: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K: The Clutch God"},"367":{"name":"Austin 2025 Highlight | The Clutch Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Clutch Demon"},"368":{"name":"Austin 2025 Highlight | Techno4K: The Cowboy vs Vitality","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K: The Cowboy vs Vitality"},"369":{"name":"Austin 2025 Highlight | Techno4K Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Closer"},"37":{"name":"Austin 2025 Highlight | Jimpphat Double Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Double Entry"},"370":{"name":"Austin 2025 Highlight | ZywOo Smoke Criminal","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Smoke Criminal"},"371":{"name":"Austin 2025 Highlight | Smoke Speaker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Speaker"},"372":{"name":"Austin 2025 Highlight | Smoke Breaker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Breaker"},"373":{"name":"Austin 2025 Highlight | apEX Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX Double Kill"},"374":{"name":"Austin 2025 Highlight | Kobes","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kobes"},"375":{"name":"Austin 2025 Highlight | apEX: Help Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | apEX: Help Is Here"},"376":{"name":"Austin 2025 Highlight | Flying Frenchman","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Flying Frenchman"},"377":{"name":"Austin 2025 Highlight | bLitz Double Dust II Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | bLitz Double Dust II Kill"},"378":{"name":"Austin 2025 Highlight | Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Fragger"},"379":{"name":"Austin 2025 Highlight | flameZ Double Dust II Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Double Dust II Kill"},"38":{"name":"Austin 2025 Highlight | Baited Into A Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Baited Into A Double Kill"},"380":{"name":"Austin 2025 Highlight | Dust II Retake King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Dust II Retake King"},"381":{"name":"Austin 2025 Highlight | A Defender","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | A Defender"},"382":{"name":"Austin 2025 Highlight | No Time","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | No Time"},"383":{"name":"Austin 2025 Highlight | mezii Double Dust II Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Double Dust II Kill"},"384":{"name":"Austin 2025 Highlight | Surprise Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Entry"},"385":{"name":"Austin 2025 Highlight | Clutch Veteran","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch Veteran"},"386":{"name":"Austin 2025 Highlight | Closing Kills","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Closing Kills"},"387":{"name":"Austin 2025 Highlight | Fear Him","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fear Him"},"388":{"name":"Austin 2025 Highlight | 180 One Tap","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 180 One Tap"},"389":{"name":"Austin 2025 Highlight | The Dual Double","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Dual Double"},"39":{"name":"Austin 2025 Highlight | 2K Spraydown","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 2K Spraydown"},"390":{"name":"Austin 2025 Highlight | ropz Spray And Pray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Spray And Pray"},"391":{"name":"Austin 2025 Highlight | ropz Quad Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Quad Kill"},"392":{"name":"Austin 2025 Highlight | ropz Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ropz Clutch Denied"},"393":{"name":"Austin 2025 Highlight | Senzu: The Clutch God","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu: The Clutch God"},"394":{"name":"Austin 2025 Highlight | Senzu Clutch Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Clutch Denied"},"395":{"name":"Austin 2025 Highlight | Techno4K Almost The Hero","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4K Almost The Hero"},"396":{"name":"Austin 2025 Highlight | Triple Kill Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Kill Clutch"},"397":{"name":"Austin 2025 Highlight | ZywOo: The Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo: The Eco Fragger"},"398":{"name":"Austin 2025 Highlight | ZywOo Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | ZywOo Triple Kill"},"399":{"name":"Austin 2025 Highlight | Open And Close","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Open And Close"},"4":{"name":"Austin 2025 Highlight | chopper Triple Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | chopper Triple Entry"},"40":{"name":"Austin 2025 Highlight | Not Over Yet","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Not Over Yet"},"400":{"name":"Austin 2025 Highlight | Jump Spot Dodge","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jump Spot Dodge"},"401":{"name":"Austin 2025 Highlight | Kill Trio Delivered","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kill Trio Delivered"},"402":{"name":"Austin 2025 Highlight | Triple Kill Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Kill Closer"},"403":{"name":"Austin 2025 Highlight | I Believe I Can Fly","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | I Believe I Can Fly"},"404":{"name":"Austin 2025 Highlight | Eco Tastes Good","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Tastes Good"},"405":{"name":"Austin 2025 Highlight | Struggling Against Glocks","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Struggling Against Glocks"},"406":{"name":"Austin 2025 Highlight | Right Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Right Behind You"},"407":{"name":"Austin 2025 Highlight | USP King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | USP King"},"408":{"name":"Austin 2025 Highlight | One With The MP9","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One With The MP9"},"409":{"name":"Austin 2025 Highlight | Triple Trouble","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Trouble"},"41":{"name":"Austin 2025 Highlight | magixx Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | magixx Double Kill"},"410":{"name":"Austin 2025 Highlight | Pre Aim","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pre Aim"},"411":{"name":"Austin 2025 Highlight | Eyes Open","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eyes Open"},"412":{"name":"Austin 2025 Highlight | Double Glock Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Glock Down"},"413":{"name":"Austin 2025 Highlight | Missed Shot And Missed Chance","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed Shot And Missed Chance"},"414":{"name":"Austin 2025 Highlight | I Can't See","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | I Can't See"},"415":{"name":"Austin 2025 Highlight | You Can't Hide","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | You Can't Hide"},"416":{"name":"Austin 2025 Highlight | Clutch or Nothing","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch or Nothing"},"417":{"name":"Austin 2025 Highlight | Senzu Double Deagle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Senzu Double Deagle"},"418":{"name":"Austin 2025 Highlight | Clutch and Defuse","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch and Defuse"},"419":{"name":"Austin 2025 Highlight | Glocks Taken Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Glocks Taken Down"},"42":{"name":"Austin 2025 Highlight | Scout Demon","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Scout Demon"},"420":{"name":"Austin 2025 Highlight | Double Duals Dominate","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Duals Dominate"},"421":{"name":"Austin 2025 Highlight | Nice Try","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Nice Try"},"422":{"name":"Austin 2025 Highlight | Glock Double Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Glock Double Down"},"423":{"name":"Austin 2025 Highlight | Techno4k Triple Terror","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno4k Triple Terror"},"424":{"name":"Austin 2025 Highlight | Duals No Damage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Duals No Damage"},"425":{"name":"Austin 2025 Highlight | Rifle Powerplay","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rifle Powerplay"},"426":{"name":"Austin 2025 Highlight | Sneaky Killer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sneaky Killer"},"427":{"name":"Austin 2025 Highlight | Airborne","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Airborne"},"428":{"name":"Austin 2025 Highlight | Exploit","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Exploit"},"429":{"name":"Austin 2025 Highlight | Rifle Control","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rifle Control"},"43":{"name":"Austin 2025 Highlight | Not Quite The Angle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Not Quite The Angle"},"430":{"name":"Austin 2025 Highlight | Blast","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Blast"},"431":{"name":"Austin 2025 Highlight | Last Effort","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Last Effort"},"432":{"name":"Austin 2025 Highlight | Pit Hold","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pit Hold"},"433":{"name":"Austin 2025 Highlight | Pit Power","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pit Power"},"434":{"name":"Austin 2025 Highlight | Punisher from Pit","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Punisher from Pit"},"435":{"name":"Austin 2025 Highlight | Retake Master","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Retake Master"},"436":{"name":"Austin 2025 Highlight | Jimmy Jabs","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimmy Jabs"},"437":{"name":"Austin 2025 Highlight | Rapid Fire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rapid Fire"},"438":{"name":"Austin 2025 Highlight | Stronghold","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Stronghold"},"439":{"name":"Austin 2025 Highlight | Spinx Inferno Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Inferno Triple Kill"},"44":{"name":"Austin 2025 Highlight | Sharpshooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sharpshooter"},"440":{"name":"Austin 2025 Highlight | Site Recovery","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Site Recovery"},"441":{"name":"Austin 2025 Highlight | Sharp Shooter","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sharp Shooter"},"442":{"name":"Austin 2025 Highlight | Hidden Threat","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Hidden Threat"},"443":{"name":"Austin 2025 Highlight | Deadly Defense","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Deadly Defense"},"444":{"name":"Austin 2025 Highlight | FAMAS Specialist","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FAMAS Specialist"},"445":{"name":"Austin 2025 Highlight | torzsi Double Inferno Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Double Inferno Kill"},"446":{"name":"Austin 2025 Highlight | Close Call","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Close Call"},"447":{"name":"Austin 2025 Highlight | Lethal On Long","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Lethal On Long"},"448":{"name":"Austin 2025 Highlight | Hit or Miss","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Hit or Miss"},"449":{"name":"Austin 2025 Highlight | Tagging","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tagging"},"45":{"name":"Austin 2025 Highlight | AWP Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Denied"},"450":{"name":"Austin 2025 Highlight | Bombsite Battle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Bombsite Battle"},"451":{"name":"Austin 2025 Highlight | Pistol Punisher","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol Punisher"},"452":{"name":"Austin 2025 Highlight | Round Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Round Closer"},"453":{"name":"Austin 2025 Highlight | Almost There","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Almost There"},"454":{"name":"Austin 2025 Highlight | Striking MP9","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Striking MP9"},"455":{"name":"Austin 2025 Highlight | Rifle Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rifle Rampage"},"456":{"name":"Austin 2025 Highlight | One Mag","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Mag"},"457":{"name":"Austin 2025 Highlight | Misfire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Misfire"},"458":{"name":"Austin 2025 Highlight | Striking AWP","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Striking AWP"},"459":{"name":"Austin 2025 Highlight | Struggle","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Struggle"},"46":{"name":"Austin 2025 Highlight | Spinx Dust II Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Dust II Triple Kill"},"460":{"name":"Austin 2025 Highlight | 910 Spray and Pray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 910 Spray and Pray"},"461":{"name":"Austin 2025 Highlight | Kill Chain","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kill Chain"},"462":{"name":"Austin 2025 Highlight | Double Down","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Down"},"463":{"name":"Austin 2025 Highlight | Kill Streak","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Kill Streak"},"464":{"name":"Austin 2025 Highlight | Lead By Example","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Lead By Example"},"465":{"name":"Austin 2025 Highlight | Hold Line","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Hold Line"},"466":{"name":"Austin 2025 Highlight | Bombsite Cleared","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Bombsite Cleared"},"467":{"name":"Austin 2025 Highlight | Own Fire","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Own Fire"},"468":{"name":"Austin 2025 Highlight | Heroic Effort","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Heroic Effort"},"469":{"name":"Austin 2025 Highlight | Boom","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Boom"},"47":{"name":"Austin 2025 Highlight | Masterclass Lurk","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Masterclass Lurk"},"470":{"name":"Austin 2025 Highlight | Backstabber","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Backstabber"},"471":{"name":"Austin 2025 Highlight | flameZ Retake Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Retake Denied"},"472":{"name":"Austin 2025 Highlight | Testing123","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Testing123"},"473":{"name":"Austin 2025 Highlight | Inferno Retake King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Inferno Retake King"},"474":{"name":"Austin 2025 Highlight | flameZ Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | flameZ Almost Clutch"},"475":{"name":"Austin 2025 Highlight | Round Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Round Here"},"476":{"name":"Austin 2025 Highlight | Domination","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Domination"},"477":{"name":"Austin 2025 Highlight | Standing Strong","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Standing Strong"},"478":{"name":"Austin 2025 Highlight | Boost Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Boost Kill"},"479":{"name":"Austin 2025 Highlight | Warning Shot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Warning Shot"},"48":{"name":"Austin 2025 Highlight | Where Are You Buddy?","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Where Are You Buddy?"},"480":{"name":"Austin 2025 Highlight | mezii Clean Sweep","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | mezii Clean Sweep"},"481":{"name":"Austin 2025 Highlight | Game Changer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Game Changer"},"482":{"name":"Austin 2025 Highlight | Momentum","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Momentum"},"483":{"name":"Austin 2025 Highlight | Quick Kills","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Quick Kills"},"484":{"name":"Austin 2025 Highlight | Rampage","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Rampage"},"485":{"name":"Austin 2025 Highlight | Fierce Fight","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fierce Fight"},"486":{"name":"Austin 2025 Highlight | Failed Revenge","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Failed Revenge"},"487":{"name":"Austin 2025 Highlight | One Shot","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | One Shot"},"488":{"name":"Austin 2025 Highlight | Smoke Spray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Smoke Spray"},"489":{"name":"Austin 2025 Highlight | Striking Shots","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Striking Shots"},"49":{"name":"Austin 2025 Highlight | Spinx: Help Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx: Help Is Here"},"490":{"name":"Austin 2025 Highlight | Techno Triumph","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Techno Triumph"},"491":{"name":"Austin 2025 Highlight | Timed Push","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Timed Push"},"492":{"name":"Austin 2025 Highlight | Clutch Win","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Clutch Win"},"493":{"name":"Budapest 2025 Highlight | Natus Vincere on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Natus Vincere on the QF stage"},"494":{"name":"Budapest 2025 Highlight | FURIA on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FURIA on the QF stage"},"495":{"name":"Budapest 2025 Highlight | w0nderful shuts Mid","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful shuts Mid"},"496":{"name":"Budapest 2025 Highlight | Aleksib Underpass sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib Underpass sweep"},"497":{"name":"Budapest 2025 Highlight | b1t Apartments play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t Apartments play"},"498":{"name":"Budapest 2025 Highlight | b1t mid-air catch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t mid-air catch"},"499":{"name":"Budapest 2025 Highlight | b1t smoke breakthrough","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t smoke breakthrough"},"5":{"name":"Austin 2025 Highlight | Double Pistol Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double Pistol Kill"},"50":{"name":"Austin 2025 Highlight | xertioN: The Joker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Joker"},"500":{"name":"Budapest 2025 Highlight | iM Connector burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM Connector burst"},"501":{"name":"Budapest 2025 Highlight | iM AK massacre","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM AK massacre"},"502":{"name":"Budapest 2025 Highlight | iM sick-flick","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM sick-flick"},"503":{"name":"Budapest 2025 Highlight | makazze B-aps stop","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze B-aps stop"},"504":{"name":"Budapest 2025 Highlight | yuurih A-site clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih A-site clutch"},"505":{"name":"Budapest 2025 Highlight | w0nderful vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FURIA on Mirage"},"506":{"name":"Budapest 2025 Highlight | Aleksib vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FURIA on Mirage"},"507":{"name":"Budapest 2025 Highlight | b1t vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FURIA on Mirage"},"508":{"name":"Budapest 2025 Highlight | iM vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FURIA on Mirage"},"509":{"name":"Budapest 2025 Highlight | makazze vs FURIA on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FURIA on Mirage"},"51":{"name":"Austin 2025 Highlight | xertioN Dust II Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN Dust II Triple Kill"},"510":{"name":"Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Mirage"},"511":{"name":"Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Mirage"},"512":{"name":"Budapest 2025 Highlight | FalleN vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN vs Natus Vincere on Mirage"},"513":{"name":"Budapest 2025 Highlight | molodoy vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy vs Natus Vincere on Mirage"},"514":{"name":"Budapest 2025 Highlight | yuurih vs Natus Vincere on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih vs Natus Vincere on Mirage"},"515":{"name":"Budapest 2025 Highlight | FaZe on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe on the QF stage"},"516":{"name":"Budapest 2025 Highlight | MOUZ on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | MOUZ on the QF stage"},"517":{"name":"Budapest 2025 Highlight | karrigan through fire","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan through fire"},"518":{"name":"Budapest 2025 Highlight | karrigan cuts rotation","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan cuts rotation"},"519":{"name":"Budapest 2025 Highlight | Twistzz smoke breaker","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz smoke breaker"},"52":{"name":"Austin 2025 Highlight | Missed Him But It's Okay","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Missed Him But It's Okay"},"520":{"name":"Budapest 2025 Highlight | jcobbb entry force","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb entry force"},"521":{"name":"Budapest 2025 Highlight | frozen post-plant wall","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen post-plant wall"},"522":{"name":"Budapest 2025 Highlight | broky seals Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky seals Nuke"},"523":{"name":"Budapest 2025 Highlight | Spinx instant refrag","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx instant refrag"},"524":{"name":"Budapest 2025 Highlight | Spinx plant pressure","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx plant pressure"},"525":{"name":"Budapest 2025 Highlight | torzsi opening picks","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi opening picks"},"526":{"name":"Budapest 2025 Highlight | Brollan Ramp action","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Brollan Ramp action"},"527":{"name":"Budapest 2025 Highlight | karrigan vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs MOUZ on Nuke"},"528":{"name":"Budapest 2025 Highlight | broky vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs MOUZ on Nuke"},"529":{"name":"Budapest 2025 Highlight | Twistzz vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs MOUZ on Nuke"},"53":{"name":"Austin 2025 Highlight | Surprise Behind You","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Behind You"},"530":{"name":"Budapest 2025 Highlight | jcobbb vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs MOUZ on Nuke"},"531":{"name":"Budapest 2025 Highlight | frozen vs MOUZ on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs MOUZ on Nuke"},"532":{"name":"Budapest 2025 Highlight | Jimpphat vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Jimpphat vs FaZe on Nuke"},"533":{"name":"Budapest 2025 Highlight | Brollan vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Brollan vs FaZe on Nuke"},"534":{"name":"Budapest 2025 Highlight | Spinx vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx vs FaZe on Nuke"},"535":{"name":"Budapest 2025 Highlight | torzsi vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi vs FaZe on Nuke"},"536":{"name":"Budapest 2025 Highlight | xertioN vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | xertioN vs FaZe on Nuke"},"537":{"name":"Budapest 2025 Highlight | Spirit on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spirit on the QF stage"},"538":{"name":"Budapest 2025 Highlight | Falcons on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Falcons on the QF stage"},"539":{"name":"Budapest 2025 Highlight | chopper strikes first","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper strikes first"},"54":{"name":"Austin 2025 Highlight | Triple Pistol","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Pistol"},"540":{"name":"Budapest 2025 Highlight | m0NESY defuse denial","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY defuse denial"},"541":{"name":"Budapest 2025 Highlight | sh1ro takes over","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro takes over"},"542":{"name":"Budapest 2025 Highlight | sh1ro B-site carnage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro B-site carnage"},"543":{"name":"Budapest 2025 Highlight | zweih almost aces","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih almost aces"},"544":{"name":"Budapest 2025 Highlight | zweih ace","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih ace"},"545":{"name":"Budapest 2025 Highlight | donk opens everything","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk opens everything"},"546":{"name":"Budapest 2025 Highlight | tN1R smoke assassin","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R smoke assassin"},"547":{"name":"Budapest 2025 Highlight | tN1R Ramp massacre","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R Ramp massacre"},"548":{"name":"Budapest 2025 Highlight | kyousuke Ramp wipe","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke Ramp wipe"},"549":{"name":"Budapest 2025 Highlight | chopper vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Falcons on Nuke"},"55":{"name":"Austin 2025 Highlight | donk Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | donk Triple Kill"},"550":{"name":"Budapest 2025 Highlight | donk vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Falcons on Nuke"},"551":{"name":"Budapest 2025 Highlight | zweih vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Falcons on Nuke"},"552":{"name":"Budapest 2025 Highlight | sh1ro vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Falcons on Nuke"},"553":{"name":"Budapest 2025 Highlight | tN1R vs Falcons on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Falcons on Nuke"},"554":{"name":"Budapest 2025 Highlight | NiKo vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | NiKo vs Spirit on Nuke"},"555":{"name":"Budapest 2025 Highlight | kyxsan vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyxsan vs Spirit on Nuke"},"556":{"name":"Budapest 2025 Highlight | m0NESY vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY vs Spirit on Nuke"},"557":{"name":"Budapest 2025 Highlight | TeSeS vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | TeSeS vs Spirit on Nuke"},"558":{"name":"Budapest 2025 Highlight | kyousuke vs Spirit on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke vs Spirit on Nuke"},"559":{"name":"Budapest 2025 Highlight | Vitality on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality on the QF stage"},"56":{"name":"Austin 2025 Highlight | Stand Still","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Stand Still"},"560":{"name":"Budapest 2025 Highlight | The MongolZ on the QF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | The MongolZ on the QF stage"},"561":{"name":"Budapest 2025 Highlight | mezii opening chaos","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii opening chaos"},"562":{"name":"Budapest 2025 Highlight | mezii Forest play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii Forest play"},"563":{"name":"Budapest 2025 Highlight | flameZ mid brawl","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ mid brawl"},"564":{"name":"Budapest 2025 Highlight | flameZ everywhere","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ everywhere"},"565":{"name":"Budapest 2025 Highlight | ZywOo P250 madness","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo P250 madness"},"566":{"name":"Budapest 2025 Highlight | ZywOo final blow","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo final blow"},"567":{"name":"Budapest 2025 Highlight | Techno4K triple punch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Techno4K triple punch"},"568":{"name":"Budapest 2025 Highlight | 910 solid rotation","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 solid rotation"},"569":{"name":"Budapest 2025 Highlight | ZywOo vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs The MongolZ on Mirage"},"57":{"name":"Austin 2025 Highlight | 3-2-1-GO!","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 3-2-1-GO!"},"570":{"name":"Budapest 2025 Highlight | apEX vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs The MongolZ on Mirage"},"571":{"name":"Budapest 2025 Highlight | mezii vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs The MongolZ on Mirage"},"572":{"name":"Budapest 2025 Highlight | flameZ vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs The MongolZ on Mirage"},"573":{"name":"Budapest 2025 Highlight | ropz vs The MongolZ on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs The MongolZ on Mirage"},"574":{"name":"Budapest 2025 Highlight | bLitz vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | bLitz vs Vitality on Mirage"},"575":{"name":"Budapest 2025 Highlight | Techno4K vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Techno4K vs Vitality on Mirage"},"576":{"name":"Budapest 2025 Highlight | Mzinho vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho vs Vitality on Mirage"},"577":{"name":"Budapest 2025 Highlight | 910 vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 vs Vitality on Mirage"},"578":{"name":"Budapest 2025 Highlight | controlez vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | controlez vs Vitality on Mirage"},"579":{"name":"Budapest 2025 Highlight | w0nderful plant lockdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful plant lockdown"},"58":{"name":"Austin 2025 Highlight | Jimpphat Spray And Pray","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Spray And Pray"},"580":{"name":"Budapest 2025 Highlight | Aleksib smoke breaker","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib smoke breaker"},"581":{"name":"Budapest 2025 Highlight | b1t pistol shutdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t pistol shutdown"},"582":{"name":"Budapest 2025 Highlight | iM nearly 1v5","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM nearly 1v5"},"583":{"name":"Budapest 2025 Highlight | iM Short cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM Short cleanup"},"584":{"name":"Budapest 2025 Highlight | YEKINDAR Glock charge","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR Glock charge"},"585":{"name":"Budapest 2025 Highlight | KSCERATO boost play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO boost play"},"586":{"name":"Budapest 2025 Highlight | FalleN smoke play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN smoke play"},"587":{"name":"Budapest 2025 Highlight | FalleN Banana clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN Banana clutch"},"588":{"name":"Budapest 2025 Highlight | FalleN captain defuse","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN captain defuse"},"589":{"name":"Budapest 2025 Highlight | molodoy overtime quadro","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy overtime quadro"},"59":{"name":"Austin 2025 Highlight | Anchoring Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Anchoring Double Kill"},"590":{"name":"Budapest 2025 Highlight | w0nderful vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FURIA on Inferno"},"591":{"name":"Budapest 2025 Highlight | Aleksib vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FURIA on Inferno"},"592":{"name":"Budapest 2025 Highlight | b1t vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FURIA on Inferno"},"593":{"name":"Budapest 2025 Highlight | iM vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FURIA on Inferno"},"594":{"name":"Budapest 2025 Highlight | makazze vs FURIA on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FURIA on Inferno"},"595":{"name":"Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Inferno"},"596":{"name":"Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Inferno"},"597":{"name":"Budapest 2025 Highlight | FalleN vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN vs Natus Vincere on Inferno"},"598":{"name":"Budapest 2025 Highlight | molodoy vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy vs Natus Vincere on Inferno"},"599":{"name":"Budapest 2025 Highlight | yuurih vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih vs Natus Vincere on Inferno"},"6":{"name":"Austin 2025 Highlight | Pros Never Fake","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pros Never Fake"},"60":{"name":"Austin 2025 Highlight | Double AWP Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Double AWP Entry"},"600":{"name":"Budapest 2025 Highlight | FaZe win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe win in the QF"},"601":{"name":"Budapest 2025 Highlight | broky mid-air magic","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky mid-air magic"},"602":{"name":"Budapest 2025 Highlight | broky Boiler cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Boiler cleanup"},"603":{"name":"Budapest 2025 Highlight | broky post-plant fury","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky post-plant fury"},"604":{"name":"Budapest 2025 Highlight | frozen Banana snap","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana snap"},"605":{"name":"Budapest 2025 Highlight | karrigan nade finish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan nade finish"},"606":{"name":"Budapest 2025 Highlight | torzsi Tec-9 rampage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi Tec-9 rampage"},"607":{"name":"Budapest 2025 Highlight | Twistzz dual chaos","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz dual chaos"},"608":{"name":"Budapest 2025 Highlight | xertioN clutch win","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | xertioN clutch win"},"609":{"name":"Budapest 2025 Highlight | broky vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs MOUZ on Inferno"},"61":{"name":"Austin 2025 Highlight | Won't go quietly","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Won't go quietly"},"610":{"name":"Budapest 2025 Highlight | Brollan vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Brollan vs FaZe on Inferno"},"611":{"name":"Budapest 2025 Highlight | frozen vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs MOUZ on Inferno"},"612":{"name":"Budapest 2025 Highlight | jcobbb vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs MOUZ on Inferno"},"613":{"name":"Budapest 2025 Highlight | Jimpphat vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Jimpphat vs FaZe on Inferno"},"614":{"name":"Budapest 2025 Highlight | karrigan vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs MOUZ on Inferno"},"615":{"name":"Budapest 2025 Highlight | Spinx vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spinx vs FaZe on Inferno"},"616":{"name":"Budapest 2025 Highlight | torzsi vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | torzsi vs FaZe on Inferno"},"617":{"name":"Budapest 2025 Highlight | Twistzz vs MOUZ on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs MOUZ on Inferno"},"618":{"name":"Budapest 2025 Highlight | xertioN vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | xertioN vs FaZe on Inferno"},"619":{"name":"Budapest 2025 Highlight | Spirit win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spirit win in the QF"},"62":{"name":"Austin 2025 Highlight | The Flying Entry","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Flying Entry"},"620":{"name":"Budapest 2025 Highlight | chopper A-site havoc","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper A-site havoc"},"621":{"name":"Budapest 2025 Highlight | donk quad eruption","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk quad eruption"},"622":{"name":"Budapest 2025 Highlight | kyousuke smoke punish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke smoke punish"},"623":{"name":"Budapest 2025 Highlight | m0NESY momentum swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY momentum swing"},"624":{"name":"Budapest 2025 Highlight | sh1ro mid-air shutdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro mid-air shutdown"},"625":{"name":"Budapest 2025 Highlight | sh1ro multi-action swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro multi-action swing"},"626":{"name":"Budapest 2025 Highlight | TeSeS site purge","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | TeSeS site purge"},"627":{"name":"Budapest 2025 Highlight | tN1R Gandalf spray","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R Gandalf spray"},"628":{"name":"Budapest 2025 Highlight | zweih flawless ace","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih flawless ace"},"629":{"name":"Budapest 2025 Highlight | zweih B-site fortress","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih B-site fortress"},"63":{"name":"Austin 2025 Highlight | Thanks For The M4A1-S","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Thanks For The M4A1-S"},"630":{"name":"Budapest 2025 Highlight | chopper vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Falcons on Dust II"},"631":{"name":"Budapest 2025 Highlight | donk vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Falcons on Dust II"},"632":{"name":"Budapest 2025 Highlight | kyousuke vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyousuke vs Spirit on Dust II"},"633":{"name":"Budapest 2025 Highlight | kyxsan vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | kyxsan vs Spirit on Dust II"},"634":{"name":"Budapest 2025 Highlight | m0NESY vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | m0NESY vs Spirit on Dust II"},"635":{"name":"Budapest 2025 Highlight | NiKo vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | NiKo vs Spirit on Dust II"},"636":{"name":"Budapest 2025 Highlight | sh1ro vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Falcons on Dust II"},"637":{"name":"Budapest 2025 Highlight | TeSeS vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | TeSeS vs Spirit on Dust II"},"638":{"name":"Budapest 2025 Highlight | tN1R vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Falcons on Dust II"},"639":{"name":"Budapest 2025 Highlight | zweih vs Falcons on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Falcons on Dust II"},"64":{"name":"Austin 2025 Highlight | Nuke Double Dink","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Nuke Double Dink"},"640":{"name":"Budapest 2025 Highlight | Vitality win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality win in the QF"},"641":{"name":"Budapest 2025 Highlight | 910 MP9 mayhem","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 MP9 mayhem"},"642":{"name":"Budapest 2025 Highlight | mezii B-site burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii B-site burst"},"643":{"name":"Budapest 2025 Highlight | mezii mid takeover","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii mid takeover"},"644":{"name":"Budapest 2025 Highlight | Mzinho Long control","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho Long control"},"645":{"name":"Budapest 2025 Highlight | Mzinho clears Short","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho clears Short"},"646":{"name":"Budapest 2025 Highlight | Mzinho mid surprise","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho mid surprise"},"647":{"name":"Budapest 2025 Highlight | ropz 1v3 clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz 1v3 clutch"},"648":{"name":"Budapest 2025 Highlight | ropz pistol precision","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz pistol precision"},"649":{"name":"Budapest 2025 Highlight | ZywOo triple finish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo triple finish"},"65":{"name":"Austin 2025 Highlight | Too Close","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Too Close"},"650":{"name":"Budapest 2025 Highlight | 910 vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | 910 vs Vitality on Dust II"},"651":{"name":"Budapest 2025 Highlight | apEX vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs The MongolZ on Dust II"},"652":{"name":"Budapest 2025 Highlight | bLitz vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | bLitz vs Vitality on Dust II"},"653":{"name":"Budapest 2025 Highlight | controlez vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | controlez vs Vitality on Dust II"},"654":{"name":"Budapest 2025 Highlight | flameZ vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs The MongolZ on Dust II"},"655":{"name":"Budapest 2025 Highlight | mezii vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs The MongolZ on Dust II"},"656":{"name":"Budapest 2025 Highlight | Mzinho vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Mzinho vs Vitality on Dust II"},"657":{"name":"Budapest 2025 Highlight | ropz vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs The MongolZ on Dust II"},"658":{"name":"Budapest 2025 Highlight | Techno4K vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Techno4K vs Vitality on Dust II"},"659":{"name":"Budapest 2025 Highlight | ZywOo vs The MongolZ on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs The MongolZ on Dust II"},"66":{"name":"Austin 2025 Highlight | Spinx Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Spinx Double Nuke Kill"},"660":{"name":"Budapest 2025 Highlight | Natus Vincere win in the QF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Natus Vincere win in the QF"},"661":{"name":"Budapest 2025 Highlight | w0nderful smoke criminal","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful smoke criminal"},"662":{"name":"Budapest 2025 Highlight | Aleksib post-plant triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib post-plant triple"},"663":{"name":"Budapest 2025 Highlight | b1t B-site ambush","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t B-site ambush"},"664":{"name":"Budapest 2025 Highlight | makazze flash cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze flash cleanup"},"665":{"name":"Budapest 2025 Highlight | makazze Ivy disruption","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze Ivy disruption"},"666":{"name":"Budapest 2025 Highlight | makazze pistol precision","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze pistol precision"},"667":{"name":"Budapest 2025 Highlight | makazze fury unleashed","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze fury unleashed"},"668":{"name":"Budapest 2025 Highlight | KSCERATO A play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO A play"},"669":{"name":"Budapest 2025 Highlight | FalleN late-half triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN late-half triple"},"67":{"name":"Austin 2025 Highlight | The Help Is Here","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Help Is Here"},"670":{"name":"Budapest 2025 Highlight | w0nderful vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FURIA on Train"},"671":{"name":"Budapest 2025 Highlight | Aleksib vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FURIA on Train"},"672":{"name":"Budapest 2025 Highlight | b1t vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FURIA on Train"},"673":{"name":"Budapest 2025 Highlight | iM vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FURIA on Train"},"674":{"name":"Budapest 2025 Highlight | makazze vs FURIA on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FURIA on Train"},"675":{"name":"Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | YEKINDAR vs Natus Vincere on Train"},"676":{"name":"Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | KSCERATO vs Natus Vincere on Train"},"677":{"name":"Budapest 2025 Highlight | FalleN vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FalleN vs Natus Vincere on Train"},"678":{"name":"Budapest 2025 Highlight | molodoy vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | molodoy vs Natus Vincere on Train"},"679":{"name":"Budapest 2025 Highlight | yuurih vs Natus Vincere on Train","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | yuurih vs Natus Vincere on Train"},"68":{"name":"Austin 2025 Highlight | Let's Goo","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Let's Goo"},"680":{"name":"Budapest 2025 Highlight | Natus Vincere on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Natus Vincere on the SF stage"},"681":{"name":"Budapest 2025 Highlight | FaZe on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe on the SF stage"},"682":{"name":"Budapest 2025 Highlight | Aleksib smoke read spray","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib smoke read spray"},"683":{"name":"Budapest 2025 Highlight | b1t B-site stand","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t B-site stand"},"684":{"name":"Budapest 2025 Highlight | iM USP-S quad threat","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM USP-S quad threat"},"685":{"name":"Budapest 2025 Highlight | jcobbb Redroom sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb Redroom sweep"},"686":{"name":"Budapest 2025 Highlight | karrigan smoke double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan smoke double"},"687":{"name":"Budapest 2025 Highlight | makazze A-plant entry","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze A-plant entry"},"688":{"name":"Budapest 2025 Highlight | makazze Mid wide swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze Mid wide swing"},"689":{"name":"Budapest 2025 Highlight | makazze Redroom transfer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze Redroom transfer"},"69":{"name":"Austin 2025 Highlight | torzsi Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | torzsi Double Nuke Kill"},"690":{"name":"Budapest 2025 Highlight | w0nderful Mid to A punish","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful Mid to A punish"},"691":{"name":"Budapest 2025 Highlight | w0nderful A-site triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful A-site triple"},"692":{"name":"Budapest 2025 Highlight | w0nderful vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FaZe on Ancient"},"693":{"name":"Budapest 2025 Highlight | Aleksib vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FaZe on Ancient"},"694":{"name":"Budapest 2025 Highlight | b1t vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FaZe on Ancient"},"695":{"name":"Budapest 2025 Highlight | iM vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FaZe on Ancient"},"696":{"name":"Budapest 2025 Highlight | makazze vs FaZe on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FaZe on Ancient"},"697":{"name":"Budapest 2025 Highlight | karrigan vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Natus Vincere on Ancient"},"698":{"name":"Budapest 2025 Highlight | broky vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Natus Vincere on Ancient"},"699":{"name":"Budapest 2025 Highlight | Twistzz vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Natus Vincere on Ancient"},"7":{"name":"Austin 2025 Highlight | Inhuman Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Inhuman Reactions"},"70":{"name":"Austin 2025 Highlight | AWP Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Double Kill"},"700":{"name":"Budapest 2025 Highlight | jcobbb vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Natus Vincere on Ancient"},"701":{"name":"Budapest 2025 Highlight | frozen vs Natus Vincere on Ancient","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Natus Vincere on Ancient"},"702":{"name":"Budapest 2025 Highlight | Spirit on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Spirit on the SF stage"},"703":{"name":"Budapest 2025 Highlight | Vitality on the SF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality on the SF stage"},"704":{"name":"Budapest 2025 Highlight | apEX overtime closer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX overtime closer"},"705":{"name":"Budapest 2025 Highlight | chopper calm 1v3","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper calm 1v3"},"706":{"name":"Budapest 2025 Highlight | donk smoke burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk smoke burst"},"707":{"name":"Budapest 2025 Highlight | donk Mid takeover","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk Mid takeover"},"708":{"name":"Budapest 2025 Highlight | mezii B-aps shutdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii B-aps shutdown"},"709":{"name":"Budapest 2025 Highlight | mezii perfect read","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii perfect read"},"71":{"name":"Austin 2025 Highlight | The Relocate","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Relocate"},"710":{"name":"Budapest 2025 Highlight | ropz round flip","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz round flip"},"711":{"name":"Budapest 2025 Highlight | tN1R Firebox gamble","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R Firebox gamble"},"712":{"name":"Budapest 2025 Highlight | tN1R finishing double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R finishing double"},"713":{"name":"Budapest 2025 Highlight | ZywOo Short play","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo Short play"},"714":{"name":"Budapest 2025 Highlight | apEX vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs Spirit on Mirage"},"715":{"name":"Budapest 2025 Highlight | chopper vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Vitality on Mirage"},"716":{"name":"Budapest 2025 Highlight | donk vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Vitality on Mirage"},"717":{"name":"Budapest 2025 Highlight | flameZ vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs Spirit on Mirage"},"718":{"name":"Budapest 2025 Highlight | mezii vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs Spirit on Mirage"},"719":{"name":"Budapest 2025 Highlight | ropz vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs Spirit on Mirage"},"72":{"name":"Austin 2025 Highlight | Surprise Boost","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise Boost"},"720":{"name":"Budapest 2025 Highlight | sh1ro vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Vitality on Mirage"},"721":{"name":"Budapest 2025 Highlight | tN1R vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Vitality on Mirage"},"722":{"name":"Budapest 2025 Highlight | zweih vs Vitality on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Vitality on Mirage"},"723":{"name":"Budapest 2025 Highlight | ZywOo vs Spirit on Mirage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs Spirit on Mirage"},"724":{"name":"Budapest 2025 Highlight | w0nderful long-range triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful long-range triple"},"725":{"name":"Budapest 2025 Highlight | b1t Outside to B stop","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t Outside to B stop"},"726":{"name":"Budapest 2025 Highlight | iM pistol quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM pistol quad"},"727":{"name":"Budapest 2025 Highlight | iM rotation payoff","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM rotation payoff"},"728":{"name":"Budapest 2025 Highlight | karrigan Main entry triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan Main entry triple"},"729":{"name":"Budapest 2025 Highlight | broky A-site equalizer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky A-site equalizer"},"73":{"name":"Austin 2025 Highlight | xertioN: The Nuke Eco Fragger","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN: The Nuke Eco Fragger"},"730":{"name":"Budapest 2025 Highlight | Twistzz Ramp bomb hold","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Ramp bomb hold"},"731":{"name":"Budapest 2025 Highlight | frozen Ramp triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Ramp triple"},"732":{"name":"Budapest 2025 Highlight | frozen backstab cleanup","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen backstab cleanup"},"733":{"name":"Budapest 2025 Highlight | w0nderful vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FaZe on Nuke"},"734":{"name":"Budapest 2025 Highlight | Aleksib vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FaZe on Nuke"},"735":{"name":"Budapest 2025 Highlight | b1t vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FaZe on Nuke"},"736":{"name":"Budapest 2025 Highlight | iM vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FaZe on Nuke"},"737":{"name":"Budapest 2025 Highlight | makazze vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FaZe on Nuke"},"738":{"name":"Budapest 2025 Highlight | karrigan vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Natus Vincere on Nuke"},"739":{"name":"Budapest 2025 Highlight | broky vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Natus Vincere on Nuke"},"74":{"name":"Austin 2025 Highlight | xertioN Nuke Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | xertioN Nuke Triple Kill"},"740":{"name":"Budapest 2025 Highlight | Twistzz vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Natus Vincere on Nuke"},"741":{"name":"Budapest 2025 Highlight | jcobbb vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Natus Vincere on Nuke"},"742":{"name":"Budapest 2025 Highlight | frozen vs Natus Vincere on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Natus Vincere on Nuke"},"743":{"name":"Budapest 2025 Highlight | Vitality wins in the SF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality wins in the SF"},"744":{"name":"Budapest 2025 Highlight | donk door-to-AWP rampage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk door-to-AWP rampage"},"745":{"name":"Budapest 2025 Highlight | zweih tunnels opener","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih tunnels opener"},"746":{"name":"Budapest 2025 Highlight | tN1R doors to B plant","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R doors to B plant"},"747":{"name":"Budapest 2025 Highlight | ZywOo pistol round burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo pistol round burst"},"748":{"name":"Budapest 2025 Highlight | ZywOo smoke stumble","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo smoke stumble"},"749":{"name":"Budapest 2025 Highlight | apEX early double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX early double"},"75":{"name":"Austin 2025 Highlight | Damage Dealer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Damage Dealer"},"750":{"name":"Budapest 2025 Highlight | apEX A-site lockdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX A-site lockdown"},"751":{"name":"Budapest 2025 Highlight | apEX Long dance","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX Long dance"},"752":{"name":"Budapest 2025 Highlight | flameZ map closer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ map closer"},"753":{"name":"Budapest 2025 Highlight | ropz smoke pick","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz smoke pick"},"754":{"name":"Budapest 2025 Highlight | chopper vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | chopper vs Vitality on Dust II"},"755":{"name":"Budapest 2025 Highlight | donk vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | donk vs Vitality on Dust II"},"756":{"name":"Budapest 2025 Highlight | zweih vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | zweih vs Vitality on Dust II"},"757":{"name":"Budapest 2025 Highlight | sh1ro vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | sh1ro vs Vitality on Dust II"},"758":{"name":"Budapest 2025 Highlight | tN1R vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | tN1R vs Vitality on Dust II"},"759":{"name":"Budapest 2025 Highlight | ZywOo vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs Spirit on Dust II"},"76":{"name":"Austin 2025 Highlight | Textbook Hold","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Textbook Hold"},"760":{"name":"Budapest 2025 Highlight | apEX vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs Spirit on Dust II"},"761":{"name":"Budapest 2025 Highlight | mezii vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs Spirit on Dust II"},"762":{"name":"Budapest 2025 Highlight | flameZ vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs Spirit on Dust II"},"763":{"name":"Budapest 2025 Highlight | ropz vs Spirit on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs Spirit on Dust II"},"764":{"name":"Budapest 2025 Highlight | FaZe win in the SF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe win in the SF"},"765":{"name":"Budapest 2025 Highlight | w0nderful post-plant hold","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful post-plant hold"},"766":{"name":"Budapest 2025 Highlight | Aleksib CT lockdown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib CT lockdown"},"767":{"name":"Budapest 2025 Highlight | b1t Triple timing quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t Triple timing quad"},"768":{"name":"Budapest 2025 Highlight | b1t last-second defuse","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t last-second defuse"},"769":{"name":"Budapest 2025 Highlight | karrigan pistol headshots","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan pistol headshots"},"77":{"name":"Austin 2025 Highlight | The Ninja Lurker","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | The Ninja Lurker"},"770":{"name":"Budapest 2025 Highlight | broky Triple surprise","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Triple surprise"},"771":{"name":"Budapest 2025 Highlight | Twistzz Banana to CT swing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Banana to CT swing"},"772":{"name":"Budapest 2025 Highlight | Twistzz Deagle quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Deagle quad"},"773":{"name":"Budapest 2025 Highlight | jcobbb A-site spraydown","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb A-site spraydown"},"774":{"name":"Budapest 2025 Highlight | frozen Banana opener","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana opener"},"775":{"name":"Budapest 2025 Highlight | w0nderful vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | w0nderful vs FaZe on Inferno"},"776":{"name":"Budapest 2025 Highlight | Aleksib vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Aleksib vs FaZe on Inferno"},"777":{"name":"Budapest 2025 Highlight | b1t vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | b1t vs FaZe on Inferno"},"778":{"name":"Budapest 2025 Highlight | iM vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | iM vs FaZe on Inferno"},"779":{"name":"Budapest 2025 Highlight | makazze vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | makazze vs FaZe on Inferno"},"78":{"name":"Austin 2025 Highlight | Tec-9 Tapped","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tec-9 Tapped"},"780":{"name":"Budapest 2025 Highlight | karrigan vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Natus Vincere on Inferno"},"781":{"name":"Budapest 2025 Highlight | broky vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Natus Vincere on Inferno"},"782":{"name":"Budapest 2025 Highlight | Twistzz vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Natus Vincere on Inferno"},"783":{"name":"Budapest 2025 Highlight | jcobbb vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Natus Vincere on Inferno"},"784":{"name":"Budapest 2025 Highlight | frozen vs Natus Vincere on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Natus Vincere on Inferno"},"785":{"name":"Budapest 2025 Highlight | Vitality on the GF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality on the GF stage"},"786":{"name":"Budapest 2025 Highlight | FaZe on the GF stage","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | FaZe on the GF stage"},"787":{"name":"Budapest 2025 Highlight | apEX smoke gap","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX smoke gap"},"788":{"name":"Budapest 2025 Highlight | flameZ Squeaky triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ Squeaky triple"},"789":{"name":"Budapest 2025 Highlight | jcobbb USP-S triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb USP-S triple"},"79":{"name":"Austin 2025 Highlight | Captain Brazil","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Captain Brazil"},"790":{"name":"Budapest 2025 Highlight | karrigan rotation triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan rotation triple"},"791":{"name":"Budapest 2025 Highlight | karrigan Lobby MP9","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan Lobby MP9"},"792":{"name":"Budapest 2025 Highlight | mezii post-plant","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii post-plant"},"793":{"name":"Budapest 2025 Highlight | ropz Heaven double","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Heaven double"},"794":{"name":"Budapest 2025 Highlight | Twistzz Secret quad","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Secret quad"},"795":{"name":"Budapest 2025 Highlight | Twistzz pistol triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz pistol triple"},"796":{"name":"Budapest 2025 Highlight | Twistzz Garage triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz Garage triple"},"797":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Nuke"},"798":{"name":"Budapest 2025 Highlight | broky vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Nuke"},"799":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Nuke"},"8":{"name":"Austin 2025 Highlight | Triple Kill And A Defuse","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Triple Kill And A Defuse"},"80":{"name":"Austin 2025 Highlight | Sixth Sense","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Sixth Sense"},"800":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Nuke"},"801":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Nuke"},"802":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Nuke"},"803":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Nuke"},"804":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Nuke"},"805":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Nuke"},"806":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Nuke","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Nuke"},"807":{"name":"Budapest 2025 Highlight | ZywOo Long pistol wall","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo Long pistol wall"},"808":{"name":"Budapest 2025 Highlight | mezii CT clutch","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii CT clutch"},"809":{"name":"Budapest 2025 Highlight | flameZ post-plant sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ post-plant sweep"},"81":{"name":"Austin 2025 Highlight | dgt Almost Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dgt Almost Clutch"},"810":{"name":"Budapest 2025 Highlight | ropz Tunnel trap","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Tunnel trap"},"811":{"name":"Budapest 2025 Highlight | broky duel to triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky duel to triple"},"812":{"name":"Budapest 2025 Highlight | broky Doors closer","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Doors closer"},"813":{"name":"Budapest 2025 Highlight | broky Scout showcase","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky Scout showcase"},"814":{"name":"Budapest 2025 Highlight | Twistzz smoke timing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz smoke timing"},"815":{"name":"Budapest 2025 Highlight | frozen Upper Tunnel sweep","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Upper Tunnel sweep"},"816":{"name":"Budapest 2025 Highlight | frozen B-site burst","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen B-site burst"},"817":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Dust II"},"818":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Dust II"},"819":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Dust II"},"82":{"name":"Austin 2025 Highlight | dgt Clutch Attempt","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | dgt Clutch Attempt"},"820":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Dust II"},"821":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Dust II"},"822":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Dust II"},"823":{"name":"Budapest 2025 Highlight | broky vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Dust II"},"824":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Dust II"},"825":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Dust II"},"826":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Dust II","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Dust II"},"827":{"name":"Budapest 2025 Highlight | ZywOo Construction spray","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo Construction spray"},"828":{"name":"Budapest 2025 Highlight | mezii Boost timing","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii Boost timing"},"829":{"name":"Budapest 2025 Highlight | ropz crossfire triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz crossfire triple"},"83":{"name":"Austin 2025 Highlight | Lower Defense","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Lower Defense"},"830":{"name":"Budapest 2025 Highlight | ropz Pit triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Pit triple"},"831":{"name":"Budapest 2025 Highlight | broky A-site opener","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky A-site opener"},"832":{"name":"Budapest 2025 Highlight | broky lineup save","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky lineup save"},"833":{"name":"Budapest 2025 Highlight | frozen Banana nade","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana nade"},"834":{"name":"Budapest 2025 Highlight | frozen Banana rush","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen Banana rush"},"835":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Inferno"},"836":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Inferno"},"837":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Inferno"},"838":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Inferno"},"839":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Inferno"},"84":{"name":"Austin 2025 Highlight | FalleN Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN Double Nuke Kill"},"840":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Inferno"},"841":{"name":"Budapest 2025 Highlight | broky vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Inferno"},"842":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Inferno"},"843":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Inferno"},"844":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Inferno","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Inferno"},"845":{"name":"Budapest 2025 Highlight | Vitality win in the GF","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Vitality win in the GF"},"846":{"name":"Budapest 2025 Highlight | ZywOo all angles","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo all angles"},"847":{"name":"Budapest 2025 Highlight | ZywOo smoke Deagle","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo smoke Deagle"},"848":{"name":"Budapest 2025 Highlight | mezii Connector triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii Connector triple"},"849":{"name":"Budapest 2025 Highlight | flameZ Short to B","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ Short to B"},"85":{"name":"Austin 2025 Highlight | Leaving Scraps","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Leaving Scraps"},"850":{"name":"Budapest 2025 Highlight | ropz pistol quadro","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz pistol quadro"},"851":{"name":"Budapest 2025 Highlight | ropz Bank post-plant","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz Bank post-plant"},"852":{"name":"Budapest 2025 Highlight | ropz A-site AWP","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz A-site AWP"},"853":{"name":"Budapest 2025 Highlight | apEX B-site triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX B-site triple"},"854":{"name":"Budapest 2025 Highlight | frozen A triple","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen A triple"},"855":{"name":"Budapest 2025 Highlight | ZywOo vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ZywOo vs FaZe on Overpass"},"856":{"name":"Budapest 2025 Highlight | apEX vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | apEX vs FaZe on Overpass"},"857":{"name":"Budapest 2025 Highlight | mezii vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | mezii vs FaZe on Overpass"},"858":{"name":"Budapest 2025 Highlight | flameZ vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | flameZ vs FaZe on Overpass"},"859":{"name":"Budapest 2025 Highlight | ropz vs FaZe on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | ropz vs FaZe on Overpass"},"86":{"name":"Austin 2025 Highlight | Tec-9 Master","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Tec-9 Master"},"860":{"name":"Budapest 2025 Highlight | karrigan vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | karrigan vs Vitality on Overpass"},"861":{"name":"Budapest 2025 Highlight | broky vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | broky vs Vitality on Overpass"},"862":{"name":"Budapest 2025 Highlight | Twistzz vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz vs Vitality on Overpass"},"863":{"name":"Budapest 2025 Highlight | jcobbb vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | jcobbb vs Vitality on Overpass"},"864":{"name":"Budapest 2025 Highlight | frozen vs Vitality on Overpass","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | frozen vs Vitality on Overpass"},"865":{"name":"Budapest 2025 Highlight | Twistzz breaks the streak","keychain_index":83,"market_hash_name":"Souvenir Charm | Budapest 2025 Highlight | Twistzz breaks the streak"},"87":{"name":"Austin 2025 Highlight | FalleN Closer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | FalleN Closer"},"88":{"name":"Austin 2025 Highlight | Fast Reactions","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Fast Reactions"},"89":{"name":"Austin 2025 Highlight | molodoy Triple Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | molodoy Triple Kill"},"9":{"name":"Austin 2025 Highlight | Jimpphat Quadra Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Jimpphat Quadra Kill"},"90":{"name":"Austin 2025 Highlight | nqz Double Nuke Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Double Nuke Kill"},"91":{"name":"Austin 2025 Highlight | nqz Retake Denied","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | nqz Retake Denied"},"92":{"name":"Austin 2025 Highlight | AWP Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | AWP Kill"},"93":{"name":"Austin 2025 Highlight | Just One","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Just One"},"94":{"name":"Austin 2025 Highlight | 8HP Clutch","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | 8HP Clutch"},"95":{"name":"Austin 2025 Highlight | Pistol King","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol King"},"96":{"name":"Austin 2025 Highlight | Pistol Kills","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Pistol Kills"},"97":{"name":"Austin 2025 Highlight | Eco Farmer","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Eco Farmer"},"98":{"name":"Austin 2025 Highlight | YEKINDAR Double Kill","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | YEKINDAR Double Kill"},"99":{"name":"Austin 2025 Highlight | Surprise P2000","keychain_index":36,"market_hash_name":"Souvenir Charm | Austin 2025 Highlight | Surprise P2000"}},"weapons":{"1":{"name":"Desert Eagle","sticker_amount":5,"type":"Weapons","paints":{"1006":{"index":1006,"max":0.65,"min":0,"rarity":3,"name":"Night Heist","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RYKFkM-SsHmuRz_1JoPR7XyW2qhEutDWR1I6uJH-RPQInXJB0F-Vb50bqxt3kN-Kw4VCMjYxCyXmvj3hO6X05t-8cEf1yxd2V6Eg","normal_prices":[15124,2268,1999,2618,2082],"normal_volume":[316,141,73,13,23]},"1050":{"index":1050,"max":0.97,"min":0,"rarity":4,"name":"Trigger Discipline","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ8-HHG6Xxutkj-VgXCq6hREuvTi6lob-KT-Ja1UlWMAkTOMCt0G9kIHlP77l5FbW344XxX_4iSJJv31r4bxRUKUn_rqX0V-d-rquYA","stattrak":true,"normal_prices":[603,173,64,53,52],"normal_volume":[703,1019,1850,416,295],"stattrak_prices":[1113,474,201,159,159],"stattrak_volume":[297,345,422,115,142]},"1054":{"index":1054,"max":1,"min":0,"rarity":5,"name":"Heat Treated","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKFsJ_yWMWSR0utJuOB7Syy9kBkY4QKJk4jxNWXGbQZ0CZpyTeBf4xO4m9y1Nuy05wHYg4lNySWr3C1Luyhu4LkKA6As5OSJ2JAJXn6j","normal_prices":[6280,290,144,116,112],"normal_volume":[772,4550,8038,4875,2924]},"1056":{"index":1056,"max":0.5,"min":0,"rarity":3,"name":"Sputnik","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk_OKRe7RsI_WBD2SV_ux6peRWQyC0nQlp5W6Hydz_In7CPQMjWcYmQrZZ5xLumtCxZrnhsQ2I3dkTmCz5jyoaujErvbhRuDcF4A","normal_prices":[909,269,173,164,180],"normal_volume":[1197,474,395,26,24]},"1090":{"index":1090,"max":1,"min":0,"rarity":6,"name":"Ocean Drive","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ_yWMWyZ1e1-j-1gSCGn2x5-sG7Wzdyvc3OSbgcnXpR5FO9bukTtm9WzMePhswaN2N5CmCj_jyhXrnE8ibjhEyc","stattrak":true,"normal_prices":[29384,7427,5878,5822,5988],"normal_volume":[82,295,442,96,58],"stattrak_prices":[36113,13443,7924,8139,7706],"stattrak_volume":[32,56,55,25,10]},"114":{"index":114,"max":1,"min":0,"rarity":3,"name":"Calligraffiti","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6_evb6hoH_OSAmuZxvx3tudWQyC0nQlp52rQmNv_IC7DaFR0ApB4QbMKs0W8k9zuPr6xtAGMjoITmymohyMa6jErvbhrxmEjWA","stattrak":true,"normal_prices":[1001,46,18,15,14],"normal_volume":[377,288,392,111,118],"stattrak_prices":[568,117,54,49,48],"stattrak_volume":[119,129,153,86,108]},"1189":{"index":1189,"max":0.57,"min":0,"rarity":4,"name":"Serpent Strike","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6_evb6hoH-OdD2yV_v53pPVsXSeMmRQguynLzdmsIHOVPVciXMN3QuVeuxexmtHuP77m7gDd34kRxXj_3ChKvS9p5fFCD_SJMmxOXA","stattrak":true,"normal_prices":[198,69,39,37,40],"normal_volume":[2076,1187,2191,86,682],"stattrak_prices":[411,210,75,110,95],"stattrak_volume":[600,608,580,84,266]},"1257":{"index":1257,"max":0.6,"min":0,"rarity":3,"name":"Mint Fan","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-aRbaV_NPisCGae0tF6ueZhW2ewlEoktW2AnI2qJHqSPFBxXJp0QrEIsRbpwYC0Purr4w3W3t1CmXiokGoXuVx1ISUO","normal_prices":[141,53,20,20,16],"normal_volume":[1073,980,967,171,100]},"1318":{"index":1318,"max":0.75,"min":0,"rarity":4,"name":"Mulberry","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk_P2rV7RhNf2sAm6Xyfo44uIwGC_rx08lsjvdwt_7cinDZ1RyX8ZyRe8NsBexwdDgY-zr5gKI2pUFk3tTfLUzaw","normal_prices":[1731,869,272,233,141],"normal_volume":[976,1323,1430,70,227]},"1360":{"index":1360,"max":0.58,"min":0,"rarity":3,"name":"The Daily Deagle","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-urV6dsMs-EHGaA_uJ_t-l9AXm3kxh162qHy9-pd3PEagMmDJMkRuEK4BG4x9zhZe-07gPdiotMyivgznQej0ovEM4","normal_prices":[110,44,19,20,15],"normal_volume":[986,557,390,48,87]},"138":{"index":138,"max":0.75,"min":0,"rarity":2,"name":"Tilted","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRZ7JoMuCSHXSvwP9jsd5tSii0mRgYvzSCkpu3cH-UOgV2D8RyQrMKsRW-mtWyPunr4VeNjIhMmX6ojigY7y9v5ehUA71lpPMO4MWI5A","souvenir":true,"normal_prices":[136,29,6,12,4],"normal_volume":[4155,5722,9616,331,279]},"1430":{"index":1430,"max":1,"min":0,"rarity":4,"name":"Firebreathing","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6_evb6hoH_aaHGKS0-t3pOlgQS6MmRQguynLn9ircSiTPFUgCJAkQbELsxXtktDkMurk4lTZ39hEyn_-3HsbvXxj4fFCD_RcNNN-xQ","stattrak":true,"normal_prices":[718,231,112,82,72],"normal_volume":[565,612,408,115,236],"stattrak_prices":[1728,633,298,234,239],"stattrak_volume":[103,122,171,64,75]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":2,"name":"Urban DDPAT","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRbKB9IeSsG3WS_uJ_t-l9AXm2kxkk42rWn9egc36UOwYiX5N1EOVYsRLtldC0M77g5QXfiN1Fzn_gznQemk8fKYk","souvenir":true,"normal_prices":[3882,496,178,261,227],"normal_volume":[33,329,115,38,60]},"185":{"index":185,"max":0.12,"min":0,"rarity":6,"name":"Golden Koi","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6dsLPWAMWWCwPh5j-1gSCGn20om6jyGw9qgJHmQaAcgC8MmR7IMthm5m4W2M7zj7wOIj4pGn32o23hXrnE8VHBG1O4","stattrak":true,"normal_prices":[29174,22329,0,0,0],"normal_volume":[354,33,0,0,0],"stattrak_prices":[36965,27216,0,0,0],"stattrak_volume":[86,2,0,0,0]},"231":{"index":231,"max":0.2,"min":0,"rarity":5,"name":"Cobalt Disruption","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RbKB9IeSXC2mDxNFmteBqQCq4qhEutDWR1I36c3OVbFQjDcRwR7EO4EW-x4HvMumzswfWjd8XnCn2iShM53s5t-0cEf1ycu8KccY","stattrak":true,"normal_prices":[13798,8438,9302,0,0],"normal_volume":[752,251,41,0,0],"stattrak_prices":[19136,15388,15690,0,0],"stattrak_volume":[205,74,17,0,0]},"232":{"index":232,"max":0.8,"min":0.06,"rarity":4,"name":"Crimson Web","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRf6FvM8-XD3WbxPxJvOhuRz39wEUh5W3Rytyscy7FPAYgWJJzRe4MtUW8loKyZOm3sQzb34lEzyX32zQJsHig-EWd2A","stattrak":true,"normal_prices":[23408,3402,1055,1140,1288],"normal_volume":[110,527,667,39,79],"stattrak_prices":[42386,6858,1863,2158,1957],"stattrak_volume":[52,178,309,22,27]},"237":{"index":237,"max":0.5,"min":0,"rarity":3,"name":"Urban Rubble","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRfqV_KfOSA2iv1Px0se9WQyC0nQlp52nWmduhIn-QaQIpX5RyF-ZY5BS4l9TjZOPmsleN34wWnir73yJI7zErvbj27zddPg","souvenir":true,"normal_prices":[99,27,17,26,33],"normal_volume":[996,475,462,101,28]},"273":{"index":273,"max":0.8,"min":0,"rarity":4,"name":"Heirloom","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbapqMvGFC2Ovxet3t-1scCW6khUz_W3czNegeXueO1N2WZIkE-RY4EGxlNSxZLnn5gfai4oTniSoiStA6y91o7FVItTkIhw","stattrak":true,"normal_prices":[11970,1209,628,1039,625],"normal_volume":[65,214,178,22,89],"stattrak_prices":[7208,2389,1440,1746,1593],"stattrak_volume":[41,77,98,2,17]},"296":{"index":296,"max":0.18,"min":0,"rarity":3,"name":"Meteorite","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Ra7Z0M-SSAmuZ2-tyj-VoXSKMmRQguynLyN-qIH3Daw4mCZR3EeBbsUO-l4a2Prvm7gzWg4MXnymq2H8Yui9usfFCD_RyA7Mmlw","normal_prices":[148,104,100,0,0],"normal_volume":[1785,544,157,0,0]},"328":{"index":328,"max":0.7,"min":0.01,"rarity":4,"name":"Hand Cannon","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORYKVjJPOSAGmfz9F6ueZhW2eww0t-6mrUn977cinDZ1IgD8YiTeUIthjpk9zkYem04wTXj4oRnCv7kGoXuTIzWSlA","souvenir":true,"normal_prices":[52362,46388,45645,51000,47000],"normal_volume":[77,5,8,1,3]},"347":{"index":347,"max":1,"min":0,"rarity":4,"name":"Pilot","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uOReK1hL-SsCmKRxuJzj-1gSCGn2x8jtWncyIupJH2TPwYlCJZyF-Rct0XplNfiYuy2tAeIiItEz36ointXrnE8Ks-4_Fs","normal_prices":[21736,12027,10033,9701,7781],"normal_volume":[66,40,51,19,3]},"351":{"index":351,"max":0.3,"min":0,"rarity":5,"name":"Conspiracy","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ_yWMWaF0-tjo95lRi67gVMk4WTSm9moI3-QPVBxDJByQOJe40O6k4fnM-zgsQXci4gUyH3_3CMa8G81tJHuULJI","stattrak":true,"normal_prices":[1830,1654,1740,0,0],"normal_volume":[2075,1516,196,0,0],"stattrak_prices":[2614,1961,1931,0,0],"stattrak_volume":[549,367,72,0,0]},"37":{"index":37,"max":0.08,"min":0,"rarity":4,"name":"Blaze","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7vORbqhsLfWAMWuZxuZi_uI_TX6wxxkjsGXXnImsJ37COlUoWcByEOMOtxa5kdXmNu3htVPZjN1bjXKpkHLRfQU","normal_prices":[64305,76997,0,0,0],"normal_volume":[899,28,0,0,0]},"397":{"index":397,"max":1,"min":0,"rarity":4,"name":"Naga","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKFsJ_yWMWmRxu9JvOhuRz39zEx06jjWm4n8Ii6WPFQhA5YjE7MJskPrwdTuZb7htlHbg9oTzCn2hjQJsHhQd9ynBw","stattrak":true,"normal_prices":[3283,383,198,189,208],"normal_volume":[155,266,325,115,76],"stattrak_prices":[2205,651,404,398,408],"stattrak_volume":[91,154,223,88,89]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":2,"name":"Night","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk_P2RZq1qKOSsAm6Xyfo4seVrHHjmzRhz42XUm4mgIC6TaQYkXpMjTLIIsRawl9HhYbzktFPfgpUFk3u310nzMg","normal_prices":[8350,1667,1143,1289,1196],"normal_volume":[92,488,184,28,34]},"425":{"index":425,"max":0.46,"min":0,"rarity":3,"name":"Bronze Deco","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RarZiLuqWMXSAwPx9vORWQyC0nQlp4zzdydqtJXuTOgZzW5F4QbNZ4UK7l9e1N-Pq5AeNj9hHmH783S9J6zErvbgcMfnnyA","stattrak":true,"normal_prices":[70,28,18,19,48],"normal_volume":[2152,354,1605,48,29],"stattrak_prices":[167,85,46,65,273],"stattrak_volume":[878,620,738,72,76]},"468":{"index":468,"max":0.75,"min":0,"rarity":2,"name":"Midnight Storm","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6FsM-ScHGqvzedxuPUnGXC3kR904myGyd79eXmUZwYlDsNyQe4JtkWxx9LgYuPrsVaNg99HzDK-0H3GwZY3mA","normal_prices":[16853,2661,1748,1897,1913],"normal_volume":[325,274,156,32,31]},"469":{"index":469,"max":0.75,"min":0,"rarity":4,"name":"Sunset Storm 壱","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6FsM-ScHGqvw-J5v-VWQyC0nQlp52nQn434cC7EblUmCpQmFONYtxCwxIW0Zrvk4ASIiI8UxHn82ika7zErvbhCT1u8fA","normal_prices":[57478,56053,58558,88079,94490],"normal_volume":[85,6,4,1,1]},"470":{"index":470,"max":0.75,"min":0,"rarity":4,"name":"Sunset Storm 弐","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-Re6FsM-ScHGqv0uZ5uu5WQyC0nQlp4DiDyov6JH7FZgAmX5N5F-RZ5hntw9HlNuPkswLa2d1NzCv63S0cvTErvbieIVxaew","normal_prices":[54598,51209,52528,51626,60654],"normal_volume":[71,7,2,1,3]},"509":{"index":509,"max":0.44,"min":0,"rarity":3,"name":"Corinthian","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKFsJ_yWMWSf0-d4pOlgTieMmRQguynLzNz4Iy2ebgUmDZB4QeEDskO5ktWzMrjm7wPd2IlGmCr_3XxBuClr4PFCD_To4zX47g","stattrak":true,"normal_prices":[110,52,37,49,0],"normal_volume":[1002,499,751,77,0],"stattrak_prices":[322,185,148,270,0],"stattrak_volume":[383,259,564,67,0]},"527":{"index":527,"max":0.76,"min":0,"rarity":5,"name":"Kumicho Dragon","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKF-JeKHC2aXzetJu_RkRiq7mhk1sjqKlLD1KCzPKhh0CcBwQLVe5BHrloKyZOnr5w3XiYhDnC39iCpK7X1psrlUWaFw8qXekUifZlV_fDVZ","stattrak":true,"normal_prices":[7093,2737,1932,2163,1997],"normal_volume":[259,375,462,29,101],"stattrak_prices":[11351,6286,3581,5216,3763],"stattrak_volume":[91,129,107,11,32]},"603":{"index":603,"max":1,"min":0.06,"rarity":4,"name":"Directive","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7uORbKF-JeKHMWKRxuJzj-JmQTqnlB8rtgKJk4jxNWXGPQ9yA8Z0R7FbtBi7w9S2M7_msgCIid1CmH6viH5I7ilr4-oEUKst5OSJ2LTZlHwR","stattrak":true,"normal_prices":[8843,436,105,88,88],"normal_volume":[59,445,923,281,429],"stattrak_prices":[5890,741,231,205,227],"stattrak_volume":[27,103,319,140,183]},"61":{"index":61,"max":0.08,"min":0,"rarity":5,"name":"Hypnotic","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7vORfqF_NPmUAVicyOl-pK9qSyyywxgjtmnVytyocnLGPA4iWcYmRLYIu0S-xtbuMLjg51DXjoJC02yg2VjGnh4J","stattrak":true,"normal_prices":[22492,23666,0,0,0],"normal_volume":[273,10,0,0,0],"stattrak_prices":[18152,25200,0,0,0],"stattrak_volume":[101,3,0,0,0]},"645":{"index":645,"max":0.5,"min":0,"rarity":3,"name":"Oxide Blaze","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKF-JeKHMWKRxuJzj-JmXTu8kRgpjDGMnYftb32UPwJxDJokRuUIsRi_lNPhM7izsgXZi49GySiq2nxNuCdttbtUB_A7uvqAjSk2l_c","stattrak":true,"normal_prices":[98,52,37,41,44],"normal_volume":[1396,1136,1351,84,84],"stattrak_prices":[246,149,81,113,116],"stattrak_volume":[644,385,626,65,49]},"711":{"index":711,"max":1,"min":0,"rarity":6,"name":"Code Red","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWaXxvxzo_JmXRa_nBovp3PRmNj4c3mTb1RxC5cjF-EItRnrlNzkYrnk5gaI3Y0UmyX52H9K7ixs_a9cBsGEcOCn","stattrak":true,"normal_prices":[18408,4715,4073,3972,3824],"normal_volume":[129,460,599,120,71],"stattrak_prices":[19448,9914,6083,5745,5802],"stattrak_volume":[66,97,117,39,27]},"757":{"index":757,"max":0.5,"min":0,"rarity":4,"name":"Emerald Jörmungandr","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RYqt_Lc-UHGKVz9F6ueZhW2fqzB51sGiGzNqrJXqWbAYmCpJ0RuYDshm_xNPmZuy07wDY3YwXni6okGoXuekvMmaE","normal_prices":[66743,57853,53559,86250,89000],"normal_volume":[222,41,16,1,2]},"764":{"index":764,"max":0.8,"min":0,"rarity":5,"name":"Fennec Fox","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWGVz-Bzs95lRi67gVN14GvRyt77cnKfagRyXsMiTeUNtRO5kYWyYr7i4lfZgoIUzX722CpO8G81tMpbNfMB","souvenir":true,"normal_prices":[56086,30554,23618,38881,30140],"normal_volume":[190,121,56,6,13]},"805":{"index":805,"max":0.6,"min":0,"rarity":5,"name":"Mecha Industries","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWqVwuZ3j-1gSCGn20h042vSyY2tdyjCZwIlXJBxQeNe4EWxxoHkMOq0sQGIid5Fnyr42HtXrnE8p4gbgvE","stattrak":true,"normal_prices":[1283,736,553,563,528],"normal_volume":[1124,1362,1482,128,158],"stattrak_prices":[2675,1630,1412,1467,1546],"stattrak_volume":[380,371,342,20,37]},"841":{"index":841,"max":0.9,"min":0,"rarity":4,"name":"Light Rail","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk6OGRbKFsJ_yWMWKIztF6ueZhW2fhlhlw6m-GnNyvIiiXOwQoDMR2QbZe5hi5k9KxN-vhtFbciN1FnyqskGoXuU4JtHUo","stattrak":true,"normal_prices":[1145,228,99,101,101],"normal_volume":[435,705,1354,270,360],"stattrak_prices":[1633,694,350,353,338],"stattrak_volume":[147,192,368,93,130]},"90":{"index":90,"max":0.8,"min":0.06,"rarity":2,"name":"Mudder","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk5-uRZat5NPyWCliDwOByj-1gSCGn20gj4WrVyNiuJ3OfPVAjCpEmE7MKuxbqmtDmPuu0slDW3Y5GyS-tintXrnE8PKHjtHI","souvenir":true,"normal_prices":[1994,20,3,6,8],"normal_volume":[102,177,489,173,116]},"938":{"index":938,"max":0.75,"min":0,"rarity":5,"name":"Starcade","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRb6hkNOSWHFiUxO9xvORWQyC0nQlpsD_SnN79JX2WbQ8pXMNwRO5ZsRK8lt21Nb7r4wPXgtgWmCz7hylJ6jErvbgNUrm8Kg","normal_prices":[24238,9596,5019,4839,4228],"normal_volume":[289,335,324,45,59]},"945":{"index":945,"max":1,"min":0,"rarity":3,"name":"Blue Ply","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ_yWMXWV0eJ_s-BWQyC0nQlpsjzdwtqgIHqfZgAgDZBwROBbtRDsm4HiM7zislfYitpBniz6iy5K7DErvbjLUTqBnA","stattrak":true,"normal_prices":[360,59,32,23,22],"normal_volume":[539,712,1549,459,484],"stattrak_prices":[645,171,83,71,70],"stattrak_volume":[161,405,509,230,185]},"962":{"index":962,"max":0.8,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7OeRbKFsJ8-DHG6e1f1iouRoQha_nBovp3OGmdeqInyVP1V0XsYlRbEI50a5wNyzZr605AyI3t5MmCSohylAuC89_a9cBoMY9UkV","stattrak":true,"normal_prices":[7652,4471,3493,3513,3371],"normal_volume":[1348,3468,5158,120,373],"stattrak_prices":[15329,8898,6116,6777,5859],"stattrak_volume":[361,559,586,37,79]},"992":{"index":992,"max":0.3,"min":0,"rarity":2,"name":"The Bronze","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL1m5fn8Sdk7v-RZrFgIvWBHViS0-F4quRWQyC0nQlp4muHzt78cXqXbQInCZFzTbEO4xS4lYKzMOnqtQTf3osQm36v3SJMujErvbh3QIzNUw","normal_prices":[2025,325,337,0,0],"normal_volume":[225,365,111,0,0]}}},"10":{"name":"FAMAS","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1053":{"index":1053,"max":0.4,"min":0,"rarity":5,"name":"Meltdown","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2gfadhJfGBMXeR1fpzou89cC-ymBw0jDGMnYftb3rDPQMhXppwRudet0O4xNLhMu7r7leMiY9Cmy34i39L7C9ssucBAvA7uvqAFyvbTO4","normal_prices":[17386,3716,2940,4889,0],"normal_volume":[108,105,91,5,0]},"1066":{"index":1066,"max":0.5,"min":0,"rarity":1,"name":"Faulty Wiring","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a7s25YbZkLvesF2KczeFhj-1gSCGn20lw5GuBwov8InnFOgdyCMByROUNtRe9ltzuZenrtQTdi95Cmy73jHlXrnE8IJYzfbc","souvenir":true,"normal_prices":[792,133,120,141,111],"normal_volume":[250,186,60,65,25]},"1092":{"index":1092,"max":1,"min":0,"rarity":4,"name":"ZX Spectron","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-AHmKT1fx5vt5lRi67gVNxsDvTyNyueHOeaVVzCcN1EbVZtRK5k4LkNOnj4wbe2tlMxH_-jyNN8G81tGqq3pxL","stattrak":true,"normal_prices":[2828,582,298,248,261],"normal_volume":[249,276,392,65,145],"stattrak_prices":[3156,1075,574,513,456],"stattrak_volume":[53,91,98,33,40]},"1127":{"index":1127,"max":1,"min":0,"rarity":5,"name":"Rapid Eye Movement","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-BD3eZxdFzqeR6cCW6khUz_WjRmN79JXmePABxDsB1QeZetxnqx9XhN-nk4A3f399CzX2qiCsa7yd1o7FVINiMH98","stattrak":true,"normal_prices":[2045,615,527,499,491],"normal_volume":[378,904,2097,772,413],"stattrak_prices":[1768,649,516,501,496],"stattrak_volume":[56,213,249,118,97]},"1146":{"index":1146,"max":1,"min":0,"rarity":3,"name":"Meow 36","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-QAXWA_uNzv_ZWQyC0nQlp6jvVztaudCnEbAUgDsckFOAJsBLtlN2yP7zqslGMiooXyCX43H8Y5zErvbiVlZtU7g","stattrak":true,"normal_prices":[143,16,6,5,5],"normal_volume":[525,410,416,171,104],"stattrak_prices":[151,26,8,7,8],"stattrak_volume":[161,203,489,264,252]},"1184":{"index":1184,"max":1,"min":0,"rarity":6,"name":"Bad Trip","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1d7v-ve5tvIfSHHG6A_uJ_t-l9AX6xzExytWndzdj6eCrGb1MkWZB2TOBc4xK8mtHkZezrsQOPjoITyi_gznQezHhrR0c","stattrak":true,"normal_prices":[7373,4663,4302,4205,4073],"normal_volume":[252,265,549,174,123],"stattrak_prices":[8537,4721,3967,3920,3973],"stattrak_volume":[78,82,64,34,21]},"1202":{"index":1202,"max":0.86,"min":0,"rarity":3,"name":"2A2F","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M26eqVkLs-QD3Wvx-97sfJWQyC0nQlptWiEnt6odXLCagcgDpB2QO4PsBmxkoHvPu7ktlff399Cmy7_jyMa5jErvbgLXw1DVg","souvenir":true,"normal_prices":[815,113,24,25,16],"normal_volume":[691,951,1569,37,286]},"1219":{"index":1219,"max":0.7,"min":0,"rarity":3,"name":"Yeti Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4PeRaqh4Jc-VD2qR0tF6ueZhW2fjk01x5jiBytqveXiWOFcnDJMmQeMLskPrmoCzYrzn7wPd3d1Fnyv8kGoXufV393rw","normal_prices":[213,91,25,22,16],"normal_volume":[1262,994,828,61,78]},"1241":{"index":1241,"max":0.7,"min":0,"rarity":5,"name":"Waters of Nephthys","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-bAWuf_uF1teBncCW6khUz_W3WmYv_JSmSZgZ0WJRwEeRbtUS5kIKyZejmsQHciN5AxHj8intK6il1o7FV74niokA","souvenir":true,"normal_prices":[20367,9167,5321,6746,4812],"normal_volume":[154,171,190,16,26]},"1302":{"index":1302,"max":0.75,"min":0,"rarity":1,"name":"Palm","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I__2ReKVhLc-fB2CY1aB06LgwSX_qkx914G7UyI2hI3KfaQYhWMRzRbMMshS8wYLkZenk51bdlcsbmgtj5aMJ","normal_prices":[8,1,1,1,1],"normal_volume":[403,200,291,109,241]},"1321":{"index":1321,"max":0.637288,"min":0,"rarity":2,"name":"Grey Ghost","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4P2RbqVgIeOsCXWV2NFxuO56Wxa_nBovp3PXy9j6dX-fOFUoDZB4Q7IIsBTtwNHjN77jtVfdiY1ByyStiigcun0-_a9cBi0W6vWE","normal_prices":[18,6,2,2,2],"normal_volume":[706,654,387,54,63]},"1365":{"index":1365,"max":0.6,"min":0,"rarity":2,"name":"Vendetta","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4PeRarNSIvySHXOvzedxuPUnSS-3wEx362jWw9eodnLGaFMhCZUlQO5etBe_k9XlNuvkslDcg91FxDK-0H3uRMe02w","normal_prices":[19,4,1,2,2],"normal_volume":[417,448,265,44,81]},"1393":{"index":1393,"max":0.55,"min":0,"rarity":1,"name":"Byproduct","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9veRbq1_JeecHGyv0e9is-lsXBa1lBAmoAKJk4jxNWWUaVN2DsB5Re4D4BLuxoDvP-PmsQffioJFnnqv3y1A7C9r5-tUUPd35OSJ2E5Oe0pX","normal_prices":[3,1,1,1,1],"normal_volume":[656,303,528,29,66]},"154":{"index":154,"max":0.4,"min":0.02,"rarity":5,"name":"Afterimage","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2seqtmJf6sHmaEydFwsexoXBa_nBovp3PQn46ucH_COwcoCMchTe4CshG7loG2NrmztFTajoIXyiitiCpLvSk6_a9cBkMHi1qM","stattrak":true,"normal_prices":[7802,3062,3350,3424,0],"normal_volume":[30,63,34,7,0],"stattrak_prices":[5651,2735,2418,3029,0],"stattrak_volume":[32,17,15,2,0]},"178":{"index":178,"max":0.22,"min":0.08,"rarity":3,"name":"Doomkitty","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s2qZ6tgK_mHGn6vzedxuPUnTHrmxk1x6jmBmdb4Jy6QZw8jW8RwR-9esUHsltXnNu3n5VPXiY5AzTK-0H2q4sGvpw","stattrak":true,"normal_prices":[0,2036,1249,0,0],"normal_volume":[0,98,19,0,0],"stattrak_prices":[0,323,383,0,0],"stattrak_volume":[0,113,21,0,0]},"194":{"index":194,"max":0.8,"min":0.06,"rarity":4,"name":"Spitfire","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_829eK15JvmBC1iWwON3o95rXSilmiIrujqNjsGhI3ueZwJ1CMZ5ROYLthjqm9TuMeq2tgXWiYlDmy_733wd6S5isOcKT-N7rQ0Sk12j","normal_prices":[35721,8841,2241,2634,2168],"normal_volume":[14,22,76,10,5]},"218":{"index":218,"max":0.4,"min":0,"rarity":3,"name":"Hexane","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s2sZLFoKPWLMWuZxuZi_udoFn-2wBh04GXXnIr6dS2RbwUnDZNxQ-8D50OwkdK1ZOzi41OPiI9bjXKpn0lbjaM","stattrak":true,"normal_prices":[1940,350,294,361,0],"normal_volume":[181,83,60,27,0],"stattrak_prices":[692,512,359,429,0],"stattrak_volume":[77,83,54,8,0]},"22":{"index":22,"max":0.8,"min":0.06,"rarity":1,"name":"Contrast Spray","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_829eLZsOc-fB2CY1aByseI-THiwxU1-4j7dnI74eHOUaQciC8d4ReEC4RLpwNXmYrjh4wfflcsbmhid3JyN","normal_prices":[10325,2086,802,1313,608],"normal_volume":[4,21,32,4,6]},"240":{"index":240,"max":0.6,"min":0,"rarity":2,"name":"CaliCamo","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s24abZkI_GeAViUxP1zovVWQyC0nQlp4WXRn9qqI3uVblQgApJzELVb5BHqlYC1MePr71TXi91AzCz33S9KujErvbjpBPXbmw","souvenir":true,"normal_prices":[483,85,36,74,132],"normal_volume":[169,90,182,40,21]},"244":{"index":244,"max":0.6,"min":0,"rarity":3,"name":"Teardown","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82jbbdlH_icGliRz-pJs-5lSxa_nBovp3PQw9r9cXuQZwMjXMF0E7YN4ES9loflPu_htQTX3otGyS3_iCNP6ixq_a9cBmFkCHH9","souvenir":true,"normal_prices":[141,24,12,14,12],"normal_volume":[488,269,1008,87,171]},"260":{"index":260,"max":0.4,"min":0,"rarity":4,"name":"Pulse","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-DG2uDxNF6ueZhW2flxBlxtm_WntqhJyiSbw90CpJyR-8DtRm6kdHkYuLj4QzY2INCzX-skGoXudLVHKnn","stattrak":true,"normal_prices":[3174,1116,1055,1294,0],"normal_volume":[241,138,49,16,0],"stattrak_prices":[2079,1452,1318,2250,0],"stattrak_volume":[186,131,62,4,0]},"288":{"index":288,"max":1,"min":0.1,"rarity":4,"name":"Sergeant","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4c2oaalsM8-ACXOvzedxuPUnF3HmkBx_tjnSmNmrJHiROFN1W8NxFrFZsxbrk4e0Yuvr5wWLi4JAyjK-0H3maOk52Q","stattrak":true,"normal_prices":[0,2226,242,230,172],"normal_volume":[0,99,247,31,97],"stattrak_prices":[0,2691,533,435,336],"stattrak_volume":[0,28,159,23,76]},"371":{"index":371,"max":0.6,"min":0,"rarity":4,"name":"Styx","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2gfadhJfGBMXSb1OJ6o7NWSSi-lA4YvzSCkpu3dnvGPQAkCsMkRLQL5hW6ktC1Pu_h7lHWjY5Fznr-inkY6SxpsO5XAr1lpPPtc2FJkw","souvenir":true,"normal_prices":[11449,2320,1188,1460,1504],"normal_volume":[173,141,146,19,24]},"429":{"index":429,"max":1,"min":0,"rarity":5,"name":"Djinn","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a_s2oaalsM8-ZB2me_uJ_t-l9AXzhwxt-5TiAzdmgd3yeaQ50DZRxEe5b4BXrm4HkPr7kslfcg9pCznjgznQepOOy8CM","stattrak":true,"normal_prices":[6024,1145,1082,1099,1081],"normal_volume":[91,192,258,62,60],"stattrak_prices":[4630,1934,1117,1064,1163],"stattrak_volume":[20,35,69,18,27]},"461":{"index":461,"max":1,"min":0,"rarity":2,"name":"Half Sleeve","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2paaloIuKWCliWwON3o95lRi67gVN35TyBy42pcS6ROAUkWJJ3FOMK50TswNzjPuPh71fYjYoWmX_33CtB8G81tAX5qatv","normal_prices":[155,13,3,3,3],"normal_volume":[1063,1410,255,130,135]},"47":{"index":47,"max":0.8,"min":0.06,"rarity":1,"name":"Colony","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I4M29eKVuJc-eD3WZz-tJvOhuRz39xExw5GXTw4qod3uUaQ91ApZ3QbMItxDrxtK2ZbuxtAaLg4hDxS76hjQJsHgze9LmZw","souvenir":true,"normal_prices":[405,5,1,2,2],"normal_volume":[102,220,663,1128,2094]},"477":{"index":477,"max":0.6,"min":0,"rarity":4,"name":"Neural Net","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2oaalsM8-XAXOD_uJ_t-l9AX_lzB8ltmXcnoqvInjEPQEoC5AjELRY4Rm_lIDmM7zlsQ2L3YsQxHngznQe8yNao04","stattrak":true,"normal_prices":[1041,172,98,150,98],"normal_volume":[200,228,150,14,42],"stattrak_prices":[682,324,229,316,231],"stattrak_volume":[92,89,94,11,25]},"492":{"index":492,"max":0.6,"min":0,"rarity":3,"name":"Survivor Z","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-fC2mEwNF6ueZhW2exlE8hsTzcw4n4JC7BOAQpCscmRrRe5xW7w9TgNu7itAHWiYpAziqokGoXuXR1eqm1","stattrak":true,"normal_prices":[2637,81,32,38,27],"normal_volume":[94,134,171,35,55],"stattrak_prices":[315,144,62,126,70],"stattrak_volume":[122,100,172,21,41]},"529":{"index":529,"max":0.8,"min":0,"rarity":4,"name":"Valence","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a_s2oaalsM8-QAWmEzvtkj-1gSCGn2x4ksWzczo39c3_Ga1R1CpByR-YO4RXqm9fgP76w4lbYi91CzSyq2H5XrnE8rQqckvg","stattrak":true,"normal_prices":[2413,586,348,395,283],"normal_volume":[207,323,252,40,16],"stattrak_prices":[2860,1154,621,796,591],"stattrak_volume":[65,84,80,23,24]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":3,"name":"Dark Water","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s20baZ_Ic-XD3Wb_uJ_t-l9ASywkUsmsjzdmdiqIiqXaQ4oDJF0RuNZukO-ltflNu_mslffg9gTnC3gznQeYZiQwTg","souvenir":true,"normal_prices":[0,2705,946,0,0],"normal_volume":[0,25,45,0,0]},"604":{"index":604,"max":1,"min":0,"rarity":6,"name":"Roll Cage","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-BD2uc2NF6ueZhW2exzUhz4WjWmNqpdy-UbwJxDJtxReEMtRGwloflP7m04wfXi94QyXj9kGoXuV3JhaXD","stattrak":true,"normal_prices":[14702,9918,9472,9117,8964],"normal_volume":[110,261,354,90,100],"stattrak_prices":[17721,9429,8924,9006,9084],"stattrak_volume":[29,59,108,36,38]},"626":{"index":626,"max":0.5,"min":0,"rarity":5,"name":"Mecha Industries","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-eC2SYwNF6ueZhW2ewwx4hsm3dz46heSjCPVUjC8chEOYMtxOwkNHiYb63swXY3Y9Nn32skGoXuc3DGOrc","stattrak":true,"normal_prices":[11309,3244,2682,2808,3140],"normal_volume":[258,784,574,50,34],"stattrak_prices":[4017,2566,2000,2339,1982],"stattrak_volume":[122,131,115,6,13]},"659":{"index":659,"max":0.6,"min":0,"rarity":3,"name":"Macabre","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82oaalsM8-eD2SRw_xzj-1gSCGn2xkm5myEzo2sdXPBagInW5pxTLICshnswdOxNrzj71fc2d5CzC76iSJXrnE8xi9ndzw","stattrak":true,"normal_prices":[1984,764,568,499,444],"normal_volume":[57,74,40,37,5],"stattrak_prices":[869,572,504,473,469],"stattrak_volume":[29,11,27,9,6]},"723":{"index":723,"max":0.7,"min":0,"rarity":5,"name":"Eye of Athena","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-cGWuvzvx3vuZscCW6khUz_WzUnNb6eXjCbFV2WcAlTO5ct0G-xIfgZe63tADb34wTzX2qjXlO6Xx1o7FV19iwjVc","stattrak":true,"normal_prices":[3947,771,482,488,454],"normal_volume":[145,173,289,21,53],"stattrak_prices":[4038,1743,959,1064,1072],"stattrak_volume":[57,73,116,1,7]},"835":{"index":835,"max":0.55,"min":0,"rarity":3,"name":"Crypsis","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82oaalsM8-UBmiD1dF_vvJsTD2gqhEutDWR1IyudXKSOFIkC8QhTbEK5kK8x9C2NOK3slbYg48Rnyr_hixI6i85sr0cEf1yzP52oWI","stattrak":true,"normal_prices":[307,25,25,22,19],"normal_volume":[301,117,368,25,36],"stattrak_prices":[151,82,28,57,34],"stattrak_volume":[111,64,143,40,4]},"863":{"index":863,"max":0.55,"min":0,"rarity":1,"name":"Night Borre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82lZqt5M8-RAnKV_uJ_t-l9AXHrxEV-sT-Ez9j7eHuVPQQgXpIhEOQPtxa_wd3gZbnm4QHXi49FxCXgznQeEWoLaGo","normal_prices":[1856,1099,1023,1100,949],"normal_volume":[161,66,81,9,9]},"869":{"index":869,"max":0.6,"min":0,"rarity":3,"name":"Sundown","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1I_82-aahgH-OGAHSV1dF6ueZhW2frzEQhsWrRzNqoIHjCbgR1C5ZxRuIPsUO9l9XiYrnh7lPdj90Uni__kGoXuWBgr_h1","normal_prices":[12093,9862,7617,7965,8000],"normal_volume":[43,21,25,1,4]},"882":{"index":882,"max":0.5,"min":0,"rarity":2,"name":"Halftone Wash","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T-829eKhsM_isCGadwP1JvOhuRz39wxt14WuBy9qpJX-TPFdyDJFxRLRc5BK-wIXlNu3htleP3Y5Bynmt3zQJsHgxqrWZvw","normal_prices":[111,40,16,19,17],"normal_volume":[568,326,420,65,86]},"904":{"index":904,"max":1,"min":0,"rarity":3,"name":"Decommissioned","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1Y-s2oaalsM8-dG2yV_vpzvvJgQCeMmRQguynLnouqJC-VbwciD5J3QORYshftkIXlPuzrtlCP2NlCySmvin9B7Xo_5_FCD_RaCEWnyQ","stattrak":true,"normal_prices":[1037,39,33,25,25],"normal_volume":[195,91,67,94,64],"stattrak_prices":[368,86,35,32,32],"stattrak_volume":[85,195,79,62,48]},"919":{"index":919,"max":0.5,"min":0,"rarity":6,"name":"Commemoration","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1c_M2oaalsM8-fC2CRwvdJt-5lSxa_nBovp3PUztn4d3qSPQ8kDMR5ROVb4xCxw9a0NLni4lCIio4QzXn32yMb6Sds_a9cBr1TwPEt","stattrak":true,"normal_prices":[5289,3042,3074,3582,3632],"normal_volume":[415,270,244,28,10],"stattrak_prices":[6281,4650,3927,4337,4808],"stattrak_volume":[86,80,65,5,7]},"92":{"index":92,"max":0.8,"min":0.06,"rarity":2,"name":"Cyanospatter","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1T9s28baFrH_yaCW-Ej7olsbNsG3rmzEoj5m6Hz9atJC2WOg8iDJchR7JeuhfuwIbnZO3k4FHAy9USioZeSPo","souvenir":true,"normal_prices":[3177,21,3,4,2],"normal_volume":[48,61,302,38,94]},"999":{"index":999,"max":0.55,"min":0,"rarity":4,"name":"Prime Conspiracy","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3n5vh7h1a4s2gfalvJeKAMWqRxut4pOBWQyC0nQlp5m7Tmd39cSmSZwUlDZJwTLFZsUW5kIKyNbji71aLj4pDxX38h3wfuDErvbhergaiXw","normal_prices":[10671,8534,9657,10984,11360],"normal_volume":[61,29,36,1,2]}}},"11":{"name":"G3SG1","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1034":{"index":1034,"max":0.76,"min":0,"rarity":2,"name":"Ancient Ritual","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1a4s2vZqdkJf6HMXCZz-tJvOhuRz39zE5ysWjSyterJX-VZ1UgX8EhTeVf5EOxlN3jYemwsw3WjtgQzi7-2zQJsHjSk9PLGw","souvenir":true,"normal_prices":[643,309,202,210,212],"normal_volume":[70,40,84,13,37]},"1095":{"index":1095,"max":0.7,"min":0,"rarity":3,"name":"Keeping Tabs","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-HD2SEyO13vOxoXxa_nBovp3OHzouqcHqRZwBxDcd2EOUDskXtl4DmYevi4FGLg4tDz3n4iylB6Xw9_a9cBgS1m-61","stattrak":true,"normal_prices":[436,162,57,58,50],"normal_volume":[74,72,125,34,32],"stattrak_prices":[425,239,99,130,79],"stattrak_volume":[45,41,76,36,17]},"1129":{"index":1129,"max":1,"min":0,"rarity":4,"name":"Dream Glade","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-UAmaUxNF6ueZhW2e3wkl162TVmdqvd3mUPw9yDJZ4FOYJ4UKxkNfiNrvn4QCMjdlHmHj6kGoXub9gXKkW","stattrak":true,"normal_prices":[370,71,49,48,46],"normal_volume":[365,950,1274,914,594],"stattrak_prices":[361,78,48,45,48],"stattrak_volume":[144,244,443,124,182]},"1305":{"index":1305,"max":0.65,"min":0,"rarity":1,"name":"Green Cell","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82lYKVmKc-QD2qf_uJ_t-l9AXi3whgm4WjczNageHzCZgRyDcchRu8Ls0W5l922N7jhsgyMjYpAzS7gznQe2xurqq8","normal_prices":[3,1,1,2,1],"normal_volume":[633,259,460,72,304]},"1328":{"index":1328,"max":0.637288,"min":0,"rarity":1,"name":"Red Jasper","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I4P2Rb_d-J6GsGmidwPp5j-1gSCGn20Ql62_Tztz8dymWPwYoXpYjQ-8Ds0TpmoHnYbzh51aKjYhBzXn23CpXrnE8L3fMNjQ","normal_prices":[3,1,1,1,2],"normal_volume":[595,468,565,96,126]},"147":{"index":147,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle Dashed","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_826abRoH-ObAXWE_uRjvuZlSha_nBovp3PRz92tJSrFOw4oAsYmFucLsxaxkdfiNejj5gPX349BmXmqhnlPun5i_a9cBim8k1Zw","souvenir":true,"normal_prices":[144,4,1,1,1],"normal_volume":[41,558,395,37,73]},"195":{"index":195,"max":0.8,"min":0.06,"rarity":3,"name":"Demeter","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2sZLFoMP-fF2Cfz9F0ouB_QBa_nBovp3OEnoz4cHnFZgMnD5R5TeQP40Swx4XgNLm34g3ei49FxC2qiXgbuy9t_a9cBh-mV6Cr","stattrak":true,"normal_prices":[2553,594,480,515,324],"normal_volume":[15,30,70,7,16],"stattrak_prices":[4163,687,624,537,655],"stattrak_volume":[5,23,38,6,12]},"229":{"index":229,"max":0.28,"min":0,"rarity":3,"name":"Azure Zebra","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_820baZ_IfOSA1iSzftzj-1gSCGn20tz6jjXnN-pJSiUOAIlD5FyR-FYuhbtwdSyMb_l4VPajI1FyCSo2iJXrnE87owZcUA","stattrak":true,"normal_prices":[445,285,259,0,0],"normal_volume":[181,56,21,0,0],"stattrak_prices":[385,307,340,0,0],"stattrak_volume":[108,68,23,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":2,"name":"VariCamo","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s24abZkI_GeAVicyOl-pK9qTn7gwUlwsWrVzd2sci3GZ1cnDpF0TeNe5kG9mt21Mrzq4VPYjdhA02yg2WVbe73u","souvenir":true,"normal_prices":[19,8,4,3,3],"normal_volume":[286,266,269,45,43]},"294":{"index":294,"max":0.3,"min":0,"rarity":2,"name":"Green Apple","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I4M2peqFoLs-fB2CY1aBzs7g4SXC2zRgjsWuBmdmtdiifagMhWZUlEeEP5BG9ktG2Pu-w4QSMlcsbmpnYc5LS","normal_prices":[23,8,7,0,0],"normal_volume":[625,421,135,0,0]},"382":{"index":382,"max":0.25,"min":0,"rarity":3,"name":"Murky","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1a4s2pO7dqcc-eG3Wb2NF6ueZhW2e2wE5y6juDy46uJ3qePVR1C5BzR7UO4xa9ldXlYuK07wSP2dlMzin6kGoXucw3wj8l","stattrak":true,"normal_prices":[291,73,69,0,0],"normal_volume":[109,108,37,0,0],"stattrak_prices":[187,139,139,0,0],"stattrak_volume":[92,38,1,0,0]},"438":{"index":438,"max":0.4,"min":0,"rarity":4,"name":"Chronos","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2tYLZiLv-AMWDD0uknj-1gSCGn20R1sG3dyt2qdyiWbwB2A8R0QeJcska6x9znNurrsgWNjooWxX37iyhXrnE8dtReaHc","normal_prices":[35805,42903,29712,500000,0],"normal_volume":[25,2,2,1,0]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I4M2-ZadSLPmUBnPelOwj47A4GCyywEgl52_TmNyuJH2XOgJzX5UlQeUCsBS9m9bhP-rq4Rue1dx74w5z0g","normal_prices":[6742,412,266,1322,857],"normal_volume":[10,15,25,2,1]},"465":{"index":465,"max":0.8,"min":0,"rarity":1,"name":"Orange Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2lYaliLv-sCm6RzOF4tPJWQDuymxoijDGMnYftby6RPwN1DZQmTbYL5kO9mt2zN-3j4wSKjdpDmy2tjCNN6ik45ewAAKs7uvqAyDUCDXE","normal_prices":[1267,1190,929,991,849],"normal_volume":[85,52,138,6,21]},"493":{"index":493,"max":0.9,"min":0,"rarity":5,"name":"Flux","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-VAnKI_v5jovFlSha_nBovp3ODz9uoc3vGOgMmApp3QrFe5xftm9bjNOm24Afb3YlBn3mqjS8dvy1p_a9cBmtTF-_C","stattrak":true,"normal_prices":[4212,1006,642,660,631],"normal_volume":[89,129,168,37,41],"stattrak_prices":[5486,2941,1779,1822,1825],"stattrak_volume":[33,50,52,15,16]},"511":{"index":511,"max":0.85,"min":0.14,"rarity":5,"name":"The Executioner","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-WFmKT1Pp_v-9sXRa_nBovp3PXmdyseC3DOFN1DJZ1TeIOtEKxmoG2PuKwsgOPgoxGzyr7jnhPvXlq_a9cBnGZIRC4","stattrak":true,"normal_prices":[0,5846,833,776,707],"normal_volume":[0,38,294,44,38],"stattrak_prices":[0,7345,731,660,767],"stattrak_volume":[0,1,64,13,18]},"545":{"index":545,"max":0.52,"min":0,"rarity":3,"name":"Orange Crash","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82pO7dqcc-eB2uZ1ed3v_NoQS62qhEutDWR1Iv_IC2eZgUkA5Z0RbEL5BLqw9flMby2swba34JBnHr22CMd5i1r67ocEf1y0mrzb0E","stattrak":true,"normal_prices":[72,26,29,21,24],"normal_volume":[225,99,54,36,24],"stattrak_prices":[88,45,23,33,27],"stattrak_volume":[102,101,123,40,6]},"6":{"index":6,"max":0.8,"min":0.06,"rarity":2,"name":"Arctic Camo","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2veqd5KfOsAm6Xyfo4s7BsFyyxzUlw5j6BmNn6In-QZw8pA8MiQuBYuha9mtLvZengtlGIjpUFk3s2Ceep5Q","normal_prices":[16890,5498,2657,2329,3318],"normal_volume":[8,7,3,3,6]},"606":{"index":606,"max":0.45,"min":0,"rarity":3,"name":"Ventilator","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-FC2mEyOJ3pO57cCW6khUz_W_Rwo36cC6SagZzDZZyQbMN5kTtwNC0Mb60sg3cjo8UnHn4j3hPuid1o7FVSaKTKS0","stattrak":true,"normal_prices":[67,22,22,21,0],"normal_volume":[257,117,62,26,0],"stattrak_prices":[78,32,15,22,0],"stattrak_volume":[103,66,100,29,0]},"628":{"index":628,"max":0.7,"min":0,"rarity":4,"name":"Stinger","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-FB3eV09Fvte1lQD6MmRQguynLyo6rdH-RPAZ0D8chQeIL50TukdK2P-_rtFPejN8WmH34jylJvHtq5fFCD_TvHmnxYA","stattrak":true,"normal_prices":[1062,514,293,239,259],"normal_volume":[210,165,185,2,44],"stattrak_prices":[466,216,124,166,165],"stattrak_volume":[86,72,58,16,16]},"677":{"index":677,"max":1,"min":0,"rarity":3,"name":"Hunter","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-QC3OdxNFkteV8Vxa_nBovp3Pdw9arJCrCP1N1DZFyR7EDskO4wd3mYr_ltVHa2oNNziWshn5Nunlp_a9cBi4_3bmx","stattrak":true,"normal_prices":[130,24,18,14,13],"normal_volume":[77,136,79,49,68],"stattrak_prices":[222,29,17,14,15],"stattrak_volume":[81,46,31,28,31]},"712":{"index":712,"max":0.7,"min":0,"rarity":4,"name":"High Seas","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-RG2STwOBztfNWQyC0nQlp4j7Syt-rdHPEOAIjCpV5TLQK40K5wdLjY-_r7wfeio1AySiriCIf6DErvbj1Mwus0A","stattrak":true,"normal_prices":[778,194,67,63,66],"normal_volume":[248,141,155,15,60],"stattrak_prices":[720,278,131,169,107],"stattrak_volume":[98,69,210,55,28]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82jbbdlH-SSAFicyOl-pK8-Tn3qwkgi5j7Wm9z7dy6fbFMoWcZ0RucOshK5l4DkZr_l5ACNgtpM02yg2YL7CXWd","souvenir":true,"normal_prices":[3209,329,261,312,314],"normal_volume":[11,18,34,2,41]},"739":{"index":739,"max":0.5,"min":0,"rarity":3,"name":"Violet Murano","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1a4s2jfbZsLv-sGG6fzetij-1gSCGn2050tmuDn9v8JXmXPwclD5txROII40G-l9S1Mb-04lGIit5Mm3qt2HtXrnE8WK3_Jks","normal_prices":[3581,3060,3190,3070,7212],"normal_volume":[62,18,12,3,3]},"74":{"index":74,"max":0.8,"min":0.06,"rarity":1,"name":"Polar Camo","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2veqd5KfOsDWie1fx3o_VWQyC0nQlp5D7Xn9n6cn2UP1IoCMF0ROYO4xnsldK1Nbnh5AGM2olDyy-siXwfuzErvbiZGyPTng","souvenir":true,"normal_prices":[103,5,1,2,1],"normal_volume":[64,348,469,303,90]},"8":{"index":8,"max":0.8,"min":0.06,"rarity":1,"name":"Desert Storm","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1T9s2qbbdoMuSsAm6Xyfo45bU5S3i1wR5w5DnUyt6tIyqVOAEkCccjQ7Nb4RbslYayPr7i4FGPjpUFk3uqKe2F9w","souvenir":true,"normal_prices":[74,3,1,1,1],"normal_volume":[126,53,877,162,293]},"806":{"index":806,"max":0.65,"min":0,"rarity":4,"name":"Scavenger","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-AD3GRxutJvOhuRz39xkl2tziGmNf9JX-WPQcpAsEiQOUNsBixx4bmN7nj5FHb3Y9Cyiz-hzQJsHglCU9Y5w","stattrak":true,"normal_prices":[160,58,44,59,46],"normal_volume":[177,120,181,140,18],"stattrak_prices":[219,115,86,92,81],"stattrak_volume":[70,242,172,40,60]},"891":{"index":891,"max":0.8,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1Y-s2pO7dqcc-RAmaTyv13vuVWQyC0nQlp4miGytahcSiTZ1J0DZZ1ELYDskO7mtfjMujn5gbajYlGyS38jywY6jErvbjKP5Wfiw","stattrak":true,"normal_prices":[552,318,80,116,73],"normal_volume":[52,56,83,31,52],"stattrak_prices":[365,207,82,236,84],"stattrak_volume":[21,22,78,1,39]},"930":{"index":930,"max":0.55,"min":0,"rarity":3,"name":"New Roots","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1I_82jZ7ZiH_OSHHGZz-lJvOhuRz2xmQgijDGMnYftby2eOgEiDsMmReUDs0G5m4fhM7zm4ADY2d9FzyT_33kfvylp4utQV6E7uvqAlSn4mj4","souvenir":true,"normal_prices":[991,739,332,664,810],"normal_volume":[42,39,101,2,6]},"980":{"index":980,"max":0.8,"min":0,"rarity":3,"name":"Digital Mesh","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2zYXnrB1c_M2pO7dqcc-XB3SC1P5ij-1gSCGn20wh4m-By9-qIC7COA8jWcNxRuUPshe6kNfnYe62tQ2K2NpHmXj2iC9XrnE82YBIy5I","stattrak":true,"normal_prices":[295,131,67,66,63],"normal_volume":[53,99,62,26,114],"stattrak_prices":[291,117,66,78,69],"stattrak_volume":[25,14,37,17,19]}}},"13":{"name":"Galil AR","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"101":{"index":101,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhV7BiMv6SCmivzedxuPUnGHGywEtysm7Xy9qudXqWbwZ1XsRxQeIDs0W7mtbkM-ux4VCL3oxCmDK-0H3kO6HdPw","normal_prices":[3772,1108,1023,1086,989],"normal_volume":[67,68,94,18,43]},"1013":{"index":1013,"max":0.7,"min":0,"rarity":4,"name":"Phoenix Blacklight","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V7RlL_WdB3-v1e9xo955WjujmRgYvzSCkpu3JyqTblQhX5dxTeMJ40Pux4C2MOyw51DXjYtAyH7_jy9JuCk45LpWWL1lpPNjwyLnRw","normal_prices":[21885,9341,7864,9861,9384],"normal_volume":[359,129,100,4,18]},"1032":{"index":1032,"max":0.6,"min":0,"rarity":3,"name":"Dusk Ruins","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V7Z4Kf6AMXWVxdF6ueZhW2fnlBkl427dno2rcXLBagYjDMN0Qu8Ls0a9wIK0PrvhtlHYgogTyy_5kGoXuQFMiuDz","souvenir":true,"normal_prices":[6092,1696,998,1161,1746],"normal_volume":[119,46,18,7,8]},"1038":{"index":1038,"max":1,"min":0,"rarity":5,"name":"Chromatic Aberration","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWSY0-F7sd55Rie4qhEutDWR1NivcH2VOAchC8B4ReZesxa5l4LlPu6z7wTa2IhHmCj4jyNJ7Sls4LscEf1yskqHCW4","stattrak":true,"normal_prices":[2873,628,333,302,294],"normal_volume":[279,543,812,158,221],"stattrak_prices":[4252,1407,645,661,553],"stattrak_volume":[111,130,206,78,52]},"1071":{"index":1071,"max":0.55,"min":0,"rarity":4,"name":"CAUTION!","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6NsLPmfMWSR1Pp_v-9WQyC0nQlpsmnQwoqgIHuWa1QnC5EjRuJcsRi6lNfvPuvi7wPajo9Bziys23xIujErvbiCbfcatA","souvenir":true,"normal_prices":[9308,7690,5754,0,8500],"normal_volume":[62,7,14,0,2]},"1147":{"index":1147,"max":0.7,"min":0,"rarity":3,"name":"Destroyer","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWOV0vpkv_hsXRa_nBovp3PWwougcHvBP1IpWJohEOdc5hLrwNTiZbjh7gbaithNnnqsjX4f7y8-_a9cBt1aCBEk","stattrak":true,"normal_prices":[51,14,5,7,5],"normal_volume":[1104,546,680,236,139],"stattrak_prices":[66,15,7,13,7],"stattrak_volume":[372,70,351,70,98]},"1178":{"index":1178,"max":0.554422,"min":0,"rarity":5,"name":"Rainbow Spoon","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PO_V7BkNPGdB3Kd_vx3ue9rQD6MkhwrujGEiLD1KCzPKhhxCMclQeAPtUK-xoWxPrvkslOKg4tHzXn-3Xsbvyo647sLVqoh_6XekUifZrx5Pjj5","normal_prices":[4959,3254,3027,3375,3406],"normal_volume":[927,993,861,56,74]},"1185":{"index":1185,"max":0.798995,"min":0,"rarity":4,"name":"Control","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PWvZK1hH_OcAHOCzuJJo_V7RiK2qhEutDWR1Nmvcn6RPFVxW5txTbRZuxDuxNKzZu2x7wCMiNpExCSshyof7Xlt5-scEf1y6paUA5M","stattrak":true,"normal_prices":[409,82,39,36,40],"normal_volume":[734,808,2002,43,360],"stattrak_prices":[439,140,64,76,65],"stattrak_volume":[186,432,776,45,212]},"119":{"index":119,"max":0.8,"min":0.06,"rarity":1,"name":"Sage Spray","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V7d9MvGKMWOV0utkpN56Ti62qhEutDWR1N6qcCqSOgEiCsMhQLZftxnpxtfkP-Ph71eMjYtDmCX3jytO5nlt5OkcEf1yc_oaZQU","souvenir":true,"normal_prices":[409,5,1,2,1],"normal_volume":[156,349,521,1192,121]},"1264":{"index":1264,"max":0.6,"min":0,"rarity":2,"name":"Robin's Egg","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhbZt_L_KaAHSVxulJvOhuRz39kRl04ziAwouhInmTaQMlCcNxReFZ5xTqmtO1PuLntFDX3d8QyST_jjQJsHiwz7gI3Q","normal_prices":[25,8,2,2,1],"normal_volume":[1472,698,1364,48,69]},"1275":{"index":1275,"max":0.6,"min":0,"rarity":1,"name":"Grey Smoke","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGha6xSIvycHGWvw_lJt-BlRiWyhyIrujqNjsH9dimTZgAmCMMhRuEL5xCxkNa0Pum3sgzX3osWyH362ixL7HlqtehUT-N7rUWzKN8P","normal_prices":[3,1,1,1,1],"normal_volume":[815,317,406,59,349]},"1296":{"index":1296,"max":0.6,"min":0,"rarity":2,"name":"Acid Dart","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3bZt0JfyfAXCv1P13tt5lRi67gVNwtzvRzIv8dn_CZgBzXMMjRuZbsxe_lYbjNOzg71fajI8WnC2qjH9L8G81tK7k0ppc","normal_prices":[17,7,3,3,1],"normal_volume":[176,667,594,55,103]},"1314":{"index":1314,"max":0.75,"min":0,"rarity":2,"name":"O-Ranger","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhbZtiMvGdCWKvx-J_s-pWQyC0nQlp4jjRyYuhdy2WOgBzWZFxQrMP4RCwldbhM7jj5VDZi4IWzin7inwd5jErvbhrB4cQjg","normal_prices":[32,7,2,1,2],"normal_volume":[886,980,888,115,227]},"1383":{"index":1383,"max":0.7,"min":0,"rarity":3,"name":"Sky Mandala","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3bZtoIeKHBlidwOByse1ocCW6khUz_WzSy42rcS3CbwMkD5Z0TOAOsBDswNfhZu3q5w3ajdpNzSj-ii9P7nl1o7FVbxi6bE4","normal_prices":[198,89,33,32,23],"normal_volume":[1086,1618,165,11,136]},"1434":{"index":1434,"max":1,"min":0,"rarity":4,"name":"Galigator","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PWvZK1hH_eSAm6XwPp5ot5lRi67gVN_42_VydytcX3BbQ8pCsB0ReMCtEG_lYLuNuji4AGPjt8Qynj4jXlI8G81tMQ6bFYi","stattrak":true,"normal_prices":[554,191,106,81,56],"normal_volume":[400,571,465,201,190],"stattrak_prices":[982,352,191,143,124],"stattrak_volume":[82,173,210,49,68]},"192":{"index":192,"max":0.8,"min":0.06,"rarity":3,"name":"Shattered","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6d_Nf2DAmKvw_x3pu5WQyC0nQlpsm7dn96tcniROgMoX8RzFuIJtRPqxtXhMujjsgLYjIlEzS-ojiIa5jErvbio8HB-SQ","stattrak":true,"normal_prices":[5874,973,639,590,537],"normal_volume":[18,41,67,5,27],"stattrak_prices":[11684,1318,573,777,596],"stattrak_volume":[13,32,69,7,18]},"216":{"index":216,"max":0.04,"min":0,"rarity":3,"name":"Blue Titanium","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0POgV7BkNPGdB3Kdkr5gj-1gSCGn208jsDvRmNmqdn6fbw4iCJp5Q7Nb4xW8xNSzMenk7wbX341AzyitjitXrnE8X82UsFg","stattrak":true,"normal_prices":[2881,0,0,0,0],"normal_volume":[227,0,0,0,0],"stattrak_prices":[1192,0,0,0,0],"stattrak_volume":[378,0,0,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":2,"name":"VariCamo","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V7JsMvmQD2qf_uJ_t-l9AXzgwU0ktW6HnIr_cH7FO1R1CpFyTbQNtBHqkYHuM-iw5FDeid1NmCjgznQefGamZCs","souvenir":true,"normal_prices":[35,6,4,4,5],"normal_volume":[109,421,386,60,37]},"237":{"index":237,"max":0.5,"min":0,"rarity":2,"name":"Urban Rubble","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V7JsMvmQD2qf_vtksuBncCW6khUz_TiDz9b8dXKQaAZ0X8MiRLVZ4RXslIflN-_g4gKIit1BnHn4iSNBvCl1o7FV6ub4EBU","normal_prices":[3349,1031,797,1202,925],"normal_volume":[48,76,33,4,9]},"239":{"index":239,"max":0.6,"min":0,"rarity":3,"name":"Metallic Squeezer","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6t7JeKDD3SD_v53ue99cDm2myIqtimElrD1KCzPKhh1W5N4EeQJ4ELuwNXgYu3r7gHe2ItExC_3hitL6C1o6-sEB6J0q_eBkUifZqkJVocB","souvenir":true,"normal_prices":[110,34,19,22,18],"normal_volume":[1802,1276,1011,74,99]},"241":{"index":241,"max":0.6,"min":0,"rarity":1,"name":"Hunting Blind","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6loM_isHWuR0uZzo95lRi67gVMhsjyBmI38eHKUawZyDcB2RbVcuhXql4bnMePjsg3XjdgUxCr43y4d8G81tK0-GwoG","souvenir":true,"normal_prices":[1179,348,278,305,260],"normal_volume":[70,43,35,1,10]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0POvV6JsJPWsA2KEwOJ6ueJWQyC0nQlp52uGm9yodC3GZ1d0CMdyQeJctRDqmtayY-Kz71fW2IIUziz8intK6TErvbiZh4dEMQ","souvenir":true,"normal_prices":[2909,500,620,2105,0],"normal_volume":[129,42,88,5,0]},"264":{"index":264,"max":0.6,"min":0.1,"rarity":3,"name":"Sandstorm","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V7dsLvSAGmiCzNF6ueZhW2exkx4m6mrcmd6heS-XZgB1ApZ3FLUI5xm6ktezMuzh7gTeiYpFnCr-kGoXuTw2UKiI","stattrak":true,"normal_prices":[0,1439,142,196,151],"normal_volume":[0,186,531,25,36],"stattrak_prices":[0,548,143,230,150],"stattrak_volume":[0,171,194,22,39]},"294":{"index":294,"max":0.3,"min":0,"rarity":2,"name":"Green Apple","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhV6N_JfWdMWuZxuZi_rI5H3_iwR9_4GSHmNuhcinDPQQgWZd5QLEJuka6koK1Mu6z7wDf2YhbjXKp2JcVlJI","souvenir":true,"normal_prices":[40,5,3,0,0],"normal_volume":[2004,1617,399,0,0]},"297":{"index":297,"max":0.8,"min":0,"rarity":3,"name":"Tuxedo","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OGhV6t_I_GsAm6Xyfo45ONqGHC2kE1y42jWz9uscXmfbQQlCsZzFOACuxawl4GxMevj4QPfg5UFk3uvmVba9Q","normal_prices":[321,168,60,57,33],"normal_volume":[1412,424,509,43,83]},"308":{"index":308,"max":0.6,"min":0,"rarity":3,"name":"Kami","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6NsLPmfMWyRzOdJvOhuRz39wkl142uEwtqsJ3OealV1DZYmFuNZ4xTtx4HnZuPl4gaLjdpNnHqt3TQJsHjaThnzjg","stattrak":true,"normal_prices":[869,226,111,138,126],"normal_volume":[319,140,243,118,66],"stattrak_prices":[685,322,140,150,135],"stattrak_volume":[212,155,146,27,47]},"379":{"index":379,"max":0.9,"min":0,"rarity":4,"name":"Cerberus","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6doMvKBG3Svxu96ue1WQyC0nQlpsTjVzdb8IH-UOw8lX8B5EeYJ40a8k4XnPuvqsgzYjt0QnCyqh3wb7DErvbjusqqqdw","souvenir":true,"normal_prices":[26291,7091,3225,2821,2814],"normal_volume":[159,86,302,50,30]},"398":{"index":398,"max":0.85,"min":0.35,"rarity":6,"name":"Chatterbox","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWaS0-9lue5ncCS2kRQyvnPXnIn7eSrEZ1AnD5NxTeII4ESwxN3jN7zl5QHXjdhAnyuo2y9Nv3xs_a9cBuAhdjfO","stattrak":true,"normal_prices":[0,0,17323,10185,9784],"normal_volume":[0,0,48,229,276],"stattrak_prices":[0,0,38616,10579,10536],"stattrak_volume":[0,0,24,42,71]},"428":{"index":428,"max":0.85,"min":0.1,"rarity":5,"name":"Eco","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWKTztF6ueZhW2exwExw4WrcyImrcHmTbQAlWcQkQudYt0O5lNfgP-nh5AOL3otAziz7kGoXua-HTb4P","stattrak":true,"normal_prices":[0,11049,1076,1006,1059],"normal_volume":[0,244,1708,209,88],"stattrak_prices":[0,13443,1795,1409,1372],"stattrak_volume":[0,92,423,69,41]},"460":{"index":460,"max":0.7,"min":0,"rarity":3,"name":"Aqua Terrace","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0POjV6NoL_2WGnWZwtFlpOR5XBa_nBovp3Pdzo6hcH6Ta1RxWZslRuYC4xG9x4bgP-zj4wfY2YoQzyT43XhA7Shq_a9cBkjd5CSZ","normal_prices":[19352,14542,11675,16843,16600],"normal_volume":[70,18,14,1,1]},"478":{"index":478,"max":1,"min":0,"rarity":3,"name":"Rocket Pop","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfD3Wv0e9kpOhqQyygqhEutDWR1Nf8eXzDP1InCMR3QucIshjrktexMOqz4QPcjo1Gz3qq2H9L5ylu4ugcEf1yh3Lp9zc","stattrak":true,"normal_prices":[1243,272,107,63,53],"normal_volume":[377,494,386,81,123],"stattrak_prices":[2211,487,175,97,82],"stattrak_volume":[144,211,201,64,142]},"494":{"index":494,"max":0.9,"min":0,"rarity":4,"name":"Stone Cold","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfMWmZxuZip-hnSBa_nBovp3PSnI2heXqXOwQjDpcmQ-UN5BjrmtexP-rgswDajotBxCz5iyhMui5u_a9cBuYTcBV8","stattrak":true,"normal_prices":[2704,483,214,170,159],"normal_volume":[337,459,323,62,33],"stattrak_prices":[3082,1001,419,392,329],"stattrak_volume":[67,105,137,47,39]},"546":{"index":546,"max":1,"min":0,"rarity":4,"name":"Firefight","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfD3WvyOB1te9sXSinmg8YvzSCkpu3eH_EZ1IgDsR1ReYPshm6x9XnZe204VCMiIsXzS_33S0b7X5t4-dQUb1lpPOTHSUAOw","stattrak":true,"normal_prices":[1420,189,103,95,96],"normal_volume":[240,171,179,65,73],"stattrak_prices":[1412,342,138,111,109],"stattrak_volume":[57,70,58,46,55]},"629":{"index":629,"max":1,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWaCjO13ve5WQyC0nQlp5T7dzoqpeX3FZ1R2DZd4Qe4CtRS_k9y0Ye7qtQOP2oxAyX73iytK6TErvbi0QhR0PQ","stattrak":true,"normal_prices":[1618,165,54,34,37],"normal_volume":[201,42,123,67,115],"stattrak_prices":[516,80,34,31,31],"stattrak_volume":[56,90,111,56,44]},"647":{"index":647,"max":0.55,"min":0,"rarity":4,"name":"Crimson Tsunami","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6NsLPmfMXCR1-tJvOhuRz39x0Qm6mjQzo6qeHLGOg8nXJUiE-UKtxa5mtPgZu3rtFGMiIwXxH-viDQJsHh48m4KFg","stattrak":true,"normal_prices":[978,285,168,190,147],"normal_volume":[414,230,192,41,37],"stattrak_prices":[1219,556,326,382,375],"stattrak_volume":[159,109,74,1,25]},"661":{"index":661,"max":0.55,"min":0,"rarity":5,"name":"Sugar Rush","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V6NsLPmfMWSRz-pvs-loQDqMmRQguynLyNqpJX_CPwUpXpEmEOMLs0K-kdPiN-uz4wfW2IgWyySr2ixKvCht4fFCD_QYspg1jQ","stattrak":true,"normal_prices":[23186,6104,5172,6742,5378],"normal_volume":[107,108,75,6,2],"stattrak_prices":[18584,12609,8276,20207,7995],"stattrak_volume":[57,21,15,1,1]},"76":{"index":76,"max":0.8,"min":0.06,"rarity":2,"name":"Winter Forest","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6JiMvWAGliHyOBitfNWQyC0nQlp4m7Wy96geHvCPVQjA5d2ROYDtRC4lIGzYeLrtADejt0TzC6tj3tO7DErvbiqpszlmA","normal_prices":[29933,5408,2671,2849,2739],"normal_volume":[8,12,18,2,10]},"790":{"index":790,"max":0.83,"min":0,"rarity":2,"name":"Cold Fusion","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6p4I_yWD3Wv0uVjvO16cCiigBwYvzSCkpu3cy6UbQIgC5QkReYKsEHsmtS2Yb_itA3Y2INNyXj6jHxK7Ho_selRA71lpPOhjRfzhg","souvenir":true,"normal_prices":[81,15,2,4,2],"normal_volume":[1318,789,831,87,163]},"807":{"index":807,"max":0.5,"min":0,"rarity":4,"name":"Signal","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6NsLPmfMXSZxuB3vN57Si2MmRQguynLnIqvIy-TO1UlXJMjEeAN4UGwk9DkZLnltgPYjYkTnCn6iy8buips5PFCD_QZl2QaUg","stattrak":true,"normal_prices":[283,88,53,71,81],"normal_volume":[660,302,302,87,104],"stattrak_prices":[338,207,126,145,146],"stattrak_volume":[196,162,374,44,35]},"83":{"index":83,"max":0.8,"min":0.06,"rarity":4,"name":"Orange DDPAT","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0Pq3V6BpMPGHMWiCwOBxtd5lRi67gVN-4WzRwomqeHKQOwEoAsdzRrENskK7wIXiM-m341feg44TzXr33C0Y8G81tE9ebY28","stattrak":true,"normal_prices":[10863,4373,1777,1759,1790],"normal_volume":[11,31,28,6,3],"stattrak_prices":[33814,4958,2605,2262,2678],"stattrak_volume":[4,29,48,6,2]},"842":{"index":842,"max":0.75,"min":0,"rarity":3,"name":"Akoben","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0OG-V6NsLPmfMWabzuxzvt5lRi67gVMlt2_dzd6qcH2TOgN0CpIlE7Ve5hbukdW0MrixslPW2IgQzyv8jypI8G81tJzCUipD","stattrak":true,"normal_prices":[377,43,22,27,20],"normal_volume":[342,196,192,28,74],"stattrak_prices":[277,74,29,58,28],"stattrak_volume":[169,108,260,29,42]},"939":{"index":939,"max":0.47,"min":0,"rarity":2,"name":"NV","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PG7V7RiLOmsCXWVxOBJt-BlRiWMmRQguynLnNn4JXyWalMlW5ciE-RftRCwlt3gYbyz41Tb34pBmSr92yod7itq5fFCD_TxM0_hWQ","normal_prices":[76,24,16,16,51],"normal_volume":[851,229,438,62,14]},"972":{"index":972,"max":0.8,"min":0,"rarity":4,"name":"Connexion","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfMXeYzut4uflWQyC0nQlpt22Dzd_4cS7Db1NzDZYkQuIKsBW4xt3jPurq7gPag4oXnCqrhipB7TErvbi_0k78nw","stattrak":true,"normal_prices":[305,64,34,48,30],"normal_volume":[814,824,903,112,135],"stattrak_prices":[359,124,56,65,53],"stattrak_volume":[161,276,698,76,74]},"981":{"index":981,"max":1,"min":0,"rarity":3,"name":"Vandal","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2n5rp8SNJ0PW9V6NsLPmfMXGRz-p3vN5lRi67gVMj4mzVw92tdHKXPwcjD8AhR-YKtBe8mtHkNLvgtAGIjd0WxCyv2CNI8G81tKkB1-EH","stattrak":true,"normal_prices":[2436,146,81,44,51],"normal_volume":[124,100,96,89,86],"stattrak_prices":[941,152,87,59,56],"stattrak_volume":[61,39,63,30,7]}}},"14":{"name":"M249","sticker_amount":5,"type":"Weapons","paints":{"1042":{"index":1042,"max":0.7,"min":0,"rarity":3,"name":"O.S.I.P.R.","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiVI0P_8PP1SI_-eDG6exNF6ueZhW2fhwB53smmAzIr_cy2fa1N0D5J0E-Je4BG_lt22N-63sQLYid0UxCytkGoXuS8jTKqZ","stattrak":true,"normal_prices":[61,20,17,16,15],"normal_volume":[326,146,224,34,73],"stattrak_prices":[134,41,32,35,25],"stattrak_volume":[110,122,129,23,43]},"1148":{"index":1148,"max":0.65,"min":0,"rarity":4,"name":"Downtown","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SJP-EAHGf1etJvOhuRz39wUh-5GuGz4mrJHuSbg4jWJp1FLINsRCxwdDuZezm7leK3d5GmSr_jTQJsHj3YwoNRA","stattrak":true,"normal_prices":[143,55,38,35,32],"normal_volume":[823,742,945,70,97],"stattrak_prices":[181,95,49,53,51],"stattrak_volume":[220,341,284,33,71]},"120":{"index":120,"max":1,"min":0,"rarity":3,"name":"Hypnosis","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wi8Ju6uRYL19Lv-AB3SvzedxuPUnTny1wkgm5znWyon4dC2TPFRxX8AmROcLthW8kdTgMrm051fcjIsQzTK-0H3IfNSRpg","stattrak":true,"normal_prices":[204,36,16,11,11],"normal_volume":[69,255,97,47,52],"stattrak_prices":[211,58,22,21,21],"stattrak_volume":[56,24,83,51,41]},"1242":{"index":1242,"max":0.8,"min":0.02,"rarity":1,"name":"Submerged","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SM_OSHGaS_uJ_t-l9AXmyxkt0t2yDyYurci6TPQcgCcckTOMLsxCwk9PiM7i041Tago1FnH7gznQeMmXICmk","souvenir":true,"normal_prices":[55,13,3,3,2],"normal_volume":[334,304,346,26,83]},"1298":{"index":1298,"max":0.6,"min":0,"rarity":1,"name":"Sage Camo","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC4M2kfapqLPWsCmKDwPpJvOhuRz39lkUisWTSmIz7I3uValQjXMEmE-AO4Ea9k9HvZLy27g2P3otEnnj8iDQJsHjxYKi7jg","normal_prices":[3,1,1,1,1],"normal_volume":[609,325,1134,84,143]},"1370":{"index":1370,"max":0.7,"min":0,"rarity":1,"name":"Sleet","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC6s2jOvA0H_OSHFiH0-9mj7JWQyC0nQlp6zzQwtiudHvCO1MlDJByQuIC4UO7lta0Zuy0swPZiNhDxSv33C0f6zErvbjSvv-GUg","normal_prices":[3,1,2,1,1],"normal_volume":[853,403,319,60,184]},"1435":{"index":1435,"max":1,"min":0,"rarity":3,"name":"Bock Blocks","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wi8Ju6uRaqhiI_uAMXeF0_56td5lRi67gVNw4juHnIr_JSmeOwQnXsd1RbZYtkTpkoDjY7nm5Vfci4NDxS__jyoY8G81tOB68LmM","stattrak":true,"normal_prices":[90,21,9,7,5],"normal_volume":[142,227,234,83,104],"stattrak_prices":[154,51,22,20,16],"stattrak_volume":[102,105,135,23,46]},"151":{"index":151,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFU0Pi7ZqNhJc-fB2CY1aB3tbI4S3ngl04ktj7XnNb7InvCOgAlC5Z4Q7ID4RHqlNDgZOPj4Qzdlcsbmsfre7St","normal_prices":[1396,601,474,501,479],"normal_volume":[21,63,67,20,42]},"170":{"index":170,"max":0.8,"min":0.06,"rarity":1,"name":"Predator","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0OirarZsI_GeMWuZxuZi_rM9H3nkk01-6mSAzon_d3vBZw4lXsB0TOQD4RftwdXmY7-3tlffioNbjXKpMr9foB4","normal_prices":[607,141,100,77,69],"normal_volume":[46,175,180,47,32]},"202":{"index":202,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle DDPAT","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC0PaqeKV5H_qGAGCcxNF0ouB_QBa_nBovp3PXmNqqICqWbwB2ApMiQeFYsEXqmoDiZem37lTfit4WmS3623lB6itr_a9cBmG97jrI","normal_prices":[5423,668,356,396,361],"normal_volume":[18,18,2,17,2]},"22":{"index":22,"max":0.8,"min":0.06,"rarity":1,"name":"Contrast Spray","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0OG-eqV0H_yaCW-Ej-shsbBtS3q2wkUitWzUz9b_c3vEZ1UhD5R4F-QL40a8m4HuZbnitlfAy9USVV6qaxA","souvenir":true,"normal_prices":[1061,140,94,90,278],"normal_volume":[2,27,146,39,32]},"243":{"index":243,"max":0.6,"min":0,"rarity":2,"name":"Gator Mesh","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0P-re6xSMOmHBmie_uJ_t-l9ASrkwxxwtWrUyY79I3yUaA5xWcd2RO4C4BO6l4HkZbnj7lSM2YtDzC3gznQeaJe5pgI","souvenir":true,"normal_prices":[21,5,4,3,4],"normal_volume":[168,258,311,42,82]},"266":{"index":266,"max":0.7,"min":0,"rarity":3,"name":"Magma","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiNK0P2se61pKfGdMWuZxuZi_rNrTC-wl0gh5WXXmIqpIyiSbVIoXJckEO9eukTrx4XkMbjh51bYjIJbjXKp9iAER2c","stattrak":true,"normal_prices":[368,178,127,179,91],"normal_volume":[50,80,88,13,4],"stattrak_prices":[368,190,127,180,105],"stattrak_volume":[81,60,72,55,13]},"401":{"index":401,"max":0.8,"min":0,"rarity":3,"name":"System Lock","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SM_WYGmiC_uJ_t-l9AXzhzEt25Wjcn4n4dHKebgMlCMB2RO5b40S-x9TnN-KztFDf3ohDzirgznQedTUXMuU","stattrak":true,"normal_prices":[151,57,35,52,33],"normal_volume":[157,112,116,31,20],"stattrak_prices":[256,75,35,62,44],"stattrak_volume":[93,61,85,37,31]},"452":{"index":452,"max":0.5,"min":0,"rarity":2,"name":"Shipping Forecast","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC0OihbK1sI6OsAm6Xyfo4s7c4Gnvmx0l0tWjSzoyoeC7BPwUgDsAiQ-cMsROwloG2Y-rr4wfe3pUFk3scMmqwFg","normal_prices":[2009,1878,1781,1715,1762],"normal_volume":[74,34,45,6,3]},"472":{"index":472,"max":1,"min":0,"rarity":1,"name":"Impact Drill","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFU0PmrcadiLP-BHVicyOl-pK9rS3jlxBhztznQmNmrIn-VbFcmW5ZyReZe5hi9m4e1MO7j4w2Mg91A02yg2QZ4bFj3","normal_prices":[965,524,429,337,327],"normal_volume":[76,94,120,14,36]},"496":{"index":496,"max":1,"min":0,"rarity":4,"name":"Nebula Crusader","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiVI0P_8PP1SLvWRG2uR_u1kpfJoSyyhqhEutDWR1Ir_JSiXOgciDJN4RucCsRW8w4KyZu_q5FeLjN4RnCmt33lP7nxv5-wcEf1yLX15hXE","stattrak":true,"normal_prices":[923,214,110,108,94],"normal_volume":[114,136,194,65,20],"stattrak_prices":[1405,573,242,238,246],"stattrak_volume":[50,51,65,60,36]},"547":{"index":547,"max":0.5,"min":0,"rarity":3,"name":"Spectre","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SM-CWDXOCxNF6ueZhW2fqwklx4j_Wyd_6J3yeOlcoXMclQuQI4xbrw4fmNrziswLX2IhHziqrkGoXuVEVHa_j","stattrak":true,"normal_prices":[60,26,38,26,24],"normal_volume":[340,121,369,26,29],"stattrak_prices":[84,35,20,39,36],"stattrak_volume":[137,95,124,31,43]},"648":{"index":648,"max":0.45,"min":0,"rarity":4,"name":"Emerald Poison Dart","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0P_8PP1SJuKcCVif0-dxue9oQxa_nBovp3PRzNb8JX2VO1IpDsclRrEPtxXtxNSxYuuw4QHai9gWyCT2j3gYuHlt_a9cBlcR8wa2","stattrak":true,"normal_prices":[500,129,127,127,0],"normal_volume":[118,124,111,33,0],"stattrak_prices":[406,224,213,291,0],"stattrak_volume":[25,90,46,18,0]},"75":{"index":75,"max":0.8,"min":0.06,"rarity":2,"name":"Blizzard Marbleized","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipC0PCiYb53IeKXMWuZxuZi_rIwF3DmzBx14WTTwtisIH6fOAYmWJImReMC5xm-koGxM-yw4wKIj9lbjXKpzG9Fj_8","normal_prices":[24500,5841,3272,4094,3150],"normal_volume":[3,23,5,1,2]},"827":{"index":827,"max":0.5,"min":0,"rarity":3,"name":"Humidor","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0P-heqtSI_GBGG6extF0pfNnWxa_nBovp3OGnomhc3-ROFInDJclReQOtkS_xNO0MLuwtVCL3Y9DxSqr3y9Lunxq_a9cBnmfuyfW","souvenir":true,"normal_prices":[757,333,197,336,1502],"normal_volume":[159,71,80,12,15]},"875":{"index":875,"max":0.5,"min":0,"rarity":2,"name":"Spectrogram","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wipP0OKraa9-H-KSB2mSzvlJvOhuRz39kxsj5WXUz4urInmWblIgCZVxTbJfthXsmoDuM-m05QPeiIJAyiuvjjQJsHhX7l6_wQ","normal_prices":[73,28,15,16,16],"normal_volume":[577,363,309,35,39]},"900":{"index":900,"max":0.65,"min":0.05,"rarity":3,"name":"Warbird","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiVI0P_8PP1SN_GBDG6CxdFgtfVsXSi9qhEutDWR1NqpdymUbgcgDcRwEeUO5xa7kIGzMOjgsQzejNoRni6ohyJL6ytv4-4cEf1yirMa72w","stattrak":true,"normal_prices":[655,272,115,99,66],"normal_volume":[9,52,118,30,40],"stattrak_prices":[1054,202,77,201,116],"stattrak_volume":[7,28,53,35,52]},"902":{"index":902,"max":0.75,"min":0,"rarity":4,"name":"Aztec","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiNK0P_8PP1SIeqHC2SvzedxuPUnTirnwEslsT6Gzd2sJHLCOlUpWJohE-MMsxW6l9GxPuy24AyL398QnjK-0H18Ww4Zdw","stattrak":true,"normal_prices":[468,101,42,60,60],"normal_volume":[108,160,183,26,49],"stattrak_prices":[376,180,76,98,93],"stattrak_volume":[32,75,103,5,44]},"933":{"index":933,"max":0.5,"min":0,"rarity":2,"name":"Midnight Palm","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wjFL0OKvZKlSLvmUBnOvzedxuPUnS3Cxlx8ksW7Um9mtc3KTOwAlCJF4FO4PskO9wd3jZLjn4wSN2I1HzDK-0H3u05_o_Q","souvenir":true,"normal_prices":[160,82,51,144,120],"normal_volume":[167,113,246,20,2]},"983":{"index":983,"max":1,"min":0,"rarity":3,"name":"Deep Relief","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8zMK5wiFO0P_8PP1SJPWWHliCxOJ_tedWQyC0nQlp5DzUzIyqcnyQOAckWJckQu8KuhnpkdPgNu-0tgTYio5Eny2shnsd7TErvbi9QVp9bQ","stattrak":true,"normal_prices":[287,141,84,47,51],"normal_volume":[48,79,145,72,94],"stattrak_prices":[628,130,75,57,54],"stattrak_volume":[48,51,46,21,29]}}},"16":{"name":"M4A4","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"101":{"index":101,"max":0.8,"min":0.06,"rarity":2,"name":"Tornado","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFU0OaheqpsJP-sAm6Xyfo4secwGX3llEp3sT_dwtz4IH3GZgchD8AmTeUP5hO8lIG0Zuji5VTWipUFk3sAwQa4aw","souvenir":true,"normal_prices":[18952,3781,879,937,924],"normal_volume":[39,130,182,24,24]},"1041":{"index":1041,"max":0.79,"min":0,"rarity":6,"name":"In Living Color","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSLP-FC1icyOl-pK84GH2wxhty4DjcyNuhdHyXbAVxW8QjTbEMthC8kNa0MLmzs1Hbj95E02yg2bbWGcKW","stattrak":true,"normal_prices":[10543,4248,3114,2915,2712],"normal_volume":[296,707,802,60,97],"stattrak_prices":[12212,5431,2963,3482,2964],"stattrak_volume":[129,135,188,15,29]},"1063":{"index":1063,"max":1,"min":0,"rarity":6,"name":"The Coalition","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSI_-SAm6EyOF4j-1gSCGn200jt2_XnIuseX_GaFR0XpEhReULtUKxlIWzP-_gs1HZjI1NzSutiClXrnE8e4r3Ge8","normal_prices":[169340,56443,38840,17367,12955],"normal_volume":[71,200,189,135,90]},"1097":{"index":1097,"max":1,"min":0,"rarity":4,"name":"Spider Lily","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6V6JhL-eWHHSvzedxuPUnHXiwlk4lsTvUz477ICiRPw52WJNxROICtxK-wYDhZejm5gCP2I9MzjK-0H1trtkVHA","stattrak":true,"normal_prices":[7673,1464,789,598,540],"normal_volume":[309,911,978,113,84],"stattrak_prices":[7910,3264,1469,1225,1114],"stattrak_volume":[108,151,183,41,45]},"1149":{"index":1149,"max":1,"min":0,"rarity":3,"name":"Poly Mag","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJfyaGmKv1e91pOhqTiWMmRQguynLzY2pIi2QawR0CpdwTOdeuhXrw9XjZeq04QLYjIlFxSz9hn9MvCw44vFCD_Q07cip4Q","stattrak":true,"normal_prices":[172,14,7,5,5],"normal_volume":[745,756,1282,308,201],"stattrak_prices":[186,22,8,8,7],"stattrak_volume":[312,83,444,492,152]},"1165":{"index":1165,"max":1,"min":0,"rarity":4,"name":"Etch Lord","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRe6psK_WRB3OV_uJ_t-l9AXjnw0Qh5GqGn9b_dH3Cbg4nCcAhRLIM4BW7mtXmM7jjtAXai40WmHngznQeK6EUrpc","stattrak":true,"normal_prices":[546,87,42,32,34],"normal_volume":[876,746,1600,371,1013],"stattrak_prices":[729,219,121,101,102],"stattrak_volume":[180,276,499,273,505]},"118":{"index":118,"max":0.85,"min":0,"rarity":4,"name":"Turbine","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRbrF-Kf-dMWuZxuZi_rRtGiriwUgh5m6Bn9z4IHLEOA4gDpZxQOULsUW9k4eyMOLitQzd3opbjXKpOa4i6Kc","stattrak":true,"normal_prices":[2042,298,117,127,107],"normal_volume":[320,207,653,25,130],"stattrak_prices":[2135,691,310,387,295],"stattrak_volume":[123,171,269,24,63]},"1209":{"index":1209,"max":1,"min":0,"rarity":5,"name":"Hellish","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSNOKSB2mvyet6vN5lRi67gVMj5W_VyNb7Ii-TPFdxCpskQOMDsEOxxNHgYb-xswKKgo8WyH2t3X9J8G81tMARX_8e","souvenir":true,"normal_prices":[21744,6319,2672,1683,1486],"normal_volume":[342,559,674,228,119]},"1210":{"index":1210,"max":1,"min":0,"rarity":3,"name":"Choppa","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRb7ZoJf6sDWadztF6ueZhW2fjl05-6mzVmdmgcHOTZgIhXpJ1RO5c4Bjql9DjMunhsgOL34gUnnr-kGoXuTonsfJ3","stattrak":true,"normal_prices":[193,17,7,5,6],"normal_volume":[758,343,1808,561,422],"stattrak_prices":[397,57,19,9,8],"stattrak_volume":[255,931,1100,91,50]},"1228":{"index":1228,"max":0.8,"min":0,"rarity":6,"name":"Temukau","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSNPWeG2yR1NF6ueZhW2ewlBtx5W6AmYv9JS6XaAV1CJEmTeUL4UTpxNzjZO3jtgaIjN9ExCuskGoXuRnyRhBA","stattrak":true,"normal_prices":[10961,5509,3011,2809,2649],"normal_volume":[791,1452,1950,79,180],"stattrak_prices":[18227,7851,3192,3091,2686],"stattrak_volume":[211,264,414,24,66]},"1255":{"index":1255,"max":0.7,"min":0,"rarity":6,"name":"Eye of Horus","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSMvGsAm6Xyfo46eU5H3DnlxlytTyDwtr_JHmQZw4hC5R5RrRbtRO5xtCyZrzktgCI2ZUFk3sFC5kC3A","souvenir":true,"normal_prices":[91412,45365,27924,22405,17902],"normal_volume":[184,205,285,26,73]},"1266":{"index":1266,"max":0.6,"min":0,"rarity":2,"name":"Naval Shred Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC6s2sZLFoH_3HDzOvzedxuPUnFnCxzElysG_Wydz9c3-VaARzXpEhEeVethDtx4LvPujktgbYiogTyDK-0H1inonrSw","normal_prices":[41,7,2,5,1],"normal_volume":[1566,1112,1134,81,114]},"1281":{"index":1281,"max":0.75,"min":0,"rarity":4,"name":"Sheet Lightning","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL6s2iYaNlNP6aAGCvzedxuPUnSiuxw0x06mjUzt2teX2QPQQkXMQmR7EK4EG9mtyzNr62tlbb2YpHzTK-0H1YrMl7BA","normal_prices":[895,321,102,95,73],"normal_volume":[644,1000,1403,101,360]},"1313":{"index":1313,"max":0.7,"min":0,"rarity":2,"name":"Steel Work","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipP0P-rfKVhH_WXCWKD_uJ_t-l9ASyywhtz4GmGmNn9eH7CaQ4gC5ZxQLJc40bqlNSxNOjg4VSMjopMyyvgznQecTvSN4E","normal_prices":[31,5,2,2,1],"normal_volume":[1623,113,804,50,136]},"1353":{"index":1353,"max":1,"min":0,"rarity":6,"name":"Full Throttle","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRe69_MuKHMWCCxOt4j-1gSCGn20kk4mSHn97_eXqTOgMkXpdzR-MNsxO7w9e2Yrnk5VbciIhDznj8iy9XrnE8J4rQ87g","stattrak":true,"normal_prices":[20992,8857,4363,3106,2716],"normal_volume":[230,572,627,178,174],"stattrak_prices":[39811,15155,8322,5745,4901],"stattrak_volume":[47,135,122,53,51]},"1364":{"index":1364,"max":0.65,"min":0,"rarity":2,"name":"Aeolian Dark","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC6s2vard5MvGQGlibz-Fij-w9cCW6khUz_TvQnt37cS_EaQAgDMciEbVb4EK4ktzvZb_ltlOI3o4RmHmt23xKvSh1o7FVNKLRyHM","normal_prices":[38,6,2,4,1],"normal_volume":[1534,1140,737,43,112]},"1432":{"index":1432,"max":1,"min":0,"rarity":3,"name":"Zubastick","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwi8P7qaRcrFvIeOHB2Sb_uxhj-1gSCGn208j5WqDw9ascn6VOlQoCJV0RbVb5xO5l4fgY-Pk5waMitpHzS79jiJXrnE8cY5TeGQ","stattrak":true,"normal_prices":[118,23,10,7,6],"normal_volume":[478,441,441,74,159],"stattrak_prices":[249,93,42,22,25],"stattrak_volume":[141,277,244,91,72]},"155":{"index":155,"max":0.46,"min":0.02,"rarity":6,"name":"Bullet Rain","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0PC7ZKhoNM-BD26e_uMisbBWQyC0nQlp4GmGydioIH3DPFMjDMd2QrQO5hDtkNK2Ne_htAXd3d0Uyiiriysb5zErvbh6fsb98Q","stattrak":true,"normal_prices":[31284,9536,6986,8380,10200],"normal_volume":[147,264,162,18,3],"stattrak_prices":[26798,10379,8934,12103,350000],"stattrak_volume":[34,51,38,2,4]},"16":{"index":16,"max":0.8,"min":0.06,"rarity":2,"name":"Jungle Tiger","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0OSRfK1qJeKsAm6Xyfo457AxHyznxBkmsWzcyYmoeXLCalR2D8R3E-8O5he9wIXmM7zr4QSP3pUFk3sDhAfDyg","normal_prices":[8763,3505,1054,1190,1158],"normal_volume":[11,118,95,15,13]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":4,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0Pq7ZrBoMs-eAWOV0-BJvOhuRz39xUh0tmyDmIusd3mTbldxCcEmRrYNsEO8k9a1Punis1OLj4pBxHn82jQJsHibcUQx2g","normal_prices":[58838,11958,5146,5468,5825],"normal_volume":[14,10,55,2,8]},"167":{"index":167,"max":0.8,"min":0.06,"rarity":3,"name":"Radiation Hazard","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0Py7Y6F-NOKaHmKvzvx3vuZscCW6khUz_WqGyI34dy6SbgcnWMN2QLNZu0GxkNznMbjn5lbbgtlGyCuviyJNu311o7FVcM-jMdQ","souvenir":true,"normal_prices":[50593,9522,3338,3625,2834],"normal_volume":[30,137,224,32,23]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":2,"name":"Urban DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0PaqeKV5H-WBDFicyOl-pK8xF3DjzR5_4zncnouhcSjGPQ8jA5B3ELFbuhPqloDkPrvjsgXY2t5N02yg2Rf5X8A9","souvenir":true,"normal_prices":[3415,77,8,8,9],"normal_volume":[189,1339,3750,177,54]},"176":{"index":176,"max":0.8,"min":0.06,"rarity":3,"name":"Faded Zebra","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0OirarZsI_GeMWWH_uJ_t-l9AXu3zBkhsDyHz4z9dXmVagJzW8MiQbFetBfrkNHhZbjr51CMiN8TyS_gznQeEoYBjXk","stattrak":true,"normal_prices":[5999,2798,813,503,519],"normal_volume":[13,34,34,11,64],"stattrak_prices":[11013,887,369,430,384],"stattrak_volume":[2,170,468,74,133]},"187":{"index":187,"max":0.42,"min":0.06,"rarity":4,"name":"Zirka","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0OG6abZSIuKSGGivzedxuPUnSXnqkBwj62vTn9b8cyjBOlNxD8Z2Te8L5Ea8xtbkNe6z7lTajotCmDK-0H35HfkCFQ","stattrak":true,"normal_prices":[10243,2830,2426,3546,0],"normal_volume":[33,199,117,13,0],"stattrak_prices":[23192,3958,3328,3796,0],"stattrak_volume":[6,79,73,7,0]},"215":{"index":215,"max":0.3,"min":0,"rarity":6,"name":"X-Ray","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0Oq8ab1SLaSsAm6Xyfo46LAxTHrgxU8lt2WHmNf7cS-Ub1JxDpQkQecO40OwxN2yZbvg41DciJUFk3vXysuZ3Q","stattrak":true,"normal_prices":[19688,6786,6626,0,0],"normal_volume":[452,344,93,0,0],"stattrak_prices":[15952,9508,9792,0,0],"stattrak_volume":[111,69,28,0,0]},"255":{"index":255,"max":1,"min":0.18,"rarity":6,"name":"Asiimov","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6V6V-Kf2cGFidxOp_pewnTii3w0x_tmTRnt2qdHyWaFAjA5UlQOYI5BO5k9bhZunm41OI34NDnjK-0H3pAWw_Rw","stattrak":true,"normal_prices":[0,0,19196,11596,9037],"normal_volume":[0,0,775,131,250],"stattrak_prices":[0,0,47737,31497,18306],"stattrak_volume":[0,0,159,13,61]},"309":{"index":309,"max":0.4,"min":0,"rarity":7,"name":"Howl","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afVSKP-EAm6extF6ueZhW2exwkl2tmTXwt39eCiUPQR2DMN4TOVetUK8xoLgM-K341eM2otDnC6okGoXufBz_TAB","stattrak":true,"normal_prices":[592641,468919,400100,440000,0],"normal_volume":[175,138,95,4,0],"stattrak_prices":[1400117,940924,728285,663751,0],"stattrak_volume":[77,19,25,1,0]},"336":{"index":336,"max":0.7,"min":0,"rarity":6,"name":"Desert-Strike","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0OanfKVjM-ScHGqvzedxuPUnHnjnxEsi4WTTntqucnuUaA92CZR2E-IDtRa-mobnYeLksQbXg4hDyTK-0H1Bbz5yqg","stattrak":true,"normal_prices":[10552,2840,2747,3033,2870],"normal_volume":[205,291,205,9,42],"stattrak_prices":[7833,4417,3952,4885,5688],"stattrak_volume":[93,43,72,5,21]},"384":{"index":384,"max":0.8,"min":0,"rarity":4,"name":"Griffin","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJ-KaCGGZz9F6ueZhW2e2zERysm3Umdesd3rGald1DpRyQLVbtUa5mtPvYuzrtATeg95EmS2vkGoXuZ5UWeP5","stattrak":true,"normal_prices":[12365,706,391,620,425],"normal_volume":[80,333,336,29,47],"stattrak_prices":[3037,1185,987,1330,1073],"stattrak_volume":[78,65,145,16,27]},"400":{"index":400,"max":0.75,"min":0,"rarity":5,"name":"龍王 (Dragon King)","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSIf6QC3SE0-96j-1gSCGn20x062mAwtb8cX3CaAMoApV3EeFZ50Wwk9fuM-vqtAHW3opHn3iqiSxXrnE8PytIGFg","stattrak":true,"normal_prices":[6725,2501,1438,1770,1465],"normal_volume":[376,729,693,40,57],"stattrak_prices":[9398,5650,2902,5064,2792],"stattrak_volume":[112,119,113,8,15]},"449":{"index":449,"max":0.33,"min":0,"rarity":5,"name":"Poseidon","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0OKhe6FkJP-dMWuZxuZi_uM9Sn23xkx_sG3VyNyqcnnFZgchDMYjQuMJtRHuw9PvZuPjtlCI3d9bjXKpHL2aoaM","normal_prices":[193154,111086,125192,0,0],"normal_volume":[177,79,7,0,0]},"471":{"index":471,"max":0.6,"min":0,"rarity":4,"name":"Daybreak","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiNW0PmnZatjL8-AG2mCyP1zj-1gSCGn2xgl5mjRzd2qeXmeO1coDZpxEeUJsxnrwYaxY7-w4wTb2NpGz3762yxXrnE8iKAzA8Q","normal_prices":[139171,61093,54656,0,105570],"normal_volume":[70,18,12,0,3]},"480":{"index":480,"max":0.52,"min":0,"rarity":4,"name":"Evil Daimyo","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJeaaAliUwOd7qe5WQyC0nQlp4GqGz42ucCqXaQMhDpd4R-AIsxK6ktXgZePltVPXitoRn3-tjCgd6zErvbijVJZd2Q","stattrak":true,"normal_prices":[879,465,358,360,377],"normal_volume":[1569,1393,844,69,94],"stattrak_prices":[2081,1183,817,943,920],"stattrak_volume":[378,337,237,19,19]},"512":{"index":512,"max":0.8,"min":0,"rarity":6,"name":"Royal Paladin","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSMv-KD2uv0v9jufNscCW6khUz_W-Az9b8d3LFZ1AnDMAjR-4CsBO9xofhNL_q4wLWjogUzyn43SxM73x1o7FVNN3FvCs","stattrak":true,"normal_prices":[25370,7092,6882,6862,6526],"normal_volume":[145,296,321,11,47],"stattrak_prices":[33726,10530,7631,10500,7868],"stattrak_volume":[65,72,70,1,11]},"533":{"index":533,"max":0.64,"min":0,"rarity":6,"name":"The Battlestar","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSMPmcAGKV09F6ueZhW2fjxB9_4GqEyN6vdi_BPwQgWZIkRLYD4Ba_kILgYeOz4lbagthBz3_9kGoXuZIYHoDp","stattrak":true,"normal_prices":[11989,3113,2822,3226,3215],"normal_volume":[187,213,249,22,21],"stattrak_prices":[10407,4815,3889,4365,4244],"stattrak_volume":[67,59,82,7,2]},"588":{"index":588,"max":1,"min":0,"rarity":5,"name":"Desolate Space","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSJPWAAWuR1etJo_FoTCyMmRQguynLnNepJXPEaQJyDZJ0QOdbsxi7ktS0Y-Li4ADegthGn32ojCJJ7CxosfFCD_SyjfEkHg","stattrak":true,"normal_prices":[8793,1847,1235,1138,1155],"normal_volume":[327,759,1230,215,167],"stattrak_prices":[10576,4315,2707,2592,2604],"stattrak_volume":[90,141,171,61,37]},"632":{"index":632,"max":0.7,"min":0,"rarity":6,"name":"Buzz Kill","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSM_WQGmiC_uJ_t-l9AX22kBh0tm3Qn92qdS7GPARyW5t0QLQD4xi6w9XkZe3jsgDW3ogUnH3gznQeqfpfmso","stattrak":true,"normal_prices":[53901,33613,26994,24142,21723],"normal_volume":[229,398,473,35,77],"stattrak_prices":[19882,12049,8920,9364,7925],"stattrak_volume":[140,135,195,8,22]},"664":{"index":664,"max":0.5,"min":0,"rarity":5,"name":"Hellfire","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSKPWfAmGZ0-tJvOhuRz39zEp24GTXmImsInqWP1AkXpBwE7FetUTswdfkPu7h5QXXithBy32t2DQJsHhDPmtuAA","stattrak":true,"normal_prices":[45007,18914,15012,8857,9934],"normal_volume":[166,159,77,16,12],"stattrak_prices":[25075,16586,10577,11683,10977],"stattrak_volume":[92,49,36,4,5]},"695":{"index":695,"max":0.9,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSLvWcMWmfyPxJvOhuRz39wE1142vSztmvInvBOgV0W5R1FLYNuxW4wIbgNrmx4g2Kj4tMmCX93zQJsHgJr0dqFw","stattrak":true,"normal_prices":[10769,4589,3087,2840,2755],"normal_volume":[457,978,1463,128,173],"stattrak_prices":[14340,6472,3483,2983,2774],"stattrak_volume":[152,225,272,41,48]},"730":{"index":730,"max":0.5,"min":0,"rarity":2,"name":"Dark Blossom","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFL0PC7bJtvLOWWMWuZxuZi_rZsSi3rzRlwtmjVy4yheHzGa1V0DcF5RO4JsxO-x9C1ZenqtFbW2d1bjXKpi8Drf9k","normal_prices":[10861,1787,1320,1390,1438],"normal_volume":[202,105,62,31,22]},"780":{"index":780,"max":0.5,"min":0,"rarity":2,"name":"Mainframe","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiNW0PGneqd4KeSRAWaCxdFlue1_SjuMmRQguynLmIyoI3KROlcgX5RxQrQMt0O6lIfkPuPi5AKKi9pEzX773XsYuHlj4_FCD_Ts_y5QsA","souvenir":true,"normal_prices":[35,5,3,3,5],"normal_volume":[2037,420,1281,80,49]},"793":{"index":793,"max":0.4,"min":0,"rarity":3,"name":"Converter","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0OCrbJtlJeisAm6Xyfo46OAxFnHixEhztzuAyo79eCqfb1VyXpclTONctxS6w9KxMbi25Fbd2ZUFk3t2_C2R8Q","souvenir":true,"normal_prices":[178,112,84,87,0],"normal_volume":[3418,1172,643,83,0]},"8":{"index":8,"max":0.8,"min":0.06,"rarity":2,"name":"Desert Storm","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0Pare6F_NM-fB2CY1aB347UxFi-3kEgi5TmAw93_dXKWPFR1CJchTOQDsxa6m4DkM--0sgfZlcsbmn2FVX37","normal_prices":[8088,1800,1019,1062,1233],"normal_volume":[28,81,92,16,21]},"811":{"index":811,"max":1,"min":0,"rarity":3,"name":"Magnesium","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSI_icHneV09FxuO56Wxa_nBovp3OAzo2vdHPFPFUmCJRxRbNZ4xewx9W1Nb7j4gzXg99Ayy73iC1Aun1q_a9cBiEfMG3G","stattrak":true,"normal_prices":[493,113,41,19,19],"normal_volume":[920,1123,1952,686,746],"stattrak_prices":[1328,370,147,69,61],"stattrak_volume":[275,459,486,204,507]},"844":{"index":844,"max":0.8,"min":0,"rarity":6,"name":"The Emperor","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiVI0P_6afBSJf2DC3Wf09F6ueZhW2exwBh_6m3dnt36InjDPQ4oXJt1TbJeshW_mtfjN-vrsgaKiokWy333kGoXuRj4z9Nd","stattrak":true,"normal_prices":[22826,6670,4927,5166,4909],"normal_volume":[253,686,1065,46,71],"stattrak_prices":[41135,12959,6468,6000,6479],"stattrak_volume":[121,145,166,4,18]},"874":{"index":874,"max":0.64,"min":0,"rarity":4,"name":"Polysoup","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFU4M2-Z6h0M_-GHlidle8ij-1gSCGn2x904j7dntz4eX6UOlcmCZFwQLIL4Ri7ktexMePg4Q3ZiIIQmyv6inxXrnE8bylol6Q","normal_prices":[3457,1811,1109,987,1021],"normal_volume":[596,325,302,24,61]},"926":{"index":926,"max":0.5,"min":0,"rarity":4,"name":"Red DDPAT","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwipC0PaqeKV5H-WBDGae_vxztN5lRi67gVNxsT_SmYv8InrDblQhDJN2R7ZZ4RW7m9azYb_n5gLZ391AnCj92y8c8G81tFE6rC2P","souvenir":true,"normal_prices":[10628,3157,2429,2963,10537],"normal_volume":[47,39,45,9,1]},"971":{"index":971,"max":0.73,"min":0,"rarity":5,"name":"Tooth Fairy","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSMeWWC2mWwOdkqd5lRi67gVN35WyDwtv8IC-RblVxCpchQLIOuhK8xNG2YbnktAXZjthFxCiohntP8G81tOVu8Qhw","stattrak":true,"normal_prices":[1522,561,356,368,337],"normal_volume":[882,858,1774,52,203],"stattrak_prices":[2296,1092,644,730,637],"stattrak_volume":[269,266,350,57,105]},"985":{"index":985,"max":0.98,"min":0,"rarity":5,"name":"Cyber Security","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0P_6afBSI-mRC3WA1OB9j-1gSCGn2x9-527Tyt-pcnyUagQlW5JxEOIOuhjrw9XlMrixtQTd2NhNmH_5jCNXrnE8Cu1wa6c","stattrak":true,"normal_prices":[18532,4706,2054,1963,2085],"normal_volume":[172,208,191,27,72],"stattrak_prices":[13453,6690,3344,3163,3352],"stattrak_volume":[72,76,65,7,26]},"993":{"index":993,"max":0.7,"min":0,"rarity":3,"name":"Global Offensive","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwiFO0PG9b6tSI_GeAVicyOl-pK89HijjkU534mTRw478IirEOgUhXpshQrMK4xW9x4biYrvnsgDd3ohA02yg2Z7zUK8D","normal_prices":[7579,1903,1622,2020,1914],"normal_volume":[203,148,124,3,43]}}},"17":{"name":"MAC-10","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1009":{"index":1009,"max":1,"min":0,"rarity":5,"name":"Hot Snakes","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-AAGabxNF6ueZhW2fhlEwk4DmDzYr9dnvGbgFzDJojFrYMsBS7m9PhMLjh5APZ2IlCnC2qkGoXufthzYDr","normal_prices":[39829,31025,30402,25572,21717],"normal_volume":[43,5,15,4,10]},"101":{"index":101,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M26Z7ZjIfScMWuZxuZi_rg7H322kxgj62vQn9aheC7BblUgCZolReUNsBXukdLgP77r5A3fid1bjXKp3olIKis","normal_prices":[13311,915,242,392,223],"normal_volume":[14,45,31,3,23]},"1025":{"index":1025,"max":0.7,"min":0,"rarity":4,"name":"Gold Brick","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2pZ6hpH_KBB2Sb_uJ_t-l9AX2wwhl35jzRw4yodymWO1R0X5V0FrRc4Bi-m4DuY-2xsgzY39oRmSTgznQe6Q1Q_KE","souvenir":true,"normal_prices":[13338,7150,4588,6279,5812],"normal_volume":[70,20,47,4,3]},"1045":{"index":1045,"max":1,"min":0,"rarity":4,"name":"Button Masher","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-DAXWEwOx6td5lRi67gVN04GjXnIr7JyiSbQJ2W8Z4QuEItBS_kdyxZurnsVfcjYgTzH6r2ClN8G81tG_8yXMP","stattrak":true,"normal_prices":[652,68,36,32,30],"normal_volume":[167,312,449,122,127],"stattrak_prices":[438,128,55,46,40],"stattrak_volume":[79,89,256,101,20]},"1067":{"index":1067,"max":0.62,"min":0,"rarity":5,"name":"Propaganda","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-DHGiAwOl3vuVocCW6khUz_T_WzN6hcHOQaQIgCZIlFrEPtUS7wdW0Ne6wtFTYj9pAzyr-3SxP6n11o7FVcf1yckU","normal_prices":[16080,4544,3251,3342,3500],"normal_volume":[121,131,194,16,40]},"1075":{"index":1075,"max":0.6,"min":0,"rarity":1,"name":"Strats","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9s24bbZ5KfecHXeCwPdJsu18Sha_nBovp3PTmIuoJ3yVa1clXMB4TbEOsBHtwdHiZO-x7gWN2d8XyS_4i3xM53k4_a9cBrlyT3NZ","souvenir":true,"normal_prices":[354,108,117,108,108],"normal_volume":[201,35,83,28,23]},"1098":{"index":1098,"max":1,"min":0,"rarity":5,"name":"Toybox","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-HAX6SzvZJvOhuRz39zRkismnVy9uveXqfZgYpW8R0TLRbshHtx9HvN77g5Qzbi4wTyniojTQJsHhO4vjwuQ","stattrak":true,"normal_prices":[8787,2490,1383,1189,1190],"normal_volume":[62,129,185,61,58],"stattrak_prices":[7077,2853,1542,1672,2024],"stattrak_volume":[18,17,47,17,13]},"1131":{"index":1131,"max":0.9,"min":0,"rarity":3,"name":"Ensnared","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-DB3-ZxNF6ueZhW2fikB935ziGztj7JHyQbgIkWZsmFrJY4xTpwdOzP-Oz7laNj4lFyy2tkGoXudbL5uIf","stattrak":true,"normal_prices":[87,14,5,5,5],"normal_volume":[636,719,913,161,177],"stattrak_prices":[92,16,6,8,8],"stattrak_volume":[271,400,249,183,207]},"1150":{"index":1150,"max":1,"min":0,"rarity":3,"name":"Monkeyflage","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-eAWmbxPdwvOBuSha_nBovp3OBzdisJHPDaQ5xXpF2Ru4M5BTtlYHnYr7h5lbZg4gQzC_22ikfvSZt_a9cBiKJuAuZ","stattrak":true,"normal_prices":[131,19,6,5,5],"normal_volume":[466,845,539,139,165],"stattrak_prices":[91,19,8,6,6],"stattrak_volume":[151,347,428,75,59]},"1164":{"index":1164,"max":1,"min":0,"rarity":3,"name":"Light Box","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJtkLPyGHW6fz9F6ueZhW2e2lBsk4WvXw974diiSblV1DMBxRrEJu0PrwNy1Mruw4gKK3d0TynmskGoXuUBgCcQQ","stattrak":true,"normal_prices":[94,19,5,5,5],"normal_volume":[972,1392,485,208,179],"stattrak_prices":[210,29,11,8,7],"stattrak_volume":[383,82,760,38,26]},"1204":{"index":1204,"max":0.7,"min":0,"rarity":4,"name":"Derailment","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJt5MvGaAFiT0-9luN5lRi67gVN14j6Gy9_7cSqQZw4hW5BzEeICthW6kYe1ZO_ntQ3e2olGnn-vhygY8G81tHTA36iF","souvenir":true,"normal_prices":[1936,595,234,210,186],"normal_volume":[663,899,1299,49,231]},"1229":{"index":1229,"max":0.79,"min":0.21,"rarity":4,"name":"Sakkaku","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-AD2ybwOVjj-xsSyCmmFMk5mnRzdeqdSnCPVN2DpV3QeELtELrlIbiPrzqsVOMjdlBnySvjH5O8G81tOTP5a5f","stattrak":true,"normal_prices":[0,0,70,32,30],"normal_volume":[0,0,6901,1305,886],"stattrak_prices":[0,0,146,56,44],"stattrak_volume":[0,0,2059,203,460]},"1244":{"index":1244,"max":0.8,"min":0.02,"rarity":2,"name":"Echoing Sands","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-ADWaCwOxJvOhuRz39xRlx5GmEyIn9cSjCOg52C8B0TLEOtxa_xNziMu3ktFOP2o1HznqqijQJsHgtnfG5bw","souvenir":true,"normal_prices":[451,97,19,21,16],"normal_volume":[77,314,603,29,70]},"126":{"index":126,"max":0.66,"min":0,"rarity":4,"name":"Saibā Oni","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJtiOvGYB1icyOl-pK89HXuxkRt2627Syt2udn6TZlJyW5R0QuMKsRm6lNflNO3g7lfbi49H02yg2Yk7YeQ4","stattrak":true,"normal_prices":[552,252,107,148,88],"normal_volume":[374,314,449,62,63],"stattrak_prices":[998,536,256,325,246],"stattrak_volume":[143,130,209,35,58]},"1269":{"index":1269,"max":0.637288,"min":0,"rarity":1,"name":"Storm Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4P2RZaVucaCsDGuFxOxzovNwcCW6khUz_W7dz9qrJH2XZgYjC5UiQOADshC5x9W1ML_jsg3djIxCnC6oiSsduyx1o7FV5IlAGpg","normal_prices":[5,1,1,1,2],"normal_volume":[865,197,370,56,176]},"1285":{"index":1285,"max":0.68,"min":0,"rarity":3,"name":"Poplar Thicket","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9veRb7ZoJf6sCGiCxP1ij-1gSCGn2x8mtm2Bntf7JHKSaAN2C5siTeIK5hO6wYGzMuritQ3ej4MTxHmqjHhXrnE8uA1Mzbk","normal_prices":[78,24,9,8,7],"normal_volume":[974,617,619,46,83]},"1295":{"index":1295,"max":0.58,"min":0,"rarity":2,"name":"Acid Hex","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9veRb7ZoJf6sDWadztF6ueZhW2fhw09_6mjSw9r4cy6RPVV1DZZwE7UI4xDsl9CyNuvi4gHf2o1NnH7-kGoXuXqvgvHX","normal_prices":[18,6,1,2,1],"normal_volume":[833,448,443,85,97]},"1334":{"index":1334,"max":0.8,"min":0,"rarity":1,"name":"Bronzer","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M2seqtjOvWsHmiHxetkj-1gSCGn2xgjsWrRyIysJXiXOwIhW5pwQrUI4Bftl4W2P-2351HZj49GmHj_iCJXrnE8D5vakEw","normal_prices":[6,1,1,2,1],"normal_volume":[280,470,588,53,99]},"1349":{"index":1349,"max":1,"min":0,"rarity":4,"name":"Cat Fight","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1W7vH_OJtmIf2aDWaE2-tJvOhuRz39l0lx42_Qz9v_cC2SagNyX8RwEbZbskHpltKzYriw4QPeioIWxXqv3DQJsHgCTO4phQ","stattrak":true,"normal_prices":[293,121,62,49,39],"normal_volume":[392,471,515,208,148],"stattrak_prices":[743,280,147,131,96],"stattrak_volume":[88,141,169,55,90]},"1367":{"index":1367,"max":0.6,"min":0,"rarity":2,"name":"Snow Splash","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9veRa6V_H-eBD3fE_uJ_t-l9ASrklhkk4Wrdm9msIy3DblVyA5cmQLMDtxS_ltPmYe_msgbeiY5EziTgznQeYbrm-7Y","normal_prices":[19,5,1,2,1],"normal_volume":[511,569,278,24,47]},"140":{"index":140,"max":0.9,"min":0,"rarity":3,"name":"Pipsqueak","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2hfqF_MPGAHViD0PtzsepWQiiwxE0YvzSCkpu3eXiQOlMkDpAhEeELuhi8x9DmM-uw4VCL2YlAzSn223tL7idp67wDUL1lpPNy-DeiVw","souvenir":true,"normal_prices":[356,79,25,21,18],"normal_volume":[1005,1478,1751,193,193]},"157":{"index":157,"max":0.8,"min":0.06,"rarity":2,"name":"Palm","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I_82-aahgH_yaCW-Ej78l4uJoHH-2lBh-4mTQnIupdHrEO1QgW5MhTbIPtUHul9C1P7ni5gLAy9USZUzbrTo","souvenir":true,"normal_prices":[427,16,2,2,2],"normal_volume":[171,267,487,41,80]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":1,"name":"Urban DDPAT","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1T9s2qbLRsNM-GHGWvzedxuPUnGXnlwhh-5m7XmYmrJHiUaFJzD8QmTeIC5EG-moKyYerg7g3Z34pMnDK-0H2xTdMbHg","souvenir":true,"normal_prices":[4287,531,195,253,262],"normal_volume":[13,52,33,5,17]},"188":{"index":188,"max":0.8,"min":0.06,"rarity":4,"name":"Graven","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a_s2rfKdlJfSsA2aTkL5JsvNoWSaMmRQguynLztytdHieOA92W8N5Re4D4ELtk9O2Nbnq5FfWjIkRn333hn9O731j4_FCD_RXlm8jng","stattrak":true,"normal_prices":[10373,2927,2196,2430,1978],"normal_volume":[11,14,63,5,5],"stattrak_prices":[14263,4578,3243,3546,3295],"stattrak_volume":[8,31,28,3,7]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a7s2oaaBoH_2WGmaczed1j-1gSCGn20QlsWqAz4z8d3yfP1IpW8QkQeIN5hXtldTkMuqzsQyNjNgUxX6vjCpXrnE8FVzqUc8","souvenir":true,"normal_prices":[3892,1759,1792,3235,0],"normal_volume":[65,48,26,3,0]},"284":{"index":284,"max":1,"min":0,"rarity":4,"name":"Heat","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-BC2OYzvpJvOhuRz39xR5w4GzUyo6pdnuUawMpWJokTLUL50K6l9XiNO7i4lGKiYsRxCv6jTQJsHim4lDW8g","stattrak":true,"normal_prices":[1628,498,306,201,209],"normal_volume":[146,84,226,37,63],"stattrak_prices":[2125,1144,496,440,364],"stattrak_volume":[34,71,105,48,32]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M28baBSLPmUBnPemLZw4rk6Gi3gxkp_5W3Qmdv_cnrDPwZ1Asd2FOcM5BO4k4KxMe7h7xue1dzcbAPD_Q","souvenir":true,"normal_prices":[42,19,19,0,0],"normal_volume":[2029,1518,150,0,0]},"310":{"index":310,"max":0.5,"min":0,"rarity":4,"name":"Curse","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpou7umeldf0Ob3fDxBvYyJkIWIlu7LP7LWnn8fuJJ0ieuSoor30AWw_BA5Yz_wdYPHIQE8NQ3Z-QW7w-i50ZG-7p_Km2wj5HdXDtEr5g","stattrak":true,"normal_prices":[1665,839,999,1487,1800],"normal_volume":[46,64,31,11,3],"stattrak_prices":[2461,1406,1468,3000,2575],"stattrak_volume":[25,20,23,2,5]},"32":{"index":32,"max":0.08,"min":0,"rarity":2,"name":"Silver","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4c29Yah7JeKsAm6Xyfo44-UwS32xwkUjsGzSwtqoJCjCOABxD8AkFu5bsha7wdGyM-rn4wzWjpUFk3tFRcHXeg","normal_prices":[25,25,0,0,0],"normal_volume":[3665,164,0,0,0]},"333":{"index":333,"max":0.8,"min":0.06,"rarity":1,"name":"Indigo","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M2nZqBkJ_-sD2mU_ulktfhWQyC0nQlptT_VztavJXyfa1QgW5J0FuMCtBLtw4ayMe_g5VPZg49MzCX423sf6TErvbjb2X3Wdg","souvenir":true,"normal_prices":[3092,477,291,290,273],"normal_volume":[34,18,58,19,72]},"337":{"index":337,"max":0.5,"min":0,"rarity":4,"name":"Tatter","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2lZ7Z4MOSsAm6Xyfo4tbY7H3q1xRt152TWyt6tc3ifaVcmDppxReVethawlYHmNO6ztQbciJUFk3uxmhdQIQ","stattrak":true,"normal_prices":[1719,673,528,722,656],"normal_volume":[78,46,59,18,3],"stattrak_prices":[1382,996,712,885,980],"stattrak_volume":[50,28,26,18,11]},"343":{"index":343,"max":1,"min":0,"rarity":2,"name":"Commuter","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2ifaNqIfeWMWqRwr8mj-1gSCGn2xlwsT6Byt__cHOePwAkCZEjF7VYuhewmtDuZby0slON3o8WxC7_3H5XrnE86gO55vs","normal_prices":[4019,1279,906,1505,895],"normal_volume":[24,25,7,2,9]},"372":{"index":372,"max":0.7,"min":0,"rarity":3,"name":"Nuclear Garden","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2gfadhJfGBMXSb1OJ6o7JWQiiwxE0YvzSCkpu3Ii_COw4jDsMkEbYJsxe5xNezPu-3swCN3dhEz3_33XlA63lo6-8DWL1lpPMiXZ_jZw","souvenir":true,"normal_prices":[7152,2113,2310,1680,1817],"normal_volume":[142,50,52,1,5]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a7s2oaaBoH_yaCW-Ej-h347AwHyzqx04l4WvSyI77cCjCbQEhW8MjE-NcthG8loXlMujh7g3Ay9USCa6Cs30","normal_prices":[6190,8388,0,0,0],"normal_volume":[807,9,0,0,0]},"402":{"index":402,"max":0.5,"min":0,"rarity":4,"name":"Malachite","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-eD2uRwuZ_pORWQyC0nQlpt27Uw4yrJy_FOlQpCJp2Te5Y5hPqw9HuYePksVaKjt0TmS_2hihJuDErvbgNFzWT1Q","stattrak":true,"normal_prices":[865,314,188,221,228],"normal_volume":[278,119,189,83,20],"stattrak_prices":[1161,563,364,393,473],"stattrak_volume":[95,66,75,17,12]},"433":{"index":433,"max":0.45,"min":0,"rarity":6,"name":"Neon Rider","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-dC2ie0-dytfNWQyC0nQlp5DzTntmgdC7COABxX5NxQrUOtUS5w4LgMu6zsVCK2IJCmyisjitM6DErvbicsEA0SQ","stattrak":true,"normal_prices":[11073,10198,9738,12037,0],"normal_volume":[400,508,344,41,0],"stattrak_prices":[11327,9696,10077,10706,0],"stattrak_volume":[55,55,93,8,0]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a_s2hYahoJM-fB2CY1aAituJtTnvjkUx3tziGmd6hJy-VZlAoWZtwFLRZ5EbpwNLvYb-zsgOKlcsbmn9_3b1O","souvenir":true,"normal_prices":[9228,4410,2755,2655,2459],"normal_volume":[146,72,175,23,18]},"498":{"index":498,"max":0.5,"min":0,"rarity":3,"name":"Rangeen","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-SAmKbyfd3j-V8QBa_nBovp3PWztqtJXqWPVdzX8d3EbUDtkS_w9bmYui04gbYiolGnH_833xM6C5o_a9cBlensHEx","stattrak":true,"normal_prices":[160,30,27,26,25],"normal_volume":[121,123,265,38,34],"stattrak_prices":[141,58,25,51,39],"stattrak_volume":[155,92,106,73,11]},"534":{"index":534,"max":0.5,"min":0,"rarity":3,"name":"Lapis Gator","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-WAmKT1fx_s-h9Vha_nBovp3ODztegd3LEawcnX5ByFLQPtxSxldyxPrjg5QCPj94Ty3j8j3tLu30__a9cBu41m2up","stattrak":true,"normal_prices":[256,114,72,51,69],"normal_volume":[216,195,127,6,42],"stattrak_prices":[309,183,83,90,81],"stattrak_volume":[87,67,76,25,53]},"589":{"index":589,"max":1,"min":0,"rarity":3,"name":"Carnivore","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a_s2jaadScaCsD2uZxOBJs-BkQBa_nBovp3PSmdqpcy2fPwEoWMciQLYKtBa9lYDmN-zlsVDXiNpAnnmqiHwcv3w5_a9cBiTJtAYY","stattrak":true,"normal_prices":[406,49,31,33,28],"normal_volume":[147,170,124,85,101],"stattrak_prices":[472,73,37,31,24],"stattrak_volume":[71,75,90,48,43]},"651":{"index":651,"max":0.52,"min":0,"rarity":4,"name":"Last Dive","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a7s2jaac8cM-HBmKvze9lpN5tRj-2qhEutDWR1N76Iy_BblUnCZd5QLFesEXrmtWzMui05wPc3o4TnnqojS8au3094ekcEf1ydsF2boo","stattrak":true,"normal_prices":[482,127,127,158,130],"normal_volume":[264,240,284,87,26],"stattrak_prices":[420,238,217,251,261],"stattrak_volume":[119,118,68,13,3]},"665":{"index":665,"max":0.65,"min":0,"rarity":3,"name":"Aloha","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-SAmiYwNF6ueZhW2flxhsmtW3RnNiscnOWPA9xC5MiTeUKtRXqk9HgMOvh4wPd3tkQmXn6kGoXucQMChaB","stattrak":true,"normal_prices":[1423,670,496,447,482],"normal_volume":[60,56,110,13,12],"stattrak_prices":[1070,636,441,807,507],"stattrak_volume":[25,24,27,20,5]},"682":{"index":682,"max":0.6,"min":0,"rarity":3,"name":"Oceanic","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2jaac8cM-cDWKRz-dJvOhuRz39lh4h52qGm9z7cCjBZ1IpCJp5QbRZtxXql9LnPrnr5wLXiY5EzX_2jjQJsHjZHPDEEg","stattrak":true,"normal_prices":[110,19,28,18,18],"normal_volume":[469,225,391,41,59],"stattrak_prices":[87,45,17,22,14],"stattrak_volume":[194,153,185,13,41]},"742":{"index":742,"max":0.5,"min":0,"rarity":4,"name":"Red Filigree","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s28bapSMvWXMWuZxuZi_rk6F3DixUt_5W3Vn96odS-fO1N0D8MkQu4NukG4kdbiN7yw5gyLjdpbjXKp1e3DB44","normal_prices":[12703,11390,10725,9019,0],"normal_volume":[57,9,7,1,0]},"748":{"index":748,"max":1,"min":0,"rarity":2,"name":"Calf Skin","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-QBmKTyutkj-1gSCGn2x92sWXWntytdHPDOlIlWZJwR-5csBS8k4K1Nuzn4QLa398UyCiq2CxXrnE8x1-1j1w","souvenir":true,"normal_prices":[77,17,8,7,7],"normal_volume":[670,504,227,260,249]},"761":{"index":761,"max":0.5,"min":0,"rarity":3,"name":"Copper Borre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1a4s2lZqt5M8-RHGiHz9F6ueZhW2eywBwhsWmAz9-peSjFalQmCJFyTeEC4UO5kNTjNOy0sgXa3oxNzC36kGoXufH8E8DI","normal_prices":[13015,11090,9924,13216,11220],"normal_volume":[68,25,26,1,4]},"812":{"index":812,"max":0.9,"min":0,"rarity":4,"name":"Pipe Down","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-WFmiv0edmtfJWQyC0nQlpt2rRwtqhdHjFa1N1A5ZxEO4MukW4lNayNrnhsVDc3YxGzir9iXkc7DErvbgEiQoeZQ","stattrak":true,"normal_prices":[774,103,45,44,46],"normal_volume":[193,187,162,49,106],"stattrak_prices":[777,217,93,93,86],"stattrak_volume":[71,127,123,42,24]},"826":{"index":826,"max":0.6,"min":0,"rarity":1,"name":"Sienna Damask","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I_82jYbZsJ_WsCGuf1utko959TieMmRQguynLzNv4J32XaVdzX8dyTOcJsxS_x4CxYeKz5QCKjo0RzCv7iC9I5nlv4_FCD_Ti47lJig","souvenir":true,"normal_prices":[96,64,26,36,27],"normal_volume":[369,369,287,58,59]},"840":{"index":840,"max":1,"min":0,"rarity":3,"name":"Whitefish","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-VB3SY_ux3ufVWQyC0nQlp52jdwt-vdnyeP1QoDZQlTeQNtRO-w4e1ZeKzswCM2INHynn3hixPujErvbg9KuBZSA","stattrak":true,"normal_prices":[293,47,22,16,17],"normal_volume":[145,103,149,24,24],"stattrak_prices":[311,66,38,24,19],"stattrak_volume":[66,93,178,94,64]},"871":{"index":871,"max":0.5,"min":0,"rarity":1,"name":"Surfwood","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I_826f61qM8-RC2aTydF6ueZhW2eww0omsGuGmd2oIH_BPVNxCcMjE7EC4Bnul9KzMenj4wPajY1FmXj-kGoXuac9-lER","normal_prices":[1119,554,547,581,586],"normal_volume":[121,122,106,20,13]},"898":{"index":898,"max":1,"min":0,"rarity":6,"name":"Stalker","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-AGmacyutkj-1gSCGn20V0t27Tw974Jy-WOg9yW8N3QOQDsxG4x9O0ZOPqtgHZ399HzST8ji9XrnE8CxAHwFY","stattrak":true,"normal_prices":[14527,4457,3617,3653,3755],"normal_volume":[83,149,207,56,35],"stattrak_prices":[48168,11150,6346,5541,6265],"stattrak_volume":[18,35,44,17,13]},"908":{"index":908,"max":1,"min":0,"rarity":3,"name":"Classic Crate","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1c_M2jaac8cM-XG3SE_u1ksfVscCW6khUz_WvVntmrI3KXOgcpXpQmRbYK5xe6ktLiYuLksVONi4tMyC_72CpN7nx1o7FVpG3zbwE","stattrak":true,"normal_prices":[338,25,31,24,25],"normal_volume":[125,101,46,117,65],"stattrak_prices":[159,44,16,17,15],"stattrak_volume":[58,54,103,60,68]},"947":{"index":947,"max":1,"min":0,"rarity":5,"name":"Disco Tech","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-dD2SCxNF6ueZhW2frkR5z4m_SyY37cnKRblIpW5smQOcO4EW7lYa1ZOjgtFCLg4wXnn72kGoXuTa4h8QB","stattrak":true,"normal_prices":[2729,715,501,467,466],"normal_volume":[398,666,1431,356,188],"stattrak_prices":[4850,1578,737,705,732],"stattrak_volume":[135,187,239,100,97]},"965":{"index":965,"max":1,"min":0,"rarity":4,"name":"Allure","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1Y-s2jaac8cM-aHWifz-B3j-1gSCGn209w626GnNuucC2SaFMiC8B3FuUJ5kW7wdPnZe7g7gyP2Y4Ry3_5hnlXrnE8RS4Y9Xw","stattrak":true,"normal_prices":[380,74,33,32,31],"normal_volume":[343,552,859,213,215],"stattrak_prices":[373,119,60,52,54],"stattrak_volume":[129,150,360,149,140]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5WxrR1I4M2-fbZ9LPWsAm6Xyfo457RoS3vlzRx2sWWAzNz4dXvGbQ9zCsZ1FOMI40G4ktDvY-LgtQ3YipUFk3sgu3LoQg","stattrak":true,"normal_prices":[4930,597,460,474,505],"normal_volume":[29,141,46,16,13],"stattrak_prices":[8219,851,304,290,254],"stattrak_volume":[14,73,43,24,23]}}},"19":{"name":"P90","sticker_amount":5,"type":"Weapons","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7i1k_OaheqlrMv-dGlicyOl-pK8-HSixlhh2sG_TydaveS7EZw91A5ByEeIJ4Rm6kNfgMbzr7wGMgolA02yg2VYIqRCy","souvenir":true,"normal_prices":[2364,443,248,280,250],"normal_volume":[27,37,31,25,16]},"1000":{"index":1000,"max":1,"min":0,"rarity":5,"name":"Run and Hide","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk5fOpfaV_H-DKXlicyOl-pK85H36xlEsmtT_SmN2geSqVOAMkCJpwQOQP5BOxlNHiYruwtgXajI0X02yg2YhNEJOA","souvenir":true,"normal_prices":[34753,34064,17699,21274,18760],"normal_volume":[45,4,6,1,3]},"1015":{"index":1015,"max":0.5,"min":0,"rarity":3,"name":"Tiger Pit","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k-_upbbZ-H_KBAXCe_uJ_t-l9AX6wxERy4W_UyYytIn2RPQYjDpp2F-Vc4xi8x9e1Pu7n5gfcjYoWzCrgznQeZAcpQ5E","normal_prices":[2572,2258,2014,2632,2051],"normal_volume":[82,54,41,12,7]},"1020":{"index":1020,"max":0.5,"min":0,"rarity":1,"name":"Ancient Earth","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_CNk7vytYaFjNM-RHGiHz9F6ueZhW2e1lBl3sDyHw9uudXiWO1J1A5RzTOcI5hLqxIbnNLnhsgWN2d1GzHn9kGoXua3B7-6C","souvenir":true,"normal_prices":[391,103,95,114,178],"normal_volume":[317,90,97,327,29]},"1074":{"index":1074,"max":0.5,"min":0,"rarity":3,"name":"Schematic","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk-fe8fK1qL_eWAVicyOl-pK89HXrjwhh_sGWDz4yrcn-eZlR1XMAkFOYIshTqlIXlMbnk7lHWiIlE02yg2XF_CACM","souvenir":true,"normal_prices":[1577,1022,1313,1788,2773],"normal_volume":[43,14,14,3,2]},"111":{"index":111,"max":0.8,"min":0.06,"rarity":3,"name":"Glacier Mesh","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4ve9YJtqLPGQB2KC_uJ_t-l9AX3ikERzsGiDmYuucijGbVNzXpMhELEOsEG9ldDnM-7n5QfW2dkUmHngznQeLgH7yAw","souvenir":true,"normal_prices":[4838,801,719,1059,1401],"normal_volume":[16,60,21,2,3]},"1154":{"index":1154,"max":0.7,"min":0,"rarity":4,"name":"Vent Rush","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V7BsLvefC2OvzedxuPUnTXywwElz52XXzIz4dn2RalcoC8FzQrJfsRe-moG0YeK2sQPZ3YpEmzK-0H18Z6zceQ","stattrak":true,"normal_prices":[145,56,36,32,32],"normal_volume":[862,866,2005,95,156],"stattrak_prices":[233,104,50,64,53],"stattrak_volume":[232,403,368,83,58]},"1190":{"index":1190,"max":0.950549,"min":0,"rarity":4,"name":"Wave Breaker","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0PChZ7d5H_KfG2KvzedxuPUnTHrlzU9xt2qHzd-rJ3yQb1cmXJNzF-Vc5BS6wdLjMe60tAyP3dhNzTK-0H3NvEQllg","stattrak":true,"normal_prices":[387,71,41,38,36],"normal_volume":[838,766,1562,283,182],"stattrak_prices":[517,129,72,63,61],"stattrak_volume":[200,259,625,369,134]},"1199":{"index":1199,"max":1,"min":0,"rarity":2,"name":"Straight Dimes","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0OG6baFhI-KSCHOvzedxuPUnTSy3zE5w5zzXzIqodXmfbFIgCMd3ELIDskawwNXgZrvq4gDWjdpByjK-0H2Y7GSoBg","souvenir":true,"normal_prices":[183,12,2,2,1],"normal_volume":[260,662,422,147,293]},"1233":{"index":1233,"max":0.6,"min":0,"rarity":4,"name":"Neoqueen","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V6poL-GGC2Ke_uJ_t-l9ASyyxhl04zuDn4muInOXPAF2W5shQOAMs0G7xNfkZOuwswbej4JDnyvgznQe6S6_YqA","stattrak":true,"normal_prices":[118,52,31,32,35],"normal_volume":[1430,1106,2133,191,624],"stattrak_prices":[178,74,41,50,56],"stattrak_volume":[356,372,528,77,304]},"124":{"index":124,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Spray","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk_OK8ab1SM_GdClicyOl-pK88Sn3gxU91sGiAw9mreSqROgJyCsF5EOVf50S_x9SzP7iztlaLiYJF02yg2VFl2-bi","souvenir":true,"normal_prices":[92,2,1,1,1],"normal_volume":[121,384,826,247,237]},"1250":{"index":1250,"max":1,"min":0,"rarity":4,"name":"ScaraB Rush","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V7duIeKSDFifx9FhufJtQCSMmRQguynLmYmrdCnGPAUkD5BxQuYC5hO8wdK0Y-_nsgbciNhMyn6v238cuy1jsPFCD_S-VwnSrw","souvenir":true,"normal_prices":[2512,1316,765,486,636],"normal_volume":[149,123,102,69,46]},"1256":{"index":1256,"max":0.6,"min":0,"rarity":3,"name":"Reef Grief","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Tte0PGheqVhH_yaCW-Ej7wu6bhsHy3rlEQi4DvUy9_6JXjGa1JxCpUmQ7MPsxLukoLmYrvr4lPAy9USG-O6-8A","normal_prices":[106,52,19,17,14],"normal_volume":[996,677,550,80,11]},"127":{"index":127,"max":0.75,"min":0,"rarity":4,"name":"Randy Rush","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0OCvZqB0H-KGHW-vzedxuPUnGCy3lhsj6zmAyYn6eXyQbwMhApAmFu8C5xTpktHjMejl71aPjtkQnjK-0H3AcMEIag","stattrak":true,"normal_prices":[438,125,64,74,58],"normal_volume":[217,267,578,62,100],"stattrak_prices":[667,184,113,138,116],"stattrak_volume":[113,77,277,1,40]},"1277":{"index":1277,"max":0.6,"min":0,"rarity":1,"name":"Blue Tac","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk-uGvbpt_L-WdClicyOl-pK9rS3DjwEgjtziHyNioJ3rDaFdxXpR4TbUK4xbtx9K2ZbjltQPei91G02yg2byPK7vI","normal_prices":[3,1,1,1,1],"normal_volume":[640,287,701,100,247]},"1291":{"index":1291,"max":0.63,"min":0,"rarity":2,"name":"Mustard Gas","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Tte0OihZ6lSLPmUBnPexbh35LYwGX61xxl-tzjdnon6dn3DalN2CpVyRbILsEK7xNXiY7_r5hue1dzKUs1JfA","normal_prices":[20,6,2,2,2],"normal_volume":[100,321,492,53,64]},"133":{"index":133,"max":0.5,"min":0,"rarity":2,"name":"Wash me","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4OSrerRsM-OsCmifxeJzj_FlWiSMmRQguynLz9qsdn6UZw4gDZUlEbNfthiwkNXlY7u05gDX3YlMnC2rjCwfuyhr4PFCD_Qqz45uYg","souvenir":true,"normal_prices":[16,3,2,2,1],"normal_volume":[2002,338,455,34,35]},"1332":{"index":1332,"max":0.65,"min":0,"rarity":1,"name":"Desert Halftone","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9TZk_PujeKhoH_OSA2ivzedxuPUnGXHqkE1-4mjdz9eudnuTPQ8gWZpzE-Ve5hOxlNHgY-jj5VPY39gXyjK-0H2RUgwoBA","normal_prices":[4,1,1,1,1],"normal_volume":[300,400,655,38,182]},"1361":{"index":1361,"max":0.65,"min":0,"rarity":3,"name":"Aeolian Light","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Tte0POse7B_IfOHMWyezvpJvOhuRz39zER2tWvVyd2qdXOeaVN2WJV3Qu9Z50GwxNa1NLji4gPfjINDziv8iDQJsHgxRzCSnw","normal_prices":[87,42,19,19,15],"normal_volume":[525,321,650,63,59]},"1419":{"index":1419,"max":1,"min":0,"rarity":5,"name":"Deathgaze","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7XsL0ParabBlJ_GJC1icyOl-pK85GHy1kEh3627Tntn6dC-SOgFyXJR3RO8Jt0a7lIG1M-PksgLZjNoT02yg2XMB6aCz","stattrak":true,"normal_prices":[2369,1094,555,524,418],"normal_volume":[242,273,343,276,173],"stattrak_prices":[3973,1387,704,621,543],"stattrak_volume":[74,80,92,45,38]},"156":{"index":156,"max":0.32,"min":0.08,"rarity":6,"name":"Death by Kitty","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk7PO6e694LPyAMXfJkdF6ueZhW2fgkUh042jUnN2geSqTaFN2CcQmQuRfsBXtxtfkN7mztASIg91Bniv8kGoXucYQxgOQ","stattrak":true,"normal_prices":[0,9465,7267,0,0],"normal_volume":[0,159,84,0,0],"stattrak_prices":[0,28881,15037,0,0],"stattrak_volume":[0,24,27,0,0]},"169":{"index":169,"max":0.8,"min":0.06,"rarity":2,"name":"Fallout Warning","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4eelbbd5MvmDC1idwPx5v-9WQyC0nQlp5WiGz92hJC-RagR2CMNxF7NZskG-w9LmNurls1TYiYlFzy722ihP5zErvbhQBxTlOQ","souvenir":true,"normal_prices":[10516,3182,984,1443,947],"normal_volume":[5,4,45,4,10]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk6_O-eKhoH_yaCW-Ej7Yi5LI7F3jrk05y4G-HzY37dCiRPVAnCpZ3R-MI4BnpkICxMLjr5QHAy9USM2Zemfk","souvenir":true,"normal_prices":[7311,410,315,254,299],"normal_volume":[16,13,78,13,5]},"182":{"index":182,"max":0.52,"min":0.06,"rarity":5,"name":"Emerald Dragon","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk6-Cvb6tjH-DKXliS0-9gv95lRi67gVMm4m3Vzdmqci-SO1clX8Z1QeYO5xi5mtTuPu7l4FDc2o4TmH32jC1P8G81tLxM49od","stattrak":true,"normal_prices":[48730,14713,10901,9299,13400],"normal_volume":[11,49,32,3,3],"stattrak_prices":[67249,26770,16957,18565,20650],"stattrak_volume":[15,18,10,4,1]},"20":{"index":20,"max":0.8,"min":0.06,"rarity":4,"name":"Virus","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk9f2jaq1oH_yaCW-Ej7l0tLY8Fn3jk0h342jRwtz9In6TOg4kDZImQ-4Nshi4w9LmNOnh4wHAy9USHtJ8vvM","stattrak":true,"normal_prices":[2029,400,185,294,266],"normal_volume":[39,63,27,15,31],"stattrak_prices":[4410,523,353,411,362],"stattrak_volume":[7,46,74,19,42]},"228":{"index":228,"max":0.5,"min":0,"rarity":4,"name":"Blind Spot","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk4v2qe7RiNOOsAm6Xyfo4seVsTn3ikU0jt2nQnIqqJ3KeOA4jDJV0EOMPt0S7xNLjM76w7gLd2ZUFk3vvaUMV8A","stattrak":true,"normal_prices":[1565,1232,1152,1447,1475],"normal_volume":[162,87,52,7,4],"stattrak_prices":[1251,1130,1076,1221,1298],"stattrak_volume":[127,46,79,7,8]},"234":{"index":234,"max":0.45,"min":0,"rarity":2,"name":"Ash Wood","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk--Wnb7dSLPmUBnPex-p16ec6HHixlBx_4TvUwor7I3mQPFNyX8B5Ru9Z5xftl9G0Y-7nsRue1dw3cZ5lyQ","souvenir":true,"normal_prices":[20,6,5,5,0],"normal_volume":[351,394,382,36,0]},"244":{"index":244,"max":0.6,"min":0,"rarity":3,"name":"Teardown","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4ve9YJtlL-SsD2mU_u15vOVWQyC0nQlp5mjWy4n9cX3FZ1UiApMkQbJZ4BK8ktXnM-zrsgzeg4wQyHr3iiMc5zErvbiseXdBZA","souvenir":true,"normal_prices":[83,28,14,16,13],"normal_volume":[239,270,594,35,25]},"283":{"index":283,"max":0.75,"min":0.08,"rarity":5,"name":"Trigon","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V7B_KfecAFicyOl-pK9vGi3nlEt24GnSwoypc3rFbQ52XsN0EOFcshfuwYa1NbzktVTZ3ohN02yg2RSFidN_","stattrak":true,"normal_prices":[0,1303,836,994,1040],"normal_volume":[0,188,228,20,46],"stattrak_prices":[0,2005,1693,2180,2133],"stattrak_volume":[0,58,98,4,35]},"311":{"index":311,"max":0.5,"min":0,"rarity":3,"name":"Desert Warfare","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnwpHIVvfOsPfI9dqDCWDDGkb4j5OU_Fy_kx0l1tj6DnoqseC2TP1cpAsF2QPlK7EcMYXqtDg","stattrak":true,"normal_prices":[700,401,287,674,648],"normal_volume":[52,25,25,3,1],"stattrak_prices":[1162,365,287,541,785],"stattrak_volume":[47,4,54,6,1]},"335":{"index":335,"max":0.35,"min":0,"rarity":3,"name":"Module","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_Cxk_f23aahvLPWWClicyOl-pK8_Sn_rwE1x5z6AyY6qeXmRb1cgWMNwR7Ff4Bm_m9y0Przq4A3b348Q02yg2QQMyM9M","stattrak":true,"normal_prices":[175,98,95,0,0],"normal_volume":[498,308,172,0,0],"stattrak_prices":[230,126,122,0,0],"stattrak_volume":[363,262,154,0,0]},"342":{"index":342,"max":1,"min":0,"rarity":2,"name":"Leather","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk7eChf6pSLPWSGm-V09Fm6bFWQyC0nQlp5z-HmYr_cH2XaVJ1DcRwEbFYsES5xtK0NOux7waMgoMTzyyrinlO7DErvbjoM7X31Q","normal_prices":[2706,1065,676,649,624],"normal_volume":[31,28,27,21,33]},"359":{"index":359,"max":0.92,"min":0,"rarity":6,"name":"Asiimov","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-JaV-KfmeAXGvzedxuPUnTSjikRgksjuBzoz4dXLFb1QoC8QlTLQD4EPqk4LvN-Pns1aMioNBzTK-0H3gQVv65g","stattrak":true,"normal_prices":[19522,16107,15563,15236,15217],"normal_volume":[219,406,457,116,89],"stattrak_prices":[28864,16698,16019,15801,16371],"stattrak_volume":[46,82,58,24,17]},"486":{"index":486,"max":1,"min":0,"rarity":3,"name":"Elite Build","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6lsM-SWHH6vzedxuPUnHyi1xE9xsGiDmdqpdnmRPwcgDZslRuAM40Trx93nNevj7gOPjdlGzzK-0H27CoeJJQ","stattrak":true,"normal_prices":[354,54,60,43,41],"normal_volume":[214,387,298,84,77],"stattrak_prices":[470,80,42,31,38],"stattrak_volume":[90,235,289,122,101]},"516":{"index":516,"max":1,"min":0,"rarity":5,"name":"Shapewood","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V7dlIeCWGWifxdF6ueZhW2fglEtz6zjWyo2uJXKeaAF1ApZ2F7YN5BC_w9TjYbzg5VCNg9pEnHiskGoXuQsJgcHb","stattrak":true,"normal_prices":[3429,935,840,834,690],"normal_volume":[91,144,251,49,59],"stattrak_prices":[3903,1144,702,743,711],"stattrak_volume":[23,36,53,48,29]},"593":{"index":593,"max":0.6,"min":0,"rarity":4,"name":"Chopper","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V6J4LPysGm-CzvpivORWQyC0nQlptWTXzt-tIyrFPQMjCpImQbED5xm5kIDhZePitlbdjotBnH783H9L7jErvbjpMmMyTQ","stattrak":true,"normal_prices":[516,133,116,106,108],"normal_volume":[326,305,276,23,34],"stattrak_prices":[511,250,141,263,147],"stattrak_volume":[105,147,168,24,15]},"611":{"index":611,"max":0.8,"min":0,"rarity":3,"name":"Grim","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6N_Kf2eMWuZxuZi_rA9GHDrlh8h6m7dw4qpciiUOgQkAsF2ELYPsBjploe2P7ngsQaIjN5bjXKpNUOMolU","stattrak":true,"normal_prices":[107,22,24,26,19],"normal_volume":[340,349,270,33,55],"stattrak_prices":[175,50,19,59,19],"stattrak_volume":[115,294,268,48,84]},"636":{"index":636,"max":0.75,"min":0,"rarity":5,"name":"Shallow Grave","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V7dlIfyfAXCvxvx3puRWQyC0nQlpsWzUyIqvcCiVPFQnW8YmEO4P5xi6xNS2Num35FbX34lCzX7_hytK5zErvbi02RizsA","stattrak":true,"normal_prices":[5405,3409,2738,2554,2423],"normal_volume":[163,245,410,33,122],"stattrak_prices":[3269,1420,979,1109,977],"stattrak_volume":[31,57,98,20,24]},"669":{"index":669,"max":1,"min":0,"rarity":4,"name":"Death Grip","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk_6v-V6ZsMvWRAWmV0tF0vPRscCW6khUz_WqAy4z6cX2Tbg8hWJN2RLQMsRPplNDmYr63sVPciIkTyij3iX5M7yt1o7FVUmFnInA","stattrak":true,"normal_prices":[4562,3322,2513,2062,1815],"normal_volume":[48,25,45,22,55],"stattrak_prices":[4006,2585,1442,1356,1288],"stattrak_volume":[20,12,10,1,37]},"67":{"index":67,"max":0.08,"min":0,"rarity":5,"name":"Cold Blooded","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k_P6nfKxoMs-DVzevzedxuPUnSivqkBt_5m7Rw9v8cXmTZ1UjX5Z5EOEIuhK8koHuNe7r51fYjt4XyDK-0H2E4aJrDg","stattrak":true,"normal_prices":[6776,6743,0,0,0],"normal_volume":[184,12,0,0,0],"stattrak_prices":[8815,9307,0,0,0],"stattrak_volume":[55,7,0,0,0]},"717":{"index":717,"max":1,"min":0,"rarity":3,"name":"Traction","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V7B_JfGXMWuZxuZi_udvTHDjzUVxsm-Aw9auIniRPQJ2XJVyEONetxDuk4HiNeu24VSP391bjXKpopWoUos","stattrak":true,"normal_prices":[219,46,38,27,26],"normal_volume":[93,157,86,185,184],"stattrak_prices":[320,76,34,32,35],"stattrak_volume":[56,92,101,60,92]},"726":{"index":726,"max":0.5,"min":0,"rarity":2,"name":"Sunset Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk7f6hZ6lSL-KSAGCV_uJ_t-l9AX3klxl_5mzQmN34dXLDaAd0XJYmROIJsUHswdzuYe7ktgzfit1DmS_gznQesD3mhjI","normal_prices":[1556,1264,1300,1312,1579],"normal_volume":[57,106,70,13,16]},"744":{"index":744,"max":0.5,"min":0,"rarity":3,"name":"Baroque Red","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k-fegbbBiH-KWClicyOl-pK8_Gi3qlEp2sjvSzomhIi_CalByW5shQuNcuhm8m9GzMePg5gLW2IxC02yg2WEL1Rk5","normal_prices":[3676,3404,3387,4117,3844],"normal_volume":[48,19,8,2,2]},"759":{"index":759,"max":0.5,"min":0,"rarity":4,"name":"Astral Jörmungandr","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_C9k5f28ZZtvLOWWMWuZxuZi_rJtFiziwkom4GXTyNqrIC-TPVMgApAkE-EMtUS-xoCzNry35Fff3t5bjXKprRMe7_8","normal_prices":[37474,43306,42046,65336,140000],"normal_volume":[78,3,7,1,1]},"776":{"index":776,"max":0.5,"min":0,"rarity":3,"name":"Facility Negative","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk7f67bbR_Kf6HMWaB1O9JvOhuRz39zE5_tmvSzNugeXyUOAMlW5pyQOcN4Re-xte0Nb_n4wXf2INNynj_jzQJsHhMSbHang","souvenir":true,"normal_prices":[191,25,11,12,12],"normal_volume":[172,174,167,31,34]},"828":{"index":828,"max":0.47,"min":0,"rarity":2,"name":"Verdant Growth","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf7jJk4v28Z5t5JeiHB2uV_ulkteRncD-6mxgYvzSCkpu3eXqUaFMkDZciEeZesxG4w4fgZe3g51HfiY4RmS33jCNMvXpst-gFAr1lpPPtRxOxww","souvenir":true,"normal_prices":[194,60,33,136,388],"normal_volume":[309,120,169,28,17]},"849":{"index":849,"max":0.75,"min":0,"rarity":3,"name":"Off World","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6trJuecHGuU_uJ_t-l9AS_jwBwisG3SzN-rcX-SbA4lCsR4R-EDuhi6wIG1NuzjtFba2N8WxS3gznQePPXjzOg","stattrak":true,"normal_prices":[154,28,19,19,19],"normal_volume":[225,125,235,12,135],"stattrak_prices":[183,53,26,28,23],"stattrak_volume":[61,136,281,18,73]},"911":{"index":911,"max":0.57,"min":0,"rarity":5,"name":"Nostalgia","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk_6v-V6piM-SSAmCZwNF6ueZhW2fgxBh25mmAyY6reS2WaAElCpZ2RrMOuxO6k4LnNuy2tgLejoIWyXj3kGoXuTP4YgZa","stattrak":true,"normal_prices":[1431,538,419,529,441],"normal_volume":[142,183,83,31,30],"stattrak_prices":[2679,1053,638,985,628],"stattrak_volume":[55,79,82,5,14]},"925":{"index":925,"max":0.5,"min":0,"rarity":1,"name":"Desert DDPAT","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk6_a-abBSJPWAC3WE_uJ_t-l9ASjgwBx3sj_Ry4qqcXKfPVdxD5J4F7MIsBnpl9OzP7jg7gLd2dpFyiXgznQeFOalmMw","souvenir":true,"normal_prices":[68,69,32,69,59],"normal_volume":[823,108,190,12,49]},"936":{"index":936,"max":0.55,"min":0,"rarity":4,"name":"Attack Vector","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf_jdk__2icZt7Kf-fC3Ov0bcmj-1gSCGn20QhtW_Vm9r8InmVbFJyDJMkE-IJsEOwm9G1Mu3jswSP2t1Hyy-s3yJXrnE8K5R_WCY","normal_prices":[1967,1080,701,712,687],"normal_volume":[371,298,214,30,22]},"969":{"index":969,"max":1,"min":0,"rarity":3,"name":"Freight","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf-jFk_6v-V6diLuSSB2mV09F6ueZhW2fhk09ytjmDm4n8JHOebQEgCMAmQrEMuhi4k4W0MurntVHfid5GnC38kGoXuRB1lB54","stattrak":true,"normal_prices":[86,14,5,5,5],"normal_volume":[480,358,549,169,131],"stattrak_prices":[81,20,9,6,7],"stattrak_volume":[159,154,327,91,285]},"977":{"index":977,"max":0.6,"min":0,"rarity":3,"name":"Cocoa Rampage","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhx8bf9Ttk_6v-V6BkLv-sHGad0e9xtd5lRi67gVMl52jUztr9cn7CbQEmWZV1R-ED5BHqx9G1PuOxsgWM2N4Xniqrh35L8G81tGacA9-f","stattrak":true,"normal_prices":[272,100,65,69,75],"normal_volume":[216,117,114,29,63],"stattrak_prices":[225,101,51,71,61],"stattrak_volume":[114,87,102,28,25]}}},"2":{"name":"Dual Berettas","sticker_amount":5,"type":"Weapons","paints":{"1005":{"index":1005,"max":0.7,"min":0,"rarity":1,"name":"Heist","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4s2mba1-NM-DAmae0tFxouRsQRa_nBovp3OEn437c3yTZlJ0DpB3QORfshS8xIfjYe3n7wTbi98Wzn2o2ilPuilv_a9cBr2drwX0","normal_prices":[605,135,100,528,66],"normal_volume":[220,276,191,29,65]},"1086":{"index":1086,"max":0.5,"min":0,"rarity":1,"name":"Oil Change","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I_82rZqNkLvWsCm6C1fdJvOhuRz39x0txtzuHn9j_cn6VbVMiCpJ4Q-MCuhDukYXnN-7q4wTbjIlGzij9jzQJsHgVbYzf3Q","souvenir":true,"normal_prices":[253,166,155,136,97],"normal_volume":[151,131,71,8,16]},"1091":{"index":1091,"max":1,"min":0,"rarity":3,"name":"Tread","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_KWHGKE1e9lj_V7Sii3qhEutDWR1NmhcnPEPA92CJBxQeUNsha-ltC0ZOnltQHfjI1Gn3r7jy9N7npvsb4cEf1yGJF-WOQ","stattrak":true,"normal_prices":[699,215,61,49,51],"normal_volume":[105,40,101,45,73],"stattrak_prices":[679,240,117,92,100],"stattrak_volume":[30,41,32,37,44]},"112":{"index":112,"max":0.801418,"min":0,"rarity":4,"name":"Hydro Strike","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1f-vOiV6FhKeSWMW-Jxfx5j_J9XSC4kCIrujqNjsGgeHrGa1B2W5t1Q7NetkOwk4C2Ybzq4FDWjI0TzS6viilLv3tp6rwLT-N7rWtjCU_P","stattrak":true,"normal_prices":[604,233,92,97,70],"normal_volume":[284,293,451,40,71],"stattrak_prices":[1083,442,186,225,166],"stattrak_volume":[91,80,127,33,26]},"1126":{"index":1126,"max":1,"min":0,"rarity":5,"name":"Melondrama","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2rZK15JeOsDGKHwPxzj-1gSCGn20t_5TiBmdf9Jy-QaQIiW5F1E-BesxG9lIaxNuLj41He340Ryi79ii5XrnE8Xl7Qhlk","stattrak":true,"normal_prices":[1742,646,522,510,493],"normal_volume":[382,971,1796,692,490],"stattrak_prices":[1794,651,490,512,488],"stattrak_volume":[125,195,342,195,124]},"1156":{"index":1156,"max":1,"min":0,"rarity":4,"name":"Flora Carnivora","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2qfaVhH_WfB3OV0tFzpuhlcC-_mg8mjDGMnYftbynGOA4lDZd4FOZYuxi6kdPvZuLrsgTW2IIQxXn7iSNJ6ic96-YCB_I7uvqA4cV5qzc","stattrak":true,"normal_prices":[444,85,40,36,34],"normal_volume":[450,703,1671,776,225],"stattrak_prices":[592,162,67,57,56],"stattrak_volume":[119,194,263,235,203]},"1169":{"index":1169,"max":0.698529,"min":0,"rarity":3,"name":"Hideout","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1f-vOiV6ZoMvWHGmaD_uJzpOloQxa0hxQpjDGMnYftb3-WbQ92WcZ4EeFZs0TtxIfvZr_m7wXW2I0TySv93ywd5yxu5-0FAPE7uvqA-FxXgtE","stattrak":true,"normal_prices":[34,11,5,5,5],"normal_volume":[1775,914,512,44,64],"stattrak_prices":[45,16,8,12,8],"stattrak_volume":[242,200,835,110,116]},"1263":{"index":1263,"max":0.7,"min":0,"rarity":2,"name":"Rose Nacre","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4P2Reqt-Jc-UAWuU_uJ_t-l9AXuxlkl_5j_TyN2qc3-SaQd0C5d3FOQCsBfqlYWxYey34FeLjoJNny_gznQe5VNQ57w","normal_prices":[22,6,1,1,1],"normal_volume":[74,391,481,44,83]},"1290":{"index":1290,"max":0.8,"min":0,"rarity":2,"name":"Polished Malachite","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4PGmV6lsMvKfC1iX0-dmo95lRi67gVN_5GWHz46sInLGPwAmX8F2E7MNsxPsld21Zerr5AyI34hCzHqrjShB8G81tPVumS8Z","normal_prices":[92,15,3,4,2],"normal_volume":[1094,687,1336,56,119]},"1335":{"index":1335,"max":0.8,"min":0,"rarity":1,"name":"BorDeux","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4PGmV6VuMumfB2Svxvx_oPJWQyC0nQlp4TnXyImgd3mXbAAjXpZ4FORZuxawm4XhNOKxtQ3ciYJBxSj-jHwcujErvbh_J5_kxQ","normal_prices":[6,1,1,2,1],"normal_volume":[251,150,636,53,55]},"1347":{"index":1347,"max":1,"min":0,"rarity":4,"name":"Angel Eyes","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1f-vOiV6FhKeSWMWWZw-J_s-BlcCi9khgrjDGMnYftb32WZlN1W8B5R7UN50brwYDlPrm3s1CPjYoXmCn3hnlJuCpi574EAqA7uvqAcmHsw_M","stattrak":true,"normal_prices":[288,123,62,51,38],"normal_volume":[358,394,586,229,217],"stattrak_prices":[758,253,134,126,94],"stattrak_volume":[94,159,202,49,78]},"1373":{"index":1373,"max":0.678431,"min":0,"rarity":1,"name":"Silver Pour","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4PeRaad_OfyaDViWzeFh495lRi67gVN3tmnTn4yreXvFZgYjD8QlE-QK4EGxkda0Ze20tQbZ2Y9CyS_5iC1K8G81tJXDIHOE","normal_prices":[5,1,1,1,1],"normal_volume":[637,339,1548,42,107]},"139":{"index":139,"max":0.82,"min":0,"rarity":4,"name":"Sweet Little Angels","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2hfqF_MPGAHViSwOxvj-V8TiW6kA4YvzSCkpu3dHrEag8oCMd2EeMCtRa5xIbkZuuxtVbb2IhHz3_7hywavH1s6-lTB71lpPNncouquQ","souvenir":true,"normal_prices":[1184,499,220,209,177],"normal_volume":[737,588,971,69,161]},"153":{"index":153,"max":0.6,"min":0.26,"rarity":4,"name":"Demolition","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M26aapqJeKaAGKvzOtyufRkASrhkEV-sWXRy4qudH-XbAJ1WZF1E7EDt0G8k4e2M-_q5FOLi4NHzX7gznQeYfmGzpI","souvenir":true,"normal_prices":[0,0,2707,1223,1298],"normal_volume":[0,0,61,27,11]},"190":{"index":190,"max":0.8,"min":0.06,"rarity":3,"name":"Black Limba","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s29baV-L_6sC2uZ1etlj-N7Tj-8qhEutDWR1NyuJC6SPQQoC8N1TLYMthC_kNTmMOKw4gLe2osWmC6vhylB6C5i4OscEf1yNRLqhkE","stattrak":true,"normal_prices":[3481,584,499,509,458],"normal_volume":[6,21,50,17,8],"stattrak_prices":[8065,701,581,588,493],"stattrak_volume":[3,29,63,9,17]},"220":{"index":220,"max":0.2,"min":0,"rarity":4,"name":"Hemoglobin","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4s2he7dkJumsHGKU_uJ_t-l9ASjjxEgm4mWHzYuhdi-RPVByD5pxF-ULshS6xofjMrzgs1eIiIxHnnrgznQe0T5dj0k","stattrak":true,"normal_prices":[1784,1666,1725,0,0],"normal_volume":[267,54,10,0,0],"stattrak_prices":[3066,2650,2700,0,0],"stattrak_volume":[43,35,11,0,0]},"249":{"index":249,"max":0.4,"min":0,"rarity":4,"name":"Cobalt Quartz","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4s2ter1-NPGfAm6KxOpJsu18Sha_nBovp3OGm92vdXyWOgN2Dcd2E7Zfsxa7kNe2Zbm2slSN2N1HnCmqi39MuCc6_a9cBtlhe-EA","souvenir":true,"normal_prices":[75,39,31,48,0],"normal_volume":[936,461,826,92,0]},"261":{"index":261,"max":0.5,"min":0.05,"rarity":4,"name":"Marina","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s2jabZkLvGsHXKe0-dltd5lRi67gVN34DuDyoytIH3EPwYnDMYjROde4RC9lIDnZO_i51TejdoRxSWrhn9B8G81tGB0zZHS","stattrak":true,"normal_prices":[2897,701,529,606,473],"normal_volume":[41,71,57,27,3],"stattrak_prices":[5363,1016,824,907,778],"stattrak_volume":[21,49,57,25,3]},"276":{"index":276,"max":0.58,"min":0,"rarity":3,"name":"Panther","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M2-aap5KPWBMWuZxuZi_uA4Si-3kRx-sDzUn4r_cnPGa1AiApJwReRc4RXrwIHjMLu25AGP2otbjXKpeGQaAco","stattrak":true,"normal_prices":[749,474,300,291,306],"normal_volume":[204,118,56,18,14],"stattrak_prices":[863,581,382,391,300],"stattrak_volume":[59,50,79,4,20]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4c2gabJ0H_yaCW-Ej7ci4blsTi_kwkki62yAnN6tcHLGZg4iAsF1FLULuhPuxtTiMOnn4gzAy9USUx32_HM","souvenir":true,"normal_prices":[1511,2368,0,0,0],"normal_volume":[156,25,0,0,0]},"307":{"index":307,"max":0.45,"min":0,"rarity":3,"name":"Retribution","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnl8StP6ryvOqJpJqjACjbBkb93srg-Fn7ilBhysWXSyNarJSqUZlIpCMclTbMCrFDmxYRwJ9Kk","stattrak":true,"normal_prices":[550,790,620,11404,0],"normal_volume":[14,41,27,1,0],"stattrak_prices":[634,511,426,744,0],"stattrak_volume":[31,21,34,2,0]},"330":{"index":330,"max":0.22,"min":0,"rarity":1,"name":"Briar","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s24YapoM8-fB2CY1aAn4rlsTnzhxxhx5TuHwt76cXuXbVApApV0TLJctxm9kd3vZL-35wTWlcsbmthIan4W","souvenir":true,"normal_prices":[959,328,306,0,0],"normal_volume":[139,42,28,0,0]},"396":{"index":396,"max":0.47,"min":0,"rarity":4,"name":"Urban Shock","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2rZK15JeOsG3WSwOBlpO57Qha_nBovp3PQzI6pc3iRZ1cjC5dzQe4CsxPtwdHjMevq41CLjIpMm3_5jypN7Cxp_a9cBoxgoAoS","stattrak":true,"normal_prices":[585,261,186,235,232],"normal_volume":[195,112,87,28,19],"stattrak_prices":[864,462,399,412,468],"stattrak_volume":[66,65,36,13,3]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a_s2oZ7ZuJfSsAm6Xyfo45LVtG3zgzEt-tmWHydutd3nFaVciDJIjFrZZt0OxmoXkMuuz7wbY2pUFk3vnrYa7Ww","souvenir":true,"normal_prices":[108,15,10,9,9],"normal_volume":[149,113,286,106,111]},"447":{"index":447,"max":1,"min":0,"rarity":4,"name":"Duelist","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2jZ7BlJeKsAWGv0et3ou1WSiW6gRgYvzSCkpu3dn-RaFdzDZV4F-RZtxW7w9fgM--x5geNjooUyH3-iS5K53pq47wLUr1lpPNOmOBZwg","normal_prices":[29250,24446,23142,27730,25000],"normal_volume":[28,6,2,2,5]},"450":{"index":450,"max":0.5,"min":0,"rarity":1,"name":"Moon in Libra","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s20Z6BkIfPCMWuZxuZi_rFtFnC1zB9-tW_cz9z6dnvEbw4jD5MiRbMDs0Xqm9G1Ybvgs1bc3oJbjXKpy-pewO4","normal_prices":[1238,599,500,459,466],"normal_volume":[131,45,80,5,1]},"453":{"index":453,"max":0.08,"min":0,"rarity":3,"name":"Emerald","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a4c2rZaF_IfyXMWuZxuZi_uBrF3u3zE5xsWjTzIr7eHKeaVIpCpd5QOIC5xi_w9PjY-2x4QDd3opbjXKpzqjop3Y","normal_prices":[4824,6798,0,0,0],"normal_volume":[214,18,0,0,0]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M2-ZadSLPmUBnPekb8g5LI8Hyi2l01z42Tdmdj9cXiRaA4jXJp4E7YJ4Ra8lILmP-7itBue1dzkV1WWjA","souvenir":true,"normal_prices":[103,3,1,1,1],"normal_volume":[261,518,872,129,276]},"47":{"index":47,"max":0.8,"min":0.06,"rarity":1,"name":"Colony","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I4M29eKVuJc-eD3WZz-tJvOhuRz39wRx2smzVyIqtJ3OQaARzDschFO5esxm5mtHiM-7l5wCN3ohBxSz63zQJsHg_UethgQ","souvenir":true,"normal_prices":[140,4,1,1,2],"normal_volume":[139,63,306,54,478]},"491":{"index":491,"max":1,"min":0,"rarity":3,"name":"Dualing Dragons","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2qfaVhIvWBHGKE1e9JtPNoSCa9hiIrujqNjsGqcn-VZ1JyXMR3RuMK5xDswNXkYbjitgePj91Bynn32y5N7ydtsLoET-N7rXzpOmeh","stattrak":true,"normal_prices":[549,81,32,26,25],"normal_volume":[145,192,331,102,163],"stattrak_prices":[909,161,75,50,51],"stattrak_volume":[62,94,129,39,39]},"528":{"index":528,"max":1,"min":0,"rarity":3,"name":"Cartel","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1a_s2qfaVhIvWBC3OEwP1Js-B7Wyy_qhEutDWR1I38I3yROgAmDZIjFuEJ50S6lNLvMuKx5lPbj9gRySz92HhKuiZp5ekcEf1yPnX3Fyc","stattrak":true,"normal_prices":[625,144,66,36,46],"normal_volume":[144,114,61,22,79],"stattrak_prices":[834,183,87,56,52],"stattrak_volume":[54,36,69,46,56]},"544":{"index":544,"max":0.45,"min":0,"rarity":3,"name":"Ventilators","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhIvWBC3OEwP1JpuRnWyC_lAkooS66lob-KT-JblNxDcMiQe8M5hDtxtfnNrvrswyLjdgWzCyvhytP7ilqt7pXBfdz-rqX0V-MxKZG7g","stattrak":true,"normal_prices":[69,23,30,21,0],"normal_volume":[248,118,271,32,0],"stattrak_prices":[88,46,21,27,0],"stattrak_volume":[94,88,67,24,0]},"625":{"index":625,"max":1,"min":0,"rarity":4,"name":"Royal Consorts","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_KWHGKE1e9lj-ZmQy22myIxtjOMmYrGLSLANkI-C5AjFOcM5EaxxtTmPrnl4Q2Ki91Eyyz32y1Luyk44u4LUqEjr_ff3BaBb-MmOWu8Lw","stattrak":true,"normal_prices":[3198,650,292,252,265],"normal_volume":[136,260,281,125,149],"stattrak_prices":[1460,420,177,149,152],"stattrak_volume":[51,77,133,28,33]},"658":{"index":658,"max":0.6,"min":0,"rarity":5,"name":"Cobra Strike","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhIvWBC3OEwP1Js-5rXSiMmRQguynLydn9JXmUOwMgCsN1EbMPsRHtxoDuZrzm4VTait4Tzn_-jn4f7ipu4fFCD_Qo-zseRg","stattrak":true,"normal_prices":[20920,7454,5309,5894,5337],"normal_volume":[62,58,32,4,6],"stattrak_prices":[16553,10360,6855,33721,7026],"stattrak_volume":[27,5,14,2,2]},"710":{"index":710,"max":0.5,"min":0,"rarity":3,"name":"Shred","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I_82rZK15JeOsGW6e1etkj_NoRi22hyIrujqNjsGrJ3rGbQAgDsEhE-YJ5he7w9TgZOnrtgWI2oNNxCv6hixP7SZitrpRT-N7rUuDq4Qp","stattrak":true,"normal_prices":[128,36,28,28,32],"normal_volume":[108,296,90,62,20],"stattrak_prices":[137,85,29,35,44],"stattrak_volume":[94,131,126,17,54]},"747":{"index":747,"max":1,"min":0,"rarity":5,"name":"Twin Turbo","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1Y-s2qfaVhH_WfB3OV0tFkse1lVha_nBovp3OHytv8JCnBbAF1X5MjR7UPsBfrmoHuNr7nsgbfjdlAxSr63CIfuChr_a9cBiuNovOB","souvenir":true,"normal_prices":[2725,603,276,194,192],"normal_volume":[259,243,242,93,145]},"824":{"index":824,"max":0.6,"min":0,"rarity":2,"name":"Drift Wood","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1I_82qer1SN_-cClicyOl-pK87GXGwlkxx5TnRnon4IHvCPAIiW8dxQ7Nc50K6l4XhY-m04QLdjo9N02yg2cWHvD9Z","souvenir":true,"normal_prices":[259,96,36,94,113],"normal_volume":[177,124,68,3,52]},"860":{"index":860,"max":0.55,"min":0.06,"rarity":2,"name":"Pyre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s2pbah9Jf6sCmaCytF6ueZhW2fhzU8l4G3dyYr4d3jCPAd1AsdwQ-QD5hS7x9XlZOi35wGM2IMWzX2vkGoXuX-7oZQZ","normal_prices":[6018,1873,1584,1647,1915],"normal_volume":[10,69,75,14,8]},"895":{"index":895,"max":1,"min":0,"rarity":3,"name":"Balance","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_WfB3OV0tFkv_JscCW6khUz_W2Dyon_dimePA8lWJclQrMJthm-kYW2NbzrtQ3eioJCnyWo33wa7Hl1o7FV2r7YJY0","stattrak":true,"normal_prices":[929,259,175,108,92],"normal_volume":[95,75,77,27,20],"stattrak_prices":[1200,312,174,113,130],"stattrak_volume":[43,45,66,55,44]},"903":{"index":903,"max":0.7,"min":0,"rarity":3,"name":"Elite 1.6","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_WfB3OV0tF1vOB6XCCwqhEutDWR1Ir4JS2UbQRxW5J5QLICsxi8ld3mY7jq4AeKj99FzCSsiy1M5y9q6r0cEf1yqEZuIxI","stattrak":true,"normal_prices":[144,30,26,28,26],"normal_volume":[95,129,118,48,90],"stattrak_prices":[158,53,29,42,27],"stattrak_volume":[59,53,128,45,53]},"978":{"index":978,"max":1,"min":0,"rarity":4,"name":"Dezastre","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1c_M2qfaVhH_WfB3OV0tFytftoXD2hkCIrujqNjsH4c3qeOgR2XpJzFOcD4BK_m4HmN7mx5wGIjthDxHn23yhLv31u6u4HT-N7rWmjRO8T","stattrak":true,"normal_prices":[2051,1162,347,261,251],"normal_volume":[89,109,81,17,45],"stattrak_prices":[2229,1062,442,389,363],"stattrak_volume":[31,31,49,27,38]},"998":{"index":998,"max":0.65,"min":0,"rarity":2,"name":"Switch Board","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL0kp_0-B1T9s2gfalvJeKAMWCCxOt4j-1gSCGn20104juHydqtcnLBblAiWMdxQrUKsEG-wd3iPrmx5gGNiNgXznqtiCNXrnE8feK4iuw","normal_prices":[760,342,258,265,294],"normal_volume":[107,67,135,18,54]}}},"23":{"name":"MP5-SD","sticker_amount":5,"type":"Weapons","paints":{"1061":{"index":1061,"max":0.58,"min":0,"rarity":4,"name":"Autumn Twilly","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9s26eqVkLvGBDW-Z1et1pN5lRi67gVMj5DiAw9avcn-XOlQoDMEjFrYOsETpkIfuYb-x7gaNj9pMzX74inwb8G81tAuAxr4i","normal_prices":[1999,1099,815,900,809],"normal_volume":[124,89,82,9,12]},"1137":{"index":1137,"max":1,"min":0,"rarity":3,"name":"Necro Jr.","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSK_mXMWmVwvx5vu5kRiq8myIrujqNjsH8JXqXPVAhDZVyR7YO4ETrxtLvZbmxtAXfiIpCzHr5h3tB635j4-gCT-N7reJfmdfh","stattrak":true,"normal_prices":[83,14,5,5,4],"normal_volume":[555,740,621,288,280],"stattrak_prices":[90,18,6,6,8],"stattrak_volume":[141,257,189,85,344]},"1180":{"index":1180,"max":1,"min":0,"rarity":3,"name":"Statics","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1W_6eRe7BsNPmQHViSzftzj-1gSCGn20l252_Tz478Jy3EbAYnX8FzFuAI5kO5wNK1P-uz4lSP2doRyS_6iipXrnE8LnlBQOA","stattrak":true,"normal_prices":[218,35,17,12,10],"normal_volume":[161,135,156,113,95],"stattrak_prices":[223,63,33,18,21],"stattrak_volume":[74,101,137,31,35]},"1231":{"index":1231,"max":1,"min":0,"rarity":3,"name":"Liquidation","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1Y-s2jePF-JM-CG26TytF6ufB8Ri2ygRQovQKJk4jxNWXBOgUmDsN5FrIM5xi4lIHgNe7q51Pdi4pGni-t2ntA5ids5LxRVPUj5OSJ2Kcl14st","stattrak":true,"normal_prices":[85,14,5,4,5],"normal_volume":[623,120,501,176,269],"stattrak_prices":[118,17,8,6,6],"stattrak_volume":[196,252,302,98,97]},"1274":{"index":1274,"max":0.638225,"min":0,"rarity":1,"name":"Lime Hex","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I_82iYaloH_iWFlicyOl-pK8_HH22xxl34DiHz9mreS-TblN2C5FwFOQN4Rjpx9C1Yunh4gfbg91M02yg2SHKjRF4","normal_prices":[3,1,1,1,1],"normal_volume":[538,251,690,249,138]},"1294":{"index":1294,"max":0.6,"min":0,"rarity":3,"name":"Gold Leaf","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9veRb6thJM-QD2qf_uJ_t-l9ASvgwUghsGndmdyoI36TPA9xX8R5EOQOuhe8m920Mujq7wDY3YwTzn3gznQe4R7J2J0","normal_prices":[58,21,8,9,7],"normal_volume":[638,427,362,40,57]},"1344":{"index":1344,"max":1,"min":0,"rarity":3,"name":"Focus","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1W_6e9bJtuKOKcA2KvzedxuPUnG3rmxU525WTdztqhIH-XOwYiA8QjR-AOtRC6kIfhNuPntgbfio1EmzK-0H16sAwJOA","stattrak":true,"normal_prices":[85,19,9,6,6],"normal_volume":[688,530,275,94,130],"stattrak_prices":[133,45,23,19,11],"stattrak_volume":[66,213,155,83,15]},"1366":{"index":1366,"max":0.6,"min":0,"rarity":2,"name":"Snow Splash","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9veRZbQ4H_OSHFiH0-9m5N5lRi67gVMk5WXQztarIHiVbQ8lApF2F7QN5xS_xtfnNujqswTWidhAnyr3jngc8G81tMzA05Bb","normal_prices":[20,4,1,2,1],"normal_volume":[756,290,272,19,55]},"1385":{"index":1385,"max":0.75,"min":0,"rarity":2,"name":"Picnic","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I4PeReqFpH_yaCW-Ej7sk5OBtGnDmwE4i526Dm9msI3LBbldxWcAiF7ZftBG5kdWzNLzi5wbAy9US1mpPgEo","normal_prices":[30,9,2,2,1],"normal_volume":[136,566,474,30,80]},"161":{"index":161,"max":0.9,"min":0.2,"rarity":2,"name":"Neon Squeezer","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I_82hfqF_MPGAHViAwOd4pN55SieMmxgovQKIn4vwNCaJPAN2DZJ2Te9Y50a-wYW1Menh41fZi9oRni6sii1P6idu4usHUqUi87qX0V_tTvsQDw","souvenir":true,"normal_prices":[0,0,9,2,1],"normal_volume":[0,0,1112,83,343]},"753":{"index":753,"max":0.8,"min":0.06,"rarity":1,"name":"Dirt Drop","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I_826abRoH-ObAXWE_vx3vO1wcCW6khUz_W_TydqocinDPwYlW8MhQuMMs0LsxNblN7_jtVCM2I9Cz3_43Hsd7il1o7FV674h8n8","souvenir":true,"normal_prices":[105,3,1,1,2],"normal_volume":[72,390,918,112,2049]},"768":{"index":768,"max":0.75,"min":0.25,"rarity":2,"name":"Savannah Halftone","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T-82sZLF_H_OSA2ivzP4jo-VWQiy3nAgq_TjTyN6qICqTPVRzCZN4Q7EKsES6xtDlMb7gsQXb3oxHzHj32HtJ73p1o7FV_MEGTHA","normal_prices":[0,0,9,3,3],"normal_volume":[0,0,934,96,190]},"781":{"index":781,"max":0.5,"min":0,"rarity":3,"name":"Co-Processor","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1a4s2tYbZuNfmHDGiR0-pJsfB8Tha_nBovp3PQm9_7eHrFP1UgDJUlEbMNtxPrkd2xMLmw5AXf3opFmy-qiXgbvHk5_a9cBm-j3VYi","souvenir":true,"normal_prices":[191,24,12,13,14],"normal_volume":[181,115,197,43,42]},"798":{"index":798,"max":0.8,"min":0.06,"rarity":2,"name":"Nitro","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1I4M2heqVjJ_WsD2STxOBio7JWQyC0nQlp42yEzImsdH3EaAEgC8N2EeYJtRbuxtDjYr_q7weI3d5FzCz43ChOvDErvbiO5Zd60w","normal_prices":[1224,541,271,304,294],"normal_volume":[27,78,207,43,77]},"800":{"index":800,"max":0.35,"min":0,"rarity":4,"name":"Lab Rats","collections":["set_blacksite"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9s2iaaZ_IeSsA3fF_uJ_t-l9AXrhxh4l5G_Um9eoJX6WaAVyXMN1RbYM5Bi4wN21Yuq0swTdidhMzSTgznQed7nbwhE","souvenir":true,"normal_prices":[0,0,0,0,0],"normal_volume":[0,0,0,0,0]},"810":{"index":810,"max":0.8,"min":0,"rarity":5,"name":"Phosphor","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSJvWAGm6GwOJJtPNgXxa_nBovp3PRzd-vdCqQOgYgCMYkRrECskLuwdfkZeqz5QKMjYwUnHj33SlI630__a9cBl0Wy4S-","stattrak":true,"normal_prices":[1445,579,414,446,415],"normal_volume":[127,265,574,33,37],"stattrak_prices":[2492,1166,595,807,698],"stattrak_volume":[86,95,142,10,11]},"846":{"index":846,"max":1,"min":0,"rarity":4,"name":"Gauss","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePF-JM-SHXOCzuN3pOhqcCW6khUz_WzTzYmhJXuSaANzW8EkQ7JZ4BjsxtSzYezr5lbfidlEzC-vjnxK7ih1o7FVYPX5q0o","stattrak":true,"normal_prices":[442,93,57,50,50],"normal_volume":[92,112,260,141,121],"stattrak_prices":[529,138,73,66,53],"stattrak_volume":[84,46,145,91,26]},"872":{"index":872,"max":0.55,"min":0,"rarity":1,"name":"Bamboo Garden","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1T9s2saalvL_-sHXOdwPx1j-1gSCGn200k5mzWyd-tcX2RbwYjW5dyQ7YIsxi_kdfvY7mztQSP2o5Mnn_4hntXrnE8gm_uARc","normal_prices":[679,567,545,532,521],"normal_volume":[153,65,91,17,17]},"888":{"index":888,"max":0.68,"min":0,"rarity":3,"name":"Acid Wash","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSJeSQBlicyOl-pK9rTnjqlkkitmTVn437IiiePQRyX8F4FuBc5xS_lYHgZevj7wzagosX02yg2cdA74dF","stattrak":true,"normal_prices":[428,222,79,86,92],"normal_volume":[89,76,56,25,63],"stattrak_prices":[368,220,100,172,102],"stattrak_volume":[21,16,58,39,30]},"915":{"index":915,"max":1,"min":0,"rarity":4,"name":"Agent","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSJvKaMWuZxuZi_uU6Gn7glhxytWSAy4uqI3yTbA90WcQkRu4K5BG6x921Nb_q4w3f3YlbjXKpj8G4GlA","stattrak":true,"normal_prices":[694,147,53,50,47],"normal_volume":[167,145,122,88,82],"stattrak_prices":[1586,316,119,103,97],"stattrak_volume":[74,75,61,53,47]},"923":{"index":923,"max":0.55,"min":0,"rarity":5,"name":"Oxide Oasis","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSLvWcAFiWzet9pOB7QRa_nBovp3OAmYr_cnLFOlN0A5d4Qu4KtRi6lYG2Mr7n4QCLg48Tm3_-3yxOvSdj_a9cBsgSaNGx","souvenir":true,"normal_prices":[28561,20233,12738,18863,17125],"normal_volume":[42,14,32,2,2]},"949":{"index":949,"max":1,"min":0,"rarity":3,"name":"Desert Strike","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1Y-s2jePFSJPWAC3WE_v1iouhiSha_nBovp3PUzYyqdHKfOgJ1CpAhROQJukW4lYDuMr7jswfWjdpNyimsi35O53s-_a9cBg0oJUav","stattrak":true,"normal_prices":[135,18,20,15,15],"normal_volume":[199,117,69,47,64],"stattrak_prices":[128,25,11,10,13],"stattrak_volume":[68,91,103,53,115]},"974":{"index":974,"max":0.8,"min":0,"rarity":4,"name":"Kitbash","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePF-JM-ED3SExOJ3vuVWQyy0lB4-jDGMnYftb32XZ1NyX5B5QuJcthi7k9K0Ye6zsQeP2IMRyiX4iSJLvC5q6-4HUaY7uvqAsG-atjE","stattrak":true,"normal_prices":[200,60,35,33,32],"normal_volume":[596,596,1559,66,116],"stattrak_prices":[287,106,52,54,56],"stattrak_volume":[109,241,244,31,116]},"986":{"index":986,"max":1,"min":0,"rarity":3,"name":"Condition Zero","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsPz-R1c_M2jePFSI_-dCm6EyOF4quR7QBa_nBovp3PQz93_InrCbAVxCcN5RbNZthm7w9e0Y-q35gbdi49GzX2vjCIf63xr_a9cBnKSfiDi","stattrak":true,"normal_prices":[679,158,73,45,42],"normal_volume":[81,102,85,79,62],"stattrak_prices":[494,120,70,58,58],"stattrak_volume":[66,32,45,41,49]}}},"24":{"name":"UMP-45","sticker_amount":5,"type":"Weapons","paints":{"1003":{"index":1003,"max":0.75,"min":0,"rarity":4,"name":"Crime Scene","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSI-KaA2Kv0u1zvuRWQyC0nQlpt2SEmdiheHiUalMnCJd4FuFb5xHul4LjMu3q5gPX2N0QyC-siXsY7DErvbhN2TV12A","normal_prices":[10479,7833,8961,11149,10799],"normal_volume":[94,25,35,10,13]},"1008":{"index":1008,"max":0.6,"min":0,"rarity":2,"name":"Houndstooth","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2mZ7FjJOOHAWiEydF0ou5-QRa_nBovp3PWyYmtJH3BZlQnXJclEecN4xLrwYCzMLy24waNjtlMxCv93SpJ7H5o_a9cBoyJn1nJ","normal_prices":[678,529,405,558,386],"normal_volume":[74,115,45,18,29]},"1049":{"index":1049,"max":0.5,"min":0,"rarity":3,"name":"Oscillator","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a4s27ZbQ5dc-WAmKT1fx5p-B_Sha_nBovp3PTztuvd3jDOlMhX5IjR7YPtRTtx4XjNum2tQOLjItHmyj5j34b6Spt_a9cBq1OnGjK","stattrak":true,"normal_prices":[36,18,18,15,17],"normal_volume":[456,240,534,31,43],"stattrak_prices":[89,44,33,32,28],"stattrak_volume":[142,61,203,34,25]},"1085":{"index":1085,"max":0.49,"min":0,"rarity":2,"name":"Mechanism","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s2rZqNkLvWsHmKCx-FkveBnTCyMmRQguynLwo2reHmVbgQkApR1FrNc50KwmoazMbyw4VHeioJBziX-hiocvH1otvFCD_SLOTiQGw","souvenir":true,"normal_prices":[540,348,218,544,682],"normal_volume":[69,27,36,3,20]},"1157":{"index":1157,"max":1,"min":0,"rarity":3,"name":"Roadblock","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_M27ZbRSMv-SCmWczu19j-1gSCGn2xgi5GnWmdmodXyUbwUhA5RyF-FcthS8w4ayMrjgtAzX2t9Byir83HtXrnE8YWMltLM","stattrak":true,"normal_prices":[94,15,5,5,5],"normal_volume":[470,370,303,124,128],"stattrak_prices":[72,16,7,6,5],"stattrak_volume":[163,286,228,72,68]},"1175":{"index":1175,"max":0.801418,"min":0,"rarity":3,"name":"Motorized","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtsM-OWA2WcxOpJte9uRie2qhEutDWR1N2gcy7DalAhCMd3QucO5EPukN2yN-iw5QyN2IkRzSr6iXtO6StrsL0cEf1y62CUsqE","stattrak":true,"normal_prices":[38,13,5,5,5],"normal_volume":[1413,525,679,58,122],"stattrak_prices":[68,18,7,12,7],"stattrak_volume":[241,422,44,62,116]},"1194":{"index":1194,"max":1,"min":0,"rarity":5,"name":"K.O. Factory","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtiLPSsDWaC1eF5vt5lRi67gVN2tWXTzI6tc3rGPQ4kWJUiQrJf4RPskIW2ZO3r4VaKi9hFyX-qhy0a8G81tA_18T9p","stattrak":true,"normal_prices":[1800,586,409,390,372],"normal_volume":[363,691,1509,498,268],"stattrak_prices":[2616,899,533,512,470],"stattrak_volume":[124,183,256,79,85]},"1203":{"index":1203,"max":1,"min":0,"rarity":3,"name":"Late Night Transit","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uKRfLZsLuOaGlicyOl-pK84GnHkkR935D-EyY2sdymXZlAhXJUmRbQD4BDumtbiMLjhtAzWg45A02yg2WS1GQky","souvenir":true,"normal_prices":[594,117,29,22,16],"normal_volume":[1286,834,1177,234,219]},"1236":{"index":1236,"max":1,"min":0,"rarity":5,"name":"Wild Child","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSI_yGGmSY_uV_s-pWQyC0nQlpt2iHmNyqd3KVOlB0D5YlTeZb5xjsx9PjZOjl4VCNgt1EnC77iSMf7jErvbhWyVIDbA","stattrak":true,"normal_prices":[1635,489,295,276,267],"normal_volume":[223,756,947,180,183],"stattrak_prices":[2098,591,315,280,280],"stattrak_volume":[106,152,140,64,48]},"1303":{"index":1303,"max":0.7,"min":0,"rarity":1,"name":"Green Swirl","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I4PGmV6x4JeObB2GE_upzo-B9cCW6khUz_TiBmIv4dCjBZ1RzX5txE-IOt0Lsk9zkY7y04QfYjN4RmCv22nxAvXp1o7FVlEIYfjU","normal_prices":[3,1,1,1,1],"normal_volume":[424,378,1371,71,218]},"131":{"index":131,"max":1,"min":0,"rarity":5,"name":"Neo-Noir","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtjJf-sAGiZ09F6ueZhW2flw0R0sGrcy4z9cn6XagVxCpR4F7Rb5BPplIbjY7vj4AOLjt0TzSj9kGoXuYU0ZhpI","stattrak":true,"normal_prices":[3123,1042,531,446,405],"normal_volume":[159,235,347,123,61],"stattrak_prices":[5464,1948,832,701,685],"stattrak_volume":[35,99,94,24,36]},"1351":{"index":1351,"max":1,"min":0,"rarity":4,"name":"Continuum","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uL6PZtkLPyGA26ewNFg4t5lRi67gVN1tm7Qy9itcXqTOwYlXJpxFLEO4Ba_wYXgP7u0tQXajoxFxX-q3SxP8G81tMlVCWLZ","stattrak":true,"normal_prices":[287,115,65,50,36],"normal_volume":[405,479,528,266,278],"stattrak_prices":[641,257,132,135,104],"stattrak_volume":[69,196,189,54,91]},"1387":{"index":1387,"max":0.7,"min":0,"rarity":3,"name":"Warm Blooded","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9veRfKF-NM-SAG6dwOJJoPNgQT2MwUgYvzSCkpu3dnuUalN2X5IjRe5fsUa9xoeyN-rr7waMiINDnC7_jnlI6ixq5OpWWb1lpPMCclDonA","normal_prices":[128,56,26,29,21],"normal_volume":[714,317,465,77,167]},"1426":{"index":1426,"max":1,"min":0,"rarity":3,"name":"Fragment","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1O4uKRbrZsJ_2WAHOvzedxuPUnGH3qwxtzsjzczN-odXqePQN0C5EiFrUK50G7lYXkP7jh71bXjdlEyDK-0H3tn7dQwA","stattrak":true,"normal_prices":[104,21,10,7,6],"normal_volume":[276,228,315,89,73],"stattrak_prices":[131,45,22,19,16],"stattrak_volume":[96,106,130,49,30]},"15":{"index":15,"max":0.8,"min":0.06,"rarity":2,"name":"Gunsmoke","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2pbah9Jf6sAm6Xyfo4trM5GCzrkE5w42jVzYqgdijBalR2CMd4R-JeuhS8lNXjN7nj4gTa2pUFk3skeb6bFA","souvenir":true,"normal_prices":[236,17,10,9,9],"normal_volume":[31,181,366,29,77]},"169":{"index":169,"max":0.8,"min":0.06,"rarity":2,"name":"Fallout Warning","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_82gfa9oM-SBB3eV_uN3ou5mQRa_nBovp3PTw9z8eC3BaQRyDJEiQO5YtRK8lNOxYuLjtFHe34hAyin2hi9AvX5j_a9cBo7SjwdV","souvenir":true,"normal_prices":[7500,3382,939,903,1366],"normal_volume":[1,37,83,2,11]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":1,"name":"Urban DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2qbLRsNM-GHGWvzedxuPUnGS3hwBxxtm6Am4yreH2TP1N0A5EhROBb5Ba5k9TjYuLrtQWMjdhCyTK-0H2MxuWOFg","souvenir":true,"normal_prices":[100,3,1,2,1],"normal_volume":[73,149,343,297,97]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_82qabR9LPWsAm6Xyfo46bMxGn-3x00m4m-HzN2sIH6SZwQpWJVwQu4MuhK5xIXiMuO24QLej5UFk3vMYylqRQ","souvenir":true,"normal_prices":[1181,112,75,79,68],"normal_volume":[8,47,23,9,22]},"193":{"index":193,"max":0.34,"min":0.06,"rarity":3,"name":"Bone Pile","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_829Y7FhLM-XB2aX0-97j-N7Tj-8qhEutDWR1I6rcX3GblRyD5V1TecIsxPukdbuYeqz4Q3ZjopMyiyrjHgfuCdqt-kcEf1yvOcVYJ0","stattrak":true,"normal_prices":[1962,597,597,0,0],"normal_volume":[20,41,27,0,0],"stattrak_prices":[3096,674,691,0,0],"stattrak_volume":[2,66,78,0,0]},"250":{"index":250,"max":0.6,"min":0,"rarity":3,"name":"Full Stop","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s24abZkI_GeAViCxOpJvOhuRz39zBwi6zvUm4ypdXrDOAUkDMF2ELJf5BG4k9DuMenh4VOMgo1DzCT4jDQJsHiJeUvUrw","normal_prices":[549,249,161,212,158],"normal_volume":[152,23,82,21,9]},"281":{"index":281,"max":0.75,"min":0.05,"rarity":3,"name":"Corporal","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSI_-BHmiCwOJJvOhuRz39wUUi4W6Bzdipd3KWOwInXJFyTbEKuhbtloHlMbzm5AbW2YkWzSv5jjQJsHiIsauxOw","stattrak":true,"normal_prices":[217,58,61,43,44],"normal_volume":[42,97,219,30,79],"stattrak_prices":[285,92,40,64,45],"stattrak_volume":[38,129,188,17,49]},"333":{"index":333,"max":0.8,"min":0.06,"rarity":1,"name":"Indigo","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I4M2nZqBkJ_-sD2mU_ulktfhWQyC0nQlp4WjTyN78In-Wb1QgDcNzRLUI5ka4wdfjPruxswbdgopGzHj73yNLvzErvbhz6ja6HQ","souvenir":true,"normal_prices":[1795,409,302,282,254],"normal_volume":[42,88,77,20,6]},"362":{"index":362,"max":0.4,"min":0,"rarity":3,"name":"Labyrinth","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2iYapoM8-cHGaexutJvOhuRz39wRtx4WXczNupdS2XawApD5okQLEK5hm4kYHvYrjm5FDbj4MWnnn4ijQJsHh9pjg_2g","stattrak":true,"normal_prices":[78,28,24,51,0],"normal_volume":[321,209,86,37,0],"stattrak_prices":[86,30,25,48,0],"stattrak_volume":[318,56,149,40,0]},"37":{"index":37,"max":0.08,"min":0,"rarity":3,"name":"Blaze","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s2oZKVgJeOsAm6Xyfo4srhvSi21wUoi4j_Xzt7_di6RaQ4mA5YhRuIMtEbswIDmMbzg5ACN35UFk3uW8e_n9A","souvenir":true,"normal_prices":[2686,4533,0,0,0],"normal_volume":[414,6,0,0,0]},"392":{"index":392,"max":0.35,"min":0.06,"rarity":3,"name":"Delusion","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I_827ZbQ5dc-XQ3GZ0ud5vvJWQyC0nQlp5z7RwtyrIC6WbAYgCJp3Q-YD4RXsxN3jN-7n41He390QzXn5iCMf5jErvbiLTzB_rQ","stattrak":true,"normal_prices":[864,154,59,0,0],"normal_volume":[89,37,59,0,0],"stattrak_prices":[896,144,118,0,0],"stattrak_volume":[60,146,139,0,0]},"412":{"index":412,"max":0.68,"min":0,"rarity":4,"name":"Crimson Foil","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_PGmV7d9L-KHMXKd0bojj-1gSCGn20V2tm_Sn9irdX3EZwUkA5B1R-IL5Ebsk9O2MOni4AKIgogUmH333SlXrnE8E6oIYXY","normal_prices":[970,405,313,364,350],"normal_volume":[1504,832,842,89,133]},"436":{"index":436,"max":0.35,"min":0.25,"rarity":4,"name":"Grand Prix","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a4s27ZbRSMvGQC3WvzOtyufRkASjjxU1x42nVyo2rdnKQbA9xX5ohRrYMtBntmtW1N7zj5lDZgthFzC3gznQezoUeLLY","stattrak":true,"normal_prices":[0,0,108,0,0],"normal_volume":[0,0,479,0,0],"stattrak_prices":[0,0,126,0,0],"stattrak_volume":[0,0,324,0,0]},"441":{"index":441,"max":0.39,"min":0,"rarity":3,"name":"Minotaur's Labyrinth","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s2iaaZ0MvmdGm-vzedxuPUnHSiwwUUh5jndn939dC2QaVApXJdwR7Ncsxe8xtWyMrmwtAWIjohGzzK-0H1h0wYN6w","normal_prices":[12581,10095,8458,0,0],"normal_volume":[80,21,5,0,0]},"488":{"index":488,"max":0.7,"min":0,"rarity":3,"name":"Riot","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-GHnWfwPxJvOhuRz39lx8h4DnXw9f6cCiWbVNyXsYhF-RbsxK5m9LhMevmtVDeg4JAyyr3jDQJsHgJoZgLvA","stattrak":true,"normal_prices":[144,49,63,50,38],"normal_volume":[227,205,200,26,46],"stattrak_prices":[104,70,35,41,30],"stattrak_volume":[104,188,92,38,17]},"556":{"index":556,"max":0.77,"min":0,"rarity":5,"name":"Primal Saber","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-DHG6dwOJlseNsXRa_nBovp3PRn478JHmePQ8hDcF2Q7YDtxXrk92zYbyw7gXYjIhEyCn_3Hsbui44_a9cBklqRdMs","stattrak":true,"normal_prices":[2218,1029,983,1044,987],"normal_volume":[185,407,603,39,62],"stattrak_prices":[2663,1097,1017,1182,1091],"stattrak_volume":[87,132,115,11,25]},"615":{"index":615,"max":1,"min":0,"rarity":3,"name":"Briefing","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-eC3OCyPpzouBWQyC0nQlp627XyNigJHjBOwIiXMNyQuUKsRKwktK2Zu_j5FOKi9lCzHmtjCNKvDErvbgMSlL6rA","stattrak":true,"normal_prices":[177,23,27,19,15],"normal_volume":[214,86,267,60,17],"stattrak_prices":[158,31,15,13,14],"stattrak_volume":[113,84,171,84,70]},"652":{"index":652,"max":1,"min":0,"rarity":4,"name":"Scaffold","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_M27ZbRSIfKKHXSvzedxuPUnGi2ywBwhsmuDnNn9cX_EbA4mCcF1QbJZ5BPtm9fjZejnslDciNgUzTK-0H2MLp31Hw","stattrak":true,"normal_prices":[772,224,126,116,119],"normal_volume":[174,88,135,119,94],"stattrak_prices":[817,305,235,208,215],"stattrak_volume":[59,63,116,42,32]},"672":{"index":672,"max":0.7,"min":0,"rarity":3,"name":"Metal Flowers","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a_s27ZbQ5dc-VAmadxOh6v_ZsXRa_nBovp3PTnN2vc3zGaFAgWMZ4F-MDsBW7kNXhP7i04gCI2oNDyij8iSpI7S84_a9cBuxmxCPI","stattrak":true,"normal_prices":[967,871,487,611,402],"normal_volume":[73,33,100,22,5],"stattrak_prices":[967,544,421,495,433],"stattrak_volume":[30,19,22,8,6]},"688":{"index":688,"max":0.55,"min":0,"rarity":4,"name":"Exposure","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-LQ3WR2NF7seJhRie2qhEutDWR1Nutci2WbwBzWZFyF-Fetka_ltbgM7nh5AKKiYoRmXr73H4b7ilvsekcEf1y88bI5DM","stattrak":true,"normal_prices":[245,93,81,86,90],"normal_volume":[339,248,292,89,63],"stattrak_prices":[288,135,98,111,105],"stattrak_volume":[93,144,137,49,52]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a4s2tabZvL_6sCG6SxPxJvOhuRz39lh9w42SGzI2uIijBPAIoApEjEe5f5hG9w9LvMOm37lePjYNCyCz43DQJsHigSNbmtg","normal_prices":[18,15,0,0,0],"normal_volume":[1380,152,0,0,0]},"704":{"index":704,"max":0.8,"min":0,"rarity":4,"name":"Arctic Wolf","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbQ5dc-EBm6ExNFwse9ucCW6khUz_WiGzY6pJyjCZwN1A5p5Q-MCuxa7ldW0Ne3ntQHW2YpFmSv63S1B73t1o7FVFkKgM50","stattrak":true,"normal_prices":[399,78,34,51,31],"normal_volume":[353,403,328,62,81],"stattrak_prices":[350,124,56,62,57],"stattrak_volume":[178,220,194,29,57]},"725":{"index":725,"max":0.55,"min":0,"rarity":3,"name":"Day Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2sZKtiLc-BC2OvzedxuPUnGHDmxEl-5mWGzYysdiifP1dzDZMmQe9ZsBnrl9yzZOPrtQTaj9lAxDK-0H1hFDwwPA","normal_prices":[9886,7552,7202,7080,10335],"normal_volume":[43,25,21,2,1]},"778":{"index":778,"max":0.5,"min":0,"rarity":1,"name":"Facility Dark","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2sZLFoMOKaAHOvw-JjtfNsSxa_nBovp3PVnN_7JyjDOgciWZRyQudf5hjrwYHnNOjl4gKN2YtNmXj5iS5Lvys5_a9cBlkwYg2r","souvenir":true,"normal_prices":[4,1,1,2,1],"normal_volume":[899,1384,1695,732,45]},"802":{"index":802,"max":0.5,"min":0,"rarity":5,"name":"Momentum","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSIeKBAXCD_uJ_t-l9ASzrx0txsWiBydv4JCmSaFdzDJt0TOYN5hbtwYWzNerl5QeIj4IXyX3gznQeadzF8t4","stattrak":true,"normal_prices":[1057,486,455,495,485],"normal_volume":[226,477,320,31,40],"stattrak_prices":[1507,680,595,577,626],"stattrak_volume":[112,143,106,17,16]},"851":{"index":851,"max":0.4,"min":0,"rarity":4,"name":"Moonrise","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s27ZbQ5dc-eAWie0-dltd56WiegkAkYvzSCkpu3IHzGbQFxCMByE7MJsxC6w9ayN-3ntgPf3YtGmX6tiyxM6X1pt-cCUr1lpPMz7bPahA","stattrak":true,"normal_prices":[221,68,51,92,0],"normal_volume":[732,628,195,61,0],"stattrak_prices":[247,116,69,205,0],"stattrak_volume":[253,123,94,31,0]},"879":{"index":879,"max":0.08,"min":0,"rarity":5,"name":"Fade","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1a7s2oaaBoH-WeHlicyOl-pK8_HHzmzU52sTjWntegc32faAR2DMEkELMI4xmxw4G1Yrnn4FCM3d4Q02yg2U-vv27j","souvenir":true,"normal_prices":[23488,72000,0,0,0],"normal_volume":[79,3,0,0,0]},"90":{"index":90,"max":0.8,"min":0.06,"rarity":1,"name":"Mudder","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1T9s2jZ7B5LPWXMXSRz-pJvOhuRz39wUR1sWqGm9v7IC_FPQclCJp5E-YD4Bbum9axM7_l4VCKi48Qy3793zQJsHiVhPnxlA","souvenir":true,"normal_prices":[102,3,1,1,1],"normal_volume":[312,453,2113,75,115]},"916":{"index":916,"max":0.8,"min":0,"rarity":4,"name":"Plastique","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1Y-s27ZbRSIv-eDFicyOl-pK8_Hn_hxh91sWrVyN-rI36XZwIoWJZ3FrMJ50XtxoLhZL625lCM2YxH02yg2Yusl7aN","stattrak":true,"normal_prices":[394,122,46,73,49],"normal_volume":[227,144,96,49,86],"stattrak_prices":[592,215,81,156,87],"stattrak_volume":[38,92,147,29,51]},"93":{"index":93,"max":0.8,"min":0.06,"rarity":1,"name":"Caramel","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1I4M2tabZsLfWfMWuZxuZi_rgxTXGwkBt36juDnI36dXrFOw5yC5ciF7YPsUbuld22Zb-x4lCP34tbjXKpx97cZGE","normal_prices":[6481,1287,1149,1056,1203],"normal_volume":[11,73,52,7,29]},"990":{"index":990,"max":0.7,"min":0,"rarity":4,"name":"Gold Bismuth","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkk4a0qB1c_M27ZbRSJ_-fCliSyP17pfVhcCW6khUz_Wrczt__dn3GbVR0D8dxEOAMsxW9lofkMum04w3eg4kXzy6q339BvHx1o7FVa_qMENU","stattrak":true,"normal_prices":[2036,775,322,451,266],"normal_volume":[158,101,182,14,19],"stattrak_prices":[1274,737,394,419,405],"stattrak_volume":[46,44,50,8,22]}}},"25":{"name":"XM1014","sticker_amount":5,"type":"Weapons","paints":{"1021":{"index":1021,"max":0.5,"min":0,"rarity":4,"name":"Ancient Lore","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RaapuKfWdGliHwPx7j-1gSCGn204k626ByIqteX-TbAQjCcAhRbFcsUK5ktbhYb_j5VePi4JMnyX4in5XrnE8pNPbCik","souvenir":true,"normal_prices":[9631,3276,3256,18748,8330],"normal_volume":[47,11,5,1,1]},"1046":{"index":1046,"max":0.9,"min":0,"rarity":5,"name":"XOXO","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMXeFz-VJvOhuRz39xE8j5GXQztepd3OUOwJ2C5JwELYKsULslobuY-7htlDditkUnyn73zQJsHgY6bTDGg","stattrak":true,"normal_prices":[1702,474,311,292,298],"normal_volume":[230,469,982,102,172],"stattrak_prices":[2744,763,366,416,405],"stattrak_volume":[66,121,169,36,65]},"1078":{"index":1078,"max":0.55,"min":0,"rarity":1,"name":"Blue Tire","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_OKRfK1_Jc-HHGKRxdF0vPRscCW6khUz_T7Vydn7dS6UZ1ciD8YhE7Je4Rm-l4bjN-mxtVaPi9lMxSqqjy9B7Xx1o7FVHG_KYuo","souvenir":true,"normal_prices":[306,96,63,100,155],"normal_volume":[104,86,21,1,25]},"1103":{"index":1103,"max":1,"min":0,"rarity":3,"name":"Watchdog","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk6OGRcKk8cKHHMXCR1e1-tO5ucCW6khUz_W2Dz9ehdHuWZwN2CJd0EOYDt0LpxNG2Zr6w4w3ei48UyC2riCJN6Sl1o7FVTxWp7to","stattrak":true,"normal_prices":[629,249,153,117,103],"normal_volume":[131,137,79,25,41],"stattrak_prices":[2276,486,282,184,176],"stattrak_volume":[84,76,49,30,36]},"1135":{"index":1135,"max":0.5,"min":0,"rarity":4,"name":"Zombie Offensive","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RcKlSOv-eDG6V_uFwtuRnXCClkCIrujqNjsGqdnzEOFUjW5omROQNt0LuwNKyYeKwslfYiN0Qmyr83Hsd6iZj5esAT-N7rRccpDyZ","stattrak":true,"normal_prices":[116,55,48,50,49],"normal_volume":[1948,950,1671,209,131],"stattrak_prices":[131,56,49,45,52],"stattrak_volume":[456,230,461,52,55]},"1174":{"index":1174,"max":0.799353,"min":0,"rarity":3,"name":"Irezumi","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk9___OPU5H_mBC32FzOdJvOhuRz39k0h14juBztapc3-fPVIjWZomFucMtxe9m9zmNOjltQ2N2dgTnCr_3zQJsHjkNdtnHQ","stattrak":true,"normal_prices":[34,11,5,5,5],"normal_volume":[921,658,721,28,133],"stattrak_prices":[70,18,8,9,6],"stattrak_volume":[230,484,441,49,26]},"1182":{"index":1182,"max":1,"min":0,"rarity":3,"name":"Mockingbird","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk9___OPU5H_2cDWyZz-l0ufNtcCW6khUz_T-AnNagJH3FbwQnCsEmTeEMs0aww9biMby3tleKjtkQmSX-2yMfv311o7FVNa3OfdQ","stattrak":true,"normal_prices":[90,14,6,5,5],"normal_volume":[390,590,962,41,40],"stattrak_prices":[138,19,8,6,7],"stattrak_volume":[127,129,392,107,205]},"1201":{"index":1201,"max":0.746575,"min":0,"rarity":3,"name":"Run Run Run","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk9___OPU5H_aBC26XyfpJvOhuRz39xkh_5DjRmYr8IHyXZlIjX8NxQrQJ4xSxk9flZL-0sgOIi4NGySishjQJsHhKqh3UFQ","souvenir":true,"normal_prices":[512,75,22,18,17],"normal_volume":[1255,438,813,81,119]},"1215":{"index":1215,"max":0.7,"min":0,"rarity":4,"name":"Solitude","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2tYJtgL-WdGmaZz_1JvOhkRj22kSIzujCApYPwJiPTcAAhDMN2TecI4Rbsld3jN7zr5ATc2o1CnCitj3tKu3to4e8FBaom-KXJz1aWwa05Mw8","normal_prices":[4325,315,72,109,47],"normal_volume":[447,1042,1666,91,230]},"1254":{"index":1254,"max":1,"min":0,"rarity":1,"name":"Hieroglyph","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMXeYwPx3v-lWQyC0nQlpsj7UwoyveCqROwRyC5cjQO8N5kSxlNKzN-O24QGL345BnniriXxP6jErvbhMqiQO1A","souvenir":true,"normal_prices":[95,14,5,3,2],"normal_volume":[243,29,305,171,134]},"1267":{"index":1267,"max":0.6,"min":0,"rarity":2,"name":"Gum Wall Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-urV6B_KeCDF1iTwON5j-1gSCGn20l34WvTzd6vd3PDPVRzDpJzFucLu0S8kNDjMOO04gDd3thByy_223hXrnE8nLj3yx8","normal_prices":[22,5,1,2,1],"normal_volume":[321,612,993,59,59]},"1287":{"index":1287,"max":0.6,"min":0,"rarity":3,"name":"Copperflage","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-aRa6t9MPWBMWKUxutlj-1gSCGn209ztj_Wz9uvcHqWPwRzWJskEOIMtBaww9ayM-zm5QfZ399GySj52ihXrnE8Uj-RCug","normal_prices":[56,21,8,8,7],"normal_volume":[875,524,348,36,81]},"1333":{"index":1333,"max":0.6,"min":0,"rarity":1,"name":"Canvas Cloud","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRa6hiNfSsDWadztF6ueZhW2fgwhghtm3SzN6qcS6fbwV1DpV5QO8P5kTulIW0P7vj4ATbjdlEm3iokGoXuQMfRK1o","normal_prices":[3,1,1,1,1],"normal_volume":[641,352,832,177,161]},"135":{"index":135,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Perforated","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_OKRfKV9Jc-XAXOD_vtksuBncCW6khUz_WrRnNugIHuUOld1W5JzE-MM5BLtmt3lML_rsgOLgt8XnCmr2HlA7np1o7FVfDpLkjE","souvenir":true,"normal_prices":[3864,358,158,219,219],"normal_volume":[5,35,15,5,8]},"1381":{"index":1381,"max":0.6,"min":0,"rarity":2,"name":"XoooM","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2rV71oLPycGViIzNF6ueZhW2fhkEpz5T7dw9-tJ3-Rb1cpD8chR7JZuxXsloe0Ybux4VDY2N1CnH6vkGoXuebNu3Fx","normal_prices":[18,7,2,2,1],"normal_volume":[1598,706,266,33,46]},"146":{"index":146,"max":0.75,"min":0,"rarity":4,"name":"Monster Melt","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRZ7JoMuCSHXSvzOF4o_VsXTqMjRAYvzSCkpu3JXqTOg8gDcYhROQDsxPux9bjYezm5waM2YlGnHn22y1BuiY45ewCBL1lpPOtgL12Pw","souvenir":true,"normal_prices":[1009,412,216,221,160],"normal_volume":[630,696,810,54,165]},"166":{"index":166,"max":0.8,"min":0.06,"rarity":3,"name":"Blaze Orange","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRYLFjNPWBMWWcwPRzj-57Tie0kCIrujqNjsGtdSiVbVBxCpJ5QuFbsUPpk9G2Mb6ztAza2IhDzyuojitB7Ck5tuxTT-N7rSTH9lIp","normal_prices":[21995,3794,1797,1746,1742],"normal_volume":[7,6,12,11,8]},"169":{"index":169,"max":0.8,"min":0.06,"rarity":2,"name":"Fallout Warning","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_OKRZrFmJeOHHG6AxNF7sfNmQCeMmRQguynLn46odi3FblMmDpQlFu4KsRa_mtHhZby25wTbg9pMmC2qhy0d7y9tt_FCD_Qn1tAvmg","souvenir":true,"normal_prices":[11299,3741,1168,2318,1061],"normal_volume":[5,24,36,6,2]},"205":{"index":205,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2RYrFjJ_yWMWWCwPh5j-1gSCGn20wi5jnRntiucnPEagN2WMZ2EecMsxPplNHjYbyz7waM2dgQmyr-3ChXrnE8eSu-DEQ","normal_prices":[7367,1108,454,438,504],"normal_volume":[3,16,43,16,10]},"238":{"index":238,"max":0.5,"min":0,"rarity":3,"name":"VariCamo Blue","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRfqV_KfOSA2ivw-Jjtd5lRi67gVN0tmTdyN-gJy2fb1AjCcFzFOYDu0btxNDkYr_k4APXg4JNxXn32n5L8G81tKBcQXWQ","souvenir":true,"normal_prices":[1914,1173,558,1518,1458],"normal_volume":[21,6,15,6,2]},"240":{"index":240,"max":0.6,"min":0,"rarity":2,"name":"CaliCamo","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRfqV_KfOSA2ivxetltfN9cCW6khUz_TuGmI2odiqUaVN2A5IkFuJZtRjrldDkNLiw4ADc2o1Emyj72yxM5ix1o7FV5bllY3w","souvenir":true,"normal_prices":[27,18,9,9,9],"normal_volume":[240,212,10,20,79]},"314":{"index":314,"max":0.5,"min":0.03,"rarity":4,"name":"Heaven Guard","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMW-VwPhzvt5uWiihkSIrujqNjsH7cHLFPwd1WZsiFrJYuhC4lNTuNu3n5ASN3YxEniStjSMa6H45675UT-N7rZnbv6eE","stattrak":true,"normal_prices":[1644,782,540,694,699],"normal_volume":[23,74,26,26,14],"stattrak_prices":[2221,1062,704,733,852],"stattrak_volume":[9,39,61,2,11]},"320":{"index":320,"max":0.5,"min":0.08,"rarity":3,"name":"Red Python","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRe6psK_WABW6e_vxztN5lRi67gVN05G3dyt77dXjBZ1MpWJQmReRbthbpxNDvZb6x4AOP2oMRz3_42ntJ8G81tDf1ocTs","stattrak":true,"normal_prices":[0,456,309,387,294],"normal_volume":[0,71,48,18,1],"stattrak_prices":[0,503,181,255,245],"stattrak_volume":[0,30,34,35,2]},"348":{"index":348,"max":0.56,"min":0,"rarity":3,"name":"Red Leather","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRZKFsNPiWHFiIzL8m4bVWQyC0nQlp4WTQytf_IHqRagInCJN5QOYD50W_w9XnZeLm5wWLgt5FnCmoin8b7jErvbjJCtb1Lg","normal_prices":[6710,4910,4202,0,5453],"normal_volume":[24,24,2,0,2]},"370":{"index":370,"max":0.6,"min":0,"rarity":3,"name":"Bone Machine","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RZrFuLPWSHFiDyvt6vPI4cDG-xE125wKJk4jxNWWSbgApXpBzRbFfsEXrlNyyMOKx5lSNgt5FySSohy9OvCZr5uYHA_F35OSJ2NlEZ-xJ","souvenir":true,"normal_prices":[2440,1985,1701,1725,1610],"normal_volume":[100,31,30,7,1]},"393":{"index":393,"max":0.5,"min":0,"rarity":5,"name":"Tranquility","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMWSR0-disfJWQyC0nQlp5zjWnNigIC-falMlWMN2F-cP5Ba-xoXlMri0swTZg41EyX34jS1LuDErvbgNI5zBZg","stattrak":true,"normal_prices":[2951,1144,930,948,1105],"normal_volume":[157,152,50,8,6],"stattrak_prices":[7618,4364,2691,2442,3053],"stattrak_volume":[56,40,14,1,1]},"407":{"index":407,"max":0.5,"min":0,"rarity":3,"name":"Quicksilver","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMXSZxuJ3j-1gSCGn20oksGTXy4yrIC3GbwYpCJF1RuQMtkG-koCyNO22tVSIiY1GxXn6iyhXrnE8nW2Det4","stattrak":true,"normal_prices":[147,42,33,33,35],"normal_volume":[214,107,71,23,26],"stattrak_prices":[125,80,43,69,76],"stattrak_volume":[53,89,41,54,27]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORaqh4JfSsAm6Xyfo4s7NrFnmylk114jiBnNn7cC7GaFcgC5pxEbZe5kTslYG0N7625laN2JUFk3tWvCSOkg","souvenir":true,"normal_prices":[75,19,3,2,3],"normal_volume":[255,218,305,71,164]},"505":{"index":505,"max":1,"min":0,"rarity":3,"name":"Scumbria","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMXST1ON0ouhocCW6khUz_WWEnNyvcymfalB0DZd4FOEDtBnrl9LiN-3i7gPWj9hBxCusiClP6iZ1o7FVjZ8JfoU","stattrak":true,"normal_prices":[205,58,24,14,19],"normal_volume":[48,133,120,34,89],"stattrak_prices":[367,79,26,31,33],"stattrak_volume":[36,42,87,35,45]},"521":{"index":521,"max":0.65,"min":0,"rarity":4,"name":"Teclu Burner","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMW-f1dFkv-VWQyC0nQlptj_Tn9v4J3zEbVIjCZEkELRcska_x4DmNumz4QHWjYtNxSSqjSNAuzErvbjrIzaCAA","stattrak":true,"normal_prices":[550,196,98,138,118],"normal_volume":[128,164,140,47,54],"stattrak_prices":[785,537,240,378,355],"stattrak_volume":[62,51,85,4,17]},"557":{"index":557,"max":0.75,"min":0,"rarity":4,"name":"Black Tie","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMXSAxO1iovRkcCW6khUz_Wncm4v6dnuVawImXsZzTONcsRK5xofkYeywtgWKioNDxCX9in8cvy91o7FVLrGdyvk","stattrak":true,"normal_prices":[712,183,101,103,101],"normal_volume":[318,106,274,21,47],"stattrak_prices":[1165,445,154,188,155],"stattrak_volume":[61,78,150,6,33]},"616":{"index":616,"max":0.5,"min":0,"rarity":3,"name":"Slipstream","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRcKk8cKHHMWGCwO1ise1WTSWmkCIrujqNjsGrdn-WZw51ApR5FO4K5xDuk9O0Zunm5lGIio4Rnn2rjyhA7Cw_se1WT-N7rYJQ1fMT","stattrak":true,"normal_prices":[65,28,21,21,19],"normal_volume":[261,101,133,35,28],"stattrak_prices":[135,87,31,46,42],"stattrak_volume":[127,98,261,29,57]},"654":{"index":654,"max":0.5,"min":0,"rarity":4,"name":"Seasons","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKlSLPWSCFiWwOpzj-1gSCGn200i6mvRn4mpdCiVblRxDJd3FuILuxi7ktHuNb-04wzW2dpGzin-2ihXrnE8PcTco88","stattrak":true,"normal_prices":[310,143,122,161,124],"normal_volume":[383,338,522,43,21],"stattrak_prices":[470,284,271,222,252],"stattrak_volume":[117,122,106,19,15]},"689":{"index":689,"max":0.72,"min":0,"rarity":4,"name":"Ziggy","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7uORcKk8cKHHMX2Zxulvj-BnTjuwnQQYvzSCkpu3In6XPA4lAsZ5E-JbukWwwd3nY-zn4gLe2thNmCiv2ixK6SZs5ucHVb1lpPO5jVz-xA","stattrak":true,"normal_prices":[406,100,83,90,86],"normal_volume":[271,207,266,52,93],"stattrak_prices":[381,161,104,156,113],"stattrak_volume":[123,87,171,16,53]},"706":{"index":706,"max":0.7,"min":0,"rarity":3,"name":"Oxide Blaze","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMWiIyOpzj-NlTjO2qhEutDWR1N-tJ3zDOFAoDZMhRrNbsUa_x9fuMrvrsgDW3YJGxHn22ixO6C9j5uscEf1ygXv9Ksw","stattrak":true,"normal_prices":[39,13,11,10,8],"normal_volume":[185,140,500,23,67],"stattrak_prices":[70,18,8,20,9],"stattrak_volume":[157,87,195,20,40]},"731":{"index":731,"max":0.6,"min":0,"rarity":2,"name":"Banana Leaf","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-uRZKFsJs-UHGKVz9F6ueZhW2e3zRlxsTvVzdqpdy6eOwF0X8ciQOcD5hjqwNLmNu7isQHfjY1Cz3mvkGoXuYSrXADo","normal_prices":[1993,1212,1174,1637,1163],"normal_volume":[87,25,75,5,21]},"760":{"index":760,"max":0.5,"min":0,"rarity":3,"name":"Frost Borre","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RY6piNOOsHW6c1-tkj-1gSCGn20V05W2Dw9v8ICjGbQMkWJd4TedZtRGxkNDnNOjqsgGN34MXxX76jH9XrnE82FMLyIU","normal_prices":[13441,10912,9382,10618,15829],"normal_volume":[57,19,14,3,4]},"821":{"index":821,"max":0.37,"min":0,"rarity":4,"name":"Elegant Vines","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RZat_L8-HC3-EyOJzj-N7Ri67gSIrujqNjsGqJX3BagJxDcFwROJbtkLpltHlNOPi4AyLjN8UxX33hypK6Hw_se0GT-N7rUzICquq","souvenir":true,"normal_prices":[4995,1938,2094,0,0],"normal_volume":[100,48,32,0,0]},"834":{"index":834,"max":0.6,"min":0,"rarity":3,"name":"Halftone Shift","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk5-aRe6xsMPWAMX-dkL4n5N5lRi67gVN24GnSm9b9cHrGOg8hCpMmRLMC4xftwdPkYbvq5gzZio4UnC_6iy5L8G81tJrSBQ92","normal_prices":[291,167,105,157,118],"normal_volume":[362,274,398,21,26]},"850":{"index":850,"max":0.65,"min":0.14,"rarity":5,"name":"Incinegator","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMW6ewud4tfNoWyahqhEutDWR1NuuJXqWO1d0CsdyE-9ctxPpkYDmYr6zsgKLgt5NnC33in9B7idi4u8cEf1ypt9Mlvk","stattrak":true,"normal_prices":[0,4264,526,546,518],"normal_volume":[0,41,685,50,48],"stattrak_prices":[0,6405,590,702,605],"stattrak_volume":[0,10,163,26,26]},"95":{"index":95,"max":0.8,"min":0.06,"rarity":1,"name":"Grassland","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2Rb7ZsM-OfD2mU_uJ_t-l9AXq1lxsh5mqDm4qodXyVOgUgW5MjRu8CtEPrldHmPrnm4lbZiY1Az3jgznQeEo4wiRY","normal_prices":[7760,677,266,525,378],"normal_volume":[17,36,43,5,23]},"96":{"index":96,"max":0.8,"min":0.06,"rarity":1,"name":"Blue Spruce","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk_P2RZat-M8-fB2CY1aAg4OU7S3rkkE115WqEyN2rcnqXOwNyAsMhFuUP4UO4l920M-O0s1GNlcsbmkmuSLNg","souvenir":true,"normal_prices":[142,5,1,2,1],"normal_volume":[121,680,545,1026,83]},"970":{"index":970,"max":0.5,"min":0,"rarity":5,"name":"Entombed","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7OeRcKk8cKHHMWad1OJzpN5rQzy2qhEutDWR1N-hI3yWbVRyD8YiEOVZ50TqmoKyZb7rtVfWgosQzX7-3X9K5yc4tr4cEf1yVvkijss","stattrak":true,"normal_prices":[593,372,328,306,297],"normal_volume":[670,815,1560,42,33],"stattrak_prices":[943,552,445,473,480],"stattrak_volume":[206,245,229,24,15]},"994":{"index":994,"max":0.65,"min":0,"rarity":1,"name":"Charter","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLpk8ewrHZk7v-RabF5KP-BB3OJ_uxkv_ZncCW6khUz_W3Tw9ypcXmSbwQoC5IlRbRZ4RK5wNLlNeq04AbXjopHnC_8hyoY7C11o7FVhjRGDrg","normal_prices":[149,95,81,85,83],"normal_volume":[371,532,351,82,92]}}},"26":{"name":"PP-Bizon","sticker_amount":5,"type":"Weapons","paints":{"1083":{"index":1083,"max":0.44,"min":0,"rarity":2,"name":"Breaker Box","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a7s25YbZkLvesAm6Xyfo45-c-SXvhzUl352rSm9eqdS3DPQBxCJMjQuBYtRDsmtDmM77i51HcjpUFk3uv8knCxA","souvenir":true,"normal_prices":[435,326,217,644,0],"normal_volume":[62,37,9,1,0]},"1099":{"index":1099,"max":0.77,"min":0,"rarity":3,"name":"Lumen","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1c_M2sYb5iLs-VAmaDyetkj-1gSCGn209-4mzRn9irIimXOFRzCpAhQORYu0bqw9HhNuix4Aba2opCznr72ipXrnE8UpZyTdo","stattrak":true,"normal_prices":[516,176,65,71,51],"normal_volume":[127,76,122,27,52],"stattrak_prices":[458,224,82,103,76],"stattrak_volume":[62,66,77,19,57]},"1125":{"index":1125,"max":0.67,"min":0,"rarity":4,"name":"Space Cat","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-AHmaTxO13pN5lRi67gVN04jvcmYv6IHnGbw51XsYmQO5ftBG9xoexNrix4gPYjIJEzX_2iX9I8G81tOIzQC5J","stattrak":true,"normal_prices":[130,62,51,49,47],"normal_volume":[1332,887,3027,264,341],"stattrak_prices":[156,69,47,48,50],"stattrak_volume":[355,174,709,50,121]},"13":{"index":13,"max":0.8,"min":0.06,"rarity":4,"name":"Blue Streak","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s29eKhsNOSWHFicyOl-pK8-Hyzjx0t1sWjdy4v_dXyVaFcpC5ElTO4OsxSxkILjYu3k5wKM2dlG02yg2QMXfH6m","stattrak":true,"normal_prices":[1538,440,274,329,295],"normal_volume":[51,94,65,20,22],"stattrak_prices":[4358,673,381,486,432],"stattrak_volume":[10,73,87,17,28]},"1325":{"index":1325,"max":0.6,"min":0,"rarity":1,"name":"Wood Block Camo","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s25Z6tpH_eBD26e_u13ve5WXSy3qhEutDWR1NyucS6XPQMmD5p1ELYC4EG5xoCxMezktgHZjoJDnH342ChLu3k5sO4cEf1y1FpRu8Y","normal_prices":[5,2,2,2,2],"normal_volume":[204,19138,746,45,108]},"1374":{"index":1374,"max":0.58,"min":0,"rarity":1,"name":"Bizoom","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9veRa6V_H-eBD3evw-dsv-9WQyC0nQlp6zzdzI6rIHOealMiCJolEOVb5EPrx9PuN7_i5lHW2d9NySj2jy9N6DErvbhOwQNAJg","normal_prices":[2,1,1,1,2],"normal_volume":[1204,451,1085,43,41]},"1392":{"index":1392,"max":0.6,"min":0,"rarity":1,"name":"Thermal Currents","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9veRb6FiIvmBCnSv0vt4ouh6Sha_nBovp3PRmdysdHLCZwUjDsB1FOcJ4BW4mobhZu3q7wyKj4MTzCj2jHhJu30-_a9cBrr9UcuO","normal_prices":[3,1,1,2,1],"normal_volume":[953,326,594,14,87]},"1418":{"index":1418,"max":1,"min":0,"rarity":3,"name":"RMX","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Z5uihZpt_LeisAm6Xyfo45OI7S37gwEhx4WiGnt_8eS2RPw4nX8AkTeNftkS8ltLkNePj5gyI3ZUFk3vfJ75LcA","stattrak":true,"normal_prices":[124,24,10,7,6],"normal_volume":[459,458,324,61,72],"stattrak_prices":[242,79,31,22,19],"stattrak_volume":[154,180,173,78,69]},"148":{"index":148,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dashed","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_826abRoH-ObAXWE_v13vuVWQyC0nQlp62XcyNygJCrDawR1WZIlQ7QL4xS_wNblPu_h7gOP3oJHynr8iHhK6zErvbioPrlsUA","souvenir":true,"normal_prices":[139,2,1,1,2],"normal_volume":[116,259,520,62,1512]},"149":{"index":149,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Dashed","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_826abRoH-ObAXWE_vtksuBncCW6khUz_TuAmdesJH2UPVUoDZF1QLQM4xW4l4XvNuLh71bb3d0Qnnitjn5A5yl1o7FVE2UWbJk","souvenir":true,"normal_prices":[139,4,1,2,1],"normal_volume":[60,110,358,203,97]},"159":{"index":159,"max":1,"min":0,"rarity":3,"name":"Brass","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a_s2seqV-M8-fB2CY1aAl5LhsTnuxlEV24WncyI74IiqQZ1IpCsZxQuAP5xa5xIXuM7635gHYlcsbmmbf3gmt","souvenir":true,"normal_prices":[397,44,14,8,7],"normal_volume":[497,823,632,98,44]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":3,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2mfap5JeKsA2iUxPx4j-1gSCGn20Ul6mrVzon8IC7FbQ4mX5pwF-QC5xO8ldfiM-vgsVPXjo5GxHqqjihXrnE8j2angJE","normal_prices":[23955,4890,1868,1899,2103],"normal_volume":[6,10,7,3,2]},"171":{"index":171,"max":0.8,"min":0.06,"rarity":1,"name":"Irradiated Alert","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_82gfa9oM-SBB3eV_uxkv_ZncCW6khUz_TvSzNj7c3vGO1AnWJpzFrVf4UO8m9zkP-637gzej4NDnnqr2HlAvyl1o7FVWICpUPY","souvenir":true,"normal_prices":[3306,540,276,611,300],"normal_volume":[14,28,39,8,8]},"203":{"index":203,"max":1,"min":0,"rarity":3,"name":"Rust Coat","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a_s29fKFoLM-RHGaGztF6ueZhW2fnxU904mnQy9atcXPDbgAmXsNyQe5Ysxi6moHuN-_m4g3eid9Czn2rkGoXuZcB6ljd","normal_prices":[4253,1355,1580,1516,1842],"normal_volume":[6,2,3,5,23]},"224":{"index":224,"max":0.5,"min":0,"rarity":3,"name":"Water Sigil","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s25abBoMs-QHGKD1dF6ueZhW2frwRwh4j7VwoqpdHyWPQcgCpd2TbFYsxC-l4a0Pu2ztA2NgtkUzST-kGoXuZ4FYcbA","stattrak":true,"normal_prices":[603,299,215,280,236],"normal_volume":[89,12,38,35,4],"stattrak_prices":[479,384,275,465,1300],"stattrak_volume":[129,55,78,2,4]},"236":{"index":236,"max":0.6,"min":0,"rarity":2,"name":"Night Ops","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s24abZkI_GeAVieyOl-pN5lRi67gVMk4Gvdy439eS3DPFUgXpp3Qu5btESxm4LnZbmxtAPdg90WmySqinxN8G81tMa6T4nf","souvenir":true,"normal_prices":[41,10,3,9,5],"normal_volume":[200,95,243,20,74]},"25":{"index":25,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Leaves","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_82ibaV7JeOsAm6Xyfo45bU-Hi_gkRl-t2mAw937Iy3FPQF2DJpxQOADsBawloC0Yr_m41GIiJUFk3v_uUXI3A","normal_prices":[12794,660,284,357,303],"normal_volume":[2,22,25,18,2]},"267":{"index":267,"max":0.45,"min":0.05,"rarity":3,"name":"Cobalt Halftone","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a4s26fbZ8L_mAC1iYwOJwpO5nSha_nBovp3PTnN79IH-fZw5xW5V4RrJYtRHpmtzkM-K04laIidlDz376jHhB5ixj_a9cBqXoycG_","stattrak":true,"normal_prices":[1506,146,121,121,0],"normal_volume":[13,114,126,5,0],"stattrak_prices":[421,138,96,146,0],"stattrak_volume":[44,215,89,14,0]},"293":{"index":293,"max":0.5,"min":0.08,"rarity":1,"name":"Death Rattle","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2gbbZiJPmSMWuZxuZi_rNrHCjkw09_5mzUz4uudSrEb1QiWcd0RLMDsEK7kILkMO2071aLj41bjXKpFxy7d4g","normal_prices":[0,195,82,79,65],"normal_volume":[0,260,446,80,64]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I4M28baBSLPmUBnPemO105rI6SirhzRwi6zjWzd2uJCmfaFByApMiRbNcuxC_k9TgZb_qthue1dzUHyay4A","souvenir":true,"normal_prices":[18,8,8,0,0],"normal_volume":[2607,1894,639,0,0]},"306":{"index":306,"max":0.5,"min":0,"rarity":4,"name":"Antique","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-SAHOZ0Ptzj-1gSCGn20sj4DnTyN2pdyjFOg4oXJV5Qu5c5xS9w4bjNL7q7gHd2INGxCn_iyxXrnE83Efvvd0","stattrak":true,"normal_prices":[1223,690,574,568,688],"normal_volume":[93,67,54,23,13],"stattrak_prices":[1455,916,647,810,1104],"stattrak_volume":[62,60,61,10,4]},"349":{"index":349,"max":0.5,"min":0,"rarity":4,"name":"Osiris","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLr2cHW6CyP1JvOhuRz39xUxx6jiBz42rIHjBbAcnWZcjROcJsxjtmoXmNe_k5QHajtlNyC2r3zQJsHh050JUDA","stattrak":true,"normal_prices":[285,189,182,186,223],"normal_volume":[423,355,241,40,39],"stattrak_prices":[383,254,172,164,257],"stattrak_volume":[214,239,81,18,12]},"376":{"index":376,"max":0.9,"min":0,"rarity":2,"name":"Chemical Green","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I4M2peqF0H_6GDWuVwPxJt_NsSieMlxQ9vDO6lob-KT-Jbg8oW8R0TeALsxbql4K0Prjg5g3c2oJCyXn7jXkf73lq5O0GBfYm8rqX0V9pS7L6MA","souvenir":true,"normal_prices":[2212,562,381,228,294],"normal_volume":[140,84,27,8,29]},"457":{"index":457,"max":0.8,"min":0,"rarity":1,"name":"Bamboo Print","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2saalvL_-sBHKexuJzj-hnRBa_nBovp3OAm9qhc3ySOlVxXJQkEeZf5BK9k4LhM7vqsVbWgosRmHmrj3lMvyZs_a9cBpyTCsd5","normal_prices":[1858,1161,1048,848,772],"normal_volume":[63,62,48,3,35]},"508":{"index":508,"max":1,"min":0,"rarity":4,"name":"Fuel Rod","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-dAX-Zzvtlj-1gSCGn2xkhsW7Rzt3_c3OePQElW8R3F7IJt0Lrl9e0ZO_r4wHZiINEyij323lXrnE8VjeQjNs","stattrak":true,"normal_prices":[756,209,104,86,90],"normal_volume":[200,253,138,19,76],"stattrak_prices":[940,346,178,141,143],"stattrak_volume":[98,98,126,45,49]},"526":{"index":526,"max":1,"min":0,"rarity":3,"name":"Photic Zone","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-QB3OZ2-t4j-1gSCGn20hw5GXWntf_eH-Wa1MgX5N2EeBc50G_w9HuZL_h4gGLjd8XxX37iHtXrnE8eXv1H4U","stattrak":true,"normal_prices":[401,141,69,36,31],"normal_volume":[148,158,94,12,64],"stattrak_prices":[460,124,56,48,50],"stattrak_volume":[82,120,141,57,53]},"542":{"index":542,"max":0.5,"min":0,"rarity":6,"name":"Judgement of Anubis","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-QG3WDxNF6ueZhW2fkzU0isDvTnomsdS7BbwF0A8ElROJfshC8wN3jYu-2tQ3c2osTxCitkGoXuVioOA3_","stattrak":true,"normal_prices":[10056,9477,9837,10530,10251],"normal_volume":[162,141,179,29,8],"stattrak_prices":[10255,9814,10105,15000,25228],"stattrak_volume":[65,48,65,2,8]},"594":{"index":594,"max":1,"min":0,"rarity":3,"name":"Harvester","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1c_M2-eJtvKeqcAFiYwPxgtfJ9SjuMmRQguynLyd76dSqfZlUoA5dwFOBb5BGxxNDlP-Lg5QKM2IoUyyqv2ixL7ihr6vFCD_SgdFoAow","stattrak":true,"normal_prices":[450,36,30,25,23],"normal_volume":[82,86,49,34,63],"stattrak_prices":[279,53,20,25,21],"stattrak_volume":[54,66,7,63,41]},"641":{"index":641,"max":0.5,"min":0,"rarity":3,"name":"Jungle Slipstream","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2sYb5iLs-HAXWe_ulkteRncCW6khUz_WjQn9msInvFOlIjCZJyFuMKsEG-l4blY-zh5lDWi4lFnCr53S1Juip1o7FVTY_WZWI","stattrak":true,"normal_prices":[80,29,29,26,32],"normal_volume":[217,100,74,9,21],"stattrak_prices":[75,33,31,41,34],"stattrak_volume":[83,91,161,25,39]},"676":{"index":676,"max":1,"min":0,"rarity":5,"name":"High Roller","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-SAmuvyOBJvOhuRz39kEx1smnczomgJX2XbA4hC8BzRe9etxntldblMuyx5wfc2ooWni7_3DQJsHhZ08njvA","stattrak":true,"normal_prices":[3196,1014,882,838,831],"normal_volume":[154,242,276,67,34],"stattrak_prices":[4308,1264,879,913,912],"stattrak_volume":[68,88,108,16,22]},"692":{"index":692,"max":0.8,"min":0,"rarity":3,"name":"Night Riot","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-BB2iE_uJ_t-l9AXqxzUQisWTWz9egc3KWbAJ0XJt5Q7YN5xnuxNDiN7iz4waLgtkWzS7gznQeDJdgNeg","stattrak":true,"normal_prices":[69,13,12,9,8],"normal_volume":[311,231,245,113,102],"stattrak_prices":[78,16,8,11,7],"stattrak_volume":[114,122,212,6,50]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1a4s2tabZvL_6sCG6SxPxJvOhuRz39zEVy62yAmNn4JXOXZg52DcQiTOZb5kbumtGzZOrn4VbX2NpMyyj7jDQJsHiD-oETFg","souvenir":true,"normal_prices":[757,1063,0,0,0],"normal_volume":[67,10,0,0,0]},"770":{"index":770,"max":0.4,"min":0,"rarity":2,"name":"Cold Cell","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I_825abxSMuWRMWWZ2-F4j-1gSCGn2x4i5G3Wytb6dH6RPAByA5tzFOQNsBK9m4K2Nrnm4lfW2t4Rny_53SNXrnE84jRZ-LA","normal_prices":[17,5,3,9,0],"normal_volume":[1140,289,268,108,0]},"775":{"index":775,"max":0.5,"min":0,"rarity":1,"name":"Facility Sketch","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2sZLFoMOKaAHOv1uZ_pORWQyC0nQlptTjWyImvJSnBOgcjCcF2EbMDskLploCzZO-0swfZithGnCWq3X5P6jErvbhS6IbYJA","souvenir":true,"normal_prices":[6,1,1,1,1],"normal_volume":[3370,2524,2252,59,66]},"829":{"index":829,"max":0.5,"min":0,"rarity":1,"name":"Anolis","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1T9s2iYb5sMvSsHWyZz9F6ueZhW2e2xkpytWjTydaqeHKXbAJyApN4QuUOtkG8wNTiMLm3tAKM2Y9Hny75kGoXub_Drj6P","souvenir":true,"normal_prices":[74,40,31,33,30],"normal_volume":[549,298,338,38,58]},"873":{"index":873,"max":0.5,"min":0,"rarity":1,"name":"Seabird","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1I4M2vebFsH-OHA2aCwtF6ueZhW2exxhh-6mWHnI76dn2Sb1MiDsFyQbFZsELtxNTmMerg4VDd2YxAyiqtkGoXuSVM9Bwl","normal_prices":[830,544,513,489,514],"normal_volume":[232,40,77,21,14]},"884":{"index":884,"max":1,"min":0,"rarity":4,"name":"Embargo","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1Y-s2sYb5iLs-BAWaU_vl3ovNgQDuMmRQguynLnt37I3ifb1VyW8F4Te8D4UTrl4GxZru25FTZjI9GnCr5iC4YvSto4PFCD_TYHp-YNQ","stattrak":true,"normal_prices":[2329,426,148,144,140],"normal_volume":[88,86,73,31,51],"stattrak_prices":[2586,756,338,362,282],"stattrak_volume":[39,41,54,22,21]},"973":{"index":973,"max":1,"min":0,"rarity":3,"name":"Runic","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzl4zv8x1c_M2sYb5iLs-bC2uc0-9_tOR7cCW6khUz_WiGm42pJXyUPwFzXJJxRrZf4xS7x4fvN7ix4gHX3o9HzX32hipBuyp1o7FVwd1bSh8","stattrak":true,"normal_prices":[82,15,6,5,5],"normal_volume":[440,848,1436,130,189],"stattrak_prices":[98,16,8,6,6],"stattrak_volume":[318,20,291,207,109]}}},"27":{"name":"MAG-7","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0OG6Z7ZgJuKcAHOvzedxuPUnS3_iwk926m6EnIyvIn3DbQF0X5UjRbJfthewktK2MLzq4ATcgoJCxTK-0H2wBd1PlQ","souvenir":true,"normal_prices":[1781,182,80,85,72],"normal_volume":[11,70,155,90,13]},"1072":{"index":1072,"max":0.37,"min":0,"rarity":4,"name":"Prism Terrace","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0PWrZ6loNOKaDViD1etmo955SiihmSIrujqNjsGrcX3GbAB2AsdyQLMOsESxktPgMOKw7wOMgt4WmSv5jS1M63lpsedRT-N7rVBJ5qCN","souvenir":true,"normal_prices":[6515,4454,4427,0,0],"normal_volume":[58,4,9,0,0]},"1089":{"index":1089,"max":0.6,"min":0,"rarity":4,"name":"BI83 Spectrum","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSIvmAA3KEydF6ueZhW2fml0Vw4mWGnN2udHmSOgAoCJMjQOJY4xK8k9XvPu-x5Qba2N5HzH73kGoXuQbKMJGE","stattrak":true,"normal_prices":[739,210,151,195,185],"normal_volume":[367,321,276,6,24],"stattrak_prices":[871,328,213,285,250],"stattrak_volume":[143,106,133,28,8]},"1132":{"index":1132,"max":0.7,"min":0,"rarity":3,"name":"Foresight","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSMOKWCm6T1eFkj-1gSCGn2xgmsWvRm96seXOfbFMjXJR1R-NY4xjukNLlYurn4QeN3t5CmCT7jHxXrnE8UENGXls","stattrak":true,"normal_prices":[36,10,6,6,5],"normal_volume":[1202,100,2502,103,102],"stattrak_prices":[32,11,7,8,8],"stattrak_volume":[298,19,282,92,88]},"1188":{"index":1188,"max":1,"min":0,"rarity":3,"name":"Resupply","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wi9a6KWRaalgL8-RAX-vzedxuPUnTHjgkxwj52SHyImqcX2fO1AhDMNxEe4I4RWwkIXgMO60sQPeiYgQmTK-0H2GsAjMqQ","stattrak":true,"normal_prices":[87,14,5,5,5],"normal_volume":[422,325,352,184,192],"stattrak_prices":[81,18,8,6,6],"stattrak_volume":[119,313,377,49,159]},"1220":{"index":1220,"max":1,"min":0,"rarity":3,"name":"Insomnia","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSKf6AAWqeyO9JvOhuRz39wh4k4TzUnN_9cC6WO1J2DJdyROcI4BC9x9XmN-vj71eN34xAzC33hzQJsHiziLtbUA","stattrak":true,"normal_prices":[78,14,5,5,5],"normal_volume":[478,640,522,348,253],"stattrak_prices":[85,17,7,6,6],"stattrak_volume":[184,230,275,79,229]},"1245":{"index":1245,"max":1,"min":0,"rarity":3,"name":"Copper Coated","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSJ_-cAmOvzedxuPUnHXDilhh1sGzQy4yscXPCbAcgXpNwE-UJuhjqkNW0Zrm05VDdjIoXyDK-0H3aMMdvcg","souvenir":true,"normal_prices":[1044,261,102,100,89],"normal_volume":[135,142,263,61,89]},"1306":{"index":1306,"max":0.65,"min":0,"rarity":1,"name":"Copper Oxide","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0PW8bb1vLOWWMWuZxuZi_rk6Sn-3lBx04WiEyd6rICjEag8nCZZwRuANsBLpxNfiM-vq5waPj4hbjXKpmkGFhL8","normal_prices":[3,1,1,1,1],"normal_volume":[661,243,803,116,323]},"1355":{"index":1355,"max":1,"min":0,"rarity":3,"name":"MAGnitude","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wi9a6KWRa61_I_yWMWSf0f5zot5lRi67gVN34z_Xwo36J32VPFclWZN3TeUJsxjukNXjYe-0tQTc3oNCyXqrjHgY8G81tEUQW-wE","stattrak":true,"normal_prices":[90,19,9,5,5],"normal_volume":[510,516,278,66,85],"stattrak_prices":[134,43,21,19,14],"stattrak_volume":[160,335,181,42,26]},"171":{"index":171,"max":0.8,"min":0.06,"rarity":1,"name":"Irradiated Alert","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFL0Py7Y6F-NOKaHmKvw_x5p-9WQyC0nQlp5z7dwtr4JHjEawR0W5J5R-INtBPpwdzvMeK24FHZiotBzSWq3SMa5jErvbi6fRO3ow","souvenir":true,"normal_prices":[3348,503,321,281,254],"normal_volume":[9,50,34,6,8]},"177":{"index":177,"max":0.18,"min":0.02,"rarity":3,"name":"Memento","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0PutZ7dsKPWXHGie_uJ_t-l9ASjlzRl34WnUzN6tJy-eOg50C5N1TLYLthaxm4HlZbiz4AXXjNpDmCXgznQeeQk0p-w","stattrak":true,"normal_prices":[612,363,380,0,0],"normal_volume":[80,68,9,0,0],"stattrak_prices":[668,363,825,0,0],"stattrak_volume":[143,46,19,0,0]},"198":{"index":198,"max":0.8,"min":0.06,"rarity":3,"name":"Hazard","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFL0PqvcqV_JM-RHGaGztF6ueZhW2flxR8ksDvcnt_7JC7DaQUgA5FxQe8I50TsmobhMe2041SI2dpFySWrkGoXuaG6AS0C","normal_prices":[15138,3571,2079,2444,2358],"normal_volume":[8,26,14,8,3]},"291":{"index":291,"max":0.4,"min":0,"rarity":3,"name":"Heaven Guard","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSKPWSGGKe_uJ_t-l9AXm1zEol52_cz9z9d3rDb1J0DZdwFOMLtxa4m4W2Zejn5ALc2NhFzyTgznQeMWQmjgI","stattrak":true,"normal_prices":[75,56,53,66,0],"normal_volume":[340,97,138,20,0],"stattrak_prices":[131,58,46,104,0],"stattrak_volume":[271,132,154,16,0]},"32":{"index":32,"max":0.08,"min":0,"rarity":2,"name":"Silver","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNV0OGnZLJoMs-fB2CY1aAm5Lc7SSyxl0t1sj7Wn9ipdXuRZwMkD5NzRbVftkPsx9LvZOjjsgyMlcsbmlF3IVC_","souvenir":true,"normal_prices":[3449,2569,0,0,0],"normal_volume":[147,2,0,0,0]},"327":{"index":327,"max":0.22,"min":0,"rarity":2,"name":"Chainmail","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0PGmaa1jLfGaAlicyOl-pK9tHXnrxUV14Gjcy4yoInmQPQEnD8FwQORb5ELqxtXhNOrm5A3Zjo4R02yg2X61hecA","normal_prices":[2146,1806,1686,0,0],"normal_volume":[101,62,24,0,0]},"34":{"index":34,"max":0.08,"min":0,"rarity":2,"name":"Metallic DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0Oe8aqVjH_yaCW-Ej7ch5bQ_GiqxlBxy422Bwt2seCjEbVMkX5J2R-8J4RPsx9bkNO7jtgLAy9USmH-e5kI","souvenir":true,"normal_prices":[13,15,0,0,0],"normal_volume":[1345,41,0,0,0]},"385":{"index":385,"max":0.49,"min":0.06,"rarity":3,"name":"Firestarter","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFL0P-vb_NSJvmBC2WZ1fpzvt5lRi67gVNyt27dz46scn2TaQ52XpV1E-8I4RLuwIHnMO2w4gfa2NlHmy2ri3xP8G81tFM5kI47","stattrak":true,"normal_prices":[874,317,62,65,110],"normal_volume":[35,26,107,37,45],"stattrak_prices":[1896,236,105,106,114],"stattrak_volume":[12,45,52,32,19]},"39":{"index":39,"max":0.8,"min":0.06,"rarity":4,"name":"Bulldozer","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0OurZKhiN8-fB2CY1aAn4bMxFijqzB5z4WjdnI2vc3nFbFcpCpomR-8NtxK_x9W2MO_k5VDYlcsbmtRYf5JR","souvenir":true,"normal_prices":[20625,3733,1125,1303,1281],"normal_volume":[30,133,138,11,40]},"431":{"index":431,"max":1,"min":0,"rarity":4,"name":"Heat","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSMvWXBmiE_uJ_t-l9AX7nzBsk623dm46odHmUbFd1Dcd2RbINtBXtkNDjMbzj5AGKjt4UyijgznQe8JftFTE","stattrak":true,"normal_prices":[944,201,108,107,100],"normal_volume":[221,315,174,67,89],"stattrak_prices":[1495,371,172,141,142],"stattrak_volume":[78,148,182,62,75]},"462":{"index":462,"max":0.65,"min":0,"rarity":3,"name":"Counter Terrace","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0PWrZ6loNOKaDViD1etmo95uXSy2myIrujqNjsH6InKeOAIgX5smTbMLtka-loflYe7n5wDZjt5AySX7hyhNuns547wBT-N7rTTigBkB","normal_prices":[14285,13521,11346,140000,11800],"normal_volume":[56,16,11,1,1]},"473":{"index":473,"max":1,"min":0,"rarity":1,"name":"Seabird","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0PO_faVSLPmUBnPel-oj5LhsTnniwRx15TmDn9esdXLGPFIlW5QiRuRftEG8xNTgMuLrtRue1dzd1mVtfQ","normal_prices":[945,493,422,418,308],"normal_volume":[81,51,54,68,35]},"499":{"index":499,"max":0.5,"min":0,"rarity":3,"name":"Cobalt Core","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSLemBDWKexNF6ueZhW2fkwBshsT-DntuscSiVbABzD5Z2QuRftRXuwYblY-_i5AePj49Emyn7kGoXuSUXTp8T","stattrak":true,"normal_prices":[162,46,28,26,28],"normal_volume":[268,125,139,24,35],"stattrak_prices":[189,84,42,52,49],"stattrak_volume":[169,84,66,33,18]},"535":{"index":535,"max":0.45,"min":0,"rarity":4,"name":"Praetorian","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSMOKSC3Of0-d3vt5lRi67gVMl5j_VzIr_eSnBbw4iXsR2FLZfsRi6x9LvNOqw4FePid4UmCX2iC1J8G81tOf1qE-m","stattrak":true,"normal_prices":[502,169,157,177,0],"normal_volume":[78,86,62,29,0],"stattrak_prices":[824,462,365,559,0],"stattrak_volume":[77,70,49,13,0]},"608":{"index":608,"max":0.44,"min":0,"rarity":4,"name":"Petroglyph","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSNOKaDGac_uJ_t-l9AXm1kUQl4TzcytqpeSjFagMkW5AiQbZYsEG_mtTnN-jq4AWLidpNnC3gznQeOK4te4s","stattrak":true,"normal_prices":[286,114,86,90,0],"normal_volume":[321,278,95,20,0],"stattrak_prices":[250,111,104,144,0],"stattrak_volume":[140,88,74,28,0]},"633":{"index":633,"max":0.45,"min":0,"rarity":3,"name":"Sonar","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0P-vb_NSLfGfCGiCzNF6ueZhW2fgxEol4TnQyo2qd3qTPwQhD5d0F-YPuhHpwNHlZLvi5VTY3dhAy339kGoXufaFAiYQ","stattrak":true,"normal_prices":[463,45,44,38,0],"normal_volume":[292,150,131,36,0],"stattrak_prices":[108,40,25,43,0],"stattrak_volume":[62,35,72,35,0]},"666":{"index":666,"max":0.45,"min":0,"rarity":3,"name":"Hard Water","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0P-vb_NSI_GGHXOZwtF6ueZhW2eykx534j_VydygIi6fPQJ0DJcmQrIMukK7k9HvZO224FbajI8WnC-tkGoXudK2z8cj","stattrak":true,"normal_prices":[694,613,383,472,0],"normal_volume":[38,17,40,14,0],"stattrak_prices":[677,501,539,554,0],"stattrak_volume":[29,25,12,11,0]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0PGveqZiLs-VB2WV09F6ueZhW2fqlhgm5mzSnNqgdiqSO1AnW5YlR-8Ct0Hqkte0Y7-xsg3d3o9BnCX6kGoXuYaRGffM","normal_prices":[342,359,0,0,0],"normal_volume":[501,64,0,0,0]},"703":{"index":703,"max":0.92,"min":0,"rarity":4,"name":"SWAG-7","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNK0P-vb_NSM-eSCTCvzedxuPUnHirhkxhxtzvRzI38dnLEOlQnW5N1F-FZtRG6kYLvPu205ADaj40RnDK-0H0F4y2tgg","stattrak":true,"normal_prices":[442,107,37,33,33],"normal_volume":[171,227,212,60,83],"stattrak_prices":[772,181,63,67,58],"stattrak_volume":[90,92,157,36,55]},"737":{"index":737,"max":1,"min":0,"rarity":5,"name":"Cinquedea","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSJ_ySHXSvzedxuPUnSijmlh9x4D-BnNyuJ3LCbAVzAsdxFuRe5EPpw9XiMbvh5lHYiYwQyjK-0H3Th2Gpiw","normal_prices":[71866,71479,65597,43831,44765],"normal_volume":[54,11,7,2,5]},"754":{"index":754,"max":1,"min":0,"rarity":1,"name":"Rust Coat","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNK0OG6baFhH_mdCGKCz-FJvOhuRz39kElztWzRn4r9eXqWblAjXpQjRuIPuhm7k4KxYeLisgDfjtlFmSSqijQJsHiheIBpJg","souvenir":true,"normal_prices":[28,2,1,1,1],"normal_volume":[169,841,349,594,700]},"773":{"index":773,"max":0.7,"min":0,"rarity":2,"name":"Wildwood","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU7PqRf61hJOecAWOvzO9x595lRi67gVN36mzTw9v8cnyRaAZ1XMB2E7MPtkS-lYK2YuOx7gTd3dlDziSqjixB8G81tBJWeXuA","normal_prices":[26,6,3,4,3],"normal_volume":[837,386,248,19,107]},"787":{"index":787,"max":1,"min":0,"rarity":4,"name":"Core Breach","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wipC0Py7a6hoIeKsBmiEzvx3vuZscCW6khUz_WzdnoyvIHvGPFJzD8B0QrINshPtw9fmYunrsw2PiNlEnC_5iy5L5y11o7FVg__4LKQ","souvenir":true,"normal_prices":[1536,421,87,96,67],"normal_volume":[114,291,190,72,80]},"822":{"index":822,"max":0.55,"min":0,"rarity":1,"name":"Navy Sheen","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiNW0Pyvfr1SM_iaAGKvzedxuPUnHyu2lh8j5zuBzYv4Iy3FZwJzCJMlQbEL5hO-ltPnP7zmswHY39hAxTK-0H11955Myw","souvenir":true,"normal_prices":[75,32,23,46,44],"normal_volume":[652,395,208,112,156]},"909":{"index":909,"max":0.8,"min":0,"rarity":3,"name":"Popdog","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSMP-DCmiX_uJ_t-l9AXixkBgm5G7VnN-rcn_Bb1UmWcBxFuACtRC5kNC1Zunr5wbdi4hEyn7gznQeG1-SDIY","stattrak":true,"normal_prices":[198,28,38,29,22],"normal_volume":[45,150,64,46,29],"stattrak_prices":[134,23,15,23,19],"stattrak_volume":[52,69,93,5,55]},"948":{"index":948,"max":1,"min":0,"rarity":5,"name":"Justice","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiVI0P-vb_NSKuWAGm6TxNF6ueZhW2fikUt36znWyNz_dn2ROgMhD5EiR7EO5BKxl4DlMLyx7gyNi4hAniz5kGoXuQ9OXJLa","stattrak":true,"normal_prices":[2481,681,518,497,483],"normal_volume":[206,244,506,92,116],"stattrak_prices":[3847,1260,609,619,581],"stattrak_volume":[74,84,120,24,47]},"961":{"index":961,"max":1,"min":0,"rarity":4,"name":"Monster Call","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wiFO0P-vb_NSLf-dHXOV09F1se1lcCW6khUz_WncmIz8JHmTa1JyApd5FLEMsES-kNDhM-3i5QKM2Y5AzSr9jngY6Cp1o7FV7cAHRyI","stattrak":true,"normal_prices":[368,90,40,32,30],"normal_volume":[355,812,644,235,273],"stattrak_prices":[510,160,63,53,56],"stattrak_volume":[142,206,229,109,116]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8n5G3wjFU0OGvZqBSLPmUBnPew-0jtrk6TnDgwEwl4j-GzdqtcHnFPAdxXpMmRLIN5EW8w9KzM-rnshue1dx36R-nYw","souvenir":true,"normal_prices":[4525,724,187,221,239],"normal_volume":[12,18,14,12,7]}}},"28":{"name":"Negev","sticker_amount":5,"type":"Weapons","paints":{"1012":{"index":1012,"max":0.65,"min":0,"rarity":3,"name":"Phoenix Stencil","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s2-YKtoLvmLMXORxv1JouRtcCW6khUz_WzTy96heC-VbwMkDJB0FLMPtBi7x9XlN76x5VfYg98UySv3h35A7yd1o7FV05NZ2dU","normal_prices":[2491,2390,2031,1947,2006],"normal_volume":[70,47,35,5,13]},"1043":{"index":1043,"max":0.65,"min":0,"rarity":4,"name":"dev_texture","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-XC3GExPZipfNscCW6khUz_W_QzdmhJy7EOFAkWMdzF-dbtEK9moGyZbi37gTZi4xMxH36iipK73p1o7FVNCisfvA","stattrak":true,"normal_prices":[208,59,34,32,32],"normal_volume":[446,170,579,39,72],"stattrak_prices":[252,116,50,66,51],"stattrak_volume":[108,113,141,28,62]},"1080":{"index":1080,"max":0.49,"min":0,"rarity":3,"name":"Infrastructure","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s24bbZ5KfecHXeCwPdJvOhuRz39zU9w4m3RmdmqdSiSa1BxDJMiQ-4NsELqwYHgMujm5lHbg9gRxHqo2DQJsHghIlc9AQ","souvenir":true,"normal_prices":[1840,1180,1206,2815,1475],"normal_volume":[44,13,12,2,1]},"1152":{"index":1152,"max":1,"min":0,"rarity":3,"name":"Drop Me","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-QAmKR09Flu_hWQyC0nQlpsDnVy4mpcSiQOlB2CJRxR-AK4BDrw4azN-225lfc2t0Tznr6iX4f6zErvbg1B8-kIw","stattrak":true,"normal_prices":[95,15,5,5,5],"normal_volume":[454,373,395,167,133],"stattrak_prices":[91,29,8,6,5],"stattrak_volume":[128,135,424,102,57]},"1260":{"index":1260,"max":0.8,"min":0,"rarity":2,"name":"Sour Grapes","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I4PeRaqF_MumsAm6Xyfo44-Q7Gy3jzBsh4Tncw4n6cXiRbFAlW5B3TbEJu0PuwNWzPu_r4wDagpUFk3tgr-gSOQ","normal_prices":[50,9,1,2,1],"normal_volume":[505,515,549,36,121]},"1300":{"index":1300,"max":0.75,"min":0,"rarity":1,"name":"Raw Ceramic","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I4M2tbbZsLfmQMWmVxutgj-1gSCGn20524W3czd_9I3zGaAUnDZt0FOAKtBbpm4LkMOq25FHe3YtAz3-siy9XrnE8kYfBu1E","normal_prices":[5,1,1,1,1],"normal_volume":[272,185,818,64,227]},"144":{"index":144,"max":1,"min":0,"rarity":2,"name":"Wall Bang","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2hfqF_MPGAHViX0-9wj-9sSCylqhEutDWR1Iv6cyiSZgcnWZp4F7Fe4Ba9kIHnZe7i4g2Lj4xFzS_3iC9A7C1p6-gcEf1yfzRcjE8","souvenir":true,"normal_prices":[121,9,2,1,2],"normal_volume":[1111,374,401,123,110]},"201":{"index":201,"max":0.8,"min":0.06,"rarity":2,"name":"Palm","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82-aahgH_KBD3Gf_uJ_t-l9AXHgkU1x5WvQmY38cnvDZg8iX8d5E-Nc5BXqxN3gZO7jtlbZ3dkQmC3gznQei7Y7Jls","normal_prices":[7708,928,440,611,652],"normal_volume":[6,25,62,22,8]},"240":{"index":240,"max":0.6,"min":0,"rarity":2,"name":"CaliCamo","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s24abZkI_GeAViUxP1zovVWQyC0nQlptzzdzougeHmfaFJxWcZyTLVbtBTulNS0ZbjlsQTYjN1Dm3j8iX4c6DErvbiLvYVdBg","souvenir":true,"normal_prices":[2522,2222,1725,2007,1972],"normal_volume":[36,25,15,2,10]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1a4c2gabJ0H_yaCW-Ej7cu4rJrSXzikUh04G2Em9yteS-SagAkDsQlEOMP4RexldKzM7ix4lPAy9USZWBsgPo","normal_prices":[31450,65969,0,0,0],"normal_volume":[13,1,0,0,0]},"285":{"index":285,"max":0.45,"min":0,"rarity":3,"name":"Terrain","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82gbaNoNs-HG3WB_vpzovNoRieMmRQguynLz4qgJyqWOg8iDZFyFOcD40axlYflNL7htgDb2thNmH6oinkc5yZt4fFCD_QbgNa1nA","stattrak":true,"normal_prices":[93,49,55,43,0],"normal_volume":[332,18,242,23,0],"stattrak_prices":[131,92,44,64,0],"stattrak_volume":[166,111,80,109,0]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1a4s2veql0H-ObB2mV_uJ_t-l9AXrikxgk6z-EyYytcHLGbAclC8EhE-QJthjplN2yZO3gtVbcjIsXzSzgznQeWdeDBGI","normal_prices":[7,2,2,0,0],"normal_volume":[939,1299,322,0,0]},"317":{"index":317,"max":1,"min":0,"rarity":3,"name":"Bratatat","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2seqV5IeSSGliexOlzpt5lRi67gVN2sDzUwtevIy_EZwZ1DZclEOANu0brmtDuPriw5lTejdlHxSv3iilA8G81tKRsmgNk","stattrak":true,"normal_prices":[1188,342,241,276,339],"normal_volume":[59,44,23,14,22],"stattrak_prices":[2853,497,248,182,185],"stattrak_volume":[27,45,64,24,38]},"355":{"index":355,"max":0.5,"min":0,"rarity":3,"name":"Desert-Strike","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-HB3ORz_1iv_NkcCW6khUz_WnUz42tI3-WOw5zDpAmQOQD4ELskoDlMeni4gTWjoNNmSj_33kcvC51o7FVXp6G1h4","stattrak":true,"normal_prices":[77,26,25,28,25],"normal_volume":[285,97,104,30,66],"stattrak_prices":[77,48,21,30,45],"stattrak_volume":[118,139,104,51,15]},"369":{"index":369,"max":0.4,"min":0,"rarity":2,"name":"Nuclear Waste","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82gfadhJfGBMXeR1fpzou86cCe2khgxjDGMnYftby3EOFB0D5JxRLZZ5BXrm9PmPrjm7weKiY0Xz32ri3hKv3pu4-wBU6Y7uvqADsXx-os","souvenir":true,"normal_prices":[602,558,323,434,0],"normal_volume":[63,25,68,16,0]},"432":{"index":432,"max":0.2,"min":0.1,"rarity":3,"name":"Man-o'-war","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1a4s2gbaNoNs-UAmiC2NF6ueZhW2fikBh352vQyt-sI3mRbQ8lDJpxTLVfuxC5k4W0MLvm5VfeithHnij5kGoXuSdORNFb","stattrak":true,"normal_prices":[0,23,27,0,0],"normal_volume":[0,398,138,0,0],"stattrak_prices":[0,40,36,0,0],"stattrak_volume":[0,280,92,0,0]},"483":{"index":483,"max":0.65,"min":0.14,"rarity":4,"name":"Loudmouth","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-SAGmZyed6sfVmXRa_nBovp3PXzousdnrBbgEiX5QjTbICsEa7ktTnNOPrsQLW3YoQyS33jygbuHts_a9cBgJfeVOc","stattrak":true,"normal_prices":[0,1453,89,102,83],"normal_volume":[0,15,215,28,76],"stattrak_prices":[0,4411,159,260,161],"stattrak_volume":[0,21,103,39,26]},"514":{"index":514,"max":1,"min":0,"rarity":4,"name":"Power Loader","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-aA3eRwvpJvOhuRz39lE914j-HyYmscHLBZ1J1X5NyEbYI5Be8k4DmYuzh4AGIgo0QzSqs3TQJsHgPf9N5RQ","stattrak":true,"normal_prices":[1023,305,129,88,88],"normal_volume":[267,237,253,61,55],"stattrak_prices":[2922,1197,416,285,226],"stattrak_volume":[99,136,143,39,48]},"610":{"index":610,"max":0.65,"min":0.1,"rarity":3,"name":"Dazzle","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s2gbaNoNs-XD32KzetJvOhuRz39xxxzsmWEz9v9I3zFaQQiA5pzE7YLt0WwwdHkZrjktQXeg4gXyXj62zQJsHixNFIgjA","stattrak":true,"normal_prices":[0,128,22,25,20],"normal_volume":[0,245,217,65,30],"stattrak_prices":[0,326,33,36,17],"stattrak_volume":[0,80,51,44,45]},"698":{"index":698,"max":0.55,"min":0,"rarity":4,"name":"Lionfish","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1I_82gbaNoNs-fB2iex-dluN5lRi67gVNx62XXzI74InPGbQMpDpMiRLMOsRG4lNXvPuritFeN3YpMzSSo2yhN8G81tOHyHega","stattrak":true,"normal_prices":[190,58,35,42,41],"normal_volume":[513,291,346,28,34],"stattrak_prices":[253,105,54,70,71],"stattrak_volume":[129,170,170,32,30]},"763":{"index":763,"max":0.6,"min":0,"rarity":5,"name":"Mjölnir","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1c_M2gbaNoNs-HBmiC_uJ_t-l9AXDhxRsi62yEmYqrdSmSbQMhWcN3EO8KshHpw4LmP-Oz51bcjNgXn3ngznQe6IKqifc","normal_prices":[250784,215191,224099,0,0],"normal_volume":[45,5,3,0,0]},"783":{"index":783,"max":0.5,"min":0,"rarity":2,"name":"Bulkhead","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s2qfad5M8-KC2uczvlJvOhuRz39kB50sWmBw4moJXnGPFd1WJMjFLFZs0S9lNGxNuLg7weLg91BzCj73TQJsHg2tHPevg","souvenir":true,"normal_prices":[34,5,3,3,3],"normal_volume":[842,643,1359,72,80]},"920":{"index":920,"max":1,"min":0,"rarity":1,"name":"Boroque Sand","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1T9s24bapoNP-sGmae_uJ_t-l9AX3glxh142zUzIz_dXiWPVMjX8EhF-MP40K8l9TiMr_j7lPXiYxGzyzgznQeGMlgK6w","normal_prices":[914,410,334,288,186],"normal_volume":[32,83,73,36,36]},"950":{"index":950,"max":0.7,"min":0,"rarity":3,"name":"Prototype","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-DHGiEzvpvoORWQyC0nQlp6juDydugcHvEawVxApB3F7JftxTsloDgZOqx51PY345AxXr33SNPuzErvbi5RDlayg","stattrak":true,"normal_prices":[65,23,21,18,14],"normal_volume":[251,223,354,16,24],"stattrak_prices":[115,34,13,20,11],"stattrak_volume":[131,109,210,63,37]},"958":{"index":958,"max":0.79,"min":0,"rarity":3,"name":"Ultralight","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_m5Hl6x1Y-s2gbaNoNs-GAnOCwOJ_t-l9cCW6khUz_WSAnNj_cX6VZlQlX8Z0TeVc4RG5w4ayM-2w5wzYidhGyXr-iC0f6Cl1o7FVuI8WfEM","stattrak":true,"normal_prices":[35,13,5,5,6],"normal_volume":[487,341,713,47,484],"stattrak_prices":[46,17,7,7,6],"stattrak_volume":[253,259,279,36,65]}}},"29":{"name":"Sawed-Off","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1014":{"index":1014,"max":0.6,"min":0,"rarity":1,"name":"Clay Ambush","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZt5KfeWHHSv1e94j-1gSCGn2093tmzRy92gI3-Qb1QjWcN2EOBb5xjqm4XgY-rq4w2LjI1DmC38hn9XrnE8CIO4W8k","normal_prices":[160,148,99,78,67],"normal_volume":[179,230,328,53,72]},"1140":{"index":1140,"max":1,"min":0,"rarity":3,"name":"Spirit Board","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F5pehjTha_nBovp3OEyN-ocCmWPwYkCpoiE-QMt0bsxNbnNLm25waK345DyST23CpP5ytp_a9cBm4mGqdG","stattrak":true,"normal_prices":[79,13,5,5,5],"normal_volume":[317,361,503,210,224],"stattrak_prices":[68,15,7,6,8],"stattrak_volume":[146,172,174,97,262]},"1155":{"index":1155,"max":1,"min":0,"rarity":5,"name":"Kiss♥Love","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F9ufJ6QyalkCIrujqNjsGoI3-QZwZzD5F5TbUDsBi_xtW1NuqwsVaPjoxFmST93ClI6S1osuYDT-N7rb6xkGzX","stattrak":true,"normal_prices":[1672,500,338,295,285],"normal_volume":[383,644,1208,321,220],"stattrak_prices":[2564,710,454,418,389],"stattrak_volume":[107,122,169,55,65]},"1160":{"index":1160,"max":0.61886,"min":0,"rarity":4,"name":"Analog Input","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29abNoJP-VCFiXwONzot5lRi67gVN3tWTdyNipdCiQPwdxCJV2RuBY4xa_wILgMLu37leK3otMzHmo3H5J8G81tFoL-ETi","stattrak":true,"normal_prices":[114,55,35,34,33],"normal_volume":[2644,902,1300,154,203],"stattrak_prices":[238,115,75,82,77],"stattrak_volume":[294,563,886,130,153]},"119":{"index":119,"max":0.8,"min":0.06,"rarity":1,"name":"Sage Spray","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJt-MOKSF1iUxP1zovVWXCi0kCIrujqNjsH9eC_GblMpCMB4RLYJuhi8wdLiN7_qslaNjdkWyCmqjn9O5yk5sbwBT-N7rdc-87w7","souvenir":true,"normal_prices":[1872,117,62,105,44],"normal_volume":[14,18,73,49,2]},"1272":{"index":1272,"max":0.780822,"min":0,"rarity":1,"name":"Runoff","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2pe6dlH-KaHnecxNF6ueZhW2ewx0l_4G7dnNf8d3qfaABzDpZ5ROUPtxbqw9a2Ye-3tgWL2YNHnHiqkGoXuXAJUfvg","normal_prices":[6,1,1,1,1],"normal_volume":[330,406,683,26,221]},"1391":{"index":1391,"max":0.6,"min":0,"rarity":1,"name":"Crimson Batik","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcaFSIvGHB2yvxPdzo95lRi67gVNxsGjUzIz9ci7DblclD5d1Ee5esEO4mt3vN7_g5VeIj4xAzi2r23kb8G81tFlYllZq","normal_prices":[3,1,1,1,1],"normal_volume":[773,367,1068,121,102]},"1427":{"index":1427,"max":1,"min":0,"rarity":3,"name":"Fusion","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29abNoJP-VCFiW1P1_v-9WQyC0nQlp4WiHyY79eHmXOw4mW5JwQ-Jc5hO7koXjML_jsgSK2oJHmyz82ilB7DErvbjU0C2wDw","stattrak":true,"normal_prices":[91,22,10,7,5],"normal_volume":[212,225,246,48,46],"stattrak_prices":[129,46,23,19,16],"stattrak_volume":[104,100,117,52,38]},"171":{"index":171,"max":0.8,"min":0.06,"rarity":1,"name":"Irradiated Alert","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJtjNfuWHXOCyP5zj-N7QD69qhEutDWR1NquJHuXO1J2CMZ2TLEPtxe8wdLhMO_gsQ2PiolBzymojX5A6X054O4cEf1yT4AnDcQ","souvenir":true,"normal_prices":[2969,481,282,272,246],"normal_volume":[6,40,30,8,23]},"204":{"index":204,"max":0.8,"min":0.06,"rarity":2,"name":"Mosaico","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtsLPmsGm6cxNF0ouB_QBa_nBovp3PQmNyod3vGa1BzDcYhEbZZtxjrx9XuZbvitVbf34IUmXn933tM5ypp_a9cBnkXArQx","normal_prices":[6692,815,547,756,502],"normal_volume":[4,8,5,8,38]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2vaZtrIfSWMWqV1e96vOhqcCW6khUz_TuHwt2odHKROA90WZN2Fu4DsEO-mtTlNLiws1SNi99NxHmtj3tI5n11o7FVJSB89LY","souvenir":true,"normal_prices":[76,28,14,36,0],"normal_volume":[708,308,128,53,0]},"250":{"index":250,"max":0.6,"min":0,"rarity":3,"name":"Full Stop","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZt7IeKaDWadztFkteVWQyC0nQlp42yEyIr7cX6TaVN0XJsiQeYJ5BTplYDjYrnj7wPX3opHnHr93CJN7zErvbhNR0v1hQ","souvenir":true,"normal_prices":[84,22,11,60,16],"normal_volume":[266,275,178,123,55]},"256":{"index":256,"max":0.4,"min":0,"rarity":6,"name":"The Kraken","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F5s_VmXzy-hSIrujqNjsH_eXmWaVRyXpF3EOZe5Bm8w93gMbzn4waPg98Tzir8jHwbuC5p4uZUT-N7rZ8ILI16","stattrak":true,"normal_prices":[7818,6920,6954,10684,0],"normal_volume":[135,75,57,9,0],"stattrak_prices":[10951,8453,9255,69723,0],"stattrak_volume":[30,16,7,4,0]},"30":{"index":30,"max":0.8,"min":0.06,"rarity":2,"name":"Snake Camo","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJt-LvGYC1icyOl-pK8xHnDixkt_52zdyYqudXjBb1dyDJIlEe5e50G_xN22Yb_qs1TZiN5A02yg2XLJgstT","souvenir":true,"normal_prices":[216,19,2,2,2],"normal_volume":[156,264,357,58,117]},"323":{"index":323,"max":0.8,"min":0,"rarity":2,"name":"Rust Coat","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-NPWWAlicyOl-pK87TC2ylB534jiGzNv6dCjFPQR2XpJ4RuQPtRbqx9znYujitFPZ3oJC02yg2T-LVFiK","souvenir":true,"normal_prices":[2238,1119,1068,1415,1327],"normal_volume":[22,21,28,4,28]},"345":{"index":345,"max":0.5,"min":0,"rarity":3,"name":"First Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZtqMvWWAFicxO9iuOR7cDqyghgjvDuDpYPwJiPTcA9yXpB0QOQPsEW_l9DlY-3m4gaK3YtDyS_7jCpB7S9vtuwDUfck8qHJz1aWiwWPy5U","normal_prices":[6423,3400,3023,6450,4800],"normal_volume":[25,7,2,4,1]},"390":{"index":390,"max":1,"min":0,"rarity":4,"name":"Highwayman","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-IeeWCmiWx9F0vOBqRC68mRkYvzSCkpu3dXuVaQchCMRwQeJYsxaxl9W0N-nrtVeMid4XyHn53XtN5n5st-xRU71lpPM2tqJ-2A","stattrak":true,"normal_prices":[582,201,112,110,91],"normal_volume":[37,53,6,21,12],"stattrak_prices":[983,611,271,259,251],"stattrak_volume":[8,15,19,6,25]},"405":{"index":405,"max":0.5,"min":0,"rarity":4,"name":"Serenity","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9FytfdocCW6khUz_W2Dwtv6cXLFZgUnD5VzQrMPtxjrx9K0Ye637wzYj4gXzimqiH9KuC91o7FV9mPR2UI","stattrak":true,"normal_prices":[506,202,166,246,147],"normal_volume":[165,107,53,27,7],"stattrak_prices":[661,401,373,429,542],"stattrak_volume":[54,56,58,23,13]},"41":{"index":41,"max":1,"min":0,"rarity":3,"name":"Copper","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZtuL-CDC3WvzedxuPUnHirik0x1smnTnN76dC3Dbg8nA8NxROcNsBW9lNTiMurh4wLYj9gRmzK-0H1mwe_z3Q","normal_prices":[16879,9501,9900,9399,9499],"normal_volume":[7,2,2,4,6]},"434":{"index":434,"max":0.55,"min":0,"rarity":3,"name":"Origami","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F5ouhuTiS6qhEutDWR1IutIyqSalBzWZQjQbUD4UaxltCzNuLgslTejYwTxSn2jCIc5n1jtbscEf1yxjZ09aw","stattrak":true,"normal_prices":[47,22,24,26,25],"normal_volume":[435,137,230,54,36],"stattrak_prices":[88,41,23,34,32],"stattrak_volume":[136,88,94,28,34]},"458":{"index":458,"max":0.6,"min":0,"rarity":1,"name":"Bamboo Shadow","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtvIf2RAWivy_t4t-1scCu_lB4sjDGMnYftb3mTOAMlCcRwQONcs0buxoKxNOy2tgyKjtgXmHj62ypPuHs56-hUBas7uvqAJwYOBrA","normal_prices":[1311,1130,1022,930,650],"normal_volume":[91,72,64,19,6]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtpJOCSGlicyOl-pK8xTnGyxksl62zcytahI3KSaAYpCpBwEbFYtBa9lNblP77ktg2P3oNB02yg2UVFED2F","normal_prices":[76,4,1,2,1],"normal_volume":[97,281,256,518,56]},"517":{"index":517,"max":1,"min":0,"rarity":3,"name":"Yorick","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2pe5t-IeeWCmiWx9F4teJ7QCSymx4ioQKJk4jxNWWTaQEnXsR1QOUItBC9mtTgMenntVCKjY4RyS79jy8b6iw5susEBfYs5OSJ2HUgdoR1","stattrak":true,"normal_prices":[203,35,19,12,13],"normal_volume":[118,83,188,30,88],"stattrak_prices":[313,74,34,30,28],"stattrak_volume":[40,54,91,22,68]},"552":{"index":552,"max":1,"min":0.4,"rarity":3,"name":"Fubar","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2pe5t-IeeWCmiWx9FwpeNoXRa-kBkupjDLmN39d3jDb1VzApsjFu4DuxC5ltKyMbi2sVbZ2tpNyiuvjH8Y7HpqsPFCD_SxQd5sJw","stattrak":true,"normal_prices":[0,0,0,146,24],"normal_volume":[0,0,0,77,202],"stattrak_prices":[0,0,0,4163,16],"stattrak_volume":[0,0,0,54,36]},"596":{"index":596,"max":1,"min":0,"rarity":4,"name":"Limelight","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWClifx-hJvOhkSha_nBovp3ODz4utJHrBZ1MjD5YkFO8NtBjqwdXvP-nn4QLZjIJNnHio2Hwd5npq_a9cBh09Jdi8","stattrak":true,"normal_prices":[797,206,101,95,94],"normal_volume":[107,108,138,74,54],"stattrak_prices":[966,259,147,156,144],"stattrak_volume":[52,59,83,41,30]},"638":{"index":638,"max":0.7,"min":0,"rarity":5,"name":"Wasteland Princess","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt6MM-AD3CVxeFwtt5lRi67gVMksWuEmduuIH2fPwUkWJojQuMP5xi8lNzlY-234lDag4xFnin_jihN8G81tH9UxALW","stattrak":true,"normal_prices":[5339,3438,2785,3133,2570],"normal_volume":[153,218,324,25,52],"stattrak_prices":[3437,1394,927,903,965],"stattrak_volume":[25,50,84,18,27]},"655":{"index":655,"max":1,"min":0.05,"rarity":3,"name":"Zander","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-IeeWCmiWx9Fsse9tSjvhqhEutDWR1N79dXrBbFUgXpt4QrJb5hfuktTgYuLrtAXXiNpGySuvjS8b6i9j4escEf1ycSPZoqI","stattrak":true,"normal_prices":[488,52,30,23,23],"normal_volume":[45,29,87,88,59],"stattrak_prices":[324,58,31,32,28],"stattrak_volume":[9,24,121,63,42]},"673":{"index":673,"max":1,"min":0,"rarity":3,"name":"Morris","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2veZt-IeeWCiqfx-hJtu1mWCyhqhEutDWR1NypJSnDPQF2C8N2EOEL4xjqkd20Ze7q4APW3dkWxSit2i4a7Ctp4LkcEf1yx89MV8Y","stattrak":true,"normal_prices":[138,21,24,13,14],"normal_volume":[72,163,229,18,44],"stattrak_prices":[117,29,12,9,13],"stattrak_volume":[52,72,62,27,33]},"720":{"index":720,"max":0.8,"min":0,"rarity":5,"name":"Devourer","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9FytfdmWju2hyIrujqNjsH8JSnBPQdxDcEiF-FZshS7kdG1NOyz4wKKiYNDmXn3jHkd5n055ulTT-N7rdPAUyyq","stattrak":true,"normal_prices":[1902,646,450,542,448],"normal_volume":[66,260,236,8,49],"stattrak_prices":[3353,1325,707,705,762],"stattrak_volume":[31,80,101,1,22]},"797":{"index":797,"max":0.08,"min":0,"rarity":3,"name":"Brake Light","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2vaZt7JeKHB2Cf_vxztN5lRi67gVMj5T_Ry9yhcS-XaFUiDpVwEe4D4Bi9lta1Yb_m5FfdiYxNmS_3j35A8G81tL5T7kT_","souvenir":true,"normal_prices":[110,88,0,0,0],"normal_volume":[948,53,0,0,0]},"814":{"index":814,"max":0.9,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F0vOBqRBaglBMjjDGMnYftb3qSOAF2XpV0ELMJsUS_ldGzMO_isVHagt9Az32ojiob6Hk9sbtXB6o7uvqARF8zTjE","stattrak":true,"normal_prices":[108,27,15,15,14],"normal_volume":[62,81,30,45,92],"stattrak_prices":[94,34,13,12,14],"stattrak_volume":[79,42,77,19,63]},"83":{"index":83,"max":0.8,"min":0.06,"rarity":4,"name":"Orange DDPAT","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtpJOCSGlif0-94t-RWQyC0nQlp4GyAzoqsdSmWaFJyD5UhEeFcsBm-ktK0M7nj7wKI394Xn3-vhisfujErvbhk58vgGA","stattrak":true,"normal_prices":[8405,2586,1818,1968,1965],"normal_volume":[11,25,12,2,10],"stattrak_prices":[26658,4118,2790,3373,2845],"stattrak_volume":[4,11,23,7,5]},"870":{"index":870,"max":0.5,"min":0,"rarity":1,"name":"Jungle Thicket","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c29eJt9IfyeMWCCxOt4j-1gSCGn2xhztj6Bn97_dnzBaQAoA5ciE-8PukG6k9fhZOi34gOPit9BxSz7hytXrnE8FOcrcRs","normal_prices":[728,671,559,545,504],"normal_volume":[200,86,86,9,24]},"880":{"index":880,"max":0.49,"min":0,"rarity":1,"name":"Parched","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2mcZtpJeOWHHOvw-J5v-xWQyC0nQlp52_dnoqsdHjDaAInDMNzQbZc4ROxxIbgMrmxtALagtgXniiv3HxOuDErvbjDfqqgDA","souvenir":true,"normal_prices":[63,66,31,66,28],"normal_volume":[503,427,122,84,30]},"953":{"index":953,"max":1,"min":0,"rarity":4,"name":"Apocalypto","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLin4Hl-S1d6c2tfZt-IeeWCmiWx9F3oO5qTiWqhQkojDGMnYftb3vFbVcmDsRwEOdbtkW4lIbiMOrh4FaIiYMQxXmoiXkd7n1o5b4AWKM7uvqARUQpSmk","stattrak":true,"normal_prices":[501,99,53,45,44],"normal_volume":[221,180,222,96,108],"stattrak_prices":[589,166,93,82,89],"stattrak_volume":[52,111,117,79,101]}}},"3":{"name":"Five-SeveN","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1002":{"index":1002,"max":0.1,"min":0,"rarity":4,"name":"Berries And Cherries","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaaVSJvGXC1iCxOpJsu18Sha_nBovp3OEmY2vIi_FagEoDMMjQuMKthDqm9TjP-O3sVSLio0Qnnr22i0f7C9t_a9cBnO-dw69","normal_prices":[14674,14389,0,0,0],"normal_volume":[320,17,0,0,0]},"1062":{"index":1062,"max":0.5,"min":0,"rarity":2,"name":"Midnight Paintover","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SL-aWHHeR0v1JoOBgQT28gxg1jCmAm4PGLSLANkI-X5YmF-QN4EK8wdXgNenrsgDejYNAmS33jHtB6Ctj5esBBKItqKXQhhaBb-MJGErI3w","souvenir":true,"normal_prices":[15,3,2,2,3],"normal_volume":[856,357,653,36,33]},"1082":{"index":1082,"max":0.52,"min":0.01,"rarity":5,"name":"Fall Hazard","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSNvWBGm6XztFwufdsXCylkBMYvzSCkpu3Ii-QbQ51XJpzQ-8PsUOwmoLvZLm3sQfb3tkTxHj-hytBv35jt7wFBL1lpPNwauo7lw","souvenir":true,"normal_prices":[37435,24749,21186,66180,44694],"normal_volume":[18,8,5,1,2]},"1093":{"index":1093,"max":0.41,"min":0,"rarity":4,"name":"Boost Protocol","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRb7dSJvmFC1iDxPhzvt5sSTygnBIpjDGMnYftby7FalV1D5QhE-EDthW8xtCyPu63tFPciYhBynn_jykfuCttte4CA6E7uvqAn_5lxU8","stattrak":true,"normal_prices":[1137,478,291,354,0],"normal_volume":[587,426,261,40,0],"stattrak_prices":[1471,929,671,999,0],"stattrak_volume":[190,132,94,14,0]},"1128":{"index":1128,"max":1,"min":0,"rarity":3,"name":"Scrawl","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-BlXyGyqhIqtjqEpYPwJiPTcAInA5J0FO9csBSww4bhZruzswLcjIsXmCusjCsbuno_57tXUqB386HJz1aW2pI_m5Q","stattrak":true,"normal_prices":[89,15,5,4,5],"normal_volume":[498,761,706,175,241],"stattrak_prices":[118,23,8,6,8],"stattrak_volume":[236,383,290,386,307]},"1168":{"index":1168,"max":1,"min":0,"rarity":4,"name":"Hybrid","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRbq17JeOWGGKe_uZvsvNgSxa_nBovp3OBmd6oJXyeaQ9yCsZxEOICsUO7kdK0Y-qxtFCN2YsQnCv7i39N7ixp_a9cBsh2vVQD","stattrak":true,"normal_prices":[378,72,40,34,33],"normal_volume":[595,1360,1305,367,332],"stattrak_prices":[522,147,82,78,76],"stattrak_volume":[173,262,442,792,291]},"1262":{"index":1262,"max":0.6,"min":0,"rarity":2,"name":"Sky Blue","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6toH_KfG2KvwOByj-JhXSa-kCIrujqNjsGueHuXb1VxDZRzFuJe5BC4w4XnYbnj5A2NjIMUyyr3iikY6Cc4tecBT-N7rc172J_D","normal_prices":[29,8,2,3,1],"normal_volume":[1408,800,939,52,86]},"1336":{"index":1336,"max":0.636986,"min":0,"rarity":1,"name":"Autumn Thicket","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tiH_KBD2mTyetlj-1gSCGn2xsl5Tvdm9itJy_DaFUoDJYhRuVZsBm9lobiNeiz71HcgoNGyHr4jypXrnE8g0nYtGk","normal_prices":[3,1,1,1,1],"normal_volume":[922,267,989,134,432]},"1380":{"index":1380,"max":0.65,"min":0,"rarity":3,"name":"Fraise Crane","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6toH-CaAGyvwvx3vuR6cCW6khUz_WmHno2ueSmRbFAmC8MjF7EPsBDtwdDkZe_n41fYithDzyWo2CwY6nx1o7FVHGyLYB0","normal_prices":[399,162,29,27,22],"normal_volume":[840,864,667,63,108]},"141":{"index":141,"max":0.8,"min":0.06,"rarity":2,"name":"Orange Peel","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe7RSNPGDC1if0-94t-RWQyC0nQlp6jjTytf7JH6XbQIiD5t2EOZYsBDtl4LjNe7k4QzYidlEzX34hn8Y7zErvbi46hZUEA","souvenir":true,"normal_prices":[751,17,1,2,2],"normal_volume":[64,394,615,37,158]},"1429":{"index":1429,"max":1,"min":0,"rarity":3,"name":"Dark Polymer","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRbq17JeOWGGKe_v55vPhkSjuMkRw1uAKJk4jxNWWVaw9yAsF3R-cItkTqx9HiY-23tFeN3oNFyS_9jn4a5i5o5b0AB6B35OSJ2MsRWanJ","stattrak":true,"normal_prices":[114,25,10,7,6],"normal_volume":[437,409,256,35,56],"stattrak_prices":[202,72,28,20,16],"stattrak_volume":[145,179,163,46,55]},"151":{"index":151,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSKuWdCWuV_uJ_t-l9AXy3wEok5G6Gw9uocnKfbQRzXpJzQ-Ne4BLsm9LnNrzk7wWKiIxNxSngznQeNadjO4s","normal_prices":[5310,786,367,366,314],"normal_volume":[11,34,46,5,36]},"210":{"index":210,"max":0.08,"min":0,"rarity":1,"name":"Anodized Gunmetal","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaapSJ-WdA2KEwOJJsvNoWSaMmRQguynLy9v_J3qTPAYmX8Z5F-YCskG5xtHgNe22sgTYjIIXmSX5jX5L6Ck-t_FCD_SvybkrEQ","normal_prices":[1920,2735,0,0,0],"normal_volume":[132,19,0,0,0]},"223":{"index":223,"max":0.5,"min":0,"rarity":3,"name":"Nightshade","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SJvycGWKC0tF6ueZhW2frl08m5mrXyd-seSmVOgUkX5MhReRcsRHsm9LjZe_htACI3oJEzHj6kGoXucu6NwSL","stattrak":true,"normal_prices":[3415,372,202,300,344],"normal_volume":[55,53,76,24,47],"stattrak_prices":[547,311,233,624,437],"stattrak_volume":[111,48,133,8,19]},"252":{"index":252,"max":0.4,"min":0,"rarity":3,"name":"Silver Quartz","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaalSI-KKHXORzeJ_quRtcDq6mQsioQKJk4jxNWXCP1AmX8Z0EbIP5Be8w4fhNu7r5ATZ3t4Xzn782yJB63o-5bkLA_En5OSJ2KaCxRX6","souvenir":true,"normal_prices":[89,18,14,18,0],"normal_volume":[623,492,499,45,0]},"254":{"index":254,"max":0.8,"min":0.06,"rarity":3,"name":"Nitro","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSL-KSAGCV_u91s-RnWzqMmRQguynLy9ugci3EZlUpDMYjTOID4EPrxNTvZO224QWM3o9NniWs23lP5nw9tfFCD_Qs49oXvw","normal_prices":[5874,3750,3134,4417,3573],"normal_volume":[18,31,9,3,7]},"265":{"index":265,"max":0.3,"min":0,"rarity":3,"name":"Kami","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SK_GeB1icyOl-pK9oGnHnk012sT_XzNv4eXuUawUlDpEkQOIN40XskIHmP-mx4wOLio1B02yg2SJzf1Vk","stattrak":true,"normal_prices":[625,276,228,0,0],"normal_volume":[738,465,109,0,0],"stattrak_prices":[520,431,448,0,0],"stattrak_volume":[484,366,119,0,0]},"274":{"index":274,"max":0.2,"min":0,"rarity":4,"name":"Copper Galaxy","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRaalSI_-DHmKC_uh6teJiXBa_nBovp3OAnN_6cXvEOwFzDcFzQ7Vc4BPuwNy0M7jk5gWL39pCnC35jShN6S1p_a9cBt8cUyQh","stattrak":true,"normal_prices":[2830,1297,1371,0,0],"normal_volume":[390,54,15,0,0],"stattrak_prices":[2651,2091,2435,0,0],"stattrak_volume":[108,59,19,0,0]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSMvWXMWuZxuZi_rAwG36xxUp-t2rVwt6vdCmSPAQnDpNxQOBY5BXsxoWzZuvg5Ffdid1bjXKptD9kyfI","normal_prices":[8566,7177,8673,0,0],"normal_volume":[91,46,4,0,0]},"352":{"index":352,"max":1,"min":0,"rarity":5,"name":"Fowl Play","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSdaesCGKR1eZzovJWQyC0nQlptm_Vw9ercnOUaA8lA5skFuIPsxPqmtXkNu205lfYiN8XnCyvj3hNvDErvbiIo1idJQ","stattrak":true,"normal_prices":[9645,1871,1724,1644,1766],"normal_volume":[54,61,185,90,63],"stattrak_prices":[4111,1920,1690,1658,1687],"stattrak_volume":[43,29,55,31,20]},"377":{"index":377,"max":1,"min":0,"rarity":2,"name":"Hot Shot","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSJ-KWF1ie1O16teB7cCahlBMgtgKDk5n8HjjCKFN-Zc4pEr9OrBm4xN3vNrix41aIjtkQyH-s2ipMvSY_sOxRBaFx-vCE3AuXYLE_45kdZKHwQRxY8PU","souvenir":true,"normal_prices":[9471,999,450,349,278],"normal_volume":[117,157,60,62,24]},"387":{"index":387,"max":0.25,"min":0,"rarity":3,"name":"Urban Hazard","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j_R7TSi9qhUmqTyXnrD1KCzPKhhzXpBwFu9YtxK6k4buYenrtgDWj4NGyX3-2yhBun1qt-YBBKsg_aXWkUifZnLiQ4dl","stattrak":true,"normal_prices":[397,274,237,0,0],"normal_volume":[664,243,81,0,0],"stattrak_prices":[555,387,390,0,0],"stattrak_volume":[333,150,63,0,0]},"427":{"index":427,"max":0.9,"min":0.1,"rarity":5,"name":"Monkey Business","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-NoQSi9lCIrujqNjsGheXmXPQcoWMFzEO5ZtUOwkILjY7yzsg3ci91DySiohn4buCht4eYET-N7rZVO80Su","stattrak":true,"normal_prices":[0,5921,1057,1010,1104],"normal_volume":[0,121,1156,150,91],"stattrak_prices":[0,5244,1162,1149,1195],"stattrak_volume":[0,59,212,43,29]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSL_mfC2OvzedxuPUnH3C1kRsi4jiAw4qtdXjCO1V2WcZxF-EO5xLsxtHmMeKw5g3fit4TnDK-0H1W4XC76Q","stattrak":true,"normal_prices":[6926,1457,1096,1144,1375],"normal_volume":[385,708,924,350,214],"stattrak_prices":[7644,3352,2396,2319,2584],"stattrak_volume":[51,82,186,100,75]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe6tSMP2QMWuZxuZi_rRtTXjkxE115DjdmNn7ciieaVAkAsN4ELVc40Htx4fmPrng51DXj95bjXKpZ_EmD5Y","souvenir":true,"normal_prices":[2399,268,266,319,297],"normal_volume":[8,22,49,4,8]},"464":{"index":464,"max":0.8,"min":0,"rarity":4,"name":"Neon Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SK_meAWmf_up_sexmQS2gqhEutDWR1In4di-TagIkXMMiF-Vcthm5kNbvML604Ffdgt4WzCj22ikau35q4OwcEf1ySWJgvKc","normal_prices":[62764,72393,57927,131101,49781],"normal_volume":[39,3,11,1,4]},"510":{"index":510,"max":1,"min":0,"rarity":4,"name":"Retrobution","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j_NsWzu8lwgzujKLpYPwJiPTcAByWJB4TOULsxS5wNfmPuzjtQHciYpHmCuqhypJvSlr4LsGBaEmr_bJz1aWW-JyGhc","stattrak":true,"normal_prices":[1511,274,118,103,102],"normal_volume":[196,302,196,54,67],"stattrak_prices":[1143,577,251,197,206],"stattrak_volume":[92,77,119,44,35]},"530":{"index":530,"max":0.61,"min":0,"rarity":4,"name":"Triumvirate","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-B8SCS2mwkitwKJk4jxNWWXPAZzD5pwTeBetUPtw4C1N7jh5A3bj48RxSyqiiwc7Sg6tr0ABaAk5OSJ2O3yTJMF","stattrak":true,"normal_prices":[1954,256,183,241,192],"normal_volume":[105,96,167,18,38],"stattrak_prices":[1014,528,323,411,327],"stattrak_volume":[78,60,54,19,21]},"585":{"index":585,"max":0.7,"min":0,"rarity":3,"name":"Violent Daimyo","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC1iDxPhzvt5tTiC-jBIYvzSCkpu3cXjCPAB2WZMmQ-EK4BTqlNSzNOLk71GI3tpGmX2oii5N6nk667kDWL1lpPNv4wCTtw","stattrak":true,"normal_prices":[176,63,38,31,28],"normal_volume":[585,428,324,16,93],"stattrak_prices":[312,141,64,136,61],"stattrak_volume":[180,220,306,50,66]},"605":{"index":605,"max":1,"min":0,"rarity":3,"name":"Scumbria","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSJvmFC1iDxPhzvt56TDy-lw8usgKJk4jxNWXBP1JzAppxQ-UN5hm_mtLgZbjn5wPdi49Bnyqr3SJPvChq4-tWB6Ak5OSJ2BFWlPNZ","stattrak":true,"normal_prices":[639,25,22,17,19],"normal_volume":[139,86,38,82,89],"stattrak_prices":[338,43,22,15,16],"stattrak_volume":[75,86,143,59,59]},"646":{"index":646,"max":0.7,"min":0,"rarity":3,"name":"Capillary","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j_dsRieMmRQguynLmY79IinFbA90CZN2Q-Bc4UW6x9KyZLnjtQCMjo8WyXr7jy1O6Ck_sfFCD_SqR6qLvA","stattrak":true,"normal_prices":[189,40,29,29,25],"normal_volume":[292,129,98,36,20],"stattrak_prices":[146,75,33,68,33],"stattrak_volume":[130,83,104,41,73]},"660":{"index":660,"max":1,"min":0,"rarity":6,"name":"Hyper Beast","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-lwXyyhlxgmoCm6lob-KT-JO1QgWZVyELEPu0W4l9KzYbzn5Fbf3YkTzn_8hihIvXxtsOoFUKYirLqX0V_f6-eqCw","stattrak":true,"normal_prices":[49708,35411,26888,27217,26425],"normal_volume":[53,69,109,40,22],"stattrak_prices":[67592,26409,19013,16699,13304],"stattrak_volume":[15,32,17,4,4]},"693":{"index":693,"max":0.65,"min":0,"rarity":3,"name":"Flame Test","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRb7dSJvmFC3SV1-t4j-lmWxahmhkYpTSKlortHifOOV5kFJt1FOVYsBC_lobmNe3q4AOK3dhDnimrhyoa7i9ssO4CU6F0rvWBiwvfcepqcNk1MwM","stattrak":true,"normal_prices":[61,18,12,13,10],"normal_volume":[761,173,379,24,65],"stattrak_prices":[105,40,14,27,17],"stattrak_volume":[282,199,269,35,87]},"729":{"index":729,"max":0.5,"min":0,"rarity":3,"name":"Crimson Blossom","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SIuWXMXWVxdF6ueZhW2ewkE5162rRnNerIy6WagApDptyRuVZshbql9DuMOPj71CI2YoRzyqokGoXufqVyZvA","normal_prices":[9561,8579,8199,9032,13857],"normal_volume":[33,24,13,2,2]},"78":{"index":78,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Night","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SJv-BC3SE_uB_t-l9cCW6khUz_T7Untv9cXmfPAEnCZFwRLUJtEXtxN3iN-mz7gffjtkRnir-2nkauyx1o7FVpfrK-Xo","souvenir":true,"normal_prices":[312,4,1,2,1],"normal_volume":[167,145,398,334,141]},"784":{"index":784,"max":0.5,"min":0,"rarity":1,"name":"Coolant","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRYL1SJOWQGnSvxvxzte9WQyC0nQlp5m_cmNqueH7EbQAiXpN0FO5YtBK_x4XgMrjmswON2osQzn77iipJ6zErvbgVYFr6QQ","souvenir":true,"normal_prices":[6,1,1,1,2],"normal_volume":[2154,1536,1948,136,388]},"831":{"index":831,"max":1,"min":0,"rarity":4,"name":"Heat Treated","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRabVSI_GAC1iYwPxyte9sSxa1nAsioDiTn4HGLSLANkI-D5pxEbIDu0btkoXlNuO24wDZ2YhDmH7923tI7ClrsblWAqMj-KPRiBaBb-NawNZy0w","normal_prices":[2863,546,321,325,321],"normal_volume":[742,2065,3244,1459,1099]},"837":{"index":837,"max":0.7,"min":0,"rarity":6,"name":"Angry Mob","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC1iDxPhzvt5oQS6hjCIrujqNjsH_cy2RagUjA8BwR-de5hjskNflNrnqsgaLiYgRyyythitM7Hw-sekKT-N7rXEld5dH","stattrak":true,"normal_prices":[8428,5113,4959,5601,4935],"normal_volume":[193,240,363,26,36],"stattrak_prices":[8177,5162,5019,6124,5863],"stattrak_volume":[46,50,77,5,14]},"906":{"index":906,"max":0.55,"min":0,"rarity":4,"name":"Buddy","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC3SV1-t4j-Z6SHCMmRQguynLw4r9IHiRbFdzA8FzELYL4xntw9e1Mu7q5laMjN5AzXiqinxI6iw_t_FCD_TZbg2oLg","stattrak":true,"normal_prices":[611,121,56,78,76],"normal_volume":[272,158,213,44,20],"stattrak_prices":[535,265,118,166,136],"stattrak_volume":[100,97,63,74,33]},"932":{"index":932,"max":0.5,"min":0,"rarity":2,"name":"Withered Vine","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRe7RSLf-BAViExPZiue1scDmmhw0rtgKcn4P1Ljz4Ml93UtZuReJcshe5m9HuYunhsQ3dgowWnCqviSgduC1q5OgGBKN0r6Le2gnHZKp9v8fcyxvZMw","souvenir":true,"normal_prices":[517,94,52,166,278],"normal_volume":[98,39,68,17,61]},"979":{"index":979,"max":0.9,"min":0.02,"rarity":5,"name":"Fairy Tale","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL3l4Dl7idN6vyRa7FSJvmFC1iDxPhzvt5tRiihjCIrujqNjsGtdi-UbVUgXJAlRrFfuxi-lNbuPr7ltA3cjtkRzyit2H8c7H1t4O9TT-N7rZbBTJfn","stattrak":true,"normal_prices":[39344,5984,2637,2605,2593],"normal_volume":[106,184,217,21,23],"stattrak_prices":[21717,7162,3609,3801,3732],"stattrak_volume":[28,56,53,16,16]}}},"30":{"name":"Tec-9","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1010":{"index":1010,"max":0.8,"min":0,"rarity":1,"name":"Phoenix Chalk","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0OKmZ6FjKeisGmaX0tF6ue1oTBa_nBovp3PTnNuoIH2TPw9xApB0EOQK5kK-k93gNrjr4QSPj4JEnH__jy0d7io4_a9cBnAYh6IJ","normal_prices":[1849,154,110,589,77],"normal_volume":[214,113,198,15,82]},"1024":{"index":1024,"max":0.65,"min":0,"rarity":3,"name":"Blast From the Past","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0POga61oLuSsGm6cxP1JoORoTCGMmRQguynLm4qpJ3PDaQ9zXpIjQ-AJ4xawlNOzMrjktVPZ349AmS323Xga534-tvFCD_QT7Lx_Ug","souvenir":true,"normal_prices":[3139,1053,726,1662,1528],"normal_volume":[60,28,51,4,10]},"1159":{"index":1159,"max":0.9,"min":0,"rarity":3,"name":"Slag","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjZe7KuRYrFjK-mSHGOvxOBxue9sSju6mxoYvzSCkpu3eHPFZwMkWZBzR-cDsEbpm9DvY-yx51fajd8WyXn4hntBvX465OkBVL1lpPMDDuBGag","stattrak":true,"normal_prices":[75,12,4,5,5],"normal_volume":[583,558,710,139,64],"stattrak_prices":[102,20,9,9,7],"stattrak_volume":[192,464,288,169,62]},"1214":{"index":1214,"max":1,"min":0.06,"rarity":4,"name":"Whiteout","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0OWmYbBoL-WHMXOVwrdJvOhuRz39lB9_smmDn9ugdCrCbFcnCJEmFrVcuhC4w9TgNePhsQWKiN4QzSv7hzQJsHg2FaN_Cg","souvenir":true,"normal_prices":[39832,2766,429,224,180],"normal_volume":[251,993,1620,175,423]},"1235":{"index":1235,"max":1,"min":0,"rarity":3,"name":"Rebel","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SJuKWC2OfzNF6ueZhW2fgkU0k5GmBzIn6eHjBagBxDZMhReYN5hC5ldbgNb7jtFbfgt5Ey3_3kGoXuRiiuNrn","stattrak":true,"normal_prices":[82,13,5,5,4],"normal_volume":[455,361,793,91,63],"stattrak_prices":[98,17,8,6,6],"stattrak_volume":[200,185,426,112,99]},"1252":{"index":1252,"max":1,"min":0,"rarity":3,"name":"Mummy's Rot","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SLeWeA36vzedxuPUnS3_jlEUm5muAzd6qcXiRaw9yWZciRuQItUHpxNXnP--27lGL2d5CyzK-0H1vVdbZoA","souvenir":true,"normal_prices":[2406,293,122,92,101],"normal_volume":[121,120,243,39,131]},"1279":{"index":1279,"max":0.8,"min":0,"rarity":1,"name":"Blue Blast","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0OaraahSLPmUBnPex7cj4Lg9GS-ylB4jsGTSzov_JHvDag8nCcB4FrZes0XtwIblNOLhshue1dxd5qECaQ","normal_prices":[16,1,1,1,1],"normal_volume":[740,612,704,105,263]},"1286":{"index":1286,"max":0.7,"min":0,"rarity":2,"name":"Garter-9","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU6s29ZqVmJeOYB2mvzedxuPUnTHDlkU5y5j-BnI6gJX_Cag8nXpp5QORb4RCxmobuNLjgswDY2dlAxDK-0H3cj7008Q","normal_prices":[31,11,2,2,3],"normal_volume":[82,68,440,41,128]},"1299":{"index":1299,"max":0.75,"min":0,"rarity":1,"name":"Raw Ceramic","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0PGreqVgKfOsAm6Xyfo45uI5Siy1wU4l62rWyN-ocS_FbAFzDZtzFOdZtBe-kNy1Zu627gSI2ZUFk3tFqaykOQ","normal_prices":[6,1,1,1,1],"normal_volume":[462,204,471,34,56]},"1322":{"index":1322,"max":0.6,"min":0,"rarity":2,"name":"Citric Acid","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU4M2-aa1jNM-AHmuR1f1JqeRlQyakqhEutDWR1NagcXnGOA8iXptyQO9Y5Bjpw4DlNrvntQOIiY4UyHmvh3hK7iw56rwcEf1yY9HMcYg","normal_prices":[19,5,1,2,1],"normal_volume":[1523,93,562,41,50]},"1384":{"index":1384,"max":0.6,"min":0,"rarity":2,"name":"Banana Leaf","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC6s2sabBkK8-WF2KD_vpzs7hWQyC0nQlpsWnRz9atIH3Gag4oCpQjFucP4Rfux9PuNr7j7wDZ3tgTny3_h3xPvzErvbgFFfz3Tg","normal_prices":[24,9,2,3,1],"normal_volume":[1130,573,333,48,52]},"159":{"index":159,"max":1,"min":0,"rarity":3,"name":"Brass","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNK0PC8abd-H_yaCW-Ej-91tuQ7Sy3gzB9x4m_Vy9b8dy-SaFcjDZchQ-IL5EHqxtzhP7y34ADAy9USp8n4eRk","souvenir":true,"normal_prices":[11742,2958,1131,589,520],"normal_volume":[10,65,22,8,10]},"17":{"index":17,"max":0.8,"min":0.06,"rarity":1,"name":"Urban DDPAT","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PaqeKV5H-WBDFicyOl-pK89HC3iwkwh522Dm9qqIijEbQN1XJt1TOZb5kbtkIbkZr7l4QTeiYIQ02yg2SkrOr2J","normal_prices":[282,7,1,2,2],"normal_volume":[154,144,380,583,1099]},"179":{"index":179,"max":0.8,"min":0.06,"rarity":4,"name":"Nuclear Threat","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFL0Py7Y6F-NOKaHmKvxvxzte9WWyywzCIrujqNjsGtIyjEbQR1A8Z1QLVZtha_k9HvNbu04wTei4sWxCX93SJP7nw_4rtWT-N7rTdwfM9W","souvenir":true,"normal_prices":[103292,13547,5140,5414,4342],"normal_volume":[5,45,60,11,16]},"2":{"index":2,"max":0.8,"min":0.06,"rarity":1,"name":"Groundwater","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0P2iYbJoH_yaCW-Ej7om4eQ6H3zrxEwk4T-HmN78dirCb1MmA8Z3Re8D5hS5x9KzYrvkslPAy9USDDHRuWI","souvenir":true,"normal_prices":[242,6,1,1,1],"normal_volume":[305,1643,2371,209,379]},"206":{"index":206,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU0OaheqpsJP-sDHWR1-FJvOhuRz39w0Qh4WiHmd-uc36eZlcmX5p0E-IKuxLqkt3kYe_jsgDYg4NCziX82jQJsHiZ2a0fyg","normal_prices":[12500,946,416,391,449],"normal_volume":[9,16,30,10,14]},"216":{"index":216,"max":0.04,"min":0,"rarity":3,"name":"Blue Titanium","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNV0OanfKVjKeWeXTeG_uJ_t-l9AXnikBh-6mvTztz4eHvCOgIiCpFzQOAJ5xPulNK2Nr7q7gHcg9lEm3ngznQe7B1sAb0","stattrak":true,"normal_prices":[2985,0,0,0,0],"normal_volume":[124,0,0,0,0],"stattrak_prices":[854,0,0,0,0],"stattrak_volume":[173,0,0,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":2,"name":"VariCamo","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0OSveq1uIf2cMWuZxuZi_rBrTXm1w0kksGjRw9yseS3Db1JzW8NyTLICtRiwxNbjMri25AzWg99bjXKp9aEM-ik","souvenir":true,"normal_prices":[33,4,1,3,3],"normal_volume":[630,215,354,62,67]},"242":{"index":242,"max":0.6,"min":0,"rarity":1,"name":"Army Mesh","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFL0P-re6xSIeKeF1icyOl-pK8xGnCxkR5_tWTQztepcHiWOwAlCpJ3Q7ML5BO-lNyxMuvl5wXYiY0Q02yg2eIzVY8M","souvenir":true,"normal_prices":[9,1,1,1,1],"normal_volume":[945,1225,1050,156,107]},"248":{"index":248,"max":0.4,"min":0,"rarity":4,"name":"Red Quartz","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0PG8cbd5IfyfB32VxdF6ueZhW2e3xU13tzmAmdqsIC6TPw8hCcF3ReADuxPtl9ThNu3qtVPbjdlFny2okGoXub5yNIFB","souvenir":true,"normal_prices":[65,31,29,44,0],"normal_volume":[1015,465,982,7,0]},"272":{"index":272,"max":0.2,"min":0,"rarity":4,"name":"Titanium Bit","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0PSifbBoJM-HC2TJ_uJ_t-l9ASi3w0gm62qHzdz6Jy2WbAZxW8dyTOEIukawldfhY7zqtgKN2d9MyHngznQe9VU90c8","stattrak":true,"normal_prices":[2916,890,903,0,0],"normal_volume":[121,36,9,0,0],"stattrak_prices":[1820,1523,1565,0,0],"stattrak_volume":[55,20,7,0,0]},"289":{"index":289,"max":0.7,"min":0.1,"rarity":3,"name":"Sandstorm","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SM_GdCnSEzvx7j-1gSCGn2xsi52XSyIqueCifOAMnD8YkQ-YMtUPpwIK2N-jq4QSK2ohCm36q239XrnE8IX2h_4o","stattrak":true,"normal_prices":[0,398,67,62,56],"normal_volume":[0,189,610,45,126],"stattrak_prices":[0,526,80,118,44],"stattrak_volume":[0,108,481,65,83]},"303":{"index":303,"max":1,"min":0,"rarity":3,"name":"Isaac","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SIeOaB2qf19F6ueZhW2frlEpz6zyAy477dXrEagFxDcclRO4C5EK8wIa1Nem3s1TdiotNzCn5kGoXuYgN6W8t","stattrak":true,"normal_prices":[2027,439,326,227,226],"normal_volume":[240,275,239,83,55],"stattrak_prices":[3430,662,420,266,201],"stattrak_volume":[117,213,238,80,54]},"36":{"index":36,"max":0.08,"min":0,"rarity":3,"name":"Ossified","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0P29e61rOc-fB2CY1aAvsrQ6TCzqzEwisT7QnIqudCjGZgV0CpJ0ROFct0PrlNO2MOzg4gSKlcsbmgSNht1O","normal_prices":[2787,2852,0,0,0],"normal_volume":[227,9,0,0,0]},"374":{"index":374,"max":0.7,"min":0,"rarity":3,"name":"Toxic","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0Py7a6hoIeKsHWyFzeJl5d59SirqqhEutDWR1N2pc3PFbgYgDMF5TbVZ5hfsk93hP7u2tQzf2t0RxSuviiJN5ydo5bwcEf1yPyH7PX0","souvenir":true,"normal_prices":[4303,2238,1572,2239,1710],"normal_volume":[163,119,138,10,13]},"439":{"index":439,"max":1,"min":0,"rarity":2,"name":"Hades","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PqvbKF-H_yaCW-Ej7chtLM9F322lkhxsm7Xyon_Ii-ePAYiD5ElEOUK4ETqx9DmZb_qsgDAy9USH97bt-4","normal_prices":[3440,1957,1727,1694,1932],"normal_volume":[23,27,49,13,40]},"459":{"index":459,"max":0.6,"min":0,"rarity":1,"name":"Bamboo Forest","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PCvZaZiL8-ZG2mXzetJvOhuRz39kx90sjiBn9apcnPBOwRyDJcjTeUKtxbpwNzkZLm04geLjIsXzSivjTQJsHikA0D9yg","normal_prices":[3198,1179,982,1074,845],"normal_volume":[700,285,76,18,28]},"463":{"index":463,"max":1,"min":0,"rarity":3,"name":"Terrace","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0PWrZ6loNOKaDViD1etmo95wSiW_mgoYvzSCkpu3eHySPQUmCsF5EeYMu0PuwNe1Nby25AHejY5Myn_5jnxL6S864OoLAL1lpPNSa1bCHA","normal_prices":[17433,12262,11562,13556,10258],"normal_volume":[37,24,10,6,11]},"520":{"index":520,"max":1,"min":0,"rarity":4,"name":"Avalanche","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SIeaSAmaewuZzj-1gSCGn20Qi4m_cwtv8dy7Fbg8kXptyRuMJtEG4kdDuN-jq71ffj90QxCT22HxXrnE83F92lc4","stattrak":true,"normal_prices":[1820,430,219,146,125],"normal_volume":[251,327,264,77,69],"stattrak_prices":[2033,909,458,337,324],"stattrak_volume":[94,87,124,18,38]},"539":{"index":539,"max":1,"min":0,"rarity":3,"name":"Jambiya","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SKvGeDG6JwNF6ueZhW2ewwhhw5WnXy4v_dnqXOwMnAsQmF-IMtxDql9LmP-mw51feiIhDnn78kGoXuTq6iJ_X","stattrak":true,"normal_prices":[1480,148,63,38,26],"normal_volume":[79,105,81,116,33],"stattrak_prices":[540,166,99,50,52],"stattrak_volume":[73,38,126,88,97]},"555":{"index":555,"max":0.43,"min":0,"rarity":4,"name":"Re-Entry","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0Oara_1SMvWXDGuR0vpJvOhuRz39lkp-4j_QnoytcS-RPwEgDZt1FuAJshG6ktW1NLy34gCPj44WmH7-jzQJsHhOKqOsYw","stattrak":true,"normal_prices":[845,145,106,112,0],"normal_volume":[411,181,135,47,0],"stattrak_prices":[577,247,171,196,0],"stattrak_volume":[115,89,133,23,0]},"599":{"index":599,"max":0.5,"min":0,"rarity":3,"name":"Ice Cap","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNW0Oara5s0H-OWD1iDwOJij-1gSCGn2xtz5TjdyNquJX-XaVV0CMd3EOUP5Bjsw93uP77jsVHejohEyH6t339XrnE8zMglqPs","stattrak":true,"normal_prices":[117,59,32,28,29],"normal_volume":[1066,456,355,20,44],"stattrak_prices":[234,130,43,47,50],"stattrak_volume":[241,137,225,39,31]},"614":{"index":614,"max":1,"min":0,"rarity":5,"name":"Fuel Injector","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SM-WDC3WTye9kt-RtcCW6khUz_Wvcy9qgdCnEPQ8hApBzRrQJ4RW7moDgMLzktFDZiI5HnyWr3ChN5yp1o7FVg4hNKG8","stattrak":true,"normal_prices":[4782,1184,988,946,882],"normal_volume":[248,501,1018,216,138],"stattrak_prices":[6336,2348,1163,1020,1017],"stattrak_volume":[88,134,203,64,51]},"671":{"index":671,"max":1,"min":0,"rarity":3,"name":"Cut Out","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiNK0Oara_1SI_iSAmyv0e9ipOR7QRa_nBovp3OGnNb4dHiTaFdzX5EjRLVY5EG6mtOzYu7q4FDb2IxBynmvi34bvCo__a9cBktm4Qsf","stattrak":true,"normal_prices":[2270,848,484,431,386],"normal_volume":[44,50,22,19,18],"stattrak_prices":[3321,1003,655,560,510],"stattrak_volume":[20,17,9,13,4]},"684":{"index":684,"max":1,"min":0,"rarity":3,"name":"Cracked Opal","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SI-KSDWyVxdF5oOBlcCW6khUz_WvSwo2geHiUbFAkD8EkTOFetxi4w9ThZLnm5lfdj4JDznmqjixA6Sd1o7FVGUODCFM","stattrak":true,"normal_prices":[560,29,20,14,15],"normal_volume":[227,139,149,135,79],"stattrak_prices":[306,59,27,18,16],"stattrak_volume":[79,157,209,145,58]},"722":{"index":722,"max":1,"min":0,"rarity":3,"name":"Snek-9","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SM_6SBWKvzedxuPUnHH23wEpz6j7Rydqqdy6SPwcoDpV0RrEN4Ra_x921ZOPitVDdiIpDmDK-0H1esiynQw","stattrak":true,"normal_prices":[568,65,32,23,20],"normal_volume":[112,148,76,70,42],"stattrak_prices":[460,117,38,34,30],"stattrak_volume":[64,49,46,70,87]},"733":{"index":733,"max":0.5,"min":0,"rarity":2,"name":"Rust Leaf","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFL0P6raaJSL-KSAGCV_uJ_t-l9AXnhxUxz5mXSmd2sJ3yfagAjDJp4EeReuxHqwNfnY-O0tQSPjINNz3rgznQeAmDb9hs","normal_prices":[2565,1344,1285,1657,1161],"normal_volume":[46,74,178,16,2]},"738":{"index":738,"max":1,"min":0,"rarity":2,"name":"Orange Murano","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0P-7eqVjL8-cHGaexutJvOhuRz39xUpx5GiEzIqrJy6Qaw9yW5MjFuUDuxe4kILgNe-wsQaIioxNmX2s3zQJsHgf4ROQiw","normal_prices":[2064,605,481,489,500],"normal_volume":[62,13,32,47,27]},"766":{"index":766,"max":0.6,"min":0,"rarity":2,"name":"Tiger Stencil","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wjFU7PqRfK1qJeKsHXOVz-1_vN59SirqqhEutDWR1Nr9cHKVPwRzCJsmROMC5haxldLnMLjk51fdgthNxST4iiJJuis55uccEf1yksXdoWw","normal_prices":[24,5,3,4,3],"normal_volume":[1195,393,508,39,93]},"791":{"index":791,"max":1,"min":0,"rarity":5,"name":"Remote Control","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJf6FAX6vzedxuPUnGSvrlhxw62zXn92sJynGOFcnA5J5EeIPsRm5l93mM-6w7gzW2olEzzK-0H1xr8Niww","souvenir":true,"normal_prices":[4453,542,253,185,218],"normal_volume":[147,300,252,59,115]},"795":{"index":795,"max":0.6,"min":0,"rarity":3,"name":"Safety Net","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wipC0P-re6xSM_GVC3OJzvx3vuZscCW6khUz_WnSyIytcXPBPw8oDpMkQeIPuxjtxoWyYuOztVTX3okXyy3_2y9N6Xp1o7FVepitb8I","normal_prices":[1929,299,183,220,183],"normal_volume":[281,41,111,29,26]},"816":{"index":816,"max":1,"min":0.14,"rarity":3,"name":"Fubar","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJuWRD3WvzedxuPUnGiq1xBh_4D6Bytmrcn_CaFUlX8NyR-5ZtBG7kdzgZe-z5gTb3o9NyDK-0H2rKvLQog","stattrak":true,"normal_prices":[0,777,23,16,14],"normal_volume":[0,143,459,138,511],"stattrak_prices":[0,318,23,17,14],"stattrak_volume":[0,10,134,75,247]},"839":{"index":839,"max":0.8,"min":0,"rarity":4,"name":"Bamboozle","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SIvGeDGif_uJ_t-l9ASi2xxhzsT6Emdr6JCqTPQJyXpR4RLMI5hm_wNHjZe3r5Qzci41Dy3jgznQeOWU5G3g","stattrak":true,"normal_prices":[977,147,66,86,63],"normal_volume":[269,245,324,45,60],"stattrak_prices":[670,272,121,173,105],"stattrak_volume":[105,125,249,19,28]},"889":{"index":889,"max":0.75,"min":0,"rarity":5,"name":"Decimator","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJPWQB2qR1eFkj-1gSCGn20h16j-Ew9j6Jy6QbQB1XJJzQLVYshXqm92xY-7g4wze3dpAySz2iXlXrnE8_HmWmcE","stattrak":true,"normal_prices":[14589,3143,1802,1892,1771],"normal_volume":[101,153,300,22,23],"stattrak_prices":[19544,8538,3432,4308,3863],"stattrak_volume":[29,44,85,4,30]},"905":{"index":905,"max":0.7,"min":0,"rarity":3,"name":"Flash Out","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiFO0Oara_1SJvySHW-vzedxuPUnFn21zRt_6znQmY6gdyiXbQckWMBzRLIPtBnrl9LvYeqx5FPd2ItMmzK-0H2aE-DSCQ","stattrak":true,"normal_prices":[403,33,36,36,22],"normal_volume":[192,172,88,1,52],"stattrak_prices":[160,69,25,51,23],"stattrak_volume":[81,258,187,11,33]},"964":{"index":964,"max":1,"min":0,"rarity":4,"name":"Brother","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLlm5W5wiVI0Oara_1SJ-WWHG6cze9JvOhuRz39xBsj4GmEyt-vIHjEbgJ2CsR2RONfu0K_lYXvZrjg4ADYg4wXzin42DQJsHgTPX1sbQ","stattrak":true,"normal_prices":[555,70,37,32,30],"normal_volume":[525,544,1155,192,159],"stattrak_prices":[499,125,56,52,53],"stattrak_volume":[116,133,187,89,172]}}},"31":{"name":"Zeus x27","sticker_amount":5,"type":"Weapons","paints":{"1172":{"index":1172,"max":0.67,"min":0,"rarity":5,"name":"Olympus","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1B6ue9V7BlNf6XC3WvxuFyj-1gSCGn2xl2sm7XnI6hdC-XPAcmXsF2RLIP4xbslty2NLvqswePjYlEySn33S9XrnE8cYTqlUY","stattrak":true,"normal_prices":[841,434,309,307,289],"normal_volume":[1038,1184,2753,106,117],"stattrak_prices":[1879,853,547,595,509],"stattrak_volume":[253,363,752,57,129]},"1183":{"index":1183,"max":0.7,"min":0,"rarity":4,"name":"Tosai","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1B6ue9V7BiM_GaMWuZxuZi_uM6GXC3xUh05D7WmY36IHuUZ1AjXpVwR-FZu0OxltHlN-_gsQ3Z34NbjXKpEIQyv90","stattrak":true,"normal_prices":[144,62,36,39,42],"normal_volume":[1430,965,1801,61,220],"stattrak_prices":[365,139,67,89,64],"stattrak_volume":[323,513,1268,120,247]},"1205":{"index":1205,"max":1,"min":0,"rarity":4,"name":"Charged Up","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1B6ue9V7d5If6XD3WU_udlo_RscCW6khUz_WXcntv8InLFbwckWJV4ReJZuxG5lNzlMb7r51bfj99EzHmsjSxA6Hl1o7FVTY6aVfU","souvenir":true,"normal_prices":[2645,804,261,204,166],"normal_volume":[376,650,920,150,177]},"1268":{"index":1268,"max":0.75,"min":0,"rarity":2,"name":"Electric Blue","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1I4PeRbahoI-SBB2Svw-Jjtd5lRi67gVMk4WjUydf4ICiTb1N2CMRwRrQIt0KwxNXmPuyx4g3Y3o5Em36vjCIa8G81tM1Sd6W5","normal_prices":[43,8,2,2,2],"normal_volume":[956,975,1228,47,173]},"1297":{"index":1297,"max":0.6,"min":0,"rarity":1,"name":"Swamp DDPAT","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1T9s2qYaNkI_GeMWGf0-tlpN5lRi67gVNzsDuHyNyueHmQZgUoC5AkQuEKtkHum4fjN-jjtlfXio8UzHis2igb8G81tBqfncax","normal_prices":[4,1,1,1,1],"normal_volume":[1397,202,728,63,81]},"1382":{"index":1382,"max":0.66,"min":0,"rarity":3,"name":"Earth Mandala","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1T9veRbaV_NPisA2aexe96sd5lTBa_nBovp3PWyYr_I3OXbQJxXJIkF7FY4BS_l4e0Ybnl4Vba2INGyy2tiXhAvHw9_a9cBgJStbOC","normal_prices":[121,57,26,29,20],"normal_volume":[645,401,611,27,81]},"292":{"index":292,"max":0.8,"min":0,"rarity":5,"name":"Dragon Snore","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLln4Xl7x1Y-s2hfqF_MPGAHViU0-9xv-9WVSymhiIrujqNjsH6dH7FOA8pXJZ0Q-MPshe-lte0Pu6z7lbXio5GmSv83yNJ73k54rlWT-N7rWv6YDXa","souvenir":true,"normal_prices":[6209,2997,1575,1585,1433],"normal_volume":[409,387,683,48,81]}}},"32":{"name":"P2000","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1019":{"index":1019,"max":0.5,"min":0,"rarity":2,"name":"Panther Camo","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6ZhIfOYMXeRz_p-tfNWQyC0nQlp522Hm9ivdHjEOg4jC5t3TeAJ5xCwlYHlMuzmsQGIj99BzST9h39K6zErvbhYhH-Bzg","souvenir":true,"normal_prices":[700,253,199,322,706],"normal_volume":[74,57,15,23,12]},"104":{"index":104,"max":0.8,"min":0.06,"rarity":2,"name":"Grassland Leaves","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OG-V6hoIeaWHViX0-9lo-1oQS2MmRQguynLzI77dSqVbwF0D8MkTOYJ5xfpl9zhM-62tleI3o0TxHmviisdvCxttvFCD_RWG0AtOw","normal_prices":[9761,2567,715,1743,697],"normal_volume":[10,22,20,6,5]},"1055":{"index":1055,"max":0.6,"min":0,"rarity":4,"name":"Space Race","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POvV7d9IfOWHGaTxNF5ouBnSCyMmRQguynLzNirI32Ua1dzDpVzQLMKtUGww4LhMejh4FTY34wWyyv-3ylO7S5i4vFCD_Qear_SSQ","normal_prices":[4695,1105,775,1098,1187],"normal_volume":[97,64,91,35,22]},"1138":{"index":1138,"max":1,"min":0,"rarity":3,"name":"Lifted Spirits","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_K8-VAn6Zz-lJtPNsTiSMmRQguynLydatcHrEOgIhXJZxReINtRO7ltexZuiwtQPd34lFxXqqjisYun444fFCD_R1ajI6RQ","stattrak":true,"normal_prices":[90,14,5,4,4],"normal_volume":[554,512,473,157,143],"stattrak_prices":[75,15,7,7,7],"stattrak_volume":[165,212,234,283,148]},"1181":{"index":1181,"max":0.9,"min":0,"rarity":3,"name":"Sure Grip","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OL8Y5trMvGQGmac_uJ_t-l9AS2wwxx06mTUw9b7JH2RZlQoDZYkRLQD5hW4lNPiYePktgzWj45CmSzgznQeV1pFuQ0","stattrak":true,"normal_prices":[98,14,5,5,6],"normal_volume":[609,634,313,72,452],"stattrak_prices":[89,19,7,7,7],"stattrak_volume":[227,358,213,58,179]},"1224":{"index":1224,"max":1,"min":0,"rarity":5,"name":"Wicked Sick","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMWOVwuJ_vuRWQyC0nQlp4jnTyNqodHyXOlQkDZtzF-UN4BjukYeyZuLn5Qbaj4NEzy3_3ywd5zErvbh-3lU8Iw","stattrak":true,"normal_prices":[1867,476,301,273,267],"normal_volume":[317,704,1452,458,338],"stattrak_prices":[2165,675,302,276,276],"stattrak_volume":[128,111,215,119,93]},"1259":{"index":1259,"max":0.6,"min":0,"rarity":3,"name":"Royal Baroque","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OG-bZt-I_GBCFiA0-d4pN5lRi67gVMk4GzVzNz9I32RawMoD5shR-ZeuhGxwIeyNuPntgWIjt5Ani33jC0Y8G81tMIEN1xi","normal_prices":[121,56,19,17,16],"normal_volume":[1423,945,960,91,134]},"1292":{"index":1292,"max":0.6,"min":0,"rarity":2,"name":"Marsh","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OGhbZt5JfGfMWCcyPpitfNWQyC0nQlpsWvXy9-rdSiePQEkWZt0QuEI5kXsldXjMe3k5Qfag91CzyX-hyNL6zErvbj1scXf1A","normal_prices":[18,5,2,2,1],"normal_volume":[761,51,575,84,149]},"1342":{"index":1342,"max":1,"min":0,"rarity":3,"name":"Red Wing","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OL8OPQ9H_SWC3ev0-tyj-1gSCGn20RysWvczNqpeS3GOlQoXsYhTLJbuhfulIHjPurktVHfjY8Wmyuo2H5XrnE8nnCGDRE","stattrak":true,"normal_prices":[87,19,10,8,6],"normal_volume":[664,534,366,111,159],"stattrak_prices":[144,43,22,20,14],"stattrak_volume":[134,257,42,78,98]},"1359":{"index":1359,"max":0.75,"min":0,"rarity":3,"name":"Grip Tape","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OGhbZt9cqDDXliX0-dmo95lRi67gVMlsj7SmNiuIHmfaA4gDZEhQeBZuxa7m4CxYu-w7geL2osRxS6qiSIc8G81tBwotro2","normal_prices":[123,45,19,19,15],"normal_volume":[565,575,449,36,49]},"184":{"index":184,"max":0.3,"min":0.06,"rarity":5,"name":"Corticera","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V6JsNvWfD1iAk74m4N5lRi67gVNzt2TTyo6gdH6XPwEiCcZ2RucC5BG9kdTvZe-24QSIidhHyimoiC0b8G81tLsWWhFO","stattrak":true,"normal_prices":[10272,3558,1973,0,0],"normal_volume":[42,70,24,0,0],"stattrak_prices":[10747,3991,3459,0,0],"stattrak_volume":[17,43,31,0,0]},"21":{"index":21,"max":0.8,"min":0.06,"rarity":2,"name":"Granite Marbleized","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq3V6N_If6aGmKvzedxuPUnHyvhkUh2tmuBztupdi2fPwclDMN1F-JctUTuwYDgYu3rslPdj9lHnjK-0H1HqokLtA","souvenir":true,"normal_prices":[1070,19,9,12,10],"normal_volume":[65,203,362,128,43]},"211":{"index":211,"max":0.12,"min":0,"rarity":5,"name":"Ocean Foam","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6t-M_mVF1iSzftzj_E7H3njqh81siuKpYPwJiPTcA91W5N0EOMNskGwkt3gP-vh41GNiNpDn3r83ShL6itj4bsKA6Im-_XJz1aWVAZrXOc","stattrak":true,"normal_prices":[13357,16860,0,0,0],"normal_volume":[105,11,0,0,0],"stattrak_prices":[26551,25896,0,0,0],"stattrak_volume":[65,4,0,0,0]},"246":{"index":246,"max":0.4,"min":0,"rarity":4,"name":"Amber Fade","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POvV6JsJPWsA2KEwOJ6ueJWQyC0nQlpsjvcmd_7dHyVZgdxAsB1QeRZ5BPqlYbmNuvr5lTW2o1Myyyt3ykY7DErvbib25P3aA","souvenir":true,"normal_prices":[284,87,57,86,0],"normal_volume":[1175,860,281,71,0]},"275":{"index":275,"max":0.7,"min":0,"rarity":3,"name":"Red FragCam","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq3V7RiLOmsDWadztF6ueZhW2flkRsm52nQyNquJ3nBaw4lXMFzQLNf50bpl9GxMePm7wyM3YoWmC_2kGoXucluK1Fs","stattrak":true,"normal_prices":[2455,538,293,276,182],"normal_volume":[80,106,85,13,15],"stattrak_prices":[726,338,212,329,220],"stattrak_volume":[36,60,149,31,30]},"32":{"index":32,"max":0.08,"min":0,"rarity":3,"name":"Silver","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POgV7dkLOaWHFicyOl-pK8_Tn_nx00i6jjXnt-vJyqSaQdzDsYlFrED40W-x9bgYb6z41PY3Y9A02yg2X8l3LyC","normal_prices":[27471,11800,0,0,0],"normal_volume":[171,2,0,0,0]},"327":{"index":327,"max":0.22,"min":0,"rarity":3,"name":"Chainmail","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6dlIfmdA2aZzdF6ueZhW2fqxU4k6znTn434JHnEPA9yWcR2TLIJ4UK4w9e2Nbjr4QbX2owXnyr7kGoXuSuECNR4","souvenir":true,"normal_prices":[7642,7480,8104,0,0],"normal_volume":[43,24,6,0,0]},"338":{"index":338,"max":0.6,"min":0,"rarity":3,"name":"Pulse","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMXeFzf1zj-1gSCGn201wsTnRm9egcS7DaABxDZckQe5Ys0S6xtKxZO-wsQDbi9lMxSv-jS5XrnE8fJdFk9o","stattrak":true,"normal_prices":[623,144,97,135,112],"normal_volume":[185,123,253,47,28],"stattrak_prices":[435,222,110,177,113],"stattrak_volume":[186,249,327,25,25]},"346":{"index":346,"max":1,"min":0,"rarity":2,"name":"Coach Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V6h4J_eSCWKv0bwm4LFWQyC0nQlptTmEyNf9d3mQPQ91D5sjQrYJsxO_xNGxMLzi5QOMio4TxX79iy1JvzErvbjJFhomkA","normal_prices":[3243,1293,800,712,774],"normal_volume":[27,32,8,12,12]},"357":{"index":357,"max":1,"min":0,"rarity":3,"name":"Ivory","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMW6Gzvxvj-1gSCGn20gism3dz96pc3KVOgYoCpR4TOFZsxbsxNzlYejl7lPWiIJBmX6t235XrnE8r5B4jsA","stattrak":true,"normal_prices":[745,33,27,24,23],"normal_volume":[192,86,93,70,87],"stattrak_prices":[350,55,25,25,29],"stattrak_volume":[105,144,126,134,87]},"389":{"index":389,"max":0.6,"min":0,"rarity":6,"name":"Fire Elemental","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMWGZ0-tJte1sQiy9gRwrjDGMnYftb3-RZldxWJVyF-QLsUG5mofnML_qtg3cjd4TyCr4jXsf63lr4-5TVvA7uvqA-y0nTh8","stattrak":true,"normal_prices":[11408,7261,6875,7595,7647],"normal_volume":[130,156,113,7,18],"stattrak_prices":[21474,12164,8779,13120,10193],"stattrak_volume":[28,29,27,3,4]},"443":{"index":443,"max":0.35,"min":0,"rarity":2,"name":"Pathfinder","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OG-V6hsIumBB2mEybxJvOhuRz39lh4ksD7cz96gcX2UaAByA5olQeYLtxbsmtKyY-qxsw3Yg4MWnCz-jTQJsHiIL0xUTQ","normal_prices":[3637,1862,1820,0,0],"normal_volume":[31,26,14,0,0]},"485":{"index":485,"max":1,"min":0,"rarity":4,"name":"Handgun","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PO_V7Q_cKDDMWWfzuNJvOhuRz39xE53sWncnN2vcnKeaQAlA5cjRuUL4RTqxN3nP-ix4QCLjIIQyHn2iTQJsHgxqMM--w","stattrak":true,"normal_prices":[1985,186,96,84,87],"normal_volume":[130,212,182,70,82],"stattrak_prices":[1678,399,184,191,164],"stattrak_volume":[52,151,157,67,15]},"515":{"index":515,"max":0.2,"min":0,"rarity":3,"name":"Imperial","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV7Q_cKDDMW6d0etkueBlcDu2kSIrujqNjsGrJH6XPQ9xAsZ5FLIDtBG5mtfhY7nl4gGNiosTzH792ntOvC1stbsDT-N7ra_mVv2F","stattrak":true,"normal_prices":[122,36,35,0,0],"normal_volume":[836,119,133,0,0],"stattrak_prices":[145,88,98,0,0],"stattrak_volume":[285,144,57,0,0]},"550":{"index":550,"max":0.6,"min":0,"rarity":3,"name":"Oceanic","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq3V7Q_cKDDMWiTxO94ud5lRi67gVNysmuGzt_9JSiQaQJ0C8MkTLJbskHrk4fnZe3isgfZg4tMnySoiX8Y8G81tHDFigbI","stattrak":true,"normal_prices":[186,29,32,31,30],"normal_volume":[367,226,184,47,66],"stattrak_prices":[120,44,21,37,29],"stattrak_volume":[148,91,58,6,49]},"591":{"index":591,"max":0.63,"min":0,"rarity":5,"name":"Imperial Dragon","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PW9V7Q_cKDDMW6d0etkueBlcC2hlBoovQKJk4jxNWXEbAQmDsQmRbNYsxGwxoC1YrvrsQXXg40QxCX533tJ7Xs-4eYKWKAl5OSJ2JuLIVNl","stattrak":true,"normal_prices":[4886,1046,996,1022,941],"normal_volume":[151,210,316,51,109],"stattrak_prices":[3386,1367,931,1289,1071],"stattrak_volume":[89,110,98,11,43]},"635":{"index":635,"max":1,"min":0,"rarity":3,"name":"Turf","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PW9V7Q_cKDDQ3SAzvxij-1gSCGn20h14mSByd6vJXmUagQoXpMkQecN40Xsm4DhM-3k4lTY340UxCn53HhXrnE88VIlnLo","stattrak":true,"normal_prices":[1407,179,56,36,35],"normal_volume":[192,68,111,94,74],"stattrak_prices":[567,103,44,34,39],"stattrak_volume":[75,99,113,53,49]},"667":{"index":667,"max":0.8,"min":0,"rarity":4,"name":"Woodsman","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMW-Fz_pzot5lRi67gVMi5GuBzo6sJXiSOAJxCMR2RuECthTskNG1Yrm3sgCM345CyCj32yJP8G81tLtUlzXH","stattrak":true,"normal_prices":[5467,3380,2168,2429,2426],"normal_volume":[31,40,29,3,17],"stattrak_prices":[3648,2612,1842,2110,1841],"stattrak_volume":[12,7,12,1,7]},"700":{"index":700,"max":1,"min":0,"rarity":3,"name":"Urban Hazard","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMXKCw-94j-loVSihkSIrujqNjsGsJXnFPw4gCcZ1TOIPt0LukoG2ZuqxtAXaj4sTzy6q3SpN7C9u6-YCT-N7rcTI-daA","stattrak":true,"normal_prices":[254,15,12,10,7],"normal_volume":[120,173,274,78,116],"stattrak_prices":[103,17,11,10,8],"stattrak_volume":[79,108,115,47,19]},"71":{"index":71,"max":0.08,"min":0,"rarity":4,"name":"Scorpion","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV7duL-KDB2ie_v4k4LE5cCW6khUz_T-GmNyuc3uTbgZ1CcNzR-8DtkS6wYLvMLzj7wHaid5DnHmthiJK5n51o7FVTAH3Dhg","normal_prices":[10664,6500,0,0,0],"normal_volume":[225,6,0,0,0]},"878":{"index":878,"max":0.52,"min":0,"rarity":2,"name":"Coral Halftone","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0Pq6V6JsI_WHMXfCkb4mj-1gSCGn2xsj5mrWm4v_c37EaAV1CMR2Ru8P4RO7m4fjY7_rsgDZjYMQzHiriyNXrnE8hd3eC64","normal_prices":[63,23,17,22,20],"normal_volume":[385,154,211,41,54]},"894":{"index":894,"max":1,"min":0,"rarity":4,"name":"Obsidian","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PG7V7Q_cKDDMWiS0udyueBncCW6khUz_W7QzNf4eHKUPA9xDMAkFrMJ40brldGxM-rk4lfago1MzXmrjCwYvC91o7FVDbVY3kE","stattrak":true,"normal_prices":[4215,561,176,204,184],"normal_volume":[71,127,89,71,20],"stattrak_prices":[3052,1117,411,389,409],"stattrak_volume":[30,41,44,7,27]},"95":{"index":95,"max":0.8,"min":0.06,"rarity":2,"name":"Grassland","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0OGhV6N_IeOAAmaexdF6ueZhW2fkzEght2zVnIz_cXrCPQEmA5IhE7FZ4BG-x4GyY-rr5wWNj4kXyi_2kGoXucFfluJI","souvenir":true,"normal_prices":[3243,278,120,223,168],"normal_volume":[25,22,15,30,71]},"951":{"index":951,"max":1,"min":0,"rarity":4,"name":"Acid Etched","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PO_V7Q_cKDDMWaTyOpJs-1mWSyhqhEutDWR1NmhJH6VZ1BzCZtzTeQKuxe_x4fuYenj4Q3bgtkXyHn-iC5MvC864OccEf1ypheGRTI","stattrak":true,"normal_prices":[1326,119,59,52,54],"normal_volume":[308,417,650,212,118],"stattrak_prices":[815,242,104,94,94],"stattrak_volume":[129,156,193,156,129]},"960":{"index":960,"max":1,"min":0,"rarity":3,"name":"Gnarled","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0PO_V7Q_cKDDMWuf0vpJp-57Qy2MmRQguynLyt38dXjDaA5zC5YlQ-Nc5BG5k93mP-jhsVeKiY8XmSr5iy5J7C1s6_FCD_TbNBDIDw","stattrak":true,"normal_prices":[98,15,6,5,6],"normal_volume":[812,528,956,110,177],"stattrak_prices":[114,18,9,6,7],"stattrak_volume":[187,141,345,134,113]},"997":{"index":997,"max":0.65,"min":0,"rarity":3,"name":"Dispatch","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL5lYayrXIL0POjV6p4LfKWHHSv0-tyj-NlWiyMmRQguynLm4mscyqXOAJ1DpAjQuML5BDpxN22NuPgsVeN3YpCn3mr3ypB7S455_FCD_SVmRFKPQ","normal_prices":[4775,1746,1620,2072,1681],"normal_volume":[83,48,72,5,11]}}},"33":{"name":"MP7","sticker_amount":5,"type":"Weapons","paints":{"1007":{"index":1007,"max":0.6,"min":0,"rarity":2,"name":"Vault Heist","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_C9k5_ene7BSMPySAHSv2Ot6vO5-cCW6khUz_Wrcydz9di2WPAApA5EmF-MCtRDpktznNri35FeLithAzSuqiHxM7iZ1o7FVdAUc4V4","normal_prices":[2237,540,451,452,520],"normal_volume":[124,87,53,48,31]},"102":{"index":102,"max":0.8,"min":0.06,"rarity":3,"name":"Whiteout","collections":["set_office"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7i1k-PqnfKFiNeSsAm6Xyfo4teU9Hirmx0gh4GXdy9atInqfOAcgCscmRrNetxewl9HjP7_jsgfei5UFk3u-0OOK7w","normal_prices":[97427,16214,3694,3838,3941],"normal_volume":[13,74,142,17,18]},"1023":{"index":1023,"max":0.65,"min":0,"rarity":2,"name":"Tall Grass","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk6-C3f6tiJM-UHGKVz9F6ueZhW2frxxlx4jnQw4yuJ3yfPQ4hDpd5QOVZsUa5l9XiNb6w5laPjosWyC6qkGoXuWq2Rgm4","souvenir":true,"normal_prices":[1587,299,205,379,237],"normal_volume":[104,66,88,13,7]},"1096":{"index":1096,"max":1,"min":0,"rarity":3,"name":"Guerrilla","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V69lIfuaMWuZxuZi_uU7Hy22xE5x5TnWyYqvIi2SaVN0C8d1QeVf4RC-kdC0MOPl4Qbf2dhbjXKpOJ4z2JA","stattrak":true,"normal_prices":[821,198,73,51,50],"normal_volume":[49,98,112,66,53],"stattrak_prices":[855,250,147,83,65],"stattrak_volume":[18,39,35,33,15]},"11":{"index":11,"max":0.26,"min":0.1,"rarity":3,"name":"Skulls","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk_Pm7ZKh-H_yaCW-Ej7l35OBoTCrmzUQht2mDwon7cHuWPFUlDcFxQ7EDtxbpx4W1Y-LltAfAy9USYNky6pY","stattrak":true,"normal_prices":[0,2008,2365,0,0],"normal_volume":[0,72,69,0,0],"stattrak_prices":[0,2041,2101,0,0],"stattrak_volume":[0,87,64,0,0]},"1133":{"index":1133,"max":1,"min":0,"rarity":5,"name":"Abyssal Apparition","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V6JoIeKsAm6Xyfo45uc9GnnnzBh-5zzTw9n9I3mQPAEgD5YlFuIOthC6wNK1MeKwsgHeiZUFk3vcOiyhPQ","stattrak":true,"normal_prices":[1694,619,530,498,489],"normal_volume":[354,837,1738,595,383],"stattrak_prices":[1646,620,516,503,491],"stattrak_volume":[115,177,301,127,62]},"1163":{"index":1163,"max":1,"min":0,"rarity":4,"name":"Just Smile","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf8DIM0Pi7e7BSM_2aAmKvzedxuPUnHXrkzU4i4z-Dno6sci3BaQApDpN4R-cCthnqx4W2MunhtgCI3d0QmzK-0H0MYFOvtA","stattrak":true,"normal_prices":[366,83,40,34,32],"normal_volume":[354,763,1447,386,374],"stattrak_prices":[551,170,92,80,78],"stattrak_volume":[210,252,694,423,302]},"1246":{"index":1246,"max":1,"min":0,"rarity":1,"name":"Sunbaked","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk4uL5V7d5Mv-dC1icyOl-pK84S3C1lx9w6mndytn8JymTZ1QoC5AiR-AMukbqkoXvZu2x5VfW2o9F02yg2esX37bl","souvenir":true,"normal_prices":[171,16,5,2,5],"normal_volume":[469,390,280,144,519]},"1326":{"index":1326,"max":0.746575,"min":0,"rarity":1,"name":"Short Ochre","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7i1k4ue9fKV_JM-fB2CY1aB04eU6H3_mwxxw4znSmd79c3LBb1MgDZNwROdcuhG7kNHuNr7i5AXflcsbmuYuTdkk","normal_prices":[10,1,1,1,1],"normal_volume":[908,1210,882,109,190]},"1354":{"index":1354,"max":1,"min":0,"rarity":5,"name":"Smoking Kills","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf8DIM0OGjZ69kLvesBW6czf1JprNWQyC0nQlp4z7QmI2pdyjEP1ByD5BwTLQDsRXrktXjP-ri5FHYjIpExCX73CJJ6zErvbgKbpbVdg","stattrak":true,"normal_prices":[2812,1126,623,496,378],"normal_volume":[292,514,557,210,195],"stattrak_prices":[6385,2536,1490,1093,830],"stattrak_volume":[56,131,144,29,64]},"1386":{"index":1386,"max":0.65,"min":0,"rarity":2,"name":"Coral Paisley","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Tte0OKvYbdhJemsGWaCzNF6ueZhW2fklEV-sGvUzdigdX2WbgciCZQjRe9b50Xqm4bkMevj5gaMgo1AnCiskGoXuQsY-r8v","normal_prices":[38,10,3,3,1],"normal_volume":[1248,2456,829,212,64]},"141":{"index":141,"max":0.8,"min":0.06,"rarity":2,"name":"Orange Peel","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk-_O-bZtiMvGdCWKvzedxuPUnFiuxxRl3622By9z4dSiTPwB0ApsjQOMNsxTpkYHnZrvr4AWLiNlEnDK-0H2hOymBhQ","souvenir":true,"normal_prices":[6197,3200,2155,2289,1905],"normal_volume":[11,5,10,4,14]},"1436":{"index":1436,"max":1,"min":0,"rarity":4,"name":"Amberline","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf8DIM0POjaqF_LPmdC1icyOl-pK9rTCzlzBx14m-AyNupdXqfaQElXsN0QLICsxSxw4HjZuzm4gePjY5C02yg2Z3LgsMw","stattrak":true,"normal_prices":[519,197,101,83,56],"normal_volume":[886,1619,767,271,186],"stattrak_prices":[842,385,171,141,114],"stattrak_volume":[152,314,191,64,77]},"15":{"index":15,"max":0.8,"min":0.06,"rarity":2,"name":"Gunsmoke","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk6PeieKFjH_yaCW-Ej7d0sbI8Gyrklht04GvXy46vJ3uQbQ4nWcN5EeAI5hPtmtzjP7nktlHAy9USqCgnGlg","souvenir":true,"normal_prices":[2373,375,120,132,203],"normal_volume":[27,94,44,13,39]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk6_O-eKhoH_yaCW-Ej7kvs7c_GXrhwk4lsWzUztn7ciiUPFQgW5clE-UC5Bbtx9TmY-m041DAy9USq3Wit9I","normal_prices":[2212,1138,1034,1104,990],"normal_volume":[3,51,86,15,20]},"209":{"index":209,"max":0.8,"min":0.06,"rarity":1,"name":"Groundwater","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7i1k4P6nfqFSIuKSGGivzedxuPUnSX7nxEl_527Vzoyvcy2QbQUpC8NxF7NbtkbqwNLlZu-w5QHdiN0UyjK-0H0qFVLm2g","normal_prices":[7897,800,382,440,370],"normal_volume":[4,12,63,3,41]},"213":{"index":213,"max":0.08,"min":0,"rarity":4,"name":"Ocean Foam","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_C9k4OG9YaJ0H_KfG2KvzedxuPUnGX6xlEl2tWmEzdyrd32RbQ5yXpB5RuIK4xaxxIGzY7zl5gza2YITnzK-0H3lsKvKCA","stattrak":true,"normal_prices":[2656,2475,0,0,0],"normal_volume":[153,12,0,0,0],"stattrak_prices":[1367,1708,0,0,0],"stattrak_volume":[100,14,0,0,0]},"245":{"index":245,"max":0.8,"min":0.06,"rarity":1,"name":"Army Recon","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk_OK8ab1SIeKeF1icyOl-pK84Sijhwk525z-AmN2rcC7GaVIgW5p3ROQLthe9ltGyMOKw5wHZjd5E02yg2bE0ycdT","souvenir":true,"normal_prices":[139,3,1,1,1],"normal_volume":[165,373,900,124,143]},"250":{"index":250,"max":0.6,"min":0,"rarity":3,"name":"Full Stop","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk-fO8YadsLf-sHGKU_uJ_t-l9AS3nlhhx5W7Xyo6vJHPDagQpC5d4TO4IsRWwmtSxYuzi5FfciY9CxH_gznQebimdppU","normal_prices":[5459,4098,4387,4237,4291],"normal_volume":[51,9,11,1,1]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_Cxk4fO4cZthKfebGinIw-0v5-cxS33kwEh2tz-HyYugJC7FZwVyXJZ2FO4CtBa4xtPkN-nn-UWA3HYryggq","souvenir":true,"normal_prices":[166,173,0,0,0],"normal_volume":[1950,41,0,0,0]},"354":{"index":354,"max":0.5,"min":0,"rarity":3,"name":"Urban Hazard","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5JadiLf2SAGOV09F6ueZhW2fgx0gl4WTczdj7I3LFaQYjDcQiE-Beuhe6xIXnP-_l41eKi9pEyH79kGoXuW6iY_I1","stattrak":true,"normal_prices":[152,33,26,24,37],"normal_volume":[286,47,94,46,72],"stattrak_prices":[135,84,59,69,66],"stattrak_volume":[208,171,295,153,35]},"365":{"index":365,"max":0.58,"min":0,"rarity":1,"name":"Olive Plaid","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk__6vYaA8H_yaCW-Ej7cv5-BqSijgkRx252yAzdj_cy6QZ1R0XpB0QuZf4Bbrk9a0Yenr5wPAy9USeuvoaWg","normal_prices":[1075,466,290,740,393],"normal_volume":[55,17,12,12,9]},"423":{"index":423,"max":0.5,"min":0,"rarity":3,"name":"Armor Core","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_DNk4uL5V7FhNOKSA2iUxPx4j-1gSCGn2xhw6zjSzYysICiUOgV0Cpd1TORe5BW9w922Nrux5gKLitpGz3irhnlXrnE866qixJk","stattrak":true,"normal_prices":[143,55,26,30,32],"normal_volume":[348,148,124,27,40],"stattrak_prices":[196,111,64,65,71],"stattrak_volume":[343,133,186,55,7]},"442":{"index":442,"max":0.55,"min":0,"rarity":1,"name":"Asterion","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk4_OscbZkLuSbMWuZxuZi_rA_FnC3wERw5zuDyYusInKSOFQhCpZ2FO9Y40a_loC2NL6z5gHWjY9bjXKpANIUSxE","normal_prices":[1761,654,448,496,413],"normal_volume":[146,58,97,25,13]},"481":{"index":481,"max":0.32,"min":0,"rarity":5,"name":"Nemesis","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V6poLeOaHVicyOl-pK87Hyu1kR5_5j_WntigcXmXOlBzCZUjQeMLtBG6x9HuNrvl4gCP2I1B02yg2TXalB0S","stattrak":true,"normal_prices":[2464,661,684,0,0],"normal_volume":[196,294,87,0,0],"stattrak_prices":[2721,1976,1816,0,0],"stattrak_volume":[34,61,31,0,0]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf9Ttk6_a-abBSLPmUBnPek79w4eNoGnC2xx5x4WvRy43_I3-QOA4iWZJwFu5e5xfpl9HvM-_r5Bue1dxLI7RHCA","normal_prices":[259,7,1,2,2],"normal_volume":[155,308,300,55,1257]},"500":{"index":500,"max":0.62,"min":0,"rarity":4,"name":"Special Delivery","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V6dhIeOAB2GZxOpJvOhuRz39xRhytjuBm9n4d3yXbQF1XJAhQLID4BTskobhZb-35wXZ2toTySz2jTQJsHhDRFQUDw","stattrak":true,"normal_prices":[1092,160,99,243,102],"normal_volume":[223,187,135,44,23],"stattrak_prices":[787,430,224,345,258],"stattrak_volume":[86,115,81,1,31]},"536":{"index":536,"max":0.4,"min":0,"rarity":4,"name":"Impire","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk4uL5V61gMPmBC1icyOl-pK8xGiq2kUV24j6Gn9b4eXmWPwIoApJxRbRbtRW5wdfjYbi0sVfW2tkQ02yg2fafAb5i","stattrak":true,"normal_prices":[1825,228,218,278,0],"normal_volume":[149,109,97,41,0],"stattrak_prices":[1048,635,500,592,0],"stattrak_volume":[87,71,25,21,0]},"627":{"index":627,"max":0.75,"min":0,"rarity":3,"name":"Cirrus","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk6fugaahSMP-cAmOVwOpg4t5lRi67gVMj5j6Dwtaocy6UOAIgApNyQrQOshS7lIXlMbvqslHfi41Eyi7823xK8G81tHGGql6L","stattrak":true,"normal_prices":[1416,147,64,86,62],"normal_volume":[382,182,361,59,78],"stattrak_prices":[565,262,106,176,113],"stattrak_volume":[137,129,173,84,60]},"649":{"index":649,"max":0.7,"min":0,"rarity":3,"name":"Akoben","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk4uL5V7B_KfKSAliJxOJ6v_ZWQyC0nQlpsWmHyIquci7EPQQgCZMkE7FZsUXpx9y2Mu6wsgbWjINFyir9iXlNujErvbjY0_iNfw","stattrak":true,"normal_prices":[316,35,32,41,24],"normal_volume":[217,171,128,38,16],"stattrak_prices":[173,79,43,59,46],"stattrak_volume":[90,59,160,5,24]},"696":{"index":696,"max":0.65,"min":0,"rarity":6,"name":"Bloodsport","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk4uL5V6ZhL_-XHXef0_pJvOhuRz39lxsk4W3Ry96pIHrFOgElDZN2Q-9etUSwk4LnYu3h5wLejYwWxSr43zQJsHiIGMoJQA","stattrak":true,"normal_prices":[7260,3851,3128,3068,2900],"normal_volume":[400,875,771,53,57],"stattrak_prices":[4933,2762,2175,2388,2476],"stattrak_volume":[129,148,254,10,76]},"719":{"index":719,"max":0.8,"min":0,"rarity":4,"name":"Powercore","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk__25bbZuL-KWMWqAltF6ueZhW2fjkE114W7Vzduqdn2XOAYhXpMlEeQI4BW9kofiZOzq4VHXg9hGzi78kGoXuRPPGxs7","stattrak":true,"normal_prices":[1979,354,100,137,89],"normal_volume":[117,224,277,53,81],"stattrak_prices":[1385,474,251,270,224],"stattrak_volume":[68,63,124,6,50]},"728":{"index":728,"max":0.5,"min":0,"rarity":3,"name":"Teal Blossom","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk7eeqV6N_JfWdMWuZxuZi_uAwTnC1zE1zsWTSy936di-fb1AnCMYlTeINsBbrm9S1Mr7r5gKLi9lbjXKpdi5Lf9g","normal_prices":[12537,7679,7080,8997,13098],"normal_volume":[37,21,13,2,3]},"752":{"index":752,"max":0.25,"min":0,"rarity":4,"name":"Fade","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_CNk6fOqbZtgMKesAm6Xyfo45LQ7Fy3rzR536j6HyYn6J3zFaAcjA5RwQ-9fs0O5m93nMe2x5QHfjZUFk3sMNd5yQw","souvenir":true,"normal_prices":[3129,798,729,0,0],"normal_volume":[1836,1292,483,0,0]},"782":{"index":782,"max":0.5,"min":0,"rarity":2,"name":"Motherboard","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_C9k7Pu8a7FkNPKcD3WU_ulkteRncCW6khUz_T7Wm9-vJHmWbAVzDJZzFuMP5hKwxIDiP7jlsQGI2Y9CzSr_j3tJ6i51o7FV2fbsGVQ","souvenir":true,"normal_prices":[36,5,2,3,5],"normal_volume":[622,247,1430,63,88]},"847":{"index":847,"max":1,"min":0.1,"rarity":3,"name":"Mischief","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V7ZsI_uWGmKV09F6ueZhW2fnlE5x52Tdz4mscn6XOAFzXppyQ7RZtkTpwNzuMejn5wyPjYoTy336kGoXuS747mDn","stattrak":true,"normal_prices":[0,361,30,24,19],"normal_volume":[0,66,46,75,214],"stattrak_prices":[0,285,60,48,36],"stattrak_volume":[0,32,175,108,63]},"893":{"index":893,"max":1,"min":0,"rarity":4,"name":"Neon Ply","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf_jdk4uL5V7ZoMPyaDWavzedxuPUnGS2wzBglsm6AnNyqJHLBOAdyCZV0ELIN5xC6kNThY-jqslbbid4WyjK-0H0WWbSZ_g","stattrak":true,"normal_prices":[3696,491,228,232,189],"normal_volume":[63,69,103,70,46],"stattrak_prices":[2903,1076,415,420,439],"stattrak_volume":[18,28,41,47,19]},"935":{"index":935,"max":0.48,"min":0,"rarity":1,"name":"Prey","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf7jJk9feseqVuIf2sHGKU_uJ_t-l9AXvqwUsk4DyHnIr7eHySbg8gWcckTOUCsxawk9O1ZeywsQOIg95AznjgznQehcsrUP8","souvenir":true,"normal_prices":[131,59,26,54,72],"normal_volume":[546,56,86,47,20]},"940":{"index":940,"max":1,"min":0,"rarity":2,"name":"Astrolabe","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8jsHf-jFk7P2ge7BoLPySGm6fz9FysfNicCSjwiIrujqNjsGrcSmSZlMjX8YhQ7QKshWxxoHuZbzm5lfajIsRmSqvjy1Nv3tu6uhQT-N7rcDJm_6d","normal_prices":[2557,38,16,15,15],"normal_volume":[126,524,336,204,142]}}},"34":{"name":"MP9","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1k_OaheqlrMv-dGlicyOl-pK8_S3zjxRh_5mmGn9epIymQPQBxDpQlFuUJ5xa6kt2yZLjkswLY2ooT02yg2WH9Y1dp","souvenir":true,"normal_prices":[4109,470,98,95,62],"normal_volume":[47,70,105,28,6]},"1037":{"index":1037,"max":1,"min":0,"rarity":5,"name":"Food Chain","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6JiL_SsDW-RyOBJvOhuRz39xB5-sGrTnt2tdymVOFApD8dxQLUCuxWxldLkNezjtVDd2t8Uyy_7izQJsHisCKzN8w","stattrak":true,"normal_prices":[2194,610,331,309,273],"normal_volume":[272,463,827,267,131],"stattrak_prices":[3347,1221,642,505,492],"stattrak_volume":[68,112,162,68,61]},"1094":{"index":1094,"max":0.55,"min":0,"rarity":4,"name":"Mount Fuji","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk4uL3V6J4KvmsHm6eytF6ueZhW2fgkUoh5m7dnt78eC7FPFQgXJByE-AL5Bixld20MO2x51DX2o1NxCyokGoXudOiZ_SY","stattrak":true,"normal_prices":[1415,870,534,460,531],"normal_volume":[972,845,848,44,68],"stattrak_prices":[2870,1623,782,937,735],"stattrak_volume":[269,160,205,26,25]},"1134":{"index":1134,"max":0.8,"min":0,"rarity":6,"name":"Starlight Protector","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f-jFk4uL3V7d5IeKfB2CY1dF6ueZhW2flkUtztz_SzYypJSqRalUhDJNwQO4PsBXtx9HkN-K37w3bgohGmHn3kGoXuZ3lRdvF","stattrak":true,"normal_prices":[9027,5999,5757,5876,5533],"normal_volume":[335,554,1403,78,263],"stattrak_prices":[9766,6168,5465,5731,5769],"stattrak_volume":[105,170,303,18,54]},"1193":{"index":1193,"max":1,"min":0,"rarity":3,"name":"Nexus","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f8DIC0PyrcLF-H_yaCW-Ej7ohs7Q5FnDqx0t152XdzI36cCnDaAZyDJNzRuVYsBa4kYHgZbyx4ALAy9USEWUfUe0","stattrak":true,"normal_prices":[103,17,5,5,4],"normal_volume":[772,757,504,82,101],"stattrak_prices":[161,24,8,7,7],"stattrak_volume":[249,465,64,63,89]},"1211":{"index":1211,"max":1,"min":0,"rarity":5,"name":"Latte Rush","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6hsNOSWMWuZxuZi_rdrGCyxxER252ncw9arJC-QOAcmXsF2ROAP4RbrlNOzNbzq5VDb2YJbjXKpzLFi2t8","souvenir":true,"normal_prices":[11395,5701,1913,1459,1193],"normal_volume":[382,326,540,122,106]},"1225":{"index":1225,"max":1,"min":0,"rarity":3,"name":"Featherweight","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V7d4MPWBAm6XyfpJvOhuRz39wB9x6jncwtyvd3jBPw8gCJFwR7YItRW8kNK0P--27wLe391NzCyq3zQJsHiOu4WQDA","stattrak":true,"normal_prices":[89,12,5,4,4],"normal_volume":[574,93,622,41,177],"stattrak_prices":[96,15,8,6,5],"stattrak_volume":[223,42,401,130,72]},"1258":{"index":1258,"max":0.65,"min":0,"rarity":3,"name":"Cobalt Paisley","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Tte0PCifaFSMPGaHWuV2NF6ueZhW2ewwhwmtmmDmdz_eH-RaQZ1CcB3E-BcukKwmoXlNerk5wHY3tkRmX74kGoXuZ6yLkO1","normal_prices":[124,62,20,19,17],"normal_volume":[1025,751,889,50,134]},"1278":{"index":1278,"max":0.7,"min":0,"rarity":1,"name":"Buff Blue","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9TZk7f67bZtoJPeWHVicyOl-pK84TnrhlEwjtWvQzoqvciiWaAIoA5okQ7ZYsBHpxNDkNbzh5QDbjolC02yg2XGzrD7d","normal_prices":[10,1,1,1,1],"normal_volume":[1572,506,652,94,88]},"1301":{"index":1301,"max":0.7,"min":0,"rarity":1,"name":"Pine","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1e0POieK1jJc-UHGKVz9F6ueZhW2fixUtwtm6Hy9urd33CbQUhDsFzF7RetxS_ldzgY7ywsVbdidkWyi6tkGoXuWJp7z88","normal_prices":[5,1,1,1,1],"normal_volume":[761,442,510,99,177]},"1310":{"index":1310,"max":0.6,"min":0,"rarity":3,"name":"Shredded","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Tte0OKnZq9SNPmUC3WvzedxuPUnGCiyxB4ksDzdz4qpeS-UZ1clXsBwTOFc5BO_kdPlNOnl5wOL2IJGyzK-0H3-TFWDqQ","normal_prices":[89,40,17,19,18],"normal_volume":[1010,847,785,39,26]},"1330":{"index":1330,"max":0.6,"min":0,"rarity":1,"name":"Multi-Terrain","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk4ua-V6hkJ_iHQGTDlLsktrNrG3q1zB515GSEm9ahInyRawMgWcN5F-MC4RS5w4HjNuL8p1uJJfiZdX4","normal_prices":[3,1,1,1,1],"normal_volume":[714,464,931,83,110]},"1341":{"index":1341,"max":1,"min":0,"rarity":3,"name":"Broken Record","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f8DIC0OSnZr1hH_yaCW-Ej78gs7M_Hy-xxUUi4WWHyd6tJ33EOAAkXsckE-4M5Baxw9O2ZOO3sgzAy9USMhZdDpQ","stattrak":true,"normal_prices":[83,19,9,6,6],"normal_volume":[485,433,47,56,133],"stattrak_prices":[156,46,22,19,12],"stattrak_volume":[134,317,258,112,33]},"1375":{"index":1375,"max":0.65,"min":0,"rarity":1,"name":"Dizzy","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1e0PaqeKV5H-OEB3Wc_uxhj-1gSCGn204k5mXQwoz4dnrDaQ92CMB3R7FZtxa4mtfkZuyx5gHb2YNNz336jyxXrnE8H46mzhg","normal_prices":[3,1,1,1,1],"normal_volume":[377,152,1252,77,139]},"1388":{"index":1388,"max":0.9,"min":0,"rarity":1,"name":"Bee-Tron","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1e0OurZKhiN8-RB3OD_uJ_t-l9ASrhzRt062_Qm4n8cn-XbFQkCcMkTLQD5EW8m9TjM--34gXf2Y1Hzn_gznQepx3qArs","normal_prices":[20,1,1,1,1],"normal_volume":[372,169,687,133,118]},"141":{"index":141,"max":0.8,"min":0.06,"rarity":2,"name":"Orange Peel","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk-_O-bZtiMvGdCWKvzedxuPUnGXnkzUwj5WnQzt2scXKSb1ciD8ZwEORb5xW_m9XiYe7gtAPXg4kQyTK-0H0u1pUr8A","souvenir":true,"normal_prices":[523,16,4,3,3],"normal_volume":[132,126,682,84,75]},"1423":{"index":1423,"max":1,"min":0,"rarity":4,"name":"Urban Sovereign","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f8DIC0Oe8aqVjH-OcGGKCxOdxvt5lRi67gVMi4m6DmY2hcXLFPAMiA8NxQ-9cshK_m9yyYem04ACLg9hAzH6q239I8G81tD9Ib4M_","stattrak":true,"normal_prices":[483,182,101,84,54],"normal_volume":[394,363,412,211,148],"stattrak_prices":[862,336,171,148,123],"stattrak_volume":[112,140,165,52,45]},"148":{"index":148,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dashed","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk-_O-bZt-KP-BGliDwOByj-1gSCGn20kl5TjVwt-sJC6XOFAmDpUiQecOthTsm9PkYuix5wWP3opHyCr9hy9XrnE8MNQOT0E","souvenir":true,"normal_prices":[146,3,1,1,1],"normal_volume":[80,337,792,128,184]},"199":{"index":199,"max":0.8,"min":0.06,"rarity":1,"name":"Dry Season","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk-_O-bZtpL-SAMWWCwPh5j-1gSCGn20Ql42XQyo2sJ3qSOgNxCscjEeJYtRPtkNfhMuPgsgPcgoJAyH36iiNXrnE8I0B0oz0","normal_prices":[7200,939,372,874,371],"normal_volume":[5,6,56,7,14]},"262":{"index":262,"max":0.3,"min":0,"rarity":4,"name":"Rose Iron","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k-_qheqp0H-KcHWKvzP4vj-1gSCGn20h0423Wn9qoJH6QOwNxXpRxQOQLtEHumtTvP-i05wyMjN5Hz3qtiy1XrnE8Sl7QOgI","stattrak":true,"normal_prices":[1447,588,730,0,0],"normal_volume":[332,85,25,0,0],"stattrak_prices":[1712,1171,1331,0,0],"stattrak_volume":[181,85,37,0,0]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k7uCjcZt-KPmdC1icyOl-pK9rTCvlwEwhsWzcyYmtJ3iVOFQiW5BxTeNbshjqmoXlN7ni7gfa3Y8T02yg2VdURND-","normal_prices":[142,90,84,0,0],"normal_volume":[878,905,143,0,0]},"329":{"index":329,"max":0.22,"min":0,"rarity":3,"name":"Dark Age","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4ve6aahSKf6fD36vzedxuPUnG3uwxxkk6jnWmdqsJy-UbFV0DZV4FLRctUXqwIWyNb_r5Qbdg4lGzzK-0H2q-xqNvQ","souvenir":true,"normal_prices":[7791,7790,8839,0,0],"normal_volume":[90,14,3,0,0]},"33":{"index":33,"max":0.08,"min":0,"rarity":3,"name":"Hot Rod","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_Cxk_feqV6hkJ_iHQD7Cl7ou5rlsGyi2wBgh4WyDytmqcC6fbQAhC8chEeZZtRLrw4LlNLz8p1uJeM3XA-E","souvenir":true,"normal_prices":[19838,20651,0,0,0],"normal_volume":[305,12,0,0,0]},"331":{"index":331,"max":0.6,"min":0,"rarity":4,"name":"Arctic Tri-Tone","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f-jFk7uCtfK1uH_2DV1icyOl-pK86HHrrwE5ztWSGydv_eCifOAF2DMB5Fu5etEK9lt3hMuLh5gWPitgX02yg2dKG9WA-","normal_prices":[983,491,316,333,340],"normal_volume":[1808,916,884,60,109]},"366":{"index":366,"max":0.58,"min":0,"rarity":1,"name":"Green Plaid","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk__6vYaA_H_yaCW-Ej7outuQ8GHrjwkwl52zVno2peXqVbwYoX8N3ReFcsUK7l9PiPuzitgLAy9US-C_U3wM","normal_prices":[768,467,308,800,794],"normal_volume":[19,9,4,2,14]},"368":{"index":368,"max":1,"min":0,"rarity":3,"name":"Setting Sun","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk4eetZKFsMs-DD3OExPx44t5kX3CMmRQguynLyIqvdXiVbFN2CZMhQLRZ4RbumtXhPrji4gzfio5MyCr4in4a7nk_4PFCD_TmMRwm0Q","souvenir":true,"normal_prices":[5863,2743,2415,2339,1502],"normal_volume":[106,79,24,11,20]},"386":{"index":386,"max":0.46,"min":0,"rarity":3,"name":"Dart","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6dlJeaBAWmvzedxuPUnH3_lkRgmtmrVmNn6dC_COFUlWJZwF-df4xW8ktK2N-234QfX2IlMzjK-0H1cH54WRg","stattrak":true,"normal_prices":[408,120,60,83,427],"normal_volume":[218,124,121,6,28],"stattrak_prices":[199,130,119,146,898],"stattrak_volume":[99,90,51,18,26]},"39":{"index":39,"max":0.8,"min":0.06,"rarity":4,"name":"Bulldozer","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7i1k9veiZKt6H_yaCW-Ej-tztbQ5Hy2wxklw5TiDnt_4eC_GOFR1XJdzQ-AMskXswNbvNuvq4wPAy9USwXKj73o","normal_prices":[95870,23158,10982,10073,10904],"normal_volume":[32,29,82,3,5]},"403":{"index":403,"max":1,"min":0,"rarity":3,"name":"Deadly Poison","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6BoIfSfF1iAzudlv-9WQyC0nQlpsm3Vy9f4eXvEPwcoCcNyQOBY5EWxwN3gNru0tFGK2d5Mny__iS8c5zErvbjRwweEJA","stattrak":true,"normal_prices":[604,84,40,43,33],"normal_volume":[196,195,122,96,53],"stattrak_prices":[576,139,63,45,51],"stattrak_volume":[114,173,116,50,78]},"448":{"index":448,"max":0.3,"min":0,"rarity":3,"name":"Pandora's Box","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk__OgbKt_Ic-fB2CY1aAv5LE9Hyu1wUtx5WTUyYmrcHiUbgIlCcF5Q7RZtUKwlNDiZL7q4QTblcsbmlthBLtr","normal_prices":[17055,15481,14984,0,0],"normal_volume":[162,23,5,0,0]},"482":{"index":482,"max":0.5,"min":0,"rarity":4,"name":"Ruby Poison Dart","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4uL3V6pkNOKcCWKe_uJ_t-l9AXzhkEsm527Xy9r_JynEP1IiWJZ3FOYP4xTqmtznNO-34VCKiYJExSjgznQeVzj6siQ","stattrak":true,"normal_prices":[463,178,108,150,126],"normal_volume":[462,293,167,23,7],"stattrak_prices":[721,350,270,330,315],"stattrak_volume":[147,148,102,43,29]},"549":{"index":549,"max":0.5,"min":0,"rarity":3,"name":"Bioleak","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4uL3V6ZkL_yWD2yvzedxuPUnHSi3xhgm4GSGm4mpcnyTbVQjWcZ5EeIL50LultzgNbvmtAPf3oJByDK-0H0NB5p7wQ","stattrak":true,"normal_prices":[67,25,29,23,21],"normal_volume":[647,235,254,66,15],"stattrak_prices":[118,67,25,38,33],"stattrak_volume":[193,214,160,17,31]},"609":{"index":609,"max":1,"min":0,"rarity":5,"name":"Airlock","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6psMvOaHVicyOl-pK8xGXq2xE536m7dnI2vdS6WagZ2CMFyFrNcsBjuw4G1Ne23tQGN3olH02yg2ZxyeudA","stattrak":true,"normal_prices":[3499,1071,969,960,947],"normal_volume":[179,393,442,80,74],"stattrak_prices":[3795,1253,894,872,973],"stattrak_volume":[92,117,108,30,32]},"61":{"index":61,"max":0.08,"min":0,"rarity":4,"name":"Hypnotic","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk-fe8fK1qL8-fB2CY1aAutbY-TXm2wkRz5zjdzNytIi3GbVQhW8ElRu8L5hK7mtfvNbu04lGMlcsbmn-Uk_5D","stattrak":true,"normal_prices":[2037,2274,0,0,0],"normal_volume":[296,19,0,0,0],"stattrak_prices":[3421,4709,0,0,0],"stattrak_volume":[127,9,0,0,0]},"630":{"index":630,"max":0.45,"min":0,"rarity":3,"name":"Sand Scale","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_CNk5_uqbelgMKmsAm6Xyfo4tuA9TnDrzB5w5GTczo74cnyTblAkWcclRuYIuhXplde2ZePl4FTc2ZUFk3tXKn8xpQ","stattrak":true,"normal_prices":[827,57,52,46,0],"normal_volume":[240,177,72,18,0],"stattrak_prices":[116,40,27,44,0],"stattrak_volume":[65,71,46,97,0]},"679":{"index":679,"max":0.6,"min":0,"rarity":4,"name":"Goo","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6NiL8-fB2CY1aAv5LYwSn23xE4l5GrXn9aqIH-SZlMiD8MjEbYK4UW_x9TmM-Lh4FHYlcsbmqGCM0DC","stattrak":true,"normal_prices":[394,110,84,85,87],"normal_volume":[357,273,337,59,72],"stattrak_prices":[400,194,98,152,98],"stattrak_volume":[190,149,167,94,29]},"697":{"index":697,"max":1,"min":0,"rarity":3,"name":"Black Sand","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6ZhIfOYMXSRz-pJvOhuRz39xxsj5GWDn9z6d3rCOFV1CJpwTO4IsEG8x4WzPr6xtlTZ2YlEzX-vhzQJsHjCKAg7iw","stattrak":true,"normal_prices":[155,19,11,9,9],"normal_volume":[179,396,179,80,77],"stattrak_prices":[93,17,9,8,7],"stattrak_volume":[108,151,142,17,21]},"715":{"index":715,"max":0.7,"min":0,"rarity":3,"name":"Capillary","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V7JoKf6sAm6Xyfo457c6SXDrw0VxsmmAzor6IimePwApApYkQLFY5ES9lYCzZO7j7lTZiZUFk3t71H43DQ","stattrak":true,"normal_prices":[206,45,30,30,25],"normal_volume":[416,211,163,6,40],"stattrak_prices":[173,74,43,59,36],"stattrak_volume":[120,120,271,9,23]},"734":{"index":734,"max":0.7,"min":0,"rarity":5,"name":"Wild Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V61-LPGdCliWzeFkse1WQyC0nQlp4WuHz4mpcCrDZ1QhCcR5FrUJtkK9lNPuYezh4gDf2ItNxCr8iypJujErvbjAJv0dlg","normal_prices":[242617,240250,265099,0,300000],"normal_volume":[64,8,3,0,2]},"755":{"index":755,"max":0.8,"min":0.06,"rarity":1,"name":"Slide","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f9Ttk_OKiabB5JeLAMWuZxuZi_rg6TXrhxk9y5WmGn9etdy3BblVxCMd4Re8LskWwwde1MOq35gfX34lbjXKpcIaNgDA","souvenir":true,"normal_prices":[143,3,1,1,1],"normal_volume":[195,772,841,209,135]},"804":{"index":804,"max":0.75,"min":0,"rarity":3,"name":"Modest Threat","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f-jFk4uL3V6diLP-dFzfB_uJ_t-l9AXGylx4ktmqAydmrInvBOAByWcN1EOUOtxe8mtS2P-vl4FaLioJMz3ngznQehlZuXhE","stattrak":true,"normal_prices":[81,29,17,20,14],"normal_volume":[508,189,196,55,40],"stattrak_prices":[85,33,13,29,16],"stattrak_volume":[156,181,219,29,143]},"820":{"index":820,"max":0.55,"min":0,"rarity":3,"name":"Music Box","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k4vu8aaNoH_afAXCV0_1JveR9TiW6liIrujqNjsGtcCmeOw8gAptyFLVb4BaxmtGyML_n5QXW2owUm3j5hi4dvHlr57sET-N7rSSys4ef","souvenir":true,"normal_prices":[1663,426,218,418,452],"normal_volume":[113,29,32,8,16]},"867":{"index":867,"max":0.5,"min":0,"rarity":4,"name":"Stained Glass","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_C9k_OavYapoJM-UAmaD0tF6ueZhW2ewkUxysDjUz42hdS6XagQjXMZxELQC5BS4koGxYevm4QKLgt8Wzy36kGoXuTMoqxid","normal_prices":[15242,13899,12425,0,10610],"normal_volume":[118,29,16,0,2]},"910":{"index":910,"max":1,"min":0,"rarity":5,"name":"Hydra","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f_jdk4uL3V6x0JOKSMWuZxuZi_rQ9H363xU5_4GrWnIr8IHqfbwBxA5R2QuZZshm6kdO2Mum35Q3ajoJbjXKp1xQlWoY","stattrak":true,"normal_prices":[5102,1095,545,471,446],"normal_volume":[134,305,330,80,57],"stattrak_prices":[8041,2599,1151,1120,1223],"stattrak_volume":[67,65,77,29,40]},"931":{"index":931,"max":0.5,"min":0,"rarity":2,"name":"Old Roots","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8js_f7jJk4v28Z5tuIeKFB2mX_vdzvO1mWBa_nBovp3PUmI6vdi-VOgInDpFxQOIKuhW8lNC1Puqw41fajIJCnCv9j3tIuixt_a9cBudlkiY3","souvenir":true,"normal_prices":[319,83,61,299,160],"normal_volume":[149,124,162,28,38]}}},"35":{"name":"Nova","sticker_amount":5,"type":"Weapons","paints":{"1051":{"index":1051,"max":0.5,"min":0,"rarity":3,"name":"Windblown","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0PyhfqVSN_mdCliUyP1mtfN6TiWMmRQguynLnN_4JXyWbwN1CZN2QbEMthm6k9bjMemw7lTc2N4QySr7h38f7Hxp5fFCD_RpV_ibxw","stattrak":true,"normal_prices":[47,20,28,18,18],"normal_volume":[455,236,398,38,25],"stattrak_prices":[96,44,31,34,29],"stattrak_volume":[179,141,130,28,34]},"107":{"index":107,"max":0.8,"min":0.06,"rarity":1,"name":"Polar Mesh","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0P-re6xSIeKQGm6T_u15vvV7TjqnqhEutDWR1I7_dCmXbgEmWJYiFuZc4BPpkoWyYe3jsVbejt8QyiutjXxPuic45-wcEf1ynwKdBSU","souvenir":true,"normal_prices":[102,4,1,1,2],"normal_volume":[48,135,227,28,453]},"1077":{"index":1077,"max":0.5,"min":0,"rarity":3,"name":"Interlock","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OSrerBkJ_-aAmuF0ud5vt5wSiW_mgoYvzSCkpu3dXOTPw5xDcQkROde4Ra6x4biZOi3tQLfiIJMyCz72ihA63tt5esFWb1lpPMXduS-Jw","souvenir":true,"normal_prices":[1523,825,591,1543,2724],"normal_volume":[23,6,19,2,4]},"1162":{"index":1162,"max":0.698529,"min":0,"rarity":3,"name":"Dark Sigil","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwixU-fORbLZsK_uSHFicyOl-pK8xG3q1lk0l4m2HmI6odXiRbwF1CJchQbEI4RK8kNPiMb-24A3W3YoX02yg2YjfpjSA","stattrak":true,"normal_prices":[36,10,5,5,5],"normal_volume":[1584,39,1640,22,64],"stattrak_prices":[42,14,8,11,7],"stattrak_volume":[240,163,648,81,104]},"1192":{"index":1192,"max":1,"min":0,"rarity":4,"name":"Rising Sun","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwixU-fOReq1-Kf6UMXSFz9F6ueZhW2eyzB9z4WjTzt77JXKVaQcnC5sjTLEMthDpwdzkMr_lsVbW34lGmyj5kGoXuV-iSbwM","stattrak":true,"normal_prices":[471,88,43,38,35],"normal_volume":[782,863,1329,741,191],"stattrak_prices":[662,151,72,62,56],"stattrak_volume":[127,74,701,517,160]},"1247":{"index":1247,"max":1,"min":0,"rarity":4,"name":"Sobek's Bite","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0PyhfqVSM_-RC2yvzedxuPUnGX22wR9y5jvQz436IH_BPQ4nW8FwFuUDskO_lt3gMu_i71GNiNkWyjK-0H21VCFkHA","souvenir":true,"normal_prices":[2736,1327,807,603,777],"normal_volume":[125,74,136,59,42]},"1261":{"index":1261,"max":0.678431,"min":0,"rarity":2,"name":"Turquoise Pour","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU4M2va7Z0LPmQMWGczvlJpPR7Xjy8nA4ijDGMnYftb3-fZwAiDJtyF-cItxO_lNbnY7_h5QHXiIMQxCj3ingf6nw66uYKBfE7uvqA67y3_Ew","normal_prices":[18,6,1,1,1],"normal_volume":[292,453,398,44,81]},"1331":{"index":1331,"max":0.55,"min":0,"rarity":1,"name":"Marsh Grass","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU4M2peqV-M8-DBmiEztF1sexmcCW6khUz_WXTw42hJXuXPVVxDJJxRuAMsUG4ltLlZejqsQLb3oMXyCWthywf6Cx1o7FVg0Gz36E","normal_prices":[2,1,1,1,1],"normal_volume":[886,171,693,62,47]},"1337":{"index":1337,"max":0.35,"min":0,"rarity":2,"name":"Rain Station","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjZJ7vugV7dlIeCWHVjAkNF6ueZhW2ewkUhysW6AzIqvdH2eOFQpC5ZzQeNc5kG8wNeyNL-w4wbfjNgRzn78kGoXuS8lQPk9","souvenir":true,"normal_prices":[37,3,2,0,0],"normal_volume":[3588,533,200,0,0]},"1350":{"index":1350,"max":1,"min":0,"rarity":4,"name":"Ocular","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwixU-fORZ6d4LPGBMWuZxuZi_uU6GHixlk13sjzRwo2oeS_DOwQhCpMhQuRc5EHumoezNe3htgLX3YJbjXKpiWHwHrY","stattrak":true,"normal_prices":[304,116,61,48,35],"normal_volume":[398,392,587,407,43],"stattrak_prices":[707,252,135,129,94],"stattrak_volume":[99,176,148,72,74]},"1368":{"index":1368,"max":0.65,"min":0,"rarity":1,"name":"Currents","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC6s2pbatvKeKXHVicyOl-pK87TSrqzBwisWXTz9qvJXnFOgcnW5J1RLEPuhe_mtHgPuqws1SPi4tA02yg2UgVtCWp","normal_prices":[3,1,1,1,1],"normal_volume":[774,200,1135,126,207]},"145":{"index":145,"max":1,"min":0,"rarity":3,"name":"Wurst Hölle","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0P24bbZ9IeOAMXCF0_1ij-9mWSiMmRQguynLytutd33BbgV1DpdwEOYC5hSwwNPjYr_ksVHdjotGxH742yNL5yk6sfFCD_SvUSZNdg","souvenir":true,"normal_prices":[261,50,22,20,16],"normal_volume":[801,432,410,115,217]},"158":{"index":158,"max":0.8,"min":0.06,"rarity":1,"name":"Walnut","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0OWvZKp4NM-dAXGR_uJ_t-l9ASjrlk9042Xcm42geSmXa1UpX5F3Qe4Pu0Trl4K2Y-6z41GNgo9ExSXgznQek14KNvA","souvenir":true,"normal_prices":[2875,649,192,267,239],"normal_volume":[23,52,98,7,24]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":3,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0Pq7ZrBoMs-eAWOV0-BJvOhuRz39xk9_5mSAytqucX6RZwElDpF0QbMNtROwkIbmZuvltQbai4MRnCyoijQJsHiu0ebWIQ","normal_prices":[38333,4730,2035,2307,1907],"normal_volume":[1,8,14,8,2]},"166":{"index":166,"max":0.8,"min":0.06,"rarity":3,"name":"Blaze Orange","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0Pq7ZrBoMs-RAmaKxNF5ouBnSCyMmRQguynLz9v7In7CbFd2XpciRLUL4EHumoCyM-Lh5gXeiYtAzC-tiH8c6Ctu6_FCD_RtjAd6hA","normal_prices":[49964,4572,1954,2000,6400],"normal_volume":[4,8,14,1,5]},"170":{"index":170,"max":0.8,"min":0.06,"rarity":1,"name":"Predator","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0OirarZsI_GeMWuZxuZi_rE8Fy2xx0h25z-Eyt77eSnEbw8mXJEmQeMP5EXrx4ezN7jgtAKNjIlbjXKpxHjTAt0","souvenir":true,"normal_prices":[83,3,1,1,1],"normal_volume":[148,385,617,129,401]},"191":{"index":191,"max":0.22,"min":0.06,"rarity":3,"name":"Tempest","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OGrabdkJPWsDHWR1-FJvOhuRz39xUUk4jiHyt_9cXzGZwV2CJJyQbYN4Ua9wdPiZr6x4FTcjIhMzXmsjjQJsHjYOlWGdQ","stattrak":true,"normal_prices":[1489,496,551,0,0],"normal_volume":[10,69,17,0,0],"stattrak_prices":[3514,603,606,0,0],"stattrak_volume":[10,86,19,0,0]},"214":{"index":214,"max":0.12,"min":0,"rarity":4,"name":"Graphite","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PG8fal9LPWsAm6Xyfo4teA5TSjnx05ztjnRz4v6dX2UZg8hW5B1EbMLtxW-k9XhMLjjslHbiZUFk3velnlINA","stattrak":true,"normal_prices":[1080,1398,0,0,0],"normal_volume":[182,21,0,0,0],"stattrak_prices":[1861,1546,0,0,0],"stattrak_volume":[89,6,0,0,0]},"225":{"index":225,"max":0.4,"min":0,"rarity":3,"name":"Ghost Camo","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0PGvZatSN_-cCliSzftzj-1gSCGn2x9ytmXRzt36dH_EPw9yD5R1ROYCtBO_x4LhMO2wslfZiotMxX6viitXrnE8JeKdjD0","stattrak":true,"normal_prices":[470,327,273,494,0],"normal_volume":[65,17,73,9,0],"stattrak_prices":[367,331,289,452,0],"stattrak_volume":[85,57,87,8,0]},"248":{"index":248,"max":0.4,"min":0,"rarity":4,"name":"Red Quartz","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PG8cbd5IfyfB32VxdF6ueZhW2ewxEVy4j6GzI6rIHLFZlMlCZZ3RLZe50O4kNPmYuvgtVfd3o5CxSn6kGoXuWu5UcUF","normal_prices":[1744,703,758,1023,0],"normal_volume":[145,66,52,9,0]},"25":{"index":25,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Leaves","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFL0P6rabJoM8-fB2CY1aAjseU6Tn21xk934GzSw9mhcn2RbQB0X5d0R7JfuxPrxoK0Y7zi4QHXlcsbmmjVmTHk","normal_prices":[4515,920,408,396,303],"normal_volume":[7,25,8,4,15]},"263":{"index":263,"max":0.5,"min":0,"rarity":4,"name":"Rising Skull","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0OGlfahhH_6cGGavzedxuPUnSSy3wEV-4miHyt__eHKSOA4pA5JxE7UJ5kO9l4HmZuixtgHZgoMTyDK-0H1FVu2S0A","stattrak":true,"normal_prices":[1068,590,468,488,409],"normal_volume":[82,40,51,3,2],"stattrak_prices":[1368,855,880,878,825],"stattrak_volume":[74,11,84,11,7]},"286":{"index":286,"max":0.3,"min":0,"rarity":5,"name":"Antique","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSIf6HB3aFxNF6ueZhW2fmwRwl6jyHw96vIn2UbVVzXMdyRuYLt0O7ltPjZbu0tQTejo9Hyn2skGoXucYtjcOH","stattrak":true,"normal_prices":[1024,942,1115,0,0],"normal_volume":[110,102,25,0,0],"stattrak_prices":[1864,1370,1963,0,0],"stattrak_volume":[71,28,6,0,0]},"294":{"index":294,"max":0.3,"min":0,"rarity":2,"name":"Green Apple","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU0PW8baFjH_yaCW-Ej7xz5eNtTXHrw0l-4G3SnN78Jy-faQVxCZV3R7FesEHsm9S1Ybm07gXAy9USzA6LpwE","souvenir":true,"normal_prices":[1657,1161,1195,0,0],"normal_volume":[114,78,11,0,0]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PO8Zb1SM_iaAGKvzedxuPUnGXu1xEkktz-Dyd-oJH6ebwIpD5F5ReEJt0W-x4WxZOi0swCM34lNxDK-0H27DLwAVA","souvenir":true,"normal_prices":[120,99,132,0,0],"normal_volume":[654,94,133,0,0]},"299":{"index":299,"max":0.2,"min":0,"rarity":2,"name":"Caged Steel","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0P24aahSKPWLMWuZxuZi_rY_FiqyxER2smrRztuoeX_CagAkA8d0RLYC50W5moe2PuKztAXd2t9bjXKpf1PVBjs","normal_prices":[17,7,7,0,0],"normal_volume":[716,319,44,0,0]},"3":{"index":3,"max":0.3,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU0OCrbJthKfebGinHxepysuU_HCy3zRsm6jyHyNetIn-XZlQiWJojQ-QIskHqm9eyZezr-UWA3PfdNWrU","souvenir":true,"normal_prices":[24,11,13,0,0],"normal_volume":[1019,382,255,0,0]},"323":{"index":323,"max":0.8,"min":0,"rarity":2,"name":"Rust Coat","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNK0OG6baFhH_yaCW-Ej7si4-I-Fy3rwE0h4mvVmd38IH7FaQIkWMB5ROEOtxTsxNXmNLzrtVDAy9USeAhvX4k","normal_prices":[902,682,490,411,374],"normal_volume":[56,89,64,11,30]},"324":{"index":324,"max":1,"min":0,"rarity":3,"name":"Yorkshire","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0OCneLRhJc-dAXGR_uJ_t-l9AXHqx0l0526Bwtz7IHzDaFJxDsAhRbQDuxPtltTiYe234g3fg4xEzH7gznQe4s_Y0gw","normal_prices":[317,71,35,32,30],"normal_volume":[789,824,926,231,289]},"356":{"index":356,"max":0.3,"min":0,"rarity":4,"name":"Koi","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSK_-aMWuZxuZi_rBqGCu3xEoksm_SzomhcHiQP1QjD8BxQuAN50TtlIK1Yri05lDeiY5bjXKpu6W3YF0","stattrak":true,"normal_prices":[271,188,185,0,0],"normal_volume":[317,292,66,0,0],"stattrak_prices":[317,235,245,0,0],"stattrak_volume":[170,199,74,0,0]},"450":{"index":450,"max":0.5,"min":0,"rarity":1,"name":"Moon in Libra","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OihbK1sI6GsAm6Xyfo4tLhoHy_rx0ol6z-Hw4v8Ii2VOgIgCcd0E-QCu0W9lNPiYu_rtVSPjpUFk3ueOYGM7w","normal_prices":[639,643,471,528,545],"normal_volume":[133,45,78,24,25]},"484":{"index":484,"max":1,"min":0,"rarity":3,"name":"Ranger","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSMvGdCWKC_uJ_t-l9ASvqxUhy6mWAy4v7dnuRZlJ0CpR2Q7Nbtxe7kNO1MOu37lSP2N1HzyXgznQe-r9EaTk","stattrak":true,"normal_prices":[225,52,51,37,43],"normal_volume":[121,31,77,36,38],"stattrak_prices":[266,72,36,36,42],"stattrak_volume":[60,39,43,46,60]},"537":{"index":537,"max":0.6,"min":0,"rarity":5,"name":"Hyper Beast","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSKOmDC3WSxO9lpN5lRi67gVMhsGrTmd2seH6XbA4pDZR1EbMCtES8m4fiNenl4FDcid1Az32ri3tM8G81tMCTwFwB","stattrak":true,"normal_prices":[3149,1563,1227,1371,1428],"normal_volume":[117,99,111,13,18],"stattrak_prices":[6500,4278,2906,2963,2981],"stattrak_volume":[62,52,55,4,5]},"590":{"index":590,"max":0.5,"min":0,"rarity":3,"name":"Exo","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNK0PyhfqVSM_OaMWGZ_uJ_t-l9AS3lxE8k4zuGz42qciiVPQIkDcF0TLNeuhmwxtfhYbzm4wfci95FnC_gznQeGrfN1lI","stattrak":true,"normal_prices":[60,32,29,27,30],"normal_volume":[219,120,111,29,46],"stattrak_prices":[74,41,26,36,44],"stattrak_volume":[76,65,85,46,44]},"62":{"index":62,"max":0.8,"min":0.06,"rarity":5,"name":"Bloomstick","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0OG-eq1jJ8-dAXGR_uJ_t-l9AXDrxU4msD_UzN2qIy6Va1chXJJxFu8OtBO5l9fjZLnh4wXd3olBmCzgznQeBg5SBVo","stattrak":true,"normal_prices":[9708,3365,1393,1537,1334],"normal_volume":[21,48,73,10,12],"stattrak_prices":[24707,5740,2335,2670,2798],"stattrak_volume":[10,27,29,1,12]},"634":{"index":634,"max":0.3,"min":0,"rarity":4,"name":"Gila","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0PyhfqVSM_GdClicyOl-pK8wHnrrwU8hsW2DyoqgeSieblIkDJZwQu8Cs0TultLgP76051SPid9N02yg2S7-0Sao","stattrak":true,"normal_prices":[947,279,293,0,0],"normal_volume":[248,203,80,0,0],"stattrak_prices":[344,155,130,0,0],"stattrak_volume":[69,108,34,0,0]},"699":{"index":699,"max":0.8,"min":0,"rarity":4,"name":"Wild Six","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0PyhfqVSIf6QBmiCyPpzj-1gSCGn20t-4jnUzI7_IHifblIpDJJzF7UP5kPpxtHgMu62tAPZjY4Ryn72hnlXrnE8sT3rGLc","stattrak":true,"normal_prices":[246,62,33,33,31],"normal_volume":[244,272,315,55,68],"stattrak_prices":[288,106,53,57,55],"stattrak_volume":[96,113,143,40,46]},"716":{"index":716,"max":1,"min":0,"rarity":4,"name":"Toy Soldier","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSNP-KMXSfzep_tfNWQyC0nQlp42zVytutcCmTZgchW5omTbNc5ka8l9XvM77jtACL34lBm3__iShI6TErvbjr52W2-A","stattrak":true,"normal_prices":[1088,337,81,59,51],"normal_volume":[150,139,144,57,96],"stattrak_prices":[1210,342,141,123,124],"stattrak_volume":[56,67,82,40,94]},"746":{"index":746,"max":0.5,"min":0,"rarity":4,"name":"Baroque Orange","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiNW0OSrZqF5L6KsAm6Xyfo4tbI6F3zhkB9ztj7XmYmocXjGagJ1XMEiE-FctBe8k9K1N7zmtgyNiJUFk3sHO4PBUg","normal_prices":[14156,9957,10823,24598,0],"normal_volume":[53,14,6,2,0]},"785":{"index":785,"max":0.5,"min":0,"rarity":1,"name":"Mandrel","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0Pa7a7B-H_eBC36vzedxuPUnS3DqzRsk4mvUwt2gcXLFPwZyDZZ0R-MM5xa4lNXvNurhsg2Kg94QxTK-0H0uEiuY9A","souvenir":true,"normal_prices":[5,1,1,1,2],"normal_volume":[1164,1315,1645,85,265]},"809":{"index":809,"max":0.75,"min":0,"rarity":3,"name":"Wood Fired","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiVI0PyhfqVSKOWdGmKC_uxkpfVscCW6khUz_WiByIr8IyiXbQYlD5d1E-BftxW_lNbgMb7n7gyM3tkXnimr3C1O6n11o7FVLv86c40","stattrak":true,"normal_prices":[67,54,17,19,23],"normal_volume":[55,205,155,29,6],"stattrak_prices":[81,34,19,139,15],"stattrak_volume":[89,97,93,21,11]},"890":{"index":890,"max":0.8,"min":0,"rarity":3,"name":"Plume","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSJvWSGm-V0_1hue9ucCW6khUz_Tndmd6tdHKQbAMnCZAmQrVYtRW9moayNerq5FTdioJMmST7j35L7Sp1o7FVL01CQxQ","stattrak":true,"normal_prices":[390,273,96,111,75],"normal_volume":[48,44,130,37,46],"stattrak_prices":[347,195,68,157,93],"stattrak_volume":[26,35,67,5,34]},"929":{"index":929,"max":0.5,"min":0,"rarity":3,"name":"Quick Sand","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwipC0OaheqpSI_GeAViAwOd4pPJWQyC0nQlp5GSGwt-tJXvEblMlCpQmFuVc4ELqm9TiMuPr4Fbaj90Tnimohn5J7DErvbgkcpg0tA","souvenir":true,"normal_prices":[908,527,306,1100,575],"normal_volume":[76,60,65,9,7]},"987":{"index":987,"max":1,"min":0,"rarity":4,"name":"Clear Polymer","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwiFO0PyhfqVSMP-fF2qV09F6ueZhW2exxkR-tmWEmIyoJXyWZw4iDsclROVftxm7wIe1NbizswPe2YlHmCuvkGoXuVU3K7Ec","stattrak":true,"normal_prices":[2211,1190,258,247,261],"normal_volume":[80,81,113,46,85],"stattrak_prices":[1578,887,429,412,337],"stattrak_volume":[33,40,65,37,72]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL_kYDhwjFU0OGvZqBSLPmUBnPek75ysrZoHnnkw0V0tjndwo6tcnqSawEoWMQkR-Rf5hLul9S1M-vkthue1dyxC6rLqQ","souvenir":true,"normal_prices":[97,5,1,1,2],"normal_volume":[106,235,406,45,1451]}}},"36":{"name":"P250","sticker_amount":5,"type":"Weapons","paints":{"102":{"index":102,"max":0.8,"min":0.06,"rarity":3,"name":"Whiteout","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU0OWmYbBoL-WHMWuZxuZi_rJqTCq1wUUh6mSBntaqdHyTPFdzXJQjTeMLskTrk9zlN-7lsgyM34lbjXKp2HY6z6k","normal_prices":[42985,10464,4139,4283,5059],"normal_volume":[156,421,142,9,12]},"1030":{"index":1030,"max":0.8,"min":0.06,"rarity":3,"name":"Bengal Tiger","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0OL8PfRSNPmUC3WvzedxuPUnSX7llhghsGjQnNv7I36SZlAjDZMmE-VYskS_kYfkNO2w4QffiItNyjK-0H3QIgynUA","normal_prices":[5426,2190,1836,1962,2053],"normal_volume":[60,109,96,20,16]},"1044":{"index":1044,"max":0.85,"min":0,"rarity":4,"name":"Cyber Shell","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSI-mRC3WDyet6vN5lRi67gVMl6mzUm9n8IHzCaQUmA5Z3RLJb4xC9m4bhMbzn7lOL2Y5Am3j73HxI8G81tOdaiAQT","stattrak":true,"normal_prices":[662,71,36,36,31],"normal_volume":[226,339,475,57,86],"stattrak_prices":[391,141,55,86,52],"stattrak_volume":[118,123,150,24,42]},"1081":{"index":1081,"max":0.49,"min":0,"rarity":4,"name":"Digital Architect","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNa0OSrerBkJ_-UC2ivz-t5vt5lRi67gVMk4mXQntr7JC_GPQNxApFxF7NethXqktfvMuLktAaKjd9Cyy_9iH8f8G81tGeD0jsi","souvenir":true,"normal_prices":[5575,5451,4677,13267,11850],"normal_volume":[39,20,9,2,4]},"1153":{"index":1153,"max":0.7,"min":0,"rarity":5,"name":"Visions","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSNvmAB2ie0tF6ueZhW2fmzERx5jyHm4v_dXvGaQR2WJF2QrIMsxW_w9PvN-zhtgXXiokWn3_6kGoXuc_iGAKZ","stattrak":true,"normal_prices":[1151,433,315,342,309],"normal_volume":[599,679,1774,93,225],"stattrak_prices":[1289,661,395,393,384],"stattrak_volume":[192,223,266,31,65]},"1212":{"index":1212,"max":0.35,"min":0,"rarity":2,"name":"Constructivist","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiBJ-uavZK1-NM-SHGSYyPpzs_V8XSyMmRQguynLn974cXzGPAYgXpV4F-4NtRK6l4LkP7i35lSIgt1Nny6thnhA7SdtsPFCD_QCdWsc4g","souvenir":true,"normal_prices":[37,3,2,0,0],"normal_volume":[3829,521,196,0,0]},"1230":{"index":1230,"max":0.9,"min":0,"rarity":3,"name":"Re.built","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSMvWRG26c1dF6ueZhW2flkRh_sjjXmNb8cCnDPVUnW5ByQ-JZ5hG_xN3gZuPltAHegogWzH7-kGoXuSIylluX","stattrak":true,"normal_prices":[77,13,5,5,4],"normal_volume":[485,561,801,131,92],"stattrak_prices":[77,15,7,6,6],"stattrak_volume":[191,268,353,54,61]},"1248":{"index":1248,"max":1,"min":0,"rarity":5,"name":"Apep's Curse","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSIeCWHlicyOl-pK87HCjkxR9ztj-Dzdv8di2TPFchDptyTbEIthTsl9znY77r5Qzc2YwR02yg2XoGglyv","souvenir":true,"normal_prices":[14989,10799,5482,4897,4880],"normal_volume":[72,75,119,25,22]},"125":{"index":125,"max":0.3,"min":0,"rarity":4,"name":"X-Ray","collections":["set_xraymachine"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0Oq8ab1SMKLGXlicyOl-pK8_HSjjxx9wsmXQnIv6cH2TaAQoWZd4RuAKshe7wdS1NOvi5VCIi48Q02yg2fSIc8-4","stattrak":true,"normal_prices":[71,37,33,0,0],"normal_volume":[1005,1031,138,0,0],"stattrak_prices":[270,166,172,0,0],"stattrak_volume":[277,146,100,0,0]},"1273":{"index":1273,"max":0.6,"min":0,"rarity":1,"name":"Plum Netting","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0P6va6FSLPmUBnPembh05eA4H36ykBh3sGnRmN-hJyiQag4nDZB4RuQDtxLuw4fkYuK27xue1dzA89j_Xg","normal_prices":[5,1,1,1,1],"normal_volume":[2745,277,725,196,82]},"130":{"index":130,"max":0.8,"min":0,"rarity":5,"name":"Epicenter","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjIJuqKRYal9IfOHMWuZxuZi_rg5TnvmzB916m_dm92pdH6eOwJ2DpVyQ7JftUXtwIK2MLiz7wTXjYtbjXKpkd0OdLY","stattrak":true,"normal_prices":[2880,896,429,480,366],"normal_volume":[162,150,533,57,30],"stattrak_prices":[3970,1620,705,1066,678],"stattrak_volume":[81,127,141,13,29]},"1307":{"index":1307,"max":0.65,"min":0,"rarity":1,"name":"Copper Oxide","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU0PW8bb1vLOWWMXfClL5JvOhuRz39kEVx526GzYyudHLFbAYpXpZ0EbZeuxK4ktyxNOu3tQLX2o1DyCX7ijQJsHjyf3ICdA","normal_prices":[4,1,1,1,1],"normal_volume":[744,278,486,382,124]},"1315":{"index":1315,"max":0.75,"min":0,"rarity":3,"name":"Red Tide","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC6s2-YapmH_OcHGac_uJ_t-l9AXznkUV35WiGy4yhcX6ROgYnCcd3F-AJ4RG_wNXvZOjm7wXWj9lFnCrgznQexaJMRP4","normal_prices":[142,50,17,15,14],"normal_volume":[704,660,477,50,101]},"1317":{"index":1317,"max":0.68,"min":0,"rarity":2,"name":"Sedimentary","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU6s23bahhL-esHXCZ0-JJvOhuRz39xk9w62XRyNr9eCrDPwV0CpsiROAIsxC-kNyxNb7q71bcjY1GzXqsiTQJsHicAIc5kQ","normal_prices":[19,5,1,2,1],"normal_volume":[909,661,472,34,146]},"1345":{"index":1345,"max":1,"min":0,"rarity":3,"name":"Bullfrog","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjIJuqKRarFhLPaBAWCvzedxuPUnG3q1kEUl6mnRmYz6JXvBOlQgXsMiRe5ZtxnpmoLiZuO0sVbcjo8XyTK-0H1rEQ3j6Q","stattrak":true,"normal_prices":[86,20,8,7,6],"normal_volume":[557,470,43,79,86],"stattrak_prices":[133,44,25,18,12],"stattrak_volume":[76,339,161,64,91]},"1369":{"index":1369,"max":0.7,"min":0,"rarity":1,"name":"Sleet","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC6s2tabZSN-KSHljD_uJ_t-l9AXCwxhwi6j_Syoysc36TbAAhXpYiRuIPshLsk4bnYemw7wCKiNoUyC7gznQekhpLnpY","normal_prices":[6,1,1,1,1],"normal_volume":[664,232,1020,40,296]},"1420":{"index":1420,"max":1,"min":0,"rarity":5,"name":"Kintsugi","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjIJuqKRY61jNOOGCW6vzedxuPUnHXrikBkh4jjXzd76I36VPQF2CJV2FOYLthC5k9DiNuOwswKLj4JHxTK-0H3jhNNozg","stattrak":true,"normal_prices":[2350,1109,559,528,421],"normal_volume":[247,348,355,179,128],"stattrak_prices":[3517,1398,696,624,531],"stattrak_volume":[46,74,85,54,66]},"15":{"index":15,"max":0.8,"min":0.06,"rarity":2,"name":"Gunsmoke","collections":["set_inferno"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PWrZLRoLs-fB2CY1aB04LJsSy_rkUhy52qAyteoJS2XbVV2DJElR-cPtxjplNy0M7jg4weNlcsbmpJkoaMM","souvenir":true,"normal_prices":[3621,467,254,205,214],"normal_volume":[13,36,49,43,4]},"162":{"index":162,"max":0.18,"min":0.06,"rarity":4,"name":"Splash","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0OG-ZKV-KM-DXDLA_uJ_t-l9AXDrxh4i62vTzNyrc3zEP1MpWJN2EOMN5kTpl9K2Zb62slTdi4NMzC7gznQe9E-5MVM","stattrak":true,"normal_prices":[4765,2188,2250,0,0],"normal_volume":[24,143,7,0,0],"stattrak_prices":[9356,3548,4165,0,0],"stattrak_volume":[32,147,5,0,0]},"164":{"index":164,"max":0.8,"min":0.06,"rarity":3,"name":"Modern Hunter","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Pq7ZrBoMs-eAWOV0-BJvOhuRz39lkV-5zuEmN6seX-QbgYpA8B0QLZbtRXpmofgM-Pj4FSI3tkXxCj8hzQJsHhBKeBm5Q","normal_prices":[32000,4551,3525,4492,5500],"normal_volume":[3,16,16,3,2]},"168":{"index":168,"max":0.8,"min":0.06,"rarity":4,"name":"Nuclear Threat","collections":["set_nuke"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0Py7Y6F-NOKaHmKvxvxzte9WQyC0nQlp5mrRztyuIy3GbQF1WMN2QbFetBfulNbnPruz7lGKit4UyS6vjn9K5jErvbiRPSOzZg","souvenir":true,"normal_prices":[46681,10830,3782,3659,3984],"normal_volume":[11,63,77,9,13]},"207":{"index":207,"max":0.8,"min":0.06,"rarity":2,"name":"Facets","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PG8fal9LPWsCmaCytF0ouB_QBa_nBovp3ODy9z8c3KQOg5zDJR3Te5e4RXpxoLuMbjl7wDdioJAzn_2jShJ6y9i_a9cBseVOER4","normal_prices":[4819,806,474,542,505],"normal_volume":[17,23,15,9,1]},"219":{"index":219,"max":0.3,"min":0,"rarity":3,"name":"Hive","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0OCrbKxoOM-fB2CY1aAu6LltFny1xRt2tjuAzoyoI33BOgQpX5ByTOVY5xXql4HvNbviswbelcsbmoYK4S35","stattrak":true,"normal_prices":[1840,251,360,0,0],"normal_volume":[165,105,31,0,0],"stattrak_prices":[531,418,446,0,0],"stattrak_volume":[128,142,43,0,0]},"230":{"index":230,"max":0.2,"min":0,"rarity":3,"name":"Steel Disruption","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0PaqeKV5JPWdHWKv0ud6puR7cCW6khUz_WmGzIqrc3mVOlN2CJF5Re4CskWwxoW0PuKzsVaL3o9Mn3762H5I53l1o7FVezFvgCM","stattrak":true,"normal_prices":[1564,329,294,0,0],"normal_volume":[108,118,1,0,0],"stattrak_prices":[569,421,457,0,0],"stattrak_volume":[174,211,26,0,0]},"258":{"index":258,"max":1,"min":0,"rarity":5,"name":"Mehndi","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSMvWVB2mVxdF6ueZhW2eykERysj-GnNv7eHuTbAYjCpN4Q-ILsxGxw4DjM-rn5QTciIIRn36rkGoXuU7_dDjp","stattrak":true,"normal_prices":[3939,1939,1719,1551,1656],"normal_volume":[51,161,84,21,25],"stattrak_prices":[7835,4329,3243,3002,2543],"stattrak_volume":[45,69,71,25,15]},"27":{"index":27,"max":0.8,"min":0.06,"rarity":1,"name":"Bone Mask","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0OaveKFSLPmUBnPekL0l47g9TXuylE916mrRy9-vdS6VZgQpWJJ5F-8OsRawl4DhNbix4Rue1dyhzdnPWw","souvenir":true,"normal_prices":[1733,360,290,362,249],"normal_volume":[12,3,56,9,31]},"271":{"index":271,"max":0.2,"min":0,"rarity":5,"name":"Undertow","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0OL8PfRSIvWSCmKU_v53ue99cCW6khUz_W3dzIuueSqWblJ0WMNwFuYK4xawk9S0Y-7n4Afag4JDzSz73XtK5nt1o7FVPKoITvg","stattrak":true,"normal_prices":[5260,2838,3375,0,0],"normal_volume":[223,92,23,0,0],"stattrak_prices":[4968,4073,4803,0,0],"stattrak_volume":[96,62,8,0,0]},"295":{"index":295,"max":0.4,"min":0,"rarity":5,"name":"Franklin","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0P-hZqF0H_yaCW-Ej70htLhtF3Dgx0Vz5WrWwtf4JCjEPA8oDZF4FrRZ5xnulNy1Zrvn5wHAy9USTWvgE_Q","normal_prices":[584,203,140,280,0],"normal_volume":[1004,529,436,79,0]},"34":{"index":34,"max":0.08,"min":0,"rarity":2,"name":"Metallic DDPAT","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0Oe8aqVjH_yaCW-Ej-9ys7UxSiqyzB4jsGnQn9f6cX6UbQ4mDZRyE-AKsxHpmtPiZe7q5wPAy9USTykR2DM","souvenir":true,"normal_prices":[14,19,0,0,0],"normal_volume":[2096,25,0,0,0]},"358":{"index":358,"max":0.4,"min":0,"rarity":4,"name":"Supernova","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0PCnfLBoMuOEC2KE_uJ_t-l9AXzlwk5zsGnWz46uICjCPAZ2CZF0QO8LtBjtkNaxZrji7wbY2tkUySXgznQe4Iqu8Lg","stattrak":true,"normal_prices":[344,186,191,226,0],"normal_volume":[776,649,304,45,0],"stattrak_prices":[373,207,184,395,0],"stattrak_volume":[346,321,209,36,0]},"373":{"index":373,"max":0.83,"min":0,"rarity":2,"name":"Contamination","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Py7a6hoIeKsHWyFzeJl5N55HXzjqhEutDWR1NahIH6SaVUnDsB2Q-MIthHrxtTjMuLk7gXc2YlHyir93CtMuCdt4e8cEf1ykWaXO4g","souvenir":true,"normal_prices":[1776,809,354,299,311],"normal_volume":[96,54,83,4,46]},"388":{"index":388,"max":0.75,"min":0,"rarity":5,"name":"Cartel","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNK0OL8PfRSI_GBGmKc_uJ_t-l9AX2wlh906m7Uy4v_cXqWaA4gCpUmQLMNsBO_ltfiYuPltAHbgthGmyzgznQeqxXZ9kg","stattrak":true,"normal_prices":[4629,1057,854,994,989],"normal_volume":[92,125,120,13,21],"stattrak_prices":[7896,2628,1698,2587,1791],"stattrak_volume":[44,51,68,3,10]},"404":{"index":404,"max":0.6,"min":0,"rarity":5,"name":"Muertos","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSLfGdCmacwNF6ueZhW2e1lh51sm3UmN37cHuUbQQhXJtwQO4C4BXsxtHjM-624A3a2IoWySiskGoXuSIJMqiP","stattrak":true,"normal_prices":[2311,1224,1180,1322,1426],"normal_volume":[469,428,382,19,31],"stattrak_prices":[3146,1985,1843,2177,2139],"stattrak_volume":[120,146,153,21,15]},"426":{"index":426,"max":0.8,"min":0,"rarity":3,"name":"Valence","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNK0OL8PfRSI_-dGmiF09F6ueZhW2fiwUx14zmDnNagcC-WagUkApslQuBYsUW_ktexPry3swPfiogTyyiqkGoXuQius2mt","stattrak":true,"normal_prices":[202,57,26,28,24],"normal_volume":[337,361,589,71,100],"stattrak_prices":[396,119,51,110,36],"stattrak_volume":[159,422,521,70,93]},"466":{"index":466,"max":0.8,"min":0,"rarity":2,"name":"Crimson Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PmnZatjL8-XB2adzuByo957Si2MmRQguynLw9uvI3qVbld2XJF3ROMKtBTqxNO0P-Pj4lbXjt9HySv5hikf6y9s4PFCD_Tv7NBHeA","normal_prices":[4205,1871,1644,1767,1539],"normal_volume":[163,95,84,2,37]},"467":{"index":467,"max":0.8,"min":0,"rarity":1,"name":"Mint Kimono","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0PmnZatjL8-XB2adzuByo95lRi67gVNx4z_cn934JHvDOAEnCcZxTeZbsUTrxoGyMrzi4FHZiI0Uzyn-3HtM8G81tISNzIT_","normal_prices":[2288,1159,1094,1085,815],"normal_volume":[188,117,78,3,19]},"501":{"index":501,"max":0.9,"min":0,"rarity":4,"name":"Wingshot","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0OL8PfRSI-KSDWyDyeFij-1gSCGn205wtT7Xn4yuc3qQbQUkXJQmEeQCtkK7wdDgZO7n71Df2IkQxH7-hyhXrnE8AH9Qqg8","stattrak":true,"normal_prices":[1316,266,156,153,145],"normal_volume":[200,282,308,73,85],"stattrak_prices":[1441,527,290,293,257],"stattrak_volume":[98,112,185,41,92]},"551":{"index":551,"max":1,"min":0.1,"rarity":5,"name":"Asiimov","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSIeOaB2qf19F6ueZhW2fixx53tWqEm4ugeXuebQN0CZJyRrMJuxm4loCyPr_i51TfjtgXzi79kGoXuUXmUJzm","stattrak":true,"normal_prices":[0,4973,1029,1016,993],"normal_volume":[0,219,1331,131,240],"stattrak_prices":[0,7043,1255,1202,1150],"stattrak_volume":[0,78,203,46,90]},"592":{"index":592,"max":0.8,"min":0.05,"rarity":3,"name":"Iron Clad","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSLfWHD2uv0e94te16cCW6khUz_W2Hzd6heSjBbFd1CsFxF-8DsULulNLjZu6xtQDfitlCyiWt3HtNu3p1o7FVE3GEpAE","stattrak":true,"normal_prices":[1017,53,31,26,29],"normal_volume":[90,105,102,9,50],"stattrak_prices":[513,67,23,44,27],"stattrak_volume":[16,82,163,50,62]},"650":{"index":650,"max":0.5,"min":0,"rarity":3,"name":"Ripple","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0OL8PfRSM-CGGmmZytF6ueZhW2fnlht-5juGyY2vIC2SalQjX8Z1RbVesUG4m9XlN-_ntQPa3YNBn332kGoXubXJFvZo","stattrak":true,"normal_prices":[152,29,30,39,38],"normal_volume":[344,137,77,46,17],"stattrak_prices":[97,53,24,41,36],"stattrak_volume":[165,149,91,25,16]},"668":{"index":668,"max":1,"min":0,"rarity":4,"name":"Red Rock","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSIeiaAWqvzedxuPUnSizhkEh05zzQmIr8JX6UbAZ2DsMhTOEOthexl9e2NuLktAzaiIpGnjK-0H2BmRk7ww","stattrak":true,"normal_prices":[5266,3440,2429,2434,1916],"normal_volume":[33,22,46,27,46],"stattrak_prices":[3422,1686,2063,1336,1302],"stattrak_volume":[13,2,17,5,7]},"678":{"index":678,"max":0.7,"min":0,"rarity":6,"name":"See Ya Later","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSI-mRC3WT0-F1j-1gSCGn2x9ytmzWnN6pInjGOwMlDZp0EORe5BHsx93lP7zr5wzbiI5AyXr_jS9XrnE8gQrIgng","stattrak":true,"normal_prices":[10322,9090,8834,8855,8838],"normal_volume":[304,406,451,33,56],"stattrak_prices":[10288,9025,8483,9622,8691],"stattrak_volume":[63,80,115,10,15]},"741":{"index":741,"max":0.5,"min":0,"rarity":2,"name":"Dark Filigree","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNW0OCrZptpIeKYMWuZxuZi_uBrSS3iwBty4zvSntv7Jy_DZg90Xsd2Qudb5xG_kIfuZurm7wHbjtlbjXKpFkxeYNg","normal_prices":[1726,680,573,621,661],"normal_volume":[113,27,40,14,7]},"749":{"index":749,"max":1,"min":0,"rarity":4,"name":"Vino Primo","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSI_iWDWyV09F6ueZhW2eyxR9x6m3SydqqcinFPQN2CcF4F-5buhi9w9PgYem25AKNj40Wzy2rkGoXuZ9g813e","souvenir":true,"normal_prices":[3157,281,103,93,71],"normal_volume":[236,269,339,199,81]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PSheqF-NM-RAXWVwOJJvOhuRz39wEsm4WXRz4urcXvEZw8pXJp1RrEIuhC_lNfiYeLj51TXg4JAyyT_jTQJsHgo2RMlUQ","souvenir":true,"normal_prices":[515,5,1,2,2],"normal_volume":[156,274,622,908,1104]},"774":{"index":774,"max":0.7,"min":0,"rarity":3,"name":"Small Game","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU7PqRYLFjNPWBMWWcwPRzj_E7GnmMmRQguynLzdv4JCrGalRzCpZzQLUD5BG5wdPkZuqx51OLjt4Uyiv52CJL6ipssfFCD_QcHDx_gA","normal_prices":[132,48,32,31,32],"normal_volume":[330,933,864,51,125]},"777":{"index":777,"max":0.5,"min":0,"rarity":1,"name":"Facility Draft","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PCifaF9MvmdGliCxOpJvOhuRz39l05wt2XRzNr7dHjCalBxXschRucD4xnpwIfhN7ngtVTe2tlCyi_5hzQJsHgA1f7ZYg","souvenir":true,"normal_prices":[6,1,1,1,1],"normal_volume":[1256,616,1355,80,54]},"78":{"index":78,"max":0.8,"min":0.06,"rarity":1,"name":"Forest Night","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0PSheqF-NM-dB2CY1dF6ueZhW2fqkUpy5zzVyo76eC7DO1AnXJtzQuQMtkG_mtS1Y7zl41ffg91HyHmtkGoXueNjwZxk","normal_prices":[1119,108,84,87,82],"normal_volume":[64,333,631,63,90]},"786":{"index":786,"max":0.5,"min":0,"rarity":3,"name":"Exchanger","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Pa7a7B-H_KfG2KvzedxuPUnHnDkzRhz42rUnoqvcXyfPA4lDZVxEbReskS7lteyZLvq4FCKgo1DxTK-0H1XkoQg2Q","souvenir":true,"normal_prices":[193,26,11,13,12],"normal_volume":[266,214,251,19,39]},"813":{"index":813,"max":0.4,"min":0,"rarity":4,"name":"Nevermore","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNa0OL8PfRSJ-KSGGKUyOlxtfN6cCW6khUz_TjdmdeqdymfbVQlXpp0QuVYtBSwk9zmN-634gXd2tpCyH_2hipKunl1o7FVDpyoDiY","stattrak":true,"normal_prices":[628,123,92,123,0],"normal_volume":[538,399,239,18,0],"stattrak_prices":[422,239,184,406,0],"stattrak_volume":[289,228,165,18,0]},"825":{"index":825,"max":0.44,"min":0,"rarity":1,"name":"Drought","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFL0Pare6F_NM-ABXKczf1JtOB-QRa_nBovp3PVyd6tIijBOAQhXsAlE-ECsxC9x9flMuPn5wfZ2YNNnn32iy4d53pi_a9cBo6jFyfx","souvenir":true,"normal_prices":[98,38,29,40,0],"normal_volume":[310,435,391,40,0]},"848":{"index":848,"max":0.7,"min":0,"rarity":3,"name":"Verdigris","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiNK0OL8PfRSNvWBCm6X0-dlj-1gSCGn20R35DnRn42udXiVOg91CpZ4ReACthC4wYexZuuw5VeIjdkUzyqq3CNXrnE8Cr6wnKw","stattrak":true,"normal_prices":[214,25,18,20,33],"normal_volume":[259,42,176,41,261],"stattrak_prices":[151,53,26,43,68],"stattrak_volume":[157,161,133,80,153]},"907":{"index":907,"max":0.68,"min":0,"rarity":4,"name":"Inferno","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiVI0OL8PfRSKf6VC3WeztF6ueZhW2e3wUgi6z7WmI6gc3LDPQAgXsB2E7Veshbpl4DiNL_htQDZ2NlHy3qvkGoXuXYeEedL","stattrak":true,"normal_prices":[2238,146,54,62,52],"normal_volume":[94,190,87,51,33],"stattrak_prices":[554,240,104,226,129],"stattrak_volume":[96,159,123,24,43]},"928":{"index":928,"max":0.5,"min":0,"rarity":3,"name":"Black \u0026 Tan","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwipC0Pare6F_NM-eG2uEyO13vd5lRi67gVMm5GrTyN-ueH6fO1MlDMd2RLQC50Trw4fvMuPns1eLj9hHzCn4j3lK8G81tJittFNq","souvenir":true,"normal_prices":[1076,559,307,572,572],"normal_volume":[90,57,82,4,3]},"968":{"index":968,"max":0.6,"min":0,"rarity":3,"name":"Cassette","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSI_GAHWKE1etJvOhuRz39lkwltT7Ww4ugc3PGOwd0DpQkQbUPshbpm93lMuy25QGIjIwUn3_72DQJsHjyHnRH0Q","stattrak":true,"normal_prices":[37,12,6,7,7],"normal_volume":[1107,76,1017,151,292],"stattrak_prices":[59,22,7,12,8],"stattrak_volume":[512,475,91,95,41]},"982":{"index":982,"max":0.7,"min":0,"rarity":3,"name":"Contaminant","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwiFO0OL8PfRSKf6VC2SE_uJ_t-l9AXG3xUt-4jjcn4yqIHLGO1QkDsZ4TeNetUK4m9eyP-6xtVHcjd5DzSrgznQee4rYsVM","stattrak":true,"normal_prices":[580,109,74,106,66],"normal_volume":[131,141,112,8,53],"stattrak_prices":[255,129,86,132,71],"stattrak_volume":[66,57,94,34,30]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLhzMOwwjFU0OGvZqBSLPmUBnPelesn5-RrSXDlwRhx5TjSwtmocCifPwQpDpshReBfsxPrk4DhNu3jshue1dy8VcXxuA","souvenir":true,"normal_prices":[147,5,1,1,1],"normal_volume":[225,549,582,109,119]}}},"38":{"name":"SCAR-20","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_P2Re7BiMv2VHGie1dF6ueZhW2fjxBgl5jyAntytc3ifO1AjXpslRLFft0PtxoXkMuKwslaPg49MmHj6kGoXuUn7n6Ef","souvenir":true,"normal_prices":[1977,446,271,255,254],"normal_volume":[18,31,42,25,18]},"1028":{"index":1028,"max":0.6,"min":0,"rarity":3,"name":"Magna Carta","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRabF5KP-BB3OJ_v5jovFlSha_nBovp3PVzdr8cHnBbAcnXsAmR-UOsRHsktTmYb_ns1CNg4JCzSX_iiNKvS0__a9cBnHoQ9ul","normal_prices":[2310,1759,1608,1622,1756],"normal_volume":[81,64,74,9,19]},"1139":{"index":1139,"max":0.57,"min":0,"rarity":3,"name":"Poultrygeist","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKRe6dsMs-QBm6Tyut4tuhuRz2MmRQguynLno2pdnnGOw9xWcFwEbMCtkHsmoXuNe23tVGNiINCyyv6iylJuyZi5_FCD_Tlwp1EIg","stattrak":true,"normal_prices":[31,12,5,5,5],"normal_volume":[1285,688,1156,185,90],"stattrak_prices":[32,12,6,8,8],"stattrak_volume":[609,390,348,104,145]},"116":{"index":116,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Mesh","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKRZaF-KM-AD2mU_uJ_t-l9AXHhwxwi5zyDmIqoeCmWaAUhXpUiRrFZsBHsxNXvM-jl5lTdgotDySzgznQefYC7ilk","souvenir":true,"normal_prices":[72,3,1,1,1],"normal_volume":[81,49,706,101,157]},"117":{"index":117,"max":0.702614,"min":0,"rarity":3,"name":"Trail Blazer","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_PGvevY9H_aGHH6v1eFmv95lRi67gVN_5D6Bzo38cXOVOA52DZolReBbt0K5k9DvM-Pr4VHXjI9Enn6sjHkb8G81tIsMy8R0","stattrak":true,"normal_prices":[97,22,20,14,11],"normal_volume":[246,134,87,21,28],"stattrak_prices":[116,59,22,29,25],"stattrak_volume":[34,119,191,30,29]},"1226":{"index":1226,"max":0.78,"min":0,"rarity":3,"name":"Fragments","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMs-VHGaXzOt4pPJWTSWylhYYvzSCkpu3dnmXbAZyX5pzQLQO4Ri_lIbgMOzktg2P3t8Uni32iHwc7i856r1UAL1lpPP6-FL_6g","stattrak":true,"normal_prices":[38,10,5,5,4],"normal_volume":[752,165,1379,40,102],"stattrak_prices":[47,14,6,8,6],"stattrak_volume":[261,247,576,60,75]},"1327":{"index":1327,"max":0.746575,"min":0,"rarity":1,"name":"Short Ochre","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_P2RZbF-NPGBCliDwu9k4rFWQyC0nQlp4znSyo39dHifa1ciD8EjF-QCshmwxtKxY7_qsQze2olFyS-shyocvDErvbjS8vcY3w","normal_prices":[4,1,1,2,1],"normal_volume":[786,677,575,1705,73]},"1343":{"index":1343,"max":1,"min":0,"rarity":3,"name":"Caged","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_PGvept_JfaBD2SEyOF4j_c9cCW6khUz_W_SmNirdSmVOFcmDJEjQrEPtROwxtGyYevqsgPcg98RxXishi1Bui91o7FVKL5cNSg","stattrak":true,"normal_prices":[86,18,9,6,5],"normal_volume":[569,360,329,105,85],"stattrak_prices":[145,42,21,19,13],"stattrak_volume":[113,423,214,66,82]},"1371":{"index":1371,"max":0.6,"min":0,"rarity":1,"name":"Zinc","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-urV6dlMv-eC1iCyP5mvORWQyC0nQlpsD7Qydr6dSjEO1MnD5RzRuUIskPpl9zmN-7i5FbYj49NmXj4jXhP6TErvbhHIJnnmg","normal_prices":[3,1,1,1,1],"normal_volume":[672,206,363,97,236]},"157":{"index":157,"max":0.8,"min":0.06,"rarity":2,"name":"Palm","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKReKVhLc-fB2CY1aAl6eM_GyuxlEh0tm6Eztj4dCiWbw92DppyTeYP4xDrkt3gZejn4ATZlcsbmiqh02Pr","normal_prices":[8578,1475,965,952,1144],"normal_volume":[6,10,26,3,4]},"159":{"index":159,"max":1,"min":0,"rarity":3,"name":"Brass","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7uORarZsM-OsAm6Xyfo457MwH3zlzEwh6mXWw9qpdniQO1MmCJZ5QeBe5xa5wdfvZO234lOI3pUFk3uBClMh1w","normal_prices":[17229,10330,8811,10751,12086],"normal_volume":[16,30,24,6,8]},"165":{"index":165,"max":0.8,"min":0.06,"rarity":5,"name":"Splash Jam","collections":["set_militia"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRYLFjNPWBMWWcwPRzj_FgQSKMmRQguynLmYn6J3rCPVQiCMZ1EbQIsRHql4a2Y7iw4QbZg48QxXj-hixB7ntvt_FCD_SAL_dw1Q","normal_prices":[179259,5215,1496,2026,1549],"normal_volume":[4,34,72,11,12]},"196":{"index":196,"max":0.08,"min":0,"rarity":4,"name":"Emerald","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7vyRbaloMvGfCliS0-9gv95lRi67gVMh5WuDyY2qeH7CbQ8jDMR0RuQDuhOwxtCzZL_ksVTe3otByyz3inkY8G81tKuEs31W","normal_prices":[4032,6358,0,0,0],"normal_volume":[182,2,0,0,0]},"232":{"index":232,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRf6FvM8-XD3WbxPxJvOhuRz39lEwhsGqBz9moJHmXawQhDsQhEOUNsBSwkdXiM-3k5AbZjo1MmSiojDQJsHiHhrZ4wA","stattrak":true,"normal_prices":[3222,399,308,314,319],"normal_volume":[32,57,61,36,18],"stattrak_prices":[7369,695,445,404,425],"stattrak_volume":[20,66,98,4,36]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7v-RabZgOc-ABm6exNF6ueZhW2fhzU9-sGrRn9j_d3_DPwVzWMAiQrUI4RGwltGxNOmwtA3Z3Y1Dyyn3kGoXuRBHX853","normal_prices":[652,435,236,0,0],"normal_volume":[103,60,3,0,0]},"312":{"index":312,"max":0.5,"min":0,"rarity":5,"name":"Cyrex","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRe6dsMs-QF3WV2dF6ueZhW2fgzUR_52nUzYugICnCPVImApYkRO8NtkLtw4a1Nbzn7lSN2oITnCr5kGoXuXXxbesR","stattrak":true,"normal_prices":[3745,2873,2450,2703,2212],"normal_volume":[98,89,67,4,1],"stattrak_prices":[7242,5741,5217,4379,4943],"stattrak_volume":[48,28,15,1,3]},"391":{"index":391,"max":1,"min":0,"rarity":5,"name":"Cardiac","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRe6dsMqLDMW6e1etkpuRnWyC8myIrujqNjsH9cniTaFApD5R0F7EJsUG_k9bjM-3n4gLY3opBzCio3yxK5io55OdXT-N7rWZZlsYh","stattrak":true,"normal_prices":[2612,920,835,845,858],"normal_volume":[71,97,107,52,37],"stattrak_prices":[5987,1866,1179,1294,1236],"stattrak_volume":[29,18,16,22,3]},"406":{"index":406,"max":0.5,"min":0,"rarity":3,"name":"Grotto","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7uORe6dsMqLDMWuVwOVJvOhuRz39zRtx62uGm9z8JHnFaFR0AsAjRuQI40Sww9HvNunqtQTego5MmSX4izQJsHiOao_ijg","stattrak":true,"normal_prices":[102,53,39,44,57],"normal_volume":[248,101,77,68,15],"stattrak_prices":[141,76,46,68,67],"stattrak_volume":[126,114,102,45,15]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_P2ReKluH_yaCW-Ej7914-I_HHznx0lz4jmDwtaoJXOebgMlApt0EeJbt0W7xIG0Muzl5wTAy9USD_fgAo4","souvenir":true,"normal_prices":[82,3,1,1,2],"normal_volume":[156,421,1268,226,2193]},"502":{"index":502,"max":0.8,"min":0,"rarity":3,"name":"Green Marine","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMXeVwO1zveBiSjvjxiIrujqNjsH6IymVbQEmCZoiQ-MC5kbrwN3kPuy24lDa2YsQmy2t2iof7Hs56uxQT-N7rTkENKOY","stattrak":true,"normal_prices":[195,28,25,27,20],"normal_volume":[83,44,262,46,32],"stattrak_prices":[231,74,24,142,62],"stattrak_volume":[53,67,67,46,24]},"518":{"index":518,"max":0.5,"min":0,"rarity":3,"name":"Outbreak","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRe6dsMqLDMW2Fz-l6tfNWQyC0nQlp5znXy9-vcXiWaA5yCMZ0ROUL5hXuwNfmY-_lsgSP2d0UzH-v3CtB7jErvbiWj5__Rg","stattrak":true,"normal_prices":[79,27,18,17,22],"normal_volume":[184,164,125,38,47],"stattrak_prices":[110,52,30,33,42],"stattrak_volume":[101,120,101,6,34]},"597":{"index":597,"max":0.45,"min":0,"rarity":5,"name":"Bloodsport","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMWWczuFyo_FmXT2MmRQguynLnoqrcHPCaFdzDMF5F-8P4Bbum9fkYuvrsVffjI5AyS75inlL5ixjsvFCD_R20nqesQ","stattrak":true,"normal_prices":[2280,1003,985,1087,0],"normal_volume":[196,325,257,38,0],"stattrak_prices":[2325,1156,1012,958,0],"stattrak_volume":[69,56,47,8,0]},"612":{"index":612,"max":1,"min":0,"rarity":4,"name":"Powercore","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMXef1utks-57Sha_nBovp3OAzd2qIy_DPVMkXMEiE7UL5ES-l9yyP76wswWP3Y1Nyyn2i35L6S5s_a9cBj_cXeyl","stattrak":true,"normal_prices":[657,130,91,86,87],"normal_volume":[158,111,134,111,78],"stattrak_prices":[797,203,102,95,104],"stattrak_volume":[35,58,49,33,46]},"642":{"index":642,"max":0.75,"min":0,"rarity":3,"name":"Blueprint","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRaqh4JeCBB2mE_v11sfNWQyC0nQlp4jvQn92oJX-VaVIgW5QkQuYM5kLswNTnNL-w4QaK2YNFmXqqjSxJuzErvbi8Z0332w","stattrak":true,"normal_prices":[94,34,31,33,24],"normal_volume":[243,153,135,31,33],"stattrak_prices":[151,56,27,45,31],"stattrak_volume":[14,81,90,10,26]},"685":{"index":685,"max":0.5,"min":0,"rarity":3,"name":"Jungle Slipstream","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRe6dsMqLDMW2Fz-l6td56QyCjhgk1tjyIpYPwJiPTcFIgX5tyFOEJtxm_wdDkZOrq5gHcjIIRzyX_hiJP7io55O9WUKUgr_fJz1aWgsoiFrs","stattrak":true,"normal_prices":[65,17,19,18,21],"normal_volume":[323,110,119,24,30],"stattrak_prices":[82,21,13,18,23],"stattrak_volume":[150,63,71,37,3]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_train"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7v-Ra6V_Iv-dMWGZw-tkj-1gSCGn20xx4mXRyd79eHPBbgQiXJpyQrMLuhfqm4LkNu7htQWI2d9CzSX9jShXrnE8-xTDFeg","souvenir":true,"normal_prices":[12,8,0,0,0],"normal_volume":[1238,110,0,0,0]},"865":{"index":865,"max":0.5,"min":0.06,"rarity":1,"name":"Stone Mosaico","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk5-uRa6VjIfyAMXOZzetJvOhuRz39wk4m5TvWn474dyqWagcjCpZ2TeAPtxO8kYLnZezg5QbaitpGyyWrjTQJsHihs7k2tg","normal_prices":[1460,439,255,254,249],"normal_volume":[4,61,56,18,5]},"883":{"index":883,"max":0.65,"min":0,"rarity":3,"name":"Wild Berry","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRa6xoNuKcAFiDwu9k4rFWQyC0nQlpsmnTyNf8dy-fZlIoDZd1F7MI4xbuw4e0NLm0sgaP3tpNn37_h3gf6jErvbhxX_RFLw","normal_prices":[307,173,108,129,126],"normal_volume":[318,226,281,27,70]},"896":{"index":896,"max":0.45,"min":0,"rarity":3,"name":"Torn","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk_OKRe6dsMqLDMXSE0-d9tfNWSzyggSIrujqNjsH6eHiSOwZ0XsdxFrEIthfpx9W0Yuux4QDe34pFni-s3SpK7Hs6570KT-N7re2tWema","stattrak":true,"normal_prices":[298,110,98,96,0],"normal_volume":[168,59,45,32,0],"stattrak_prices":[336,137,98,129,0],"stattrak_volume":[22,18,70,19,0]},"914":{"index":914,"max":0.62,"min":0,"rarity":3,"name":"Assault","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk7OeRe6dsMs-SHXSR1OJij-1gSCGn2xxw5GzWnNutdnKXagRxCMZ5TbYKtBbrl9WxPu7g5A2Ljt1HmXj5iSNXrnE819YWtjs","stattrak":true,"normal_prices":[77,26,28,26,26],"normal_volume":[97,79,90,50,49],"stattrak_prices":[78,32,15,34,22],"stattrak_volume":[54,66,47,49,36]},"954":{"index":954,"max":1,"min":0,"rarity":4,"name":"Enforcer","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLinZfyr3Jk6OGRe6dsMqLDMWKex-Fks-R7cCW6khUz_TmEn4qudiqVPVB0X5t3QbEN4ELqxNHlY-O27gCLg9oXmyqsjCtN73x1o7FVEvhkFhM","stattrak":true,"normal_prices":[438,103,56,43,46],"normal_volume":[179,337,501,56,142],"stattrak_prices":[686,163,96,85,83],"stattrak_volume":[90,101,206,77,70]}}},"39":{"name":"SG 553","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"101":{"index":101,"max":0.8,"min":0.06,"rarity":1,"name":"Tornado","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M26Z7ZjIfScMWuZxuZi_uU7Syuxlx505muBzN2sI3uUOA51C5AhR7UIsEKww9W0MO634APd2NhbjXKp4EWrMzw","normal_prices":[6615,1412,1059,1037,1089],"normal_volume":[15,27,35,2,20]},"1022":{"index":1022,"max":0.7,"min":0,"rarity":1,"name":"Lush Ruins","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a7s28fa1jM8-UHGKVz9F6ueZhW2fmkU4jtTzSw42pc3LEOgJ2ApZ4FORZ50XtxoXiPr-z5FDcit9ExXqvkGoXubXo--Tz","souvenir":true,"normal_prices":[636,142,108,167,142],"normal_volume":[77,64,224,76,96]},"1048":{"index":1048,"max":1,"min":0,"rarity":3,"name":"Heavy Metal","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-XC2aEyeNzpOBlcCW6khUz_W6Gw9aqcH3EOAUlCcR5Qu4J50O5ltbhMrnltgbdg4tDmSus3ClOuCp1o7FV59kcj5o","stattrak":true,"normal_prices":[147,25,25,17,14],"normal_volume":[115,243,331,298,68],"stattrak_prices":[218,57,33,28,26],"stattrak_volume":[172,144,182,173,89]},"1084":{"index":1084,"max":0.48,"min":0,"rarity":5,"name":"Hazard Pay","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QD3KEyOF4j-1gSCGn20Qj52vXw9z6c32RbAV2XpF1Q-UN4Ra7x4bkPuy0tFTciYpCxC37jC1XrnE8Zorh1bo","souvenir":true,"normal_prices":[22707,21948,21703,73751,0],"normal_volume":[51,6,3,1,0]},"1151":{"index":1151,"max":0.7,"min":0,"rarity":4,"name":"Dragon Tech","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QF2WV09FyouBuQCeMmRQguynLw9ygIHnGbgYlDpciEeBYsEPux9ThMuOz4ACLjY1FmX-viitMvCZp5_FCD_QeAJd5TA","stattrak":true,"normal_prices":[165,59,37,34,32],"normal_volume":[1496,1063,2216,50,145],"stattrak_prices":[287,114,51,57,55],"stattrak_volume":[230,342,301,32,144]},"1234":{"index":1234,"max":0.9,"min":0,"rarity":3,"name":"Cyberforce","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QF2WV0-h5ouJscCW6khUz_Wjdntr6Iy6WbgEjA5MlRedctxG5kNKyNbi3sgTfi9oUnyj9234b5n51o7FVairOMAY","stattrak":true,"normal_prices":[75,13,5,5,5],"normal_volume":[535,783,971,103,146],"stattrak_prices":[92,15,7,7,6],"stattrak_volume":[226,28,336,22,75]},"1270":{"index":1270,"max":0.795222,"min":0,"rarity":1,"name":"Night Camo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4P2Raqh4JeOsAm6Xyfo46eMxTi_qwEUmtTjUz9etJCnBaVJ0XMd3F-QIuxbtk9GzNe3n5FSP2pUFk3tLrFywMQ","normal_prices":[8,1,1,1,1],"normal_volume":[312,533,807,225,452]},"1320":{"index":1320,"max":0.6,"min":0,"rarity":2,"name":"Basket Halftone","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1T-82heqVjJ_WsDGaDyutij-1gSCGn2xxy6mndyNj6cnLCPAIlC5YkF-4Ku0W_ltDhPr6z5lfb2IJBniT7iy9XrnE8euhCJNg","normal_prices":[15,3,1,1,1],"normal_volume":[647,593,477,148,61]},"136":{"index":136,"max":0.8,"min":0.06,"rarity":1,"name":"Waves Perforated","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_826abRoH_ScGnSv1u9gtfJWQyC0nQlp4TyDnNr4c3yVPQcpX8FxQORZ5he5lYG1Mr-07wOMjt1Hyyv-3H5O5jErvbhvnntidg","souvenir":true,"normal_prices":[145,3,2,2,2],"normal_volume":[72,181,7036,1054,1438]},"1394":{"index":1394,"max":0.7,"min":0,"rarity":1,"name":"Safari Print","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1T9veRaapkLfGfMXeCyOBij-1qcCW6khUz_T_Rn9qoIn-Sb1MkX5B3RecL4EXsltXmP-u0tgbbj4tEyHn7334a6Ch1o7FVNpTVjWQ","normal_prices":[3,1,1,1,1],"normal_volume":[351,214,942,58,65]},"186":{"index":186,"max":0.8,"min":0.06,"rarity":3,"name":"Wave Spray","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_829eLZsOc-ED3GV0tF0ouB_QBa_nBovp3PcwoqtdC3BOwQkCZB3QOIIsxm_kNyyZuzg7w3f2YNEnn6qjS0Y6Clq_a9cBmkkHSs4","stattrak":true,"normal_prices":[2574,681,513,410,488],"normal_volume":[18,26,27,4,2],"stattrak_prices":[4786,765,542,617,554],"stattrak_volume":[4,41,99,24,5]},"243":{"index":243,"max":0.6,"min":0,"rarity":2,"name":"Gator Mesh","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82jbbdlH-CKGm-fz9F6ueZhW2e2zER_5j-ByIz_d3nCOgMiC5Z0Ru8DsBSxkN3mYrzjtFHd2I9DxH77kGoXubNdaEwA","souvenir":true,"normal_prices":[2539,1938,1656,2206,1873],"normal_volume":[56,12,77,1,2]},"247":{"index":247,"max":1,"min":0,"rarity":3,"name":"Damascus Steel","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a_s2qaalsM_OGHViDxrsj495lRi67gVMj4miGzteseXjBbAJxXsEjEOQK50axk9C1ZuPi4wbX39gRnC33iipJ8G81tD-xNff9","souvenir":true,"normal_prices":[213,43,12,8,8],"normal_volume":[196,290,611,189,87]},"28":{"index":28,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a4c2gabJ0H_yaCW-Ej7ons-AwG37hzUQj5z_Tw9esIHnCZ1UiW5ojQuYJtBO6kNzgNrjitQXAy9USYrEgg8s","souvenir":true,"normal_prices":[72,79,0,0,0],"normal_volume":[2046,38,0,0,0]},"287":{"index":287,"max":0.6,"min":0.1,"rarity":4,"name":"Pulse","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-DG2uDxNF6ueZhW2eykUh24jjczYqscH7GblIpCJBxF-AD4BHtxIKzM-nq5ACK3t1GyySskGoXuRyAaawM","stattrak":true,"normal_prices":[0,669,239,292,247],"normal_volume":[0,321,822,32,55],"stattrak_prices":[0,1085,424,413,392],"stattrak_volume":[0,180,483,44,59]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a4s2veql0H-ObB2mV_uJ_t-l9AS3qxBgh4jnTyNr4eHKRbwEoWZd0F-RZtkG-lN3gMeix41Tdi98RyXrgznQeaSRFZ6A","normal_prices":[5,2,2,0,0],"normal_volume":[708,1370,201,0,0]},"363":{"index":363,"max":1,"min":0,"rarity":2,"name":"Traveler","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s2ifaNqIfeWMXSXlLslj-1gSCGn20905myGzIn6cyqePQUpA8FxRLVetRK_lYbkMrmx7wbWjIkXzi2t2HtXrnE8Nea-0H8","normal_prices":[2107,1033,704,778,681],"normal_volume":[19,6,17,12,14]},"378":{"index":378,"max":0.8,"min":0,"rarity":2,"name":"Fallout Warning","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82gfa9oM-SBB3eV_uN3ou5mQRagkkhy4AKJk4jxNWWSZlAhA5QjFLJYukLpwdLjZe60sgzYjtpCxC2oi3tB6C5ot-pQWaJ35OSJ2GFfvLbQ","souvenir":true,"normal_prices":[1158,636,343,290,321],"normal_volume":[124,89,85,20,32]},"39":{"index":39,"max":0.8,"min":0.06,"rarity":4,"name":"Bulldozer","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M23bahhL-esAm6Xyfo44rZsF3jmwU53tmyDzYv6cHnCalQhXMckEe9Y5kXplIC0NrzrtAfcipUFk3th3T45rw","normal_prices":[27928,27369,24446,0,48263],"normal_volume":[34,38,6,0,3]},"487":{"index":487,"max":1,"min":0,"rarity":5,"name":"Cyrex","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-QF3WV2dF6ueZhW2frlhl14W7Xzt6geXqQP1N0CMRyQuFY5kHsx9HmZejq7wPei91AzCT_kGoXueC0Dzdv","stattrak":true,"normal_prices":[3721,734,426,490,508],"normal_volume":[159,244,236,87,51],"stattrak_prices":[5207,1501,941,986,994],"stattrak_volume":[79,61,115,21,9]},"519":{"index":519,"max":1,"min":0,"rarity":4,"name":"Tiger Moth","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-HB2CV09F7v_VhcCW6khUz_TnWn9n7cyqRPQ52DpN3QLEPshjrw9zlY-jjs1bWioMQxSj8hyxJu3l1o7FVwqXqqnE","stattrak":true,"normal_prices":[671,204,101,91,86],"normal_volume":[183,230,212,40,43],"stattrak_prices":[937,341,203,186,183],"stattrak_volume":[91,98,160,39,51]},"553":{"index":553,"max":0.81,"min":0,"rarity":3,"name":"Atlas","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-SGmuR0tF6ueZhW2fgkxt_tTndn46rJX6QOAEoC5QhEe5f5hHqltfgMeO0tQHY2IsTyyyokGoXuYh0VG-5","stattrak":true,"normal_prices":[149,33,29,27,26],"normal_volume":[48,31,280,33,45],"stattrak_prices":[116,38,15,29,16],"stattrak_volume":[48,71,145,35,30]},"598":{"index":598,"max":0.6,"min":0,"rarity":3,"name":"Aerial","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-SC3WZwOJJvOhuRz39wkQj4TzXw9igJXrEbAJ1C5VyQeVZ5hHslIXjMOyz41begt9Myiiq3zQJsHi7xfgn5g","stattrak":true,"normal_prices":[65,31,30,24,22],"normal_volume":[288,129,138,27,43],"stattrak_prices":[92,40,23,36,26],"stattrak_volume":[159,217,192,64,75]},"61":{"index":61,"max":0.08,"min":0,"rarity":4,"name":"Hypnotic","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a7s24bbZ5KfecMWuZxuZi_rJrF3DlkEUl5GTdy4yudHyRZgYnWZskFucO4RO_kIK0PuOxtVPb2d5bjXKpAmuHKUk","normal_prices":[6519,8850,0,0,0],"normal_volume":[130,3,0,0,0]},"613":{"index":613,"max":1,"min":0,"rarity":4,"name":"Triarch","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4ds-HHG6R0-1-j-1gSCGn20Qk6m3UmY77IHOeOlNxCJQmQbYMuhC6mtaxP-K0sQLYi94RzC_8iH5XrnE8WPSRipg","stattrak":true,"normal_prices":[563,117,94,87,87],"normal_volume":[241,162,212,60,80],"stattrak_prices":[649,152,95,93,93],"stattrak_volume":[98,111,153,52,53]},"686":{"index":686,"max":0.6,"min":0,"rarity":4,"name":"Phantom","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-DBmae1eF7j-1gSCGn204k5WXSz4ysJSnDPQ5xDsZ0Ru4PtUKxw9XhMO-0tAON3YpMyS-v23lXrnE80YpLcJc","stattrak":true,"normal_prices":[392,93,84,89,92],"normal_volume":[110,413,418,43,76],"stattrak_prices":[342,147,126,135,121],"stattrak_volume":[170,165,274,34,19]},"702":{"index":702,"max":0.55,"min":0,"rarity":3,"name":"Aloha","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_829b_E-c8-SAmiYwNF6ueZhW2fjxE5x5W_SnNz8eXmQaVN2WJUmF7RZuhS8wYbiZeO04VPa3YlCmHr7kGoXuWs6bs2V","stattrak":true,"normal_prices":[40,16,15,14,12],"normal_volume":[678,289,372,67,57],"stattrak_prices":[54,21,11,15,13],"stattrak_volume":[439,307,312,18,71]},"750":{"index":750,"max":1,"min":0,"rarity":5,"name":"Integrale","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-BD2uc2NF6ueZhW2e2wkV14m2DzditcnmQOA4gWcYlQOcDs0a7moLvZLiw5geP3dgRnnj2kGoXuQPBQAH6","souvenir":true,"normal_prices":[7269,2009,720,382,382],"normal_volume":[610,695,820,275,228]},"765":{"index":765,"max":0.49,"min":0,"rarity":3,"name":"Desert Blossom","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1a7s2qbbdoMuSsDGufzuNJsvNgSCGnqhEutDWR1N_8JXPBagZ0WZUiRu4PukaxxNDjNb_mtQCPiYwRyymt2yhIuyc46-kcEf1yx7sEwjI","souvenir":true,"normal_prices":[754,288,288,630,1358],"normal_volume":[124,35,115,8,11]},"815":{"index":815,"max":0.8,"min":0.02,"rarity":3,"name":"Danger Close","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-cGGKC_uZzsfVsSxa_nBovp3PSn4z_eH7Fb1V2DpckQeUJsRe8wNflMui0tVTX34MUyH2sjX8b7Xxu_a9cBmrf7Gwc","stattrak":true,"normal_prices":[179,21,17,21,16],"normal_volume":[76,252,254,46,170],"stattrak_prices":[110,26,13,20,12],"stattrak_volume":[78,170,269,18,64]},"861":{"index":861,"max":0.65,"min":0,"rarity":1,"name":"Barricade","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82ve6NsMvSsGWaczdF6ueZhW2e1xxwlsTyHn9r_ICmQPAd2CJZyQ7IC5hiwltzuY-u34wyLjYtFni6vkGoXubfBxhfQ","normal_prices":[1389,1152,1009,1084,1052],"normal_volume":[164,52,79,19,25]},"864":{"index":864,"max":0.7,"min":0,"rarity":2,"name":"Candy Apple","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M28baBSM_fGWzSvzedxuPUnF3vgx0kmtznSyoyreSqea1UoD5Z0RrZetBm-lt3nPu_r5waP2d9FnDK-0H3tyRypkA","normal_prices":[1511,584,540,537,537],"normal_volume":[324,159,104,7,27]},"897":{"index":897,"max":1,"min":0,"rarity":5,"name":"Colony IV","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-BC2aT1eFkj-1gSCGn20Qit2yAn9n8IHKealB2DZIjTO8JsBW7ktDlYu_m5ADWit4Rznn63XtXrnE82sW2soE","stattrak":true,"normal_prices":[7670,1865,1051,1089,1082],"normal_volume":[39,118,168,45,28],"stattrak_prices":[11308,3596,1493,1576,1523],"stattrak_volume":[27,49,76,14,9]},"901":{"index":901,"max":0.8,"min":0,"rarity":3,"name":"Berry Gel Coat","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M2mabR9Oc-BC2Ov0ukj5bdWQyC0nQlp42vXn4mrIy2VagRzXJJxFOYJsxG4koLgP-zktVbf3oJMmSX43SIf6jErvbj113ptXQ","normal_prices":[482,201,129,136,114],"normal_volume":[295,216,490,25,188]},"934":{"index":934,"max":0.5,"min":0,"rarity":1,"name":"Bleached","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I_82qbbdoMuSsHWyFzeJlj-1gSCGn20Uk5WTSytmqJH6XbwMoA8RyRuBY4Ea6kNC2Y-Oz7gbc3o9HxS2r2n5XrnE8gS50bog","souvenir":true,"normal_prices":[67,74,44,60,25],"normal_volume":[193,319,236,89,60]},"955":{"index":955,"max":1,"min":0,"rarity":4,"name":"Darkwing","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1Y-s29b_E4c8-XD3Wb1ud4t95lRi67gVN24D7WmN2sdSqSalAmDpR2F-IDtxTpkYKyZrmzsQffgtgXzSmqjSNA8G81tFvCRYkS","stattrak":true,"normal_prices":[446,124,64,55,61],"normal_volume":[320,406,323,183,139],"stattrak_prices":[904,197,96,85,83],"stattrak_volume":[104,176,214,107,116]},"966":{"index":966,"max":0.7,"min":0,"rarity":3,"name":"Ol' Rusty","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1c_M29b_E4c8-BG3SE2NF6ueZhW2e3xxt35GzSw9_8J3yePFIpCMEiRrJZukO7x4exZLiw4AGLiNgRy32rkGoXuZqsEgp2","stattrak":true,"normal_prices":[33,12,5,6,7],"normal_volume":[1009,418,521,53,440],"stattrak_prices":[49,15,7,11,7],"stattrak_volume":[293,533,259,98,67]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLimcO1qx1I4M2-fbZ9LPWsAm6Xyfo44bQ-Tn7gwRt-t2uAw96tIn7FOAF1CsckQLUJ4xXskdO2NLzrtAyIi5UFk3tU_MwgmA","stattrak":true,"normal_prices":[5551,1996,1598,1711,1710],"normal_volume":[51,112,126,26,24],"stattrak_prices":[13269,2299,2038,1877,2057],"stattrak_volume":[30,97,146,14,27]}}},"4":{"name":"Glock-18","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1016":{"index":1016,"max":0.4,"min":0,"rarity":4,"name":"Franklin","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2jZ6poOc-UAmiTytF6ueZhW2eww0wmtz6Hz92hd3iUPwIhWZtzQ7UP5ha7kd22N-7j4gTZ345BnH_5kGoXuXiKVoel","normal_prices":[16805,11658,11403,13062,0],"normal_volume":[165,45,27,10,0]},"1039":{"index":1039,"max":1,"min":0,"rarity":3,"name":"Clear Polymer","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK8-DAWuJzOtkj-1gSCGn200h4TnQwtqoci_CPQYlDsAiRuZc5hK7kd2zZbm37lGK2o5HnH2v2ixXrnE85Jt4rDY","stattrak":true,"normal_prices":[336,49,27,19,19],"normal_volume":[393,445,675,304,239],"stattrak_prices":[480,141,57,38,38],"stattrak_volume":[166,248,35,38,113]},"1079":{"index":1079,"max":0.55,"min":0,"rarity":2,"name":"Red Tire","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I_826YbZoH-SBC2aU_vxztN5lRi67gVN15WzSmY36cn6RagEnD8MjTbIJ50W5m9OyN-rmtQGIgo9Fnimrhngd8G81tCm_mA6x","souvenir":true,"normal_prices":[2714,395,324,445,626],"normal_volume":[118,22,21,24,13]},"1100":{"index":1100,"max":1,"min":0,"rarity":5,"name":"Snack Attack","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-AAGaTyu9ipOBqRBa_nBovp3PQyomrcHKSaQYkCcRwQe8LukHswYHhN-Kz7lOM3YoUni6tjn5K7C5u_a9cBhxPlKk2","stattrak":true,"normal_prices":[12918,2483,1368,1198,1127],"normal_volume":[98,304,353,137,130],"stattrak_prices":[10854,3136,1745,1722,1829],"stattrak_volume":[38,85,114,38,31]},"1119":{"index":1119,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Emerald)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2rZaF_IfyXMWqR0-x6tehzSi2MkhEosDa6lob-KT-JPwZzA5J4F-8Mt0a-ktTvNeyws1PfjIsQyiX9h3gYvSpr5bwFWash-7qX0V9IgS2WPw","normal_prices":[61890,32327,22555,20880,22614],"normal_volume":[106,124,96,8,3]},"1120":{"index":1120,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 1)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2xCIgvzKGkbD1KCzPKhhzD5d3QORbuxjrk4C1NLzm5Abcj44Uyi342HlI6ixi5edRAKp0-KGBkUifZrIv8MDM","normal_prices":[15958,10227,8441,9084,8634],"normal_volume":[104,116,85,6,3]},"1121":{"index":1121,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 2)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2xyIgvzKGkbD1KCzPKhgnC5pwTLNYsRLrlNXlMe-05gDZ3toWyCmqhyhP5y9r6udQWKIk__XUkUifZoShMfFw","normal_prices":[16681,11123,8704,8843,9085],"normal_volume":[150,142,100,5,2]},"1122":{"index":1122,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 3)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2xiIgvzKGkbD1KCzPKhgmWcN0FLJYtUK7k4DgMuOx7g3ajNhAyH37iygc6ypt5-pQUassqaCFkUifZvBAXI_s","normal_prices":[16105,9616,8264,9379,8064],"normal_volume":[117,117,95,6,3]},"1123":{"index":1123,"max":0.5,"min":0,"rarity":6,"name":"Gamma Doppler (Phase 4)","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2paalgIc-XAXeAzetkj_FhTjq2wSIgvzKGkbD1KCzPKhhxC5FyRbII4Ua_ltDhY-Ln41fW2I1Ayn_9ii5P7Xpr5ekHV6Mg__HekUifZpA8glcU","normal_prices":[15567,9350,8284,8790,9066],"normal_volume":[100,109,97,5,4]},"1158":{"index":1158,"max":1,"min":0,"rarity":3,"name":"Winterized","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK8-WAm6ExNF1sexmcCW6khUz_W6Azdn6eCrBalcjXJpzE7EO5xa_l4DuNu6ws1Hb2IgUn32si39B5y11o7FVC5qcAFg","stattrak":true,"normal_prices":[170,18,7,5,5],"normal_volume":[508,736,648,593,239],"stattrak_prices":[166,22,10,9,10],"stattrak_volume":[236,829,371,169,182]},"1167":{"index":1167,"max":0.671875,"min":0,"rarity":4,"name":"Block-18","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tvMvmQBVidzuByouhoQRa_nBovp3PXzov9cyjDbwckXMMkF7IIthOwwNDmY-rq4AzfjItMyH_9iC0YuC04_a9cBk5_kH3q","stattrak":true,"normal_prices":[195,89,46,44,42],"normal_volume":[2410,2235,3468,39,198],"stattrak_prices":[516,264,135,148,137],"stattrak_volume":[425,494,976,21,121]},"1200":{"index":1200,"max":1,"min":0,"rarity":3,"name":"Green Line","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5t5MvGaAFiX0-tzvt5lRi67gVNw5TjSy4mseXqXagEpW8FyQu5cu0Hpw4ayNLjntFeNgoJEnyWqjCNN8G81tF3dwatE","souvenir":true,"normal_prices":[1746,138,30,22,16],"normal_volume":[864,1022,825,230,221]},"1208":{"index":1208,"max":1,"min":0,"rarity":5,"name":"Shinobu","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5t-KPmdAWWF_uJ_t-l9AX6ylh5w4mTcwtahdS2VOgRzWJsjEOQL5EWxwNblZeK2tVPXitlDmyvgznQeC7fvQL8","stattrak":true,"normal_prices":[2712,835,443,375,362],"normal_volume":[672,1482,2218,430,736],"stattrak_prices":[4872,1795,874,733,701],"stattrak_volume":[206,285,465,126,322]},"1227":{"index":1227,"max":0.75,"min":0,"rarity":4,"name":"Umbral Rabbit","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-eAWie_vx3suNgWxa_nBovp3PXyo76Ii_FPAQmDMYiTLYDthm_kdbmZry2slCLjoMQzC7_3y1J7nts_a9cBi_qumx0","stattrak":true,"normal_prices":[215,65,32,32,30],"normal_volume":[1654,1237,2384,172,232],"stattrak_prices":[394,166,69,130,59],"stattrak_volume":[284,349,420,158,98]},"1240":{"index":1240,"max":1,"min":0,"rarity":4,"name":"Ramese's Reach","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-BD2qKxP1JvOhuRz39kUkk42TcztmuIHOVb1cpCcZ1EeBY5BLtkIDgNOqwtALXjI0Un3r4jDQJsHidobtL7w","souvenir":true,"normal_prices":[6294,1709,909,822,839],"normal_volume":[122,278,390,82,159]},"1265":{"index":1265,"max":0.6,"min":0,"rarity":2,"name":"Ocean Topo","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9veRfKt9L8-fB2CY1aAj57loSirrwEpy4mjSztyqdiiQbFRyCcd2RLFetEG5wdbuMbu35Azflcsbmny2FqpB","normal_prices":[41,14,4,6,4],"normal_volume":[1708,987,1135,110,82]},"1282":{"index":1282,"max":0.67,"min":0,"rarity":4,"name":"Glockingbird","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I__eRZa1-M_mfC1icyOl-pK89GCy3xUh-sW3Vntn_eHOTPw9xA5R2F-Fb4EG4k9LiNu2x7leNiY8W02yg2c2Pc93z","normal_prices":[575,199,94,85,71],"normal_volume":[797,1340,1133,91,287]},"129":{"index":129,"max":0.730496,"min":0,"rarity":6,"name":"Gold Toof","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tuKP-eHmKC_uJ_t-l9ASvik00m5TmEzd-geSiQPARxX5IiTLIMtBW4l9zmNuPr4VbbjItHxC_gznQeqLQCTjk","stattrak":true,"normal_prices":[17683,4385,2722,3085,3009],"normal_volume":[160,335,519,40,44],"stattrak_prices":[15093,7319,4084,6679,4248],"stattrak_volume":[82,75,95,4,23]},"1312":{"index":1312,"max":0.752941,"min":0,"rarity":3,"name":"Coral Bloom","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4PeReqt-JeOsAm6Xyfo45edtFiyywExztjjdzNegIHuRaVImDpZ3RuJcshDpxtLhNOKw7gbci5UFk3s8sl0gEQ","normal_prices":[231,68,20,29,15],"normal_volume":[874,700,844,70,107]},"1348":{"index":1348,"max":1,"min":0,"rarity":5,"name":"Mirror Mosaic","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tgKeKBAXWvzO9std5_HRajkBw1vwKJk4jxNWXFP1UhDsYkRbUMsxC6lNSzNO7lsQaK2dpCyH2rjS5J5i054exUVqQi5OSJ2C0RseXl","stattrak":true,"normal_prices":[2622,1050,575,470,388],"normal_volume":[400,804,589,281,294],"stattrak_prices":[5570,2520,1220,915,857],"stattrak_volume":[98,158,147,72,55]},"1357":{"index":1357,"max":0.7,"min":0,"rarity":4,"name":"Trace Lock","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T-825YK15Jc-WCmCV0tF6ueZhW2fiw0Ujt2yGy4ysIHzEaQUlWJJyE-dbsBK5x4XjM7ix7gDeiYkUmy6okGoXubB2-hmv","normal_prices":[712,246,143,138,136],"normal_volume":[218,292,861,28,127]},"1421":{"index":1421,"max":1,"min":0,"rarity":6,"name":"Fully Tuned","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c4_2tY5tnJOCWC2yvzedxuPUnS3HqzR9152_UyNigeSqWa1BxW8ElRLJfshfpkNHuZO_n4ADd2IxBxDK-0H3ID5Y8zA","stattrak":true,"normal_prices":[21609,11741,5898,5399,3901],"normal_volume":[119,246,299,185,138],"stattrak_prices":[32132,12907,6662,4292,4363],"stattrak_volume":[27,61,65,26,33]},"152":{"index":152,"max":0.5,"min":0,"rarity":3,"name":"Teal Graf","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2hfqF_MPGAHViEwOlxteVWWyyymSIrujqNjsGueXyfaVN0X5N5Ru4O5he_k9XkM-7ltlPe2YJExX2tiXlN5yo6474LT-N7rZcNkc7T","souvenir":true,"normal_prices":[108,29,18,17,25],"normal_volume":[1750,744,665,63,59]},"159":{"index":159,"max":1,"min":0,"rarity":4,"name":"Brass","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2seqV-M8-fB2CY1aAu5-c_HirjzExxtTnSntb_JSnBaVIpCJojFLUMs0GwwIDjMeOztVeIlcsbmrw2c4EA","normal_prices":[23748,7013,2860,3741,3407],"normal_volume":[67,99,63,46,38]},"2":{"index":2,"max":0.8,"min":0.06,"rarity":2,"name":"Groundwater","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M2hZK17Jc-fB2CY1aBzseQ4GXG1lEwk4mWHmd39dC7BOwImD8F2QedeshjrkYKyML-z4Q3flcsbmqxtqryL","souvenir":true,"normal_prices":[10322,1722,1760,2364,2649],"normal_volume":[27,43,73,14,28]},"208":{"index":208,"max":0.8,"min":0.06,"rarity":2,"name":"Sand Dune","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M29aappH_KBD3Gf_uJ_t-l9AS_gwE4i4GTdyIn6IinEalUhC5t5FOMN5BK7xobiPung7wbWiolNzS_gznQeDKgSRyc","normal_prices":[31972,3723,734,930,786],"normal_volume":[15,72,61,8,11]},"230":{"index":230,"max":0.2,"min":0,"rarity":4,"name":"Steel Disruption","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2qbLRsNPSWAHSV_v1_vPdsXRa_nBovp3PWmYuhdnyebAdyWJUjE7ResBC6xoXhZe_j7w3Zid1Aziio3SlI5iw__a9cBqG4HP4O","stattrak":true,"normal_prices":[6863,2678,2271,0,0],"normal_volume":[146,99,16,0,0],"stattrak_prices":[1549,1368,1749,0,0],"stattrak_volume":[150,113,24,0,0]},"278":{"index":278,"max":0.58,"min":0.06,"rarity":3,"name":"Blue Fissure","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2teqV8NfWfG3WV_uJ_t-l9ASzixkp15W2Bntn4cnPGaFMkC8R1EeIL5hKxl9a0ZOLntQbd2IhBnijgznQeP57NAAc","stattrak":true,"normal_prices":[4869,597,245,249,280],"normal_volume":[63,465,565,70,95],"stattrak_prices":[9408,870,401,543,443],"stattrak_volume":[33,172,268,41,53]},"293":{"index":293,"max":0.5,"min":0.08,"rarity":2,"name":"Death Rattle","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2gbbZiJPmSMWuZxuZi_rc8Hny3zBsm5GuDnNeoeS3Da1cgWcRwFLQL5hbux4biZenm4gXbjY5bjXKpYXhaJyA","normal_prices":[0,24,7,8,11],"normal_volume":[0,608,1080,54,55]},"3":{"index":3,"max":0.3,"min":0,"rarity":3,"name":"Candy Apple","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M28baBSLPmUBnPelb93teA-FivjzB5wsjzTyI2pIn_CPAMoW8N3ROJZshm5w9zgNbnk5xue1dyMA9ZU_Q","souvenir":true,"normal_prices":[217,122,101,0,0],"normal_volume":[4415,1752,503,0,0]},"353":{"index":353,"max":0.7,"min":0,"rarity":5,"name":"Water Elemental","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK72fB3aFxP11te99cCW6khUz_TjVyompc3-QOFR2DJQkFOMJtBbqk9LlY-7n5QLZjtkTxCWqhixPv311o7FVIf8eASQ","stattrak":true,"normal_prices":[5214,1778,1638,1787,1735],"normal_volume":[525,1384,1364,56,100],"stattrak_prices":[6442,3388,2300,2579,2466],"stattrak_volume":[245,254,292,12,48]},"367":{"index":367,"max":1,"min":0,"rarity":3,"name":"Reactor","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2gfadhJfGBMXeR1fpzou84cC6_mh4sjDGMnYftb3yTbAQjA5NxR-4MtRjumtzkM-yzsVDegtkWyyX43ytBvC9tsrpRAKE7uvqAUKOQcp4","souvenir":true,"normal_prices":[12328,2537,1745,2120,1642],"normal_volume":[124,209,171,38,21]},"38":{"index":38,"max":0.08,"min":0,"rarity":4,"name":"Fade","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a7s2oaaBoH_yaCW-Ej-8u5bZvHnq1w0Vz62TUzNj4eCiVblMmXMAkROJeskLpkdXjMrzksVTAy9US8PY25So","normal_prices":[168448,219399,0,0,0],"normal_volume":[327,1,0,0,0]},"381":{"index":381,"max":0.25,"min":0.02,"rarity":4,"name":"Grinder","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2pZKtuK8-QAW6cxOpJvOhuRz39w00lsG-BnNj7cniROgd1WZRzReIDsBewk9G0YeOw5gWPi40Xnnr4hzQJsHiNyVoujA","stattrak":true,"normal_prices":[1030,255,248,0,0],"normal_volume":[780,544,146,0,0],"stattrak_prices":[731,621,665,0,0],"stattrak_volume":[322,353,98,0,0]},"399":{"index":399,"max":0.5,"min":0,"rarity":3,"name":"Catacombs","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-XC2aEyfp5vO1WQyC0nQlptWWDzIz8dy6QalMgXsMiQbEJtRjskdW2M7nn71Dcj49Fm3qsiClB7jErvbhnnfwjgw","stattrak":true,"normal_prices":[348,129,69,94,83],"normal_volume":[534,221,230,30,36],"stattrak_prices":[290,212,141,163,150],"stattrak_volume":[225,171,271,16,30]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":2,"name":"Night","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1I4M2gYaNlNM-fB2CY1aAmtOU-S33jwEwhtWvdzIr4cHvCPwR1DZdxQrFZt0bsloLjP7jg4VGMlcsbmvNarNNc","souvenir":true,"normal_prices":[8488,1394,245,152,251],"normal_volume":[72,300,187,106,55]},"437":{"index":437,"max":0.2,"min":0,"rarity":5,"name":"Twilight Galaxy","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2vebFsH_afC2Sb0tF6ueZhW2e3zR9-5mjcztv8cnjBbQMiA8ZzFLUKtBbsl4LuY77q4AHdj4pNmCz-kGoXudhVSAZp","normal_prices":[90552,26159,32897,0,0],"normal_volume":[164,131,17,0,0]},"479":{"index":479,"max":0.8,"min":0,"rarity":3,"name":"Bunsen Burner","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2pZKtuK6HLMWGcwONzo95rQzy2qhEutDWR1Nb7IC-TOw4hCZF5FOJe40W5lILlZLvktAHXiIJMyST_3XlIv3k94escEf1yWue1sjU","stattrak":true,"normal_prices":[485,103,83,86,59],"normal_volume":[416,515,614,88,174],"stattrak_prices":[735,264,120,272,113],"stattrak_volume":[153,281,501,25,177]},"48":{"index":48,"max":0.08,"min":0,"rarity":4,"name":"Dragon Tattoo","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2qeqVqL_6sCWufwuVJvOhuRz39xUl-6miDzI37dHyXOlIkA8MmROVfshO9w9G1Ye-ztgPX34tEyi74jjQJsHi_DRfxVg","stattrak":true,"normal_prices":[12004,11616,0,0,0],"normal_volume":[593,23,0,0,0],"stattrak_prices":[23204,29208,0,0,0],"stattrak_volume":[241,15,0,0,0]},"495":{"index":495,"max":0.8,"min":0,"rarity":3,"name":"Wraiths","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK6HLMXCCwPp-qfJWQyC0nQlp4T_Xnoz8dCmfZlUgXsd5RbMC40WxkdXnP7nl4wHXi9oUyH_9jilIuzErvbjBKaM58A","stattrak":true,"normal_prices":[876,97,38,59,33],"normal_volume":[224,190,234,35,88],"stattrak_prices":[741,204,91,224,82],"stattrak_volume":[129,162,293,44,50]},"532":{"index":532,"max":1,"min":0,"rarity":4,"name":"Royal Legion","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK6HLMWaHwPxyj-1gSCGn20gksm_Uyo7_JSmeOARyXsEhFLQMsUW_wIXuP-rj71CIiotAzCqoinhXrnE8DvG09t0","stattrak":true,"normal_prices":[6422,574,285,278,284],"normal_volume":[114,243,199,88,63],"stattrak_prices":[4169,1084,522,468,485],"stattrak_volume":[81,87,141,35,65]},"586":{"index":586,"max":0.54,"min":0,"rarity":6,"name":"Wasteland Rebel","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-ED3SExOJ3vuVWXSyxkBEYvzSCkpu3Iy7GPFUnC5t3EO4I4Bm6w4DmNu3k4lCN3YNNniz23HsY6Xxv5rwCU71lpPMpvj9PCw","stattrak":true,"normal_prices":[10684,9378,9068,10249,9408],"normal_volume":[244,291,232,13,30],"stattrak_prices":[10910,9728,9514,9293,12330],"stattrak_volume":[77,79,56,2,11]},"607":{"index":607,"max":1,"min":0,"rarity":4,"name":"Weasel","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK6HLMXCVwP1zvN5lRi67gVN_4j7Qzdj8dimQblQkX8YkTeNe5Bmxkd2zNr_j5QbdjthCzX-qjylI8G81tDMJpR5Y","stattrak":true,"normal_prices":[2706,153,92,93,92],"normal_volume":[168,386,750,141,116],"stattrak_prices":[1325,293,164,150,153],"stattrak_volume":[98,127,202,185,68]},"623":{"index":623,"max":1,"min":0,"rarity":3,"name":"Ironwork","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a_s2pZKtuK8-XD3WbjOh3vO1WQyC0nQlp5jmEmNaodH6VbwMnApshEOcPskOww4e0N-qz5lPZ2YlGyCSviika6zErvbhhWFzqpw","stattrak":true,"normal_prices":[2621,193,66,41,39],"normal_volume":[216,149,217,50,179],"stattrak_prices":[883,193,95,62,56],"stattrak_volume":[73,142,160,127,177]},"680":{"index":680,"max":1,"min":0,"rarity":3,"name":"Off World","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-aAGOZxuFJvOhuRz39xRly4WSDm4z9dHvCOg8iC5pxQrZethbsk4C1MbnnsQTag4pFyy_9hzQJsHjSW_TM0g","stattrak":true,"normal_prices":[624,40,22,18,15],"normal_volume":[320,495,574,491,217],"stattrak_prices":[443,93,43,35,38],"stattrak_volume":[148,229,356,104,204]},"694":{"index":694,"max":0.65,"min":0,"rarity":4,"name":"Moonrise","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a7s2pZKtuK8_CVliF0-x3vt5kQCa9qhsipTiXpYPwJiPTcANzXJNyFOEMthXsktHhMLzl4FaK3toWn3iqhi9BvHw9su5UU6Zw-_bJz1aWcX-Jd_0","stattrak":true,"normal_prices":[285,130,75,80,69],"normal_volume":[1694,1269,1602,53,125],"stattrak_prices":[543,269,150,237,169],"stattrak_volume":[593,612,773,126,109]},"713":{"index":713,"max":1,"min":0,"rarity":3,"name":"Warhawk","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_M2pZKtuK8-HBnKexetkj-V8XD2MmRQguynLwo34eXjBbgQnCMB1Q-QN5EXrkdfkNu7m5Ffd2YoTzyr52H5B7nk-5PFCD_Q2xs5K0Q","stattrak":true,"normal_prices":[1088,65,35,26,26],"normal_volume":[162,308,98,70,73],"stattrak_prices":[526,102,51,37,38],"stattrak_volume":[94,124,133,101,104]},"732":{"index":732,"max":0.7,"min":0,"rarity":4,"name":"Synth Leaf","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2ibaVrH_KfG2KvzedxuPUnGnuywx4h52nQzomsInmVbw8mCZAhR-UP4BHpldXhZevn7wXc2dkUnjK-0H1CafWWiA","normal_prices":[41075,34681,35904,0,38000],"normal_volume":[85,5,14,0,2]},"789":{"index":789,"max":0.7,"min":0,"rarity":4,"name":"Nuclear Garden","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a4s2gfadhJfGBMXSb1OJ6o95uXSy2myIrujqNjsGpd3LCagQiWJVzEOdfu0PrkYe1MLnqtQzW34xDmH2oiiIc7i5p4u5RT-N7rQEHvAcX","souvenir":true,"normal_prices":[7229,601,211,198,172],"normal_volume":[258,660,945,63,45]},"799":{"index":799,"max":0.08,"min":0,"rarity":2,"name":"High Beam","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1a7s24bbZ5KfecMWWc1OtJvOhuRz39zU5yt2vQntn9dC3Dbw8iDJQhF-IJ5xDqkdSxMr6251aMiI5BynqtiTQJsHhqpMNExQ","souvenir":true,"normal_prices":[16,17,0,0,0],"normal_volume":[11725,608,0,0,0]},"808":{"index":808,"max":0.85,"min":0,"rarity":3,"name":"Oxide Blaze","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK6HLMWSf0_x5tORncCW6khUz_T_Xn9f6dnvDb1UkDsdwF7IItES6kYK1M-7k7wSI3YwQm3_63XlAvH51o7FVwJirs7M","stattrak":true,"normal_prices":[322,31,19,26,18],"normal_volume":[309,246,1031,85,139],"stattrak_prices":[290,61,26,47,28],"stattrak_volume":[141,266,655,54,210]},"832":{"index":832,"max":0.7,"min":0,"rarity":5,"name":"AXIA","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1c_PGmV6V1KfGsCWufwuVJvOhuRz39lh93sDmDytj6InjCaQ52ApF1EeIMuxC9wNPmNe3k7wLfjIJGm32o2zQJsHgd3ZW3tg","normal_prices":[9295,3591,2971,3221,3006],"normal_volume":[595,662,1229,61,65]},"84":{"index":84,"max":0.8,"min":0.06,"rarity":4,"name":"Pink DDPAT","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1T9s2qbLRsNM-DB2mb_uJ_t-l9ASi2lBgjsmjSm4ugeX6WO1AoCsElFuEIuhC6xta2Zbmw5gCMjtlAni3gznQeU26CORw","souvenir":true,"normal_prices":[11524,6594,2364,2118,5609],"normal_volume":[28,39,98,15,26]},"918":{"index":918,"max":1,"min":0,"rarity":3,"name":"Sacrifice","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-bC3Wf_uJ_t-l9AXHixRlytW7Ty4queH_DZlMlX5UjF-dZsUPqk9LhY-Lk5waMjdlCmSzgznQeEFBQhB0","stattrak":true,"normal_prices":[993,50,37,26,25],"normal_volume":[182,235,280,199,168],"stattrak_prices":[593,108,59,38,29],"stattrak_volume":[106,123,177,67,85]},"957":{"index":957,"max":1,"min":0,"rarity":6,"name":"Bullet Queen","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK6HLMXCR0-N3ueVsQRa_nBovp3PQydf4dXuSalUgCJZwRrILthi9kYDlMe_m4g2Ij90Um3moiXkc6SZj_a9cBgLxwlYC","stattrak":true,"normal_prices":[12861,5637,5015,4833,4918],"normal_volume":[147,310,452,133,103],"stattrak_prices":[14414,6978,5452,5198,5371],"stattrak_volume":[55,95,81,33,29]},"963":{"index":963,"max":0.75,"min":0,"rarity":5,"name":"Vogue","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-WF2KTzuBiseJ9cCW6khUz_T-GyNavdCqRawN1CMFwTOcO5hO7loXiY-zmsQKPi44QzHj22ikcvy11o7FVfFOBmfY","stattrak":true,"normal_prices":[1171,536,338,335,335],"normal_volume":[938,853,2261,100,215],"stattrak_prices":[2175,1087,618,648,609],"stattrak_volume":[235,322,398,25,60]},"988":{"index":988,"max":1,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL2kpnj9h1Y-s2pZKtuK8-dAW6C_uJ_t-l9AXznwh9zsjjSn9j9dH-eb1V0CsF3QrNZ4xW8ltPlM-7h4QbYit5NzyzgznQecekkTuo","stattrak":true,"normal_prices":[21768,5053,3447,3468,3422],"normal_volume":[146,455,389,102,46],"stattrak_prices":[19555,8850,4619,4560,4366],"stattrak_volume":[46,79,103,17,13]}}},"40":{"name":"SSG 08","sticker_amount":5,"type":"Weapons","paints":{"1052":{"index":1052,"max":0.8,"min":0,"rarity":5,"name":"Death Strike","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-ADWiC0ed5vt5lRi67gVMh6jjTn9ygJSieaAEiAsB2F7Jfshe-xtHkPuvisQLXgt8UmCz523lM8G81tFON4mQ2","souvenir":true,"normal_prices":[48178,51365,29201,23305,20650],"normal_volume":[60,10,21,1,1]},"1060":{"index":1060,"max":0.55,"min":0,"rarity":3,"name":"Spring Twilly","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s26eqVkLvGBDW-Z1et1pN5uXSy2myIrujqNjsGpeCjCOlMgWJZ0E7JfthfuktPmY-Pk7lON2Y5AyCr-iCtOuitr5O1RT-N7rXhDFbfv","normal_prices":[1163,277,183,140,118],"normal_volume":[339,100,252,16,23]},"1101":{"index":1101,"max":0.6,"min":0,"rarity":5,"name":"Turbo Peek","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6NSL-aWHHORyutJvOhuRz39k01z62jTmIv6dC6WPQdzWJYiQLYL40K4koG1Ze-35wze3dpMnyz63TQJsHim_V6lkw","stattrak":true,"normal_prices":[5431,2115,1478,1572,1586],"normal_volume":[236,262,372,26,40],"stattrak_prices":[10112,4930,2588,2905,3081],"stattrak_volume":[64,67,57,1,12]},"1161":{"index":1161,"max":1,"min":0,"rarity":3,"name":"Dezastre","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_PX-MJtpJeqSHXOCxNF6ueZhW2exwEp2tmmEw9epdCjCalQhX5ImQOZbtRixxNTgN-u24AHb2okTmX2vkGoXuacR7BX3","stattrak":true,"normal_prices":[80,14,5,4,5],"normal_volume":[535,888,470,114,62],"stattrak_prices":[131,18,10,6,8],"stattrak_volume":[219,95,643,253,231]},"1187":{"index":1187,"max":1,"min":0,"rarity":3,"name":"Memorial","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_PX-MJtvMuWHD2uZ0vpJvOhuRz39x0UlsWmEnt37IHyfaFAkWZR5RuALtRKxlYKxMLnn4leL3t5FmSv9ijQJsHj6GwByAQ","stattrak":true,"normal_prices":[110,17,6,5,5],"normal_volume":[569,1172,440,34,235],"stattrak_prices":[278,51,14,10,8],"stattrak_volume":[199,246,1037,324,183]},"1251":{"index":1251,"max":0.99,"min":0.01,"rarity":2,"name":"Azure Glyph","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_M29e6M9eM-SAHKSyP1JvOhuRz39xERwsT_Sn4r6eHmeOAAlCZBxFrEP4BbpxtyxYbji7g3dg4lAnH372jQJsHi7hX5I-w","souvenir":true,"normal_prices":[381,110,22,15,18],"normal_volume":[209,239,443,88,84]},"1271":{"index":1271,"max":0.6,"min":0,"rarity":1,"name":"Grey Smoke","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4PGmV6ZhL-KRMWWH_uJ_t-l9ASu1kBt_sD_dzN-pcX6ROlMgD5d5FuQP5hC4m4XlY-PkswbdjN8Xn3_gznQeOZ1jkG0","normal_prices":[3,1,1,1,1],"normal_volume":[647,274,416,83,323]},"128":{"index":128,"max":0.75,"min":0,"rarity":4,"name":"Rapid Transit","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_PX-MJt5MvGdHW6E_vl-ufVscCW6khUz_WTSw479d3vDalIkCJNzFuIN4RHqw9K2P7nktQHf340Wyn-vh3wY7Sd1o7FV_lj0Yvg","stattrak":true,"normal_prices":[792,336,83,109,81],"normal_volume":[432,321,565,48,76],"stattrak_prices":[1967,848,232,364,210],"stattrak_volume":[142,142,168,36,57]},"1289":{"index":1289,"max":0.55,"min":0,"rarity":2,"name":"Tiger Tear","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9veRfK1qJeLBMWuZxuZi_uVqFn3hzRsjt27Xz9z6dirEZgN0D5p4R-Jf4UPrl9XnMrzm7wCLjohbjXKpscqbOIY","normal_prices":[17,6,2,2,2],"normal_volume":[465,312,394,33,47]},"1304":{"index":1304,"max":0.75,"min":0,"rarity":1,"name":"Green Ceramic","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M2tbbZsLfmQMWCCxOt4j_J6SHnrqhEutDWR1Ir9cnvCZwN2X5IiEOQKtxDsxofnYu7k5ATeg4xCny-o2yNKuy0_5r4cEf1ysR10Fgo","normal_prices":[3,1,1,1,1],"normal_volume":[322,406,421,71,146]},"1316":{"index":1316,"max":0.678431,"min":0,"rarity":3,"name":"Blush Pour","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4P2Raad_OfyaDViWzeFhj_FgQSKMmRQguynLyY2rdHqWaAYgWJFyR-dZuxC-loLjMeixsgzXi4hGyyT4j3hOvHxu4fFCD_TyynIDEA","normal_prices":[102,45,17,17,12],"normal_volume":[573,923,447,97,139]},"1372":{"index":1372,"max":0.5,"min":0,"rarity":1,"name":"Sans Comic","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9veRa6tgKfOsHW-R0etlj-1gSCGn20wl5W3VmImqcCmWOlAjXpolR-MP50Wwl9DmMOix5QXZ2d5EzSWqi3tXrnE8nx7Jn58","normal_prices":[2,1,1,1,1],"normal_volume":[1143,475,773,160,68]},"1379":{"index":1379,"max":1,"min":0,"rarity":2,"name":"Calligrafaux","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T-828baBSJfSUC3Svx-d4te1gQSyMmRQguynLwov6JHmRagd0WcBxQuYItxWxlYLgM--z4gDXjthGnnmqjXxAvSpqtfFCD_S8UR_TMg","normal_prices":[147,17,5,2,2],"normal_volume":[213,693,555,71,98]},"147":{"index":147,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle Dashed","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_826abRoH-ObAXWE_uRjvuZlSha_nBovp3PUz9-pcnuXPQMpCMZwQ-UM5xixmtGxN-7n4wWKiN5DySivhyxJ5ixj_a9cBvFEfbOR","souvenir":true,"normal_prices":[1376,121,115,197,135],"normal_volume":[26,40,234,24,113]},"200":{"index":200,"max":0.8,"min":0.06,"rarity":2,"name":"Mayan Dreams","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s2jab1sLs-XHGKRzP1JsvNoWSaMmRQguynLytmqd3yQP1coCJR0QecK40TqkdHgMuvi5gDa3owRz3_72ilA6X1jsvFCD_TXuxrUgQ","normal_prices":[9120,800,446,689,532],"normal_volume":[12,14,44,10,7]},"222":{"index":222,"max":0.2,"min":0.06,"rarity":6,"name":"Blood in the Water","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29YKV_K8-fB2CY1aAmsbFtFnDilkUl5j7UzoqsInmVaFd0XMMlELYDshbuxNPvP-yxtlCMlcsbmlWiixNl","stattrak":true,"normal_prices":[20896,9044,9862,0,0],"normal_volume":[111,274,26,0,0],"stattrak_prices":[51230,23972,21369,0,0],"stattrak_volume":[31,53,5,0,0]},"233":{"index":233,"max":0.8,"min":0.06,"rarity":2,"name":"Tropical Storm","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_82-aahgH-ObD2Of1tF6ueZhW2fhxU1ysDjWmdqvcHrGaw5xA8AkELUL5xa7ktLgZrjj5VPc2YsTxC3-kGoXuZdbLCna","souvenir":true,"normal_prices":[9819,2206,1910,2108,1885],"normal_volume":[23,67,42,10,19]},"253":{"index":253,"max":0.03,"min":0,"rarity":3,"name":"Acid Fade","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a7s2oaaBoH_eBD3SDze94tN5lRi67gVN05G3QzI6pIn2UOAYhDJMjEeANsBbtlYC2ZbvltA2P2I5FyHmq2Hka8G81tCngBDgW","souvenir":true,"normal_prices":[84,0,0,0,0],"normal_volume":[5298,0,0,0,0]},"26":{"index":26,"max":0.8,"min":0.06,"rarity":1,"name":"Lichen Dashed","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_829YKt_NM-HD3eV_uJ_t-l9AX3lkBh1smSAmNf7eH6VbVQoAsN1TbQC5xa-koXgM-zjswHf341EznrgznQepO2zZeE","normal_prices":[6472,1000,355,362,378],"normal_volume":[17,48,90,27,77]},"304":{"index":304,"max":0.8,"min":0.15,"rarity":3,"name":"Slashed","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-aA2qf0_p3vN5kSi26gBBp62XXyon_eHKXagYoC5ZwFLQNska7lIfiY-rgtVCN2IxExX_9h34buDErvbiGjEi-fQ","stattrak":true,"normal_prices":[0,0,183,118,116],"normal_volume":[0,0,244,128,59],"stattrak_prices":[0,0,167,135,129],"stattrak_volume":[0,0,348,127,87]},"319":{"index":319,"max":0.43,"min":0,"rarity":3,"name":"Detour","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s29e6M9eM-eD3WbxPxJvOhuRz39lxsm6m_XmdugcnOXaFMlD5ImEbQP5kW4kICyM-vj5wXc2dkUzHqoiDQJsHjAk3eMVA","souvenir":true,"normal_prices":[4570,1477,1403,1554,0],"normal_volume":[125,82,25,6,0]},"361":{"index":361,"max":1,"min":0,"rarity":3,"name":"Abyss","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a_s2ibbJkIeSbD2mvzedxuPUnH3_jzE1y4TvQyIr9JyieZlckCsRxF-8K50bsxN3gZOzktAzc2IJEzDK-0H1XlSI8xg","stattrak":true,"normal_prices":[440,95,40,27,25],"normal_volume":[1071,3170,1896,738,1036],"stattrak_prices":[1195,251,86,51,42],"stattrak_volume":[360,1210,902,399,588]},"503":{"index":503,"max":0.64,"min":0,"rarity":5,"name":"Big Iron","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-HC2SYz-d1se1gWzCMmRQguynLyYqqJSqQbAIiDMclTbYDtUKwlIfvP7jr4Fbcj4xGzir6jilJ6ils4PFCD_SOjD5UKQ","stattrak":true,"normal_prices":[5630,1449,855,1002,968],"normal_volume":[116,122,115,13,20],"stattrak_prices":[7154,3772,2305,2491,2269],"stattrak_volume":[38,57,34,6,4]},"513":{"index":513,"max":0.7,"min":0,"rarity":3,"name":"Zeno","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_PGmV75oLv-sHXSXkbZJvOhuRz39xhkitW-Hzduvc3zEPQJxWZMhR7NZ4xOwm9DjN7mx41GM2IoUzSmsijQJsHibvaeasA","normal_prices":[164,65,34,32,33],"normal_volume":[1306,1505,1159,82,152]},"538":{"index":538,"max":1,"min":0,"rarity":3,"name":"Necropos","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-dC2SCzv55o95lRi67gVN26m_VnomsdiqTZwB0W5R5E7UCuxe6lICyMO3i7lDWjt4XyHj_iypB8G81tA-y21Aw","stattrak":true,"normal_prices":[475,138,81,40,48],"normal_volume":[117,205,288,89,104],"stattrak_prices":[764,150,71,56,53],"stattrak_volume":[77,79,129,109,89]},"554":{"index":554,"max":1,"min":0,"rarity":4,"name":"Ghost Crusader","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_M29e6M9eM-SHGqRwuFktd5lRi67gVN_6jnQzYmhc3jFbgUoA5J3ReYIsRO8ktGyM-iz4AaMi4hDzyqsiSJJ8G81tKe_wmAg","stattrak":true,"normal_prices":[1956,213,105,110,107],"normal_volume":[226,375,440,174,172],"stattrak_prices":[2073,508,227,205,197],"stattrak_volume":[105,91,200,61,56]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":3,"name":"Dark Water","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a4s20baZ_Ic-XD3Wb_uJ_t-l9AXriwk1y6mqDyov9eXyTaAFzD5R4RrFYsRC4k9fhML7itQGPio9EyX_gznQeRZeU19w","stattrak":true,"normal_prices":[0,1279,307,0,0],"normal_volume":[0,99,61,0,0],"stattrak_prices":[0,537,301,0,0],"stattrak_volume":[0,119,83,0,0]},"624":{"index":624,"max":0.5,"min":0,"rarity":6,"name":"Dragonfire","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-XHGaXzuBwufNscDqwmg0ijDGMnYftbyrFPVAoWcQjELQOuxO4k4e1N-nnsQfW2I5Mz3ivi3wb7Stj5ukAUKY7uvqAqS55_Pw","stattrak":true,"normal_prices":[35905,25232,23693,21667,22316],"normal_volume":[530,533,320,31,34],"stattrak_prices":[17638,11931,9381,8855,9458],"stattrak_volume":[107,84,92,12,3]},"670":{"index":670,"max":0.51,"min":0,"rarity":4,"name":"Death's Head","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-XC2aEyf1-teBtcCW6khUz_WTXyNipeX-QOlQhXpJwFuYO4xLqxobuN7vn4QaNgthBnHn7iSJPv351o7FVSPuLyfc","stattrak":true,"normal_prices":[3721,2580,2075,1811,1799],"normal_volume":[122,78,48,15,29],"stattrak_prices":[2906,2374,1837,1808,1574],"stattrak_volume":[23,19,21,13,2]},"70":{"index":70,"max":0.12,"min":0,"rarity":2,"name":"Carbon Fiber","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a4s2tabZvL_6sCG6SxPxJvOhuRz39kU9y4GvVyYygdniXaVd0DMckQ-dZtRK-moe0Murl5lHZgosUzSuv2DQJsHj4wzVBbg","souvenir":true,"normal_prices":[832,1034,0,0,0],"normal_volume":[202,42,0,0,0]},"743":{"index":743,"max":0.5,"min":0,"rarity":3,"name":"Orange Filigree","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s28bapSL-KSAGCV_uJ_t-l9AXy3l093sjnSn9_6cnjBPAEhDMNwR-FbtEKwldzkM--05Afej4JGmSzgznQeBdxl634","normal_prices":[3831,3077,3194,4248,3606],"normal_volume":[18,21,24,2,2]},"751":{"index":751,"max":1,"min":0,"rarity":3,"name":"Hand Brake","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1c_M29e6M9eM-QBmKTyutkj-1gSCGn2xtwtzzWmNagIH3CP1V2C5dxR7QLsES_m9PvY7nj4QPd2ohHy3r4hypXrnE8MesmkS4","souvenir":true,"normal_prices":[385,172,105,99,71],"normal_volume":[407,166,414,237,113]},"762":{"index":762,"max":0.5,"min":0.06,"rarity":1,"name":"Red Stone","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M28fapoH-OHAWmV_uJ_t-l9AX_gkxl25W6AzIupcyqVagcjCJp4EeBctRHrx9KxMb6x5FONiotAnyXgznQeYtQapjc","normal_prices":[2849,1043,1034,1142,1051],"normal_volume":[60,114,100,9,19]},"868":{"index":868,"max":0.5,"min":0,"rarity":4,"name":"Sea Calico","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T9s2oZKt6JeKAMXSEzO9ks95lRi67gVMl5DuEm9ereCmVawImWZMhRLIDu0a7ktKzN7nq5lePi41Bn3r83H8b8G81tNArbz2X","normal_prices":[38461,43190,44626,141945,114201],"normal_volume":[56,5,8,2,3]},"877":{"index":877,"max":0.5,"min":0,"rarity":2,"name":"Halftone Whorl","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1T-829f61_LM-AHWDAmdF6ueZhW2e1lxxwsW3SnN-gIC6ea1cgDZdwQ7Fft0G5xoK2NOq241bfj9lCxX2tkGoXuc4PJZth","normal_prices":[75,22,16,19,18],"normal_volume":[696,206,545,105,83]},"899":{"index":899,"max":0.6,"min":0.14,"rarity":5,"name":"Bloodshot","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-HB2Sbzetkj-1gSCGn201wsjnUm9qrI3OXaAQnDsZwTbIDtxnpl9W0P7i35FfW3toTzC6q2ixXrnE8w4eIHZQ","stattrak":true,"normal_prices":[0,13116,1756,1655,1801],"normal_volume":[0,41,332,21,27],"stattrak_prices":[0,40546,3425,3571,3644],"stattrak_volume":[0,10,132,5,18]},"935":{"index":935,"max":0.48,"min":0,"rarity":1,"name":"Prey","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I_820baZ_IfOSA1iCxOpJvOhuRz39zBwmt2mAyI6rInrGaVd1X5N0Re8OshO5mtbvMr7q5wGIg95BmSX5ijQJsHiun1hzCg","souvenir":true,"normal_prices":[120,54,29,46,48],"normal_volume":[423,353,324,170,88]},"956":{"index":956,"max":0.72,"min":0,"rarity":4,"name":"Fever Dream","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-VC3GV09FyouRoQha_nBovp3PTmYmqJHmeb1N1CpJyFOZftkO8x9ezNOOztg2MjYwRyyWsjn4d7n1q_a9cBq7gpQcW","stattrak":true,"normal_prices":[434,178,79,138,78],"normal_volume":[483,372,593,99,118],"stattrak_prices":[875,456,219,412,204],"stattrak_volume":[96,131,266,26,46]},"96":{"index":96,"max":0.8,"min":0.06,"rarity":1,"name":"Blue Spruce","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M2jZ7d-H_yaCW-Ej7sl6OVsHXHizUQksGyDyNn7dH-WZgEgXJshFOdZskO6xoC1Y-LjtVDAy9US2YFh0PQ","souvenir":true,"normal_prices":[116,4,1,1,1],"normal_volume":[306,1124,807,250,234]},"967":{"index":967,"max":1,"min":0,"rarity":3,"name":"Mainframe 001","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-eD26ex_x3veRWQyC0nQlptzjSntqgJS6Wbg5xDZVwTbUN5EO5ldWxYem04waP2IsUyX_5in4c6zErvbh54g-58w","stattrak":true,"normal_prices":[84,15,6,5,5],"normal_volume":[463,885,755,179,131],"stattrak_prices":[128,20,9,7,8],"stattrak_volume":[256,77,853,317,375]},"989":{"index":989,"max":1,"min":0,"rarity":4,"name":"Parallax","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1Y-s29e6M9eM-QBnWfzO9iueJWQyC0nQlp5G6AnNuhJXmeOAd2CsMjQOUMuxC-moHgNOzh5VPXjogRmyn_iSNI5zErvbhpsYYNZg","stattrak":true,"normal_prices":[2108,1256,371,380,355],"normal_volume":[190,125,142,43,24],"stattrak_prices":[2049,803,396,358,389],"stattrak_volume":[76,62,40,26,41]},"99":{"index":99,"max":0.8,"min":0.06,"rarity":1,"name":"Sand Dune","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1I4M29aappH_yaCW-Ej7wvsuJrHivilER-6j-EwtipIC-fald1DMcmEOYI4EW-lNOxY-u251bAy9US9tunUnw","normal_prices":[17849,1427,561,580,519],"normal_volume":[9,27,35,11,25]},"996":{"index":996,"max":0.65,"min":0,"rarity":3,"name":"Threat Detected","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLijZGwpR1a4s2nZrBoLPyaCWKewutJv_NoQS62qhEutDWR1ImuJy_BagUgDMR1ROVbthK6xofvNrnk5lHditpByCz3iC9M7Cdv4ekcEf1ytraGvsY","normal_prices":[4426,1968,1855,1740,1799],"normal_volume":[106,64,50,11,28]}}},"4725":{"name":"Broken Fang Gloves","sticker_amount":0,"type":"Gloves","paints":{"10085":{"index":10085,"max":0.8,"min":0.06,"rarity":6,"name":"Jade","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YvjiRm4PwIhTALFN1VP0sHLBS9g65w9exM-Pl5gaKidkRziX22yNIv306571QA6pwrKGDiluTZLxs5ZdXOr_5GlzOqAIa","normal_prices":[54004,13823,8706,9486,8850],"normal_volume":[20,142,315,57,67]},"10086":{"index":10086,"max":0.8,"min":0.06,"rarity":6,"name":"Yellow-banded","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YozKMiYD3Hi3VMVFPWM4hFrxl-0XkzougWLa7sF2alYpAyX__iClA5ntstuoEUqUirKeG2w3IYrZo4JRSLa2vRRvdWhwJsa98BNe077TKBCc","normal_prices":[30729,8882,5647,5494,5107],"normal_volume":[24,111,342,33,51]},"10087":{"index":10087,"max":0.8,"min":0.06,"rarity":6,"name":"Needle Point","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YtTGKiI71HifOOV5kFJQlQbUL4RHukofjY-227wDaidpHnCqs3H5K6So95ekLVKck__bW3Q_fcepqSI673wM","normal_prices":[23997,7184,5020,5389,4929],"normal_volume":[25,112,206,24,27]},"10088":{"index":10088,"max":0.8,"min":0.06,"rarity":6,"name":"Unhinged","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnITv9idV6fOgb5tqLP-FC3Svzv5zouB9Ria9xE0YoDOEkYrqKiLJAVR8W8ErKrtT5Uj8jNfuN-2wtgeNioNDxS7_jS4av31j5L4CVqV0rvLTigzCNeE5tZkCJqm5DUPZGadTirc","normal_prices":[29757,9386,6300,5821,5970],"normal_volume":[24,139,381,27,64]}}},"500":{"name":"Bayonet","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKni_DtU4fe6Jv07IfTDDT_JkL4htLI7HCvmwE9z42_Vzov4ci2Wa1IgWMN3R7IMuxCm0oqwYUAZNBA","stattrak":true,"normal_prices":[22752,22752,22752,22752,22752],"normal_volume":[139,139,139,139,139],"stattrak_prices":[28576,28576,28576,28576,28576],"stattrak_volume":[40,40,40,40,40]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V7NoIuOsAm6Xyfo4tLBsGXi3kEQhtWjVntyvdniSOwEiDMZ2QOFfsUSxx9axZOvm5Q2IjZUFk3uvkAKPDA","stattrak":true,"normal_prices":[186965,32048,19108,19894,19726],"normal_volume":[9,82,110,14,32],"stattrak_prices":[0,30736,25564,30748,28000],"stattrak_volume":[0,8,21,3,2]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OG-V7BsMPWsG3WSwOBJvOhuRz39xUol5GiDwomvc3mSPAMjW5t4R-cNtka7lNzgN7-z5Vbc2o5Eni_2jzQJsHj-7ZpB7A","stattrak":true,"normal_prices":[50535,15932,12915,13204,12842],"normal_volume":[2,23,67,12,23],"stattrak_prices":[80664,22435,16205,15945,18619],"stattrak_volume":[3,2,12,1,3]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OG-V6BsMOCfC1icyOl-pK86HS_gwEx3sT_Ryon7c3ySO1UkCpt3Q7EL4BGxwd3lNeq24QTYiI1H02yg2fqRNo8T","stattrak":true,"normal_prices":[24291,15418,12841,12911,12477],"normal_volume":[1,31,58,16,20],"stattrak_prices":[0,21128,15745,15779,14543],"stattrak_volume":[0,6,10,2,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POvV6JsJPWsAm6Xyfo45-BrHniwzUh24jjVm4qgInnCOA4mDscmEeVcsBXtkN22P-yx5waNg5UFk3tAoG85FQ","stattrak":true,"normal_prices":[33978,45587,0,0,0],"normal_volume":[298,6,0,0,0],"stattrak_prices":[47870,73822,0,0,0],"stattrak_volume":[43,1,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OGhV6pkJ_iHMWuZxuZi_rQ4Snzhxkkj4m3Tm4uqcS2fagNxDZJ0QOMNuha6kIfhYumx4gDeidlbjXKpXW1AuvM","stattrak":true,"normal_prices":[91446,19060,13293,13664,13413],"normal_volume":[5,41,61,16,33],"stattrak_prices":[0,27060,16760,17250,18834],"stattrak_volume":[0,4,10,1,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POgV7BkJ_WBMWiCwOBxtd5lRi67gVMhsGrTntn4ci-ROAYlXMBwE7YL5BaxxIHjY-vq7w3X398RxS78iylK8G81tBow9RWL","stattrak":true,"normal_prices":[28803,33799,0,0,0],"normal_volume":[264,8,0,0,0],"stattrak_prices":[34806,51091,0,0,0],"stattrak_volume":[46,1,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6BsLfGADXKD_uJ_t-l9ASu2zE904DnQyY34JSrGPQAmDsdxQ7MKsRK7k9CxNLnnswDY2tpNmCzgznQe52NAd0k","stattrak":true,"normal_prices":[19243,17231,16338,18103,19387],"normal_volume":[97,85,96,6,9],"stattrak_prices":[26916,19538,21062,30000,51497],"stattrak_volume":[9,4,12,2,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6lsMvKfC1iWwOpzj-1gSCGn2xhysWrTn42rdH2SawQnDccjE-ELsxa-mtTjMejr7wXZgoxFn3n2hnhXrnE8oMvxYMA","stattrak":true,"normal_prices":[32842,49041,0,0,0],"normal_volume":[520,18,0,0,0],"stattrak_prices":[41481,64500,0,0,0],"stattrak_volume":[62,1,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V7d5JfWfMWyeyOhzj-xsSyCmmFN0tWzXntuhJHyROw8jWMAhQeFf4ELrlYC1Me_r4QCN3d1HyX38hn8b8G81tKs8v05y","stattrak":true,"normal_prices":[0,0,0,17175,12380],"normal_volume":[0,0,0,22,193],"stattrak_prices":[0,0,0,22896,14415],"stattrak_volume":[0,0,0,2,30]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV7Z4IumsA2aCw-JzuftsSxa_nBovp3PWnomsdn2QPVN0D5UiEOUP50LtltTvY-Ll4g3YjItFmSv-2i9A6X4-_a9cBu2YVmHc","stattrak":true,"normal_prices":[196040,204751,0,0,0],"normal_volume":[47,2,0,0,0],"stattrak_prices":[236029,200000,0,0,0],"stattrak_volume":[7,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV7dsMOCbB3WV_uN3ouNlSiCpkBkYvzSCkpu3d3_FaFUnXpRwEO4O50G5xoW1Y7zn5wLe3oxBxHn6jiwf7XposO8LBb1lpPPeBvHrwA","stattrak":true,"normal_prices":[130873,155950,0,0,0],"normal_volume":[39,2,0,0,0],"stattrak_prices":[128541,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6ZhIfOYHmKR0-JJveB7TSW2nAcitwKJk4jxNWWVZ1AmDJIlQuZcu0btx9e0Y-205gOL3dhGzS333CpBvHxi6ucEBfcg5OSJ2MqXuBCE","stattrak":true,"normal_prices":[196642,0,0,0,0],"normal_volume":[14,0,0,0,0],"stattrak_prices":[194699,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q4cCW6khUz_TvWmIygcnnGaVIlC5N5QOINt0S8lYDkMOu2sgTWgoxExCmqi3hN7i11o7FV2n5aQD4","stattrak":true,"normal_prices":[40167,48689,0,0,0],"normal_volume":[220,4,0,0,0],"stattrak_prices":[44736,78900,0,0,0],"stattrak_volume":[13,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q7cCW6khUz_TjRnNesInvCZ1chXsZ0FLZfsEKxltOyZOzitQLdj40WnCSq3SpO5yt1o7FVDNJZV5E","stattrak":true,"normal_prices":[48468,50561,0,0,0],"normal_volume":[260,8,0,0,0],"stattrak_prices":[51825,71800,0,0,0],"stattrak_volume":[14,5,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6ZhNfWXMWuZxuZi_rgwTH21kxt24TvXwo6vdXmfbgdyDpV5RORYuxS5m4KzY7605FPejohbjXKpq_wJOWQ","stattrak":true,"normal_prices":[41871,24663,21190,21644,19590],"normal_volume":[11,38,56,30,32],"stattrak_prices":[85000,29900,26679,24821,28098],"stattrak_volume":[1,3,9,6,4]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q6cCW6khUz_T_TydyheXmVZwYoXpR5R-YIsRe6lIazP-7h4Qzbj4hEzSyq3HgY7ix1o7FVS1Hc8lA","stattrak":true,"normal_prices":[39061,41762,0,0,0],"normal_volume":[220,6,0,0,0],"stattrak_prices":[43626,73688,0,0,0],"stattrak_volume":[12,2,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6BiMOCfC3Wv0eZ3o-Q9cCW6khUz_WvQmNaqcHvDPVUpC8B5E7ICtkW-wYK0NO204FbW2t1NxC_72y4d53l1o7FVWhjV62M","stattrak":true,"normal_prices":[41006,42359,0,0,0],"normal_volume":[282,8,0,0,0],"stattrak_prices":[46945,150000,0,0,0],"stattrak_volume":[13,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6JiMvOWClicyOl-pK88SSq1xEV35muBm9qvcSrDbgZzDZVwROAM5EOwldflZbu27wWN2IhM02yg2UseboeH","stattrak":true,"normal_prices":[25919,17251,16784,16761,17084],"normal_volume":[7,45,32,17,11],"stattrak_prices":[0,23016,17926,18133,21753],"stattrak_volume":[0,3,4,3,6]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PO_V6tkLPWXMWuZxuZi_uRrSXDlzUtw4WTRwtj4eX6XPAd0XsEiROcNthm-w4HhP-Pq7waKiItbjXKppDMdu0I","stattrak":true,"normal_prices":[51968,28952,23381,22834,23662],"normal_volume":[34,92,127,57,49],"stattrak_prices":[82423,40454,33386,32479,33589],"stattrak_volume":[3,5,13,4,3]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V6BpMPGHMWuZxuZi_rZrTSu3kxt_t2vSnN-rcn-SOA51WJN3Q7YMuxa9kdHlM77q4wKI2o5bjXKpkgWK6yM","stattrak":true,"normal_prices":[32466,14108,12161,12102,12033],"normal_volume":[5,33,55,12,17],"stattrak_prices":[156647,18020,15477,15999,15000],"stattrak_volume":[1,10,12,2,1]},"558":{"index":558,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PG7V6ZsOf-dC3OvzeFktd5lRi67gVMj5GnXzt__JH-SawdyDJF1ROcCu0K5xNOxZeqx5AOI2oNGnnn23ylJ8G81tNZRAs3w","stattrak":true,"normal_prices":[43354,30242,22439,21904,20980],"normal_volume":[73,141,241,17,32],"stattrak_prices":[58986,40861,26669,28750,34282],"stattrak_volume":[6,10,26,4,4]},"563":{"index":563,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PG7V6ZsOf-dC3Ov0vp5vuR-Tjq7qhEutDWR1Nr6IHuXOgMkWcQiQ7YK5hG7wYfgYuOx5gSN2YNCyHn-2Cof5i5isL0cEf1yJefVwLI","stattrak":true,"normal_prices":[25637,18189,15555,14892,14893],"normal_volume":[15,77,125,61,65],"stattrak_prices":[53152,22644,16548,19237,17500],"stattrak_volume":[1,16,4,8,6]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6FgJeKSAmOvzO9ksu1sRjO2kSIrujqNjsGsJCnFaVUpDpt4EeQLtxjrl9PhMujjtAXf3YNFxSuoii1K7ihi5LwGT-N7rXo8KYhp","stattrak":true,"normal_prices":[178556,248067,0,0,0],"normal_volume":[42,2,0,0,0],"stattrak_prices":[299500,975000,0,0,0],"stattrak_volume":[1,1,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhh2jDGMnYftb3KfOlVxDpt5RbRf5ES8kdfhZenq7lPc3tgQySj5hyNL53k9troLUvI7uvqAwkE80cI","stattrak":true,"normal_prices":[51319,58923,0,0,0],"normal_volume":[95,3,0,0,0],"stattrak_prices":[60522,98220,0,0,0],"stattrak_volume":[6,2,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhh1jDGMnYftby7FbARxDZUkF7NfsUK5lYbmZO3ktAWKj40Qznn_intPvX1i5e4DVfI7uvqAz_bVj6c","stattrak":true,"normal_prices":[61354,75736,0,0,0],"normal_volume":[118,3,0,0,0],"stattrak_prices":[69343,0,0,0,0],"stattrak_volume":[10,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhh0jDGMnYftb3ifPQd2ApZ3Redb5xG-mtzkNuPr5ADXg4tGm33_23hLvCZrt-9XV_Y7uvqA1Mz9WrE","stattrak":true,"normal_prices":[49629,58388,0,0,0],"normal_volume":[89,5,0,0,0],"stattrak_prices":[52803,74513,0,0,0],"stattrak_volume":[7,2,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6NsLf2SMWOf0f56tfNWXyGyhhhzjDGMnYftb3_CO1ciCJYhEOID4UW_kNayPuPktVbZg9pBmC_8jC5PvStp5L1QWPY7uvqA1BNTDgI","stattrak":true,"normal_prices":[48797,54237,0,0,0],"normal_volume":[86,2,0,0,0],"stattrak_prices":[57506,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"573":{"index":573,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0PW9V6ZsOf-dC3OvwPtiv_V7QCe6liIrujqNjsGodirBZlckD5B1FLMDtka7m9DuZL7i4ADf39lNxSqqjXgc5ihstrkAT-N7rfe3-Xhk","stattrak":true,"normal_prices":[58579,30190,25235,26344,25463],"normal_volume":[34,107,201,17,42],"stattrak_prices":[64000,41340,27389,26255,29764],"stattrak_volume":[1,17,25,2,2]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V6tuJfGdMWyeyOhzj-1gSCGn20hz5DuAyIquJXmWaAMoW5QmE7YI4UG5xNOxN-3m4AHb3tlDmyiojHlXrnE80X-NDyA","stattrak":true,"normal_prices":[19804,16392,13869,16122,20427],"normal_volume":[92,113,122,15,9],"stattrak_prices":[21954,20654,15503,18839,31860],"stattrak_volume":[20,20,35,4,2]},"580":{"index":580,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV6lsMvuWCliF0dF6ueZhW2e1zUh36zuEnteqeSqTOlUnXMYhFOcDuxfpkIblM-zj4gSLi45EniSqkGoXuTHKXCgo","stattrak":true,"normal_prices":[19876,16959,15934,19504,17475],"normal_volume":[103,106,120,14,8],"stattrak_prices":[27308,21511,18012,19797,26745],"stattrak_volume":[15,16,16,6,1]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0POjV75oIuKSMWuZxuZi_uU7HyjhwUh-tm_Xydmuc3nGbwN2ApAmQeNfsUXtktOzYuLm5FPajN9bjXKpLQ8HVlE","stattrak":true,"normal_prices":[38173,30434,27996,0,0],"normal_volume":[116,91,16,0,0],"stattrak_prices":[49127,44399,40269,0,0],"stattrak_volume":[6,14,1,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OG-V6loM_isGmae_uJ_t-l9AXnqkUwj62-DzIqsIC6WbVciA8QiQbIIsBC-xNG2Yuy0tQ2Pio9HxC7gznQewV0_CpM","stattrak":true,"normal_prices":[39454,13219,12059,12388,12167],"normal_volume":[4,34,50,20,22],"stattrak_prices":[79999,14836,14363,13789,13152],"stattrak_volume":[1,10,10,3,2]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0Pq3V6JiMvWAGliSzvxzse1WQyC0nQlp5m2BmdireXiQaAMnW5F1EOBZskO-x9ayZOKx5FeNiYgRyC2tii1LvTErvbgrMI0f4g","stattrak":true,"normal_prices":[31100,14604,12092,12831,12483],"normal_volume":[1,35,57,14,27],"stattrak_prices":[209012,17919,16370,15609,15713],"stattrak_volume":[1,6,9,2,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLzn4_v8ydP0OGhV7R4MuCfC1icyOl-pK9rGy-1kEtx5miHmN79c3qSOgAkX5dzEbZbsBXtwIe1YeLg5QPZ2ogR02yg2Ups3adF","stattrak":true,"normal_prices":[49169,20094,13133,13399,13344],"normal_volume":[8,58,178,23,44],"stattrak_prices":[988100,28387,16885,17000,19636],"stattrak_volume":[1,8,16,5,9]}}},"5027":{"name":"Bloodhound Gloves","sticker_amount":0,"type":"Gloves","paints":{"10006":{"index":10006,"max":0.8,"min":0.06,"rarity":6,"name":"Charred","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSIlvzyGkbDqKCfRO0RPVssnHaMUsES-k9HjNrixsgbd3YIRni7-inlO5i5t6-pRAqIs_aOFjg_JZbU5sI5Deqh-Veq-pA","normal_prices":[61833,32049,23697,14955,14434],"normal_volume":[6,46,68,15,34]},"10007":{"index":10007,"max":0.8,"min":0.06,"rarity":6,"name":"Snakebite","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSI0vTyOn5zyKCX4PERxSdEfGb5d6lSmxIfuMezmtFfb39lAxCivh3hI6Chi4eYGWfAt8vXTiw_EM7Q_t5NWIeHnE0qrynbE1A","normal_prices":[54365,24546,19124,10610,9490],"normal_volume":[6,34,61,20,25]},"10008":{"index":10008,"max":0.8,"min":0.06,"rarity":6,"name":"Bronzed","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSIqtimEloPwIhTLN1F4Tox2Q7UJ4RLrltDkMuyz4ASIg4kUxCr5jy8fvC46sLtWWaojqKze2giTL_Rjtvi23tdj","normal_prices":[65702,22512,18408,10373,8164],"normal_volume":[2,44,57,16,15]},"10039":{"index":10039,"max":0.8,"min":0.06,"rarity":6,"name":"Guerrilla","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOnJrv8iZT4OegbJtqLP-FC3Svw-J5v-VhQDy9kSIgpjiXiIb1LSr4Ml93UtZuR7QKthCwl4fkNuqw4lPXgosRzi78inwdvyk45e5UUqQkq_aDi1rEZap9v8fy7GQdug","normal_prices":[51285,23491,21130,10143,8828],"normal_volume":[10,39,58,11,19]}}},"503":{"name":"Classic Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2te7cjd6HHXmHBxep157VtTi_rzUR-5WiHnt39c3_EZg4pW5UjQOZbsBCxw8qnab32FBG7RA","stattrak":true,"normal_prices":[18371,18371,18371,18371,18371],"normal_volume":[114,114,114,114,114],"stattrak_prices":[27732,27732,27732,27732,27732],"stattrak_volume":[16,16,16,16,16]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRYL1SN_WRHVicyOl-pK8-HnHlwUkh62SGyd_6IHrCP1IlXJt1FuQPshXuk4fiMO2w5VGI34IU02yg2SQnu4I0","stattrak":true,"normal_prices":[118227,17834,14099,18992,14242],"normal_volume":[3,90,274,51,53],"stattrak_prices":[1421534,24361,17976,38494,22146],"stattrak_volume":[2,8,44,6,9]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSNPGDC1iF0-x3vt5lRi67gVNxsWWAytqqIHLBP1MlXMckQrMI50O4wIexM7u25gLcjN8UmCX22Cgd8G81tNnT-P6o","stattrak":true,"normal_prices":[35423,10067,7771,8435,7642],"normal_volume":[3,32,74,22,21],"stattrak_prices":[0,12187,10631,10335,8878],"stattrak_volume":[0,8,15,4,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSJPGDHmuV_uJ_t-l9AXrhxR4h5mvdzoyhJS2VbAQoC5ZwTOYL5xmxxtXvZOmxtFTZg45FmC7gznQeWPC0gg0","stattrak":true,"normal_prices":[30980,9412,7836,8792,7523],"normal_volume":[4,39,88,27,29],"stattrak_prices":[71759,12763,10593,9808,10873],"stattrak_volume":[1,10,17,2,9]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRaaVSJvGXC1icyOl-pK9tHn-yxhkltmTVnon4IHqUbgInWcN1ELIK5hS9xIbkZumx4wONjd9H02yg2Yau6XG6","stattrak":true,"normal_prices":[26809,31540,0,0,0],"normal_volume":[406,25,0,0,0],"stattrak_prices":[31643,32304,0,0,0],"stattrak_volume":[58,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRabVSIvyGC2OvzedxuPUnGiuyw0x34jyDz9-tcX-XblVxCsElEeQLtxa_ltLnN-LhtVfd2d9MyDK-0H3ReQavbA","stattrak":true,"normal_prices":[22944,12766,11490,10840,10875],"normal_volume":[14,39,65,46,44],"stattrak_prices":[36297,20400,15118,13474,12700],"stattrak_volume":[3,7,14,2,2]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRabVSJv-BDWKU_uJ_t-l9AXziwkV362nUzNj7dS2Sawd1A5p3TLQC5Bfrlt3nP-rh4wWPjYwXmy_gznQeaAH0jRU","stattrak":true,"normal_prices":[13496,10043,9381,8905,8797],"normal_volume":[14,51,52,25,23],"stattrak_prices":[26576,12963,11679,14343,11200],"stattrak_volume":[1,9,4,4,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRabVSL_mfC2OvzedxuPUnSSjlxxsi627cyNevdnOWbAFyAsEmRbZesRSxlNXlNOm051aK34JAmDK-0H1p4FgDwA","stattrak":true,"normal_prices":[30536,16048,12313,12113,12257],"normal_volume":[41,136,214,110,69],"stattrak_prices":[110000,19046,17734,21394,24497],"stattrak_volume":[4,15,15,20,4]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRYL1SJPSDD3OvzedxuPUnHyjhwx505T7Vwoyhc37BPQ8hXpd4RLQItBTukdPlZrmxtgaP3oNExDK-0H1P5hZEjg","stattrak":true,"normal_prices":[27316,8349,6814,7004,6791],"normal_volume":[2,31,54,21,18],"stattrak_prices":[79184,9381,8899,10537,9113],"stattrak_volume":[1,11,15,2,6]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRaalSOvWRHGavzedxuPUnGiy1xxkk6z_Tn4mucH2UOAUmCZZ1RLQJuhbrx9O0M-ji71OK34oTzDK-0H1Px6MwvA","stattrak":true,"normal_prices":[18704,17266,17217,0,0],"normal_volume":[90,117,60,0,0],"stattrak_prices":[28672,21806,21875,0,0],"stattrak_volume":[13,17,7,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSLfWABliEwOBJvOhuRz39kUx0tmWHno6geHLEbld1W5skFOII4RO6mtPiPr_i4wbfjI9Dyyn53DQJsHgORFidlg","stattrak":true,"normal_prices":[19555,8368,6601,7349,6895],"normal_volume":[3,23,81,24,28],"stattrak_prices":[62000,8709,7463,9149,8120],"stattrak_volume":[1,10,25,4,6]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRe7RSLvmUBnOD1fx_oORWQyC0nQlp52TVyIv7Ii_Cb1ckCsR0EOVf5xm7xIWxNr6x5QWL2dpDnniojntKuDErvbhtcklsTw","stattrak":true,"normal_prices":[39383,9761,9842,10308,9626],"normal_volume":[2,35,125,37,34],"stattrak_prices":[0,10634,11859,12564,12747],"stattrak_volume":[0,17,14,9,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y_OGRYL1SJv-BC3SE_ux5ouRoQxa_nBovp3OHytj4IH7FOldyXMAmFuRftxG6xIWxZOux7lOLjoJBzCj92i5N6H5s_a9cBvSJSM6F","stattrak":true,"normal_prices":[23608,8323,6826,6599,7225],"normal_volume":[3,29,55,15,20],"stattrak_prices":[67533,10118,9768,9589,9267],"stattrak_volume":[1,10,12,2,7]}}},"5030":{"name":"Sport Gloves","sticker_amount":0,"type":"Gloves","paints":{"10018":{"index":10018,"max":0.8,"min":0.06,"rarity":6,"name":"Superconductor","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_yaCW-E_ux6peRWQyC0nQlp4jjRyt-vJX6QblMgApt0R-5c5hLsktO2Nu_h4QaLg4MXyCmr2ClP7jErvbiwB_ADaw","normal_prices":[1030247,297923,204152,139245,84382],"normal_volume":[13,154,281,57,136]},"10019":{"index":10019,"max":0.8,"min":0.06,"rarity":6,"name":"Arid","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_2aAm6EwPxvj-1gSCGn20h3sTvVyoqheX2TbA9zDcFwQOQLtBnpw4bvM-rm4ACMiY5Cnn_63CNXrnE8hMDc76M","normal_prices":[455559,156336,120423,49165,30565],"normal_volume":[12,61,86,45,74]},"10037":{"index":10037,"max":0.8,"min":0.06,"rarity":6,"name":"Pandora's Box","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-CGHHecxNF6ueZhW2exk01w4j7cmYn4eHPCbAMhApdwTOIN5BPsx9yyYu605FTeid0Uy3j3kGoXueKyz5wo","normal_prices":[3092441,543042,356227,290622,190454],"normal_volume":[3,229,468,73,111]},"10038":{"index":10038,"max":0.8,"min":0.06,"rarity":6,"name":"Hedge Maze","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_eBC2Ke_uJ_t-l9AX21whwi4Gndnov9JH_FblMlCJYjRbFZtkWww4HnNbjr7wWN39gUmH7gznQeohQBtY8","normal_prices":[3164303,704302,457460,287756,214749],"normal_volume":[16,175,455,66,100]},"10045":{"index":10045,"max":0.8,"min":0.06,"rarity":6,"name":"Amphibious","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-CcB3Sfz9Fwou5ucCu_gBgYpDWMjorGLSLANkI-W5R4E7JZtxbskNWxZeLi4QPejdgTmSn62iwbvyw957kDAqog_fXWjBaBb-Pahe96zA","normal_prices":[229068,65522,31609,25933,22785],"normal_volume":[59,666,1583,148,272]},"10046":{"index":10046,"max":0.8,"min":0.06,"rarity":6,"name":"Bronze Morph","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-CcB3Sfz9Fwou5ucDu2kSIgoTiAlLD1KCzPKhghDJBzTLMCukW6kNblNe-2tlGKj45GyCWrii8f73k95e4HA_AjrvbSkUifZkDjXxpJ","normal_prices":[47842,14722,10695,10432,9982],"normal_volume":[47,220,586,66,90]},"10047":{"index":10047,"max":0.8,"min":0.06,"rarity":6,"name":"Omega","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_KfD2Sb_vlzsuNgQS6MjBgrvzKSpYPwJiPTcFAkC5UiRrRZ5BO9ktDnM-q37wCMjN5GxCqvhngb6Chj6u0CVvAj-6fJz1aW3nluLgw","normal_prices":[147153,46479,20176,17154,13900],"normal_volume":[43,420,1360,134,225]},"10048":{"index":10048,"max":0.8,"min":0.06,"rarity":6,"name":"Vice","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_KfG2Kv0ed4u95lRi67gVNx4T-Bw434IHyVb1QlAsd1FOUDthG4xNznMu3m4QXXg90Wzn_33C1I8G81tLaDi_rK","normal_prices":[678985,133681,44791,36514,27146],"normal_volume":[65,1306,2384,188,324]},"10073":{"index":10073,"max":0.8,"min":0.06,"rarity":6,"name":"Slingshot","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H-OfB2mX0uZ5pN5lRi67gVN24DzSw479dnuTbAckWcElRbJctkW9ktPlNu2w51Dc2oNAmCWo2ioa8G81tMaI-Tzs","normal_prices":[302248,90365,35761,26645,18890],"normal_volume":[48,380,1270,140,241]},"10074":{"index":10074,"max":0.8,"min":0.06,"rarity":6,"name":"Big Game","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_iGAHOV09F6ueZhW2fil0tx4T7RnouodXjCaAMjWJshQOAOsEG8l9bgMrvr5QfXjotHyyWtkGoXucEGPk8i","normal_prices":[83275,21514,14255,13242,12193],"normal_volume":[32,274,1070,123,181]},"10075":{"index":10075,"max":0.8,"min":0.06,"rarity":6,"name":"Scarlet Shamagh","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_icG2mU0vp5v_VhcDu2kSIrujqNjsGqIC-SalIhW8B2Q7MNs0G9x4W0NeKwtALa3ohEyi2oiCpI5yZo4OcFT-N7rZxgqiT0","normal_prices":[91554,33946,19031,17204,14942],"normal_volume":[20,263,738,90,172]},"10076":{"index":10076,"max":0.8,"min":0.06,"rarity":6,"name":"Nocts","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk_OKherB0H_qSCXKR09F6ueZhW2fqlBly4GWGm9ivcXjFPFImWJQhEeRc5EXqkNGyMOzm51fY3dlAxCr9kGoXuaq1SOh9","normal_prices":[253368,83031,51884,48002,39943],"normal_volume":[40,518,1681,190,302]},"1405":{"index":1405,"max":0.8,"min":0.06,"rarity":6,"name":"Violet Beadwork","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOvw-t3tPZmXSKMkRQmvjKLnpzGMT7VLlp1Zc4pEr9OrBWxxofvNOLitQKPid5Hznr-3C9JvHtu4uxTVKMlqaPQilrAM7Fr6cQdZKHwBJ-GjQo","normal_prices":[218689,75860,28374,23890,17891],"normal_volume":[9,67,221,33,43]},"1406":{"index":1406,"max":0.8,"min":0.06,"rarity":6,"name":"Frosty","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOvwu97v95-RienkA8YvzSCkpu3dXqfbA5zW5N0F-dcu0K8ldDnMuPk4wHdjN9EniWthn4av31v4eoHWL1lpPOyBkNpPQ","normal_prices":[151671,45005,21974,19114,16218],"normal_volume":[7,68,203,34,47]},"1407":{"index":1407,"max":0.8,"min":0.06,"rarity":6,"name":"Blaze","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOvx-J3veR6cCahlBMgtgKJk4jxNWWXblAgDJUiTeJZtBHpktDuY7m2sQPf2YNAxXn5iysf6Cc_67oGA6Ah5OSJ2AmILwG6","normal_prices":[131847,35192,16305,15345,13356],"normal_volume":[11,58,151,28,34]},"1408":{"index":1408,"max":0.8,"min":0.06,"rarity":6,"name":"Creme Pinstripe","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv0ed4o_V7Rjm2qh8rsj6OpYPwJiPTcAdzW5V2E-4IsBnswNHuZbznsQfXg4NCny_4hnhOvS04suoDVvZx86zJz1aWnYsnB-o","normal_prices":[102993,26397,12287,10985,10460],"normal_volume":[6,52,162,27,37]},"1409":{"index":1409,"max":0.8,"min":0.06,"rarity":6,"name":"Red Racer","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv0-91tfNWXSy3qhEutDWR1I77dC7GbQ4kWZNwEOJY5xLtwYHuN7yz7lPe2YgTniz2jn5Nv3lj5O0cEf1yHxfMKhM","normal_prices":[167700,42930,18690,15928,13536],"normal_volume":[5,46,171,36,40]},"1410":{"index":1410,"max":0.8,"min":0.06,"rarity":6,"name":"Ultra Violent","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv1et1uN5uXSi3nBgppwKHiIb-KT_4Ml93UtZuTOcLtUW8lNDvZL634FfYi4pCyiX5iXka6Htr4uhQVqt3_vfRiAzDZap9v8fuC2Vr0A","normal_prices":[852571,202185,97882,78792,57708],"normal_volume":[14,212,507,80,92]},"1417":{"index":1417,"max":0.8,"min":0.06,"rarity":6,"name":"Occult","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk5UvzWCL2kpn2-DFk6P6hfqFSM-CcHHOv1-t6puR9cDu2kSIrujqNjsGody2XPQVzWZslEe5euxS_lYC0Yu7l4wLfj99MmCv4jXka6Slp6-4ET-N7rUuG7GIq","normal_prices":[340833,116697,59080,52220,35477],"normal_volume":[8,132,339,45,59]}}},"5031":{"name":"Driver Gloves","sticker_amount":0,"type":"Gloves","paints":{"10013":{"index":10013,"max":0.8,"min":0.06,"rarity":6,"name":"Lunar Weave","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tvLPGQBVicyOl-pK8xTizrzER1t2rczNj9JSqRZg92CZZ2RrRetBi7kYDhZeLl7wDajo9C02yg2YX5gL0s","normal_prices":[156912,113248,90144,16977,11251],"normal_volume":[10,38,39,34,39]},"10015":{"index":10015,"max":0.8,"min":0.06,"rarity":6,"name":"Convoy","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tgKfyaGmaC2NF6ueZhW2e1wER0smuGyd__dn6VOwd1A5JwQOFY5hi8ktKzNryx5wyPiYwTxX74kGoXue1G57tl","normal_prices":[98429,65435,54864,9749,7949],"normal_volume":[2,27,32,25,19]},"10016":{"index":10016,"max":0.8,"min":0.06,"rarity":6,"name":"Crimson Weave","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t_JfSsAm6Xyfo4trVoSnGxlh9x5DmEzt6rJS2RagYiA5siQ-MLthW9xtDlM7uxtFCNgpUFk3thcTnRAg","normal_prices":[357465,185003,147145,32795,17796],"normal_volume":[8,44,40,31,65]},"10040":{"index":10040,"max":0.8,"min":0.06,"rarity":6,"name":"Diamondback","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-LvGYC3SbyOBJqeRlQyakqhEutDWR1N77ICqXZw4iApJ1ReRb5Bi-k4fjYb7mtgPdgooXyyusiS9A7Shv674cEf1yI93CpRI","normal_prices":[122510,69905,60708,16102,11884],"normal_volume":[7,36,47,34,25]},"10041":{"index":10041,"max":0.8,"min":0.06,"rarity":6,"name":"King Snake","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-LvGYC3SbyOBJp-lgWyyMmRQguynLz4r6Iy7EbFchApNyR-dbtEbuw4XkN7jq7gHdjtoQzi37hiwYvytvt_FCD_Ql24JgJg","normal_prices":[250821,43983,14459,13111,10873],"normal_volume":[66,1123,2209,139,207]},"10042":{"index":10042,"max":0.8,"min":0.06,"rarity":6,"name":"Imperial Plaid","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t9LPGaCliA1PxmvORWQyC0nQlp4W-Hw9-ocy2fbwB2X8YkFucCtRe4xNzhYrjl4Fff39lMyn78iiJLuzErvbgqDAMwGQ","normal_prices":[102828,32348,16879,15551,13455],"normal_volume":[33,321,1024,90,136]},"10043":{"index":10043,"max":0.8,"min":0.06,"rarity":6,"name":"Overtake","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-NPmHDW-VxdF0vOBqRBa8hxwptDi6lob-KT-JOwYkXppzQO4OsRbqltfiMOvm41TYi44XySqqj35OvS4_57oKA6cl_LqX0V9d-bhOMA","normal_prices":[37671,10501,5615,5318,5282],"normal_volume":[25,206,650,58,103]},"10044":{"index":10044,"max":0.8,"min":0.06,"rarity":6,"name":"Racing Green","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-NPmHDW-VxdFxouRsQRa0hxg-jDGMnYftb3mXblQnWJclRuNYtETux9DlYr-wtVaK2IsTmCT-jC4Y6ihjtr0FUaA7uvqAQikoKDk","normal_prices":[26155,6206,3669,3577,3675],"normal_volume":[28,156,451,23,65]},"10069":{"index":10069,"max":0.8,"min":0.06,"rarity":6,"name":"Rezan the Red","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t_JeqSAFicyOl-pK9sHnrhxx5wsm2Ezo39cXufbVdzD8ZzReILtRfqm9OyMbzjtlfdio5A02yg2fWAU4q4","normal_prices":[70456,15341,7231,8181,7128],"normal_volume":[25,199,533,57,68]},"10070":{"index":10070,"max":0.8,"min":0.06,"rarity":6,"name":"Snow Leopard","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tnIfeGD3Wv1uZ_pORWQyC0nQlp4TnUw9f6J3PCOw4oW8ZxRuEOshK8l9fgZbnqswHX3owXmSisjCIfuzErvbiEoDwfJQ","normal_prices":[208896,52337,26656,23844,20729],"normal_volume":[43,421,1228,123,158]},"10071":{"index":10071,"max":0.8,"min":0.06,"rarity":6,"name":"Queen Jaguar","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5tnIfeGD3Wv2Ot6vO5-cCW6khUz_WSHm4qteC2XOg4jDcN0EOZbthDsxoDnN7m24laI3d8QnCv6hn5PvHx1o7FVsUpsiR4","normal_prices":[52880,11442,5450,5675,5693],"normal_volume":[24,230,575,49,75]},"10072":{"index":10072,"max":0.8,"min":0.06,"rarity":6,"name":"Black Tie","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1I4_utY5t-NPmHDW-VxdF0vOBqRBaknRQztgKJk4jxNWXBbwdxDcZwFrFY40XrktLgNr7q4AKM2owQmX6ojSpMuCo_tulQB6ss5OSJ2E_SKQx-","normal_prices":[128627,29284,12458,12031,11529],"normal_volume":[32,414,1137,89,134]},"1398":{"index":1398,"max":0.8,"min":0.06,"rarity":6,"name":"Wave Chaser","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wv0ud6u95tXSi0mhMYpDWMjorGLSLANkI-ApsmQrFbtkPux4bgMuvg7gzWjI0Xnyz-23lI6i5s4bpWUqMl-6PQ2xaBb-Mdlpgj5g","normal_prices":[218226,56352,18914,16907,16778],"normal_volume":[9,90,204,11,32]},"1399":{"index":1399,"max":0.8,"min":0.06,"rarity":6,"name":"Brocade Crane","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvw_x5s-BtShawhxwptgKXn4vGLSLANkI-XMN2Qu4OsEG6lYK2M-OwtgPf2IMRzXio3yMY7yhptbxRAKIkq_bVhhaBb-OYO4AFQA","normal_prices":[197709,49020,20559,18952,16565],"normal_volume":[3,45,149,18,30]},"1400":{"index":1400,"max":0.8,"min":0.06,"rarity":6,"name":"Brocade Flowers","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvw_x5s-BtSha1mRIwti-6iIr9HifOOV5kFJJ5TeMK5xTsltSyM-m07wLW2Y4Uy32ohiJKuy9r4L1UWKAj-qGF3gzfcepq2gO2jDs","normal_prices":[222059,53363,16630,16042,14715],"normal_volume":[8,70,146,33,26]},"1401":{"index":1401,"max":0.8,"min":0.06,"rarity":6,"name":"Dragon Fists","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvxfx3t-5ncDqwlBEijC-AnrD1KCzPKhgkCZdwTeIL4ES5wdXjPrm251Pdi98QzST3jy0d6nxp4e5QAKsk_q3RkUifZohUdPsK","normal_prices":[111414,27590,12902,11940,10611],"normal_volume":[6,53,196,28,37]},"1402":{"index":1402,"max":0.8,"min":0.06,"rarity":6,"name":"Garden","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3WvxON0ou5gSyyhkBkYtTGKjYrrMhTTO1d8Zc4pEr9OrES-w9exZuzrsgyLi4lEzij2in9KvHpj6u9XU6J2_aGDjwzCY709t8YdZKHwRXCqB8U","normal_prices":[216637,70269,27462,24338,17572],"normal_volume":[10,50,107,16,38]},"1404":{"index":1404,"max":0.8,"min":0.06,"rarity":6,"name":"Seigaiha","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wv0u13vO1mXxa-kAkmvzGMmbD7LT7CAVp5Xco0W-dZuhe6wNDuP-q05g2NiYlFmSn5iS1N7yxj4LxUWPJx-6yCiFqUNOIjoc5UtEcI9GU","normal_prices":[115958,20392,9986,10104,9032],"normal_volume":[7,55,130,29,29]},"1412":{"index":1412,"max":0.8,"min":0.06,"rarity":6,"name":"Plum Quill","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3Wvzv1iouhqRxajgA83vzi6lob-KT-JawEjXMZyQuQMs0Xpl4fvMrvn4FOI2N5Dnn78jnxI5yZj5-tXWfEs8rqX0V_DSgKUxA","normal_prices":[121276,22204,12046,11890,10842],"normal_volume":[3,27,97,7,29]},"1439":{"index":1439,"max":0.8,"min":0.06,"rarity":6,"name":"Hand Sweaters","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5T441rsfhr9kYDl7h1c4_24bZtpMvmFC3WvyuB_pN5oXS6qmRgYtC-An4HGLSLANkI-CZJzROEM4xa7lYbgM7i07lOP3okXmCn4iypM7idt4udXU6p0rqHS3haBb-PCGCVNWw","normal_prices":[213087,30835,13693,13361,12007],"normal_volume":[5,41,131,28,34]}}},"5032":{"name":"Hand Wraps","sticker_amount":0,"type":"Gloves","paints":{"10009":{"index":10009,"max":0.8,"min":0.06,"rarity":6,"name":"Leather","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhEutDWR1NiodnmUPFNxX5B3TOFcuhfqktPvYe_h4AHWjolNnHn3iC1Puiw-sL0cEf1y0Sy-Ca0","normal_prices":[117329,78224,55447,22422,20143],"normal_volume":[10,30,80,32,26]},"10010":{"index":10010,"max":0.8,"min":0.06,"rarity":6,"name":"Spruce DDPAT","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_u13ve5WSDu2jCIrujqNjsH_InuUaQQmDJd2Fu4NshO7kIGyYeu24Affg98UxCX_iXhJ5i465bwHT-N7rXbV3WG0","normal_prices":[103138,49404,40381,12537,11867],"normal_volume":[9,45,58,26,27]},"10021":{"index":10021,"max":0.8,"min":0.06,"rarity":6,"name":"Slaughter","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_vxztN56QyimkhUzti-6lob-KT-Jb1UjX5t0ROIN5xW9l9e2ZOmw5QWLi41Fmy6r3Sgb7C1o5etUBfcgqbqX0V-0bsdMFQ","normal_prices":[135878,70496,57609,26878,19408],"normal_volume":[12,49,88,33,34]},"10036":{"index":10036,"max":0.8,"min":0.06,"rarity":6,"name":"Badlands","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uh3svNgTBa8hxwptDi6mY70LhTLN1F4ToxyQuIK5EPqkobkZrjm5lGI2NoTni-vhnwd5iZp4-YHAqJxq6DRhlzIL_Rjthe3KNwq","normal_prices":[71563,56072,41069,13870,11423],"normal_volume":[11,34,54,20,38]},"10053":{"index":10053,"max":0.8,"min":0.06,"rarity":6,"name":"Cobalt Skulls","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD7LT7CAUV7T84sBohW60fg1srnZb6zsw2Ng41MmST43C1L7is9574CBKIh_q2Big_IMOdutcNRd_iuU13QD7PQAmaY","normal_prices":[132385,38220,20352,18631,17953],"normal_volume":[39,392,1077,114,158]},"10054":{"index":10054,"max":0.8,"min":0.06,"rarity":6,"name":"Overprint","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD-JCTKO0JiU8EfF7tP53_ky4O_c_Ti4wTe3t4Uy3j6jSxM5ic-4usBA6Mj-qTejAzJMbc14MRWd_v0SE-PRlxR734mHNkv","normal_prices":[51983,14950,10849,9489,8070],"normal_volume":[47,379,1275,120,129]},"10055":{"index":10055,"max":0.8,"min":0.06,"rarity":6,"name":"Duct Tape","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhkysCmRm5_8HifOOV5kFJF5R7IIskW_kIXnNriz7w3eg4hMzCX-2nxP6SZo4u0LBKAi-aXV2V7fcepqgxTHW6A","normal_prices":[203748,8389,4900,5090,5193],"normal_volume":[2,128,376,33,80]},"10056":{"index":10056,"max":0.8,"min":0.06,"rarity":6,"name":"Arboreal","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD-My7CMGlzW88vKrtT5Uj8jIblMbnksQfb2IlAzXqojCpP6ylp67kLAKBz_6aFjFnCN-I66ZQHdv-5DUPZjQpqjqQ","normal_prices":[21598,10132,4646,4567,4610],"normal_volume":[37,148,476,53,86]},"10081":{"index":10081,"max":0.8,"min":0.06,"rarity":6,"name":"Desert Shamagh","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uh3svNgTBa7mggpty6RlYDtKRTILFd-XccfGb5d6lSmwdS1Zrzr4Q3Ygo5Ayiur23lL5idr5eZQBapzqPDRignHY-U058QHLOHnE0oCUw1MCg","normal_prices":[43370,8669,4538,4586,4483],"normal_volume":[11,104,450,44,79]},"10082":{"index":10082,"max":0.8,"min":0.06,"rarity":6,"name":"Giraffe","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqhsmsS-MmbD-KDnGOFB1Zc4pEr9OrBm6w9bgM-Pi4wLe34tNnCT3jCxJ53s_6rsBUqQkq63V2wnBZOJo55YdZKHw2FL19Wg","normal_prices":[33058,10994,4562,4756,4620],"normal_volume":[21,133,381,54,53]},"10083":{"index":10083,"max":0.8,"min":0.06,"rarity":6,"name":"Constrictor","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqg4psjaAiYTwLxTILFd-XccfGb5d6lSmlYDiY-_r7gzc2IJGmX6t3CMb6iY5te0BBKt0-qDVhwyXYrU_6MQDIuHnE0r2o5Rb7g","normal_prices":[29350,11138,5257,4917,5029],"normal_volume":[18,104,431,62,90]},"10084":{"index":10084,"max":0.8,"min":0.06,"rarity":6,"name":"CAUTION!","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4vx603vRA_Olpfu-TVJ7uK9V6xsLvSEHGaA_uJzsfVhSjuqqh4mpimMlYHGLSLANkI-CcBxQeIMtEHsl4CyNOjm4QDa3dgTniWvjnhJ7Hk54bsEV_Ak-KWE3BaBb-Pt8HWajg","normal_prices":[58987,20849,12486,11718,11374],"normal_volume":[26,206,789,90,99]}}},"5033":{"name":"Moto Gloves","sticker_amount":0,"type":"Gloves","paints":{"10024":{"index":10024,"max":0.8,"min":0.06,"rarity":6,"name":"Eclipse","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJsuB6RiqMlxEmsDa6lob-KT-JaQMpDpFzFOdY4EO8lIDnMLjr5ALZjN1Dnyj7iyhAvXo55ucKWadx87qX0V_LSR8vSA","normal_prices":[101522,55423,47590,13124,10216],"normal_volume":[9,43,74,24,16]},"10026":{"index":10026,"max":0.8,"min":0.06,"rarity":6,"name":"Spearmint","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJvehnWxanhxQmvTqJn7D1KCzPKhgnW5UmRO4DsxXrlYbhPurmtAXai98UzS73in5I6S5p4OsAU_Zx-KHWkUifZsxBQgc2","normal_prices":[768473,326917,227327,99575,35748],"normal_volume":[22,136,226,62,129]},"10027":{"index":10027,"max":0.8,"min":0.06,"rarity":6,"name":"Boom!","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJve5nQBaxmhIqjDGMnYftb3ufaQNxA5MiEeVb5kW5ldPiZuPj5lOKjt9BxCutiSlO5ys5sL1UUPU7uvqAf72SBgc","normal_prices":[91667,72432,55231,20244,12099],"normal_volume":[10,65,82,25,23]},"10028":{"index":10028,"max":0.8,"min":0.06,"rarity":6,"name":"Cool Mint","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJpPNgTie0mRgYsTGQn7D1KCzPKhgiXMZwRuNe5xS5wYLvY-K3s1GN344Wz3ioiypK6X1p4e1WUKZ0q6WCkUifZln3nIr8","normal_prices":[309259,166397,146755,37667,16959],"normal_volume":[10,29,83,41,80]},"10049":{"index":10049,"max":0.8,"min":0.06,"rarity":6,"name":"POW!","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-lmTCaMlxIovgKJk4jxNWXBPAZ2CpYmTOAO4UWwltOxP-3qswPdgopMzXiviSwavytpsO4FUvEh5OSJ2LE4Jnt4","normal_prices":[59684,18264,10369,8237,6107],"normal_volume":[39,392,1151,66,155]},"10050":{"index":10050,"max":0.8,"min":0.06,"rarity":6,"name":"Turtle","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJsuB6RiqMkg8itjO6lZ34LyzCAVp5Xco0W7VftBjqxILkZbvi4FfYitpEynj6jSgc5i4_tegLV_F0q6SFhwDJMuUjoc5UdYAe6j0","normal_prices":[53901,13676,7210,7260,6569],"normal_volume":[21,218,636,64,85]},"10051":{"index":10051,"max":0.8,"min":0.06,"rarity":6,"name":"Transport","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJqeRlQyakqh4mvjK6lob-KT-JbwZzCsR0RrYK4ETrwIbkYe_l4gSM2YNEniv73XxKvyhj4u0DVKMi_rqX0V9cNOIfoA","normal_prices":[32034,7309,4168,4302,4190],"normal_volume":[19,146,591,63,58]},"10052":{"index":10052,"max":0.8,"min":0.06,"rarity":6,"name":"Polygon","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJpPNgSDu6kSIlvyiApYPwJiPTcA92A5QlFu4N4ES4ktblMrvg5lSN34hEmHitinhLvHo64uhUUvVwqPDJz1aWhdr_Brk","normal_prices":[58857,18823,11574,10232,9789],"normal_volume":[33,207,767,72,97]},"10077":{"index":10077,"max":0.8,"min":0.06,"rarity":6,"name":"Finish Line","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-lsTCK2hyIhvzyCpY31NC74OUR1X8wfGb5d6lSmkNW1Y-m0sgTciIxCz376i3lN63lu67wHV6Fx-qaCi1nAZbJr4MQBIeHnE0rhxc4-zg","normal_prices":[49772,17712,10768,9023,7962],"normal_volume":[24,204,649,70,66]},"10078":{"index":10078,"max":0.8,"min":0.06,"rarity":6,"name":"Smoke Out","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJo-xmRCyMmRQguynLztircXjCaAAkDZp0TO4OsRW8xtznP-7mswXYj4wTnyysiHkc5n5p5PFCD_SXL_AlqA","normal_prices":[72745,21284,11543,10109,8815],"normal_volume":[15,186,649,48,67]},"10079":{"index":10079,"max":0.8,"min":0.06,"rarity":6,"name":"Blood Pressure","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-B7TSa9kxQlti-6iIr9HifOOV5kFJp2TeYOsxWxm9OyM7zl5AKIio0XyyiojiJA6C866-YFV6oi_6GBhwHfcepqnQk3Qfo","normal_prices":[74844,22229,12438,12535,9456],"normal_volume":[24,174,480,62,65]},"10080":{"index":10080,"max":0.8,"min":0.06,"rarity":6,"name":"3rd Commando Company","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu4r7_lb1QgTykpPf-i5U-fe9V6liNP-BDX6TzetJs-5kQii9kRIYuC6OpYPwJiPTcAZyDMd2F-YIu0a4ktTjP--35Vfb3oMTyy_-iCtM7Hpq5elTBaYirKTJz1aWk_tQEIo","normal_prices":[35412,9340,4475,4638,4343],"normal_volume":[12,116,428,55,65]}}},"5034":{"name":"Specialist Gloves","sticker_amount":0,"type":"Gloves","paints":{"10030":{"index":10030,"max":0.8,"min":0.06,"rarity":6,"name":"Forest DDPAT","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtOV5Tj2Mkg8itjO6mY70LhTLN1F4TowkQrFYshHsxNKyPu_ntQfYid9By3j-ii9I6StqsOlUV6Aj-aCF2guTL_RjtifunYRS","normal_prices":[84746,40654,28740,12989,13076],"normal_volume":[15,46,61,15,22]},"10033":{"index":10033,"max":0.8,"min":0.06,"rarity":6,"name":"Crimson Kimono","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJu-hkQCe8qhkusjCKlIvqHjnCOml8U8UoAfkItBLswdbuNbjr5FHdjNkUzSv73C1K5y46tu4EUvAg-6bU3FrBMOE4_9BdcyhkRns5","normal_prices":[992899,244633,158991,134640,110845],"normal_volume":[18,422,1027,122,178]},"10034":{"index":10034,"max":0.8,"min":0.06,"rarity":6,"name":"Emerald Web","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtexsXSi_kSIwtj-6lob-KT-Jbw4kA8d4QOBb5hnqmoHuMLmx4AWK341Bnyr93CxN6itjsb1XUfAgqLqX0V92--w69A","normal_prices":[458371,191529,139338,58356,35850],"normal_volume":[14,144,138,59,86]},"10035":{"index":10035,"max":0.8,"min":0.06,"rarity":6,"name":"Foundation","collections":["set_community_15","set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJv_NoQS62qgovuimApYPwJiPTcFMgWJVwFLIPthDpkt3vN7ux5QTWitkTm3r5iiMc7nw6sukBBfV38vDJz1aWnrr9eTA","normal_prices":[214222,108168,97390,23764,17191],"normal_volume":[12,38,48,48,46]},"10061":{"index":10061,"max":0.8,"min":0.06,"rarity":6,"name":"Crimson Web","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJp-RrXBahkBkYvzSCkpu3JyiSbAQkC8d1E7YJtEXtkIazMruz4lOP3dpGmCyt23hA731v4LkKAL1lpPOyoS0Ibw","normal_prices":[117123,30382,12738,11990,11108],"normal_volume":[40,379,1086,118,147]},"10062":{"index":10062,"max":0.8,"min":0.06,"rarity":6,"name":"Buckshot","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtu57Sjqnqh81vCqLpYPwJiPTcFQhAsd5TOcDsxLqwN22ZrjqslDZg4gXnCj2jnlA7Sg54udWB_dz-qbJz1aWpqUo0Nk","normal_prices":[26301,9880,5171,5136,5285],"normal_volume":[22,168,583,43,61]},"10063":{"index":10063,"max":0.8,"min":0.06,"rarity":6,"name":"Fade","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtuBtSha_nBovp3PQy42sdX6eagIjW5AlQOVetBXuk92xNLvg4gOMjd5AmC2ointB53w__a9cBqntWBk3","normal_prices":[179584,48390,18004,15732,12176],"normal_volume":[43,764,1688,127,151]},"10064":{"index":10064,"max":0.8,"min":0.06,"rarity":6,"name":"Mogul","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJp-hnWyyhnRg_jDGMnYftb3qWagQlX8EjF7YIuhK9m9XiNO2x7gOPjY5HzHj7iiwcv3xi4-pQAPc7uvqAbB4ER4o","normal_prices":[57776,16475,10720,9785,9922],"normal_volume":[32,263,753,62,102]},"10065":{"index":10065,"max":0.8,"min":0.06,"rarity":6,"name":"Marble Fade","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJveB7TSW2qhsmtzi6lob-KT-JOlUhC8Z2QOUDsxa6xIe0N7nk5ALWjolMm3793SxAvX0_5-sBUaNz-rqX0V-xn3he8w","normal_prices":[171618,39845,14424,13360,11577],"normal_volume":[32,254,749,78,89]},"10066":{"index":10066,"max":0.8,"min":0.06,"rarity":6,"name":"Lt. Commander","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJouhqRDqygiIksjCKpYPwJiPTcFJzApV0F-cL5kHuk9CxP7u3sgDYgo1BzX76jixM7Cw-selXBacn-PHJz1aWiwi0X-Y","normal_prices":[68177,19995,11223,10047,9666],"normal_volume":[32,255,870,75,92]},"10067":{"index":10067,"max":0.8,"min":0.06,"rarity":6,"name":"Tiger Strike","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJpOhuSjuMmg8mvTqApYPwJiPTcAYkDMZ3EOUJ4Ra9w4W2NOyx4wGNjYtDy3763H4bvCY6t-sFUap3_KDJz1aW0GG4fIQ","normal_prices":[106511,36223,16481,13116,10641],"normal_volume":[31,355,1178,126,191]},"10068":{"index":10068,"max":0.8,"min":0.06,"rarity":6,"name":"Field Agent","collections":["set_community_27","set_community_28","set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V7d9JfOaD2uZ0vpJtuNgcCW6khUz_TiHydigcXyXawRxX5QmQLQIsxC9kYfgN--w5QCLi4IRzyz42yofvCZ1o7FVbJfAqIA","normal_prices":[96046,28987,12684,11747,10173],"normal_volume":[30,335,1047,80,121]},"1413":{"index":1413,"max":0.8,"min":0.06,"rarity":6,"name":"Lime Polycam","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MlB80py-EmZvGJjnCO1hPVssnHaMUtRTqwNK2Nrzr71aLi4sUzS_8iCJMuic54eoFVvVw-fGGiwySY7Q1t45DeqjW0uKN1w","normal_prices":[206745,65041,34587,28998,18740],"normal_volume":[12,70,190,33,41]},"1414":{"index":1414,"max":0.8,"min":0.06,"rarity":6,"name":"Blackbook","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2Mkg8mtTuMjobGIyfGPV1PVssnHaMUthC9l9e2Mei25wTajN5EziT_2CodvSxs5ugBWKp2rvDX2Q6QMOc8tI5DeqjzpbB7FA","normal_prices":[182488,59662,29647,25322,20982],"normal_volume":[7,82,248,37,40]},"1415":{"index":1415,"max":0.8,"min":0.06,"rarity":6,"name":"Chocolate Chesterfield","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MhAguvymAnrD7LSrENWl8U8UoAfkNu0Ttx4CxP-zr4wDbjN4XmX79j3xM7SdisbkLBPB0q6LWiwnHM7Zs_9Bdc2KEwswI","normal_prices":[117082,24586,11568,10153,9697],"normal_volume":[9,68,170,39,30]},"1416":{"index":1416,"max":0.8,"min":0.06,"rarity":6,"name":"Sunburst","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MhggpsSiXiZvGMy7DAVp5Xco0W-VesRKwxtLvMbm07gLbiI1GmX33hywd7Hk45ewEAPIiqfXW2Q7FMLIjoc5U0NHpGGE","normal_prices":[158353,39754,19165,16525,15691],"normal_volume":[6,61,189,40,48]},"1437":{"index":1437,"max":0.8,"min":0.06,"rarity":6,"name":"Big Swell","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MghwxtgKHlpr8HifOOV5kFJJyFOVZuhC8l9XjNL-3tgHcg41HzHr4hntBuntpse0LUvZwr_bX3QjfcepqIIhMOUI","normal_prices":[206636,47083,21339,19859,15752],"normal_volume":[15,86,202,39,45]},"1438":{"index":1438,"max":0.8,"min":0.06,"rarity":6,"name":"Pillow Punchers","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MhAguvymAnrDuKSLTO2l8U8UoAfkK5BKxkNyyZu7r4VGP3Y8UzSX_iC4av3trtbtWV_Vxq6SEh1mVN7c9_9Bdc6ulT-fJ","normal_prices":[530666,134604,43176,33214,25254],"normal_volume":[14,96,274,26,38]},"1440":{"index":1440,"max":0.8,"min":0.06,"rarity":6,"name":"Cloud Chaser","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tk71ruQBH4jYLf-i5U-fe9V6NhL-aWMXSAxO1_se1gXD2MkQ8mtDKLpY31NC74Ml93UtZuQe4L40bsl9HgM-Lr5lffgtgWnCT63H5O6XxqtehUVaIl-vCDjwiXMKp9v8dT8uAEag","normal_prices":[250734,93705,51101,44774,32968],"normal_volume":[16,105,271,47,67]}}},"5035":{"name":"Hydra Gloves","sticker_amount":0,"type":"Gloves","paints":{"10057":{"index":10057,"max":0.8,"min":0.06,"rarity":6,"name":"Emerald","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYsTGEmYTGJjnCO1hPVssnHaMU4EG6ktGyPryz5A3fiIwUyin3h3lJ5nlq5-xQVPIk-6HWjVmQOeFptI5DeqjsQUewWg","normal_prices":[19799,5247,3903,4321,4092],"normal_volume":[9,124,292,33,59]},"10058":{"index":10058,"max":0.8,"min":0.06,"rarity":6,"name":"Mangrove","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYtC-An4HGLS7GKl51SP0tEKRS3UL6w5ekWLa7sF2alY9MzyX92ixAvCs-sutWWKd08qDRh17CZOI86JcBcffyH0iGUR9asfh8BNe0yN2QCJM","normal_prices":[16026,4006,3538,3679,3567],"normal_volume":[11,119,299,45,74]},"10059":{"index":10059,"max":0.8,"min":0.06,"rarity":6,"name":"Rattler","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYoDOEkYrqKiLJAVRiW9EzKrtT5Uj8jNOyZb_i5QHcg40Unyz-ji5LvX1v6-kEV_Ek8vCFjguUYOU_tJVWd6y5DUPZHBGjgbE","normal_prices":[14459,4119,3548,3642,3568],"normal_volume":[24,120,310,28,49]},"10060":{"index":10060,"max":0.8,"min":0.06,"rarity":6,"name":"Case Hardened","collections":["set_community_19","set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Tg_13jRBnOlo_k7yNk6P6hfqF-H_KfAWiUyeFjvuVWRzC3hxwYsDyWn7DxIDnDO1h1Xv0sHLBS9g7ul9zmMbi35FHYgolMmSj9jS8fvC5jte9RAqctqKCC2QHBYrU64MMCOr_5GlPhveuZ","normal_prices":[37948,9820,6527,6888,6357],"normal_volume":[28,341,955,100,162]}}},"505":{"name":"Flip Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2oZK19bqjKVjbDkbtwtbU4S3jhwElw4DvVzomhd3_CblV1CZd2TO5f4RG4lID5d7S15Y9TpQQ","stattrak":true,"normal_prices":[19415,19415,19415,19415,19415],"normal_volume":[116,116,116,116,116],"stattrak_prices":[19403,19403,19403,19403,19403],"stattrak_volume":[24,24,24,24,24]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H-eWDHSvzedxuPUnTn6wkEgksm7Rzon4JXOXOwYnD5oiELMP4EWww9LuN-zq5wKLgtoUzTK-0H1-4rT4QQ","stattrak":true,"normal_prices":[124486,28206,18368,20098,18414],"normal_volume":[2,74,99,11,16],"stattrak_prices":[0,42379,20649,19300,23146],"stattrak_volume":[0,4,13,2,3]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7d9H-SSHmKv1Px0se9WQyC0nQlp5DnWw46pIy2SOwBxW5VwFOcP5hC4x92zM-6ztVbYjtoTmST_iSNA6DErvbgg2ar9PQ","stattrak":true,"normal_prices":[35727,13761,12104,12092,11799],"normal_volume":[2,13,32,12,11],"stattrak_prices":[105510,16147,14646,14187,13329],"stattrak_volume":[1,5,8,1,3]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7d9H_SSHnecxNF6ueZhW2eywRl3sGzQm46pIy-TPAIpXsEiEO5c40S_kdDlPr6xslCPiYMRniuskGoXuRzTMIE6","stattrak":true,"normal_prices":[26673,12421,12011,11873,11536],"normal_volume":[2,18,42,13,13],"stattrak_prices":[0,17556,12001,12777,12394],"stattrak_volume":[0,4,12,4,3]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VsH_aSCmKvzedxuPUnTXywzR9-427Qyd34d3iUb1RyDJMlQbQL5xTtw920Zby05FeNjohDzDK-0H3GjMwqlg","stattrak":true,"normal_prices":[31022,39765,0,0,0],"normal_volume":[275,14,0,0,0],"stattrak_prices":[36335,46504,0,0,0],"stattrak_volume":[36,2,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7diH_6aCW-E_uJ_t-l9ASzgk09_tW_Qy9mocXLCbgQgWJQiReEI50SxldbiMuzn4gDd3oJCyi7gznQeD7v_WUw","stattrak":true,"normal_prices":[56436,15477,12285,12098,12069],"normal_volume":[6,29,59,13,12],"stattrak_prices":[0,16905,14064,18883,14967],"stattrak_volume":[0,3,8,1,1]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VjH-SaCWKC_uFkse9uSha_nBovp3OBztqpI3yTbAIgDZslQbFbtUbuw9y2Y7y37gDcjooQxH__h39B5yxt_a9cBoXwL4KP","stattrak":true,"normal_prices":[20991,27205,0,0,0],"normal_volume":[233,16,0,0,0],"stattrak_prices":[23127,46464,0,0,0],"stattrak_volume":[38,2,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_SSA2aDwvtlj-1gSCGn20lx52ncwtn_eXyQb1JzXJR3FOEPsRO5xoDmM77n7gHeiIpCyC6tjyhXrnE8njKBWnQ","stattrak":true,"normal_prices":[13907,13072,12810,12933,12478],"normal_volume":[78,82,71,9,6],"stattrak_prices":[18124,15782,14514,0,0],"stattrak_volume":[16,16,14,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_2SHGWcxNFwseVscCW6khUz_WqBnt2qIyrBPwMoCcN1R7YCtRa7kofhY7nk4gzajNhEzyT43HhK6CZ1o7FVaZCrJoQ","stattrak":true,"normal_prices":[25637,33843,0,0,0],"normal_volume":[454,19,0,0,0],"stattrak_prices":[29804,52665,0,0,0],"stattrak_volume":[68,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H-OHC2Kc_uV4uedscCS2kRQyvnPXmImsIC3DawJxWcN4RuQPuka7xNHhZuzqtgTcjN1FmH36jShL6S9r_a9cBvssjBEP","stattrak":true,"normal_prices":[0,0,0,12340,12168],"normal_volume":[0,0,0,13,123],"stattrak_prices":[0,0,0,16861,11888],"stattrak_volume":[0,0,0,1,30]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH-KGDH6vzO9ksu1sRjO2kSIrujqNjsGhcinBZ1dzD5AlE7Nb4ES4wdTvMem37gDb2IlMmXj43HxK6yxt4L0FT-N7rWpcwuJP","stattrak":true,"normal_prices":[155064,147793,0,0,0],"normal_volume":[41,2,0,0,0],"stattrak_prices":[149191,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH-OSHneYyPxzj-xoXSu_kBQ9tjm6lob-KT-JOgYjXJEmR7Jbs0S8mtSzZezg5wSMit5BzyX7ii9L63455ewFUvAg-LqX0V_ipKFLBg","stattrak":true,"normal_prices":[93721,88419,0,0,0],"normal_volume":[41,2,0,0,0],"stattrak_prices":[106000,106845,0,0,0],"stattrak_volume":[6,1,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpovbSsLQJf1f_BYQJD4eO0mIGInOfxMqndqWZQ-sd9j-Db8IjKhF2zowdyN2nyLNWQegBsYQyGrFPsyevs18Dvu53MySZnuyFztC3ZnBK10x9Fa_sv26L7s0YfCA","stattrak":true,"normal_prices":[149522,189875,0,0,0],"normal_volume":[10,2,0,0,0],"stattrak_prices":[280550,0,0,0,0],"stattrak_volume":[1,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCziqhEutDWR1Nf6JHmfPw4kDsQkEeBbtRTsw9CyMu_nslPeg4wRmH2qhy9K7nxp4ukcEf1yIYwwFPU","stattrak":true,"normal_prices":[30660,36111,0,0,0],"normal_volume":[202,5,0,0,0],"stattrak_prices":[31512,49000,0,0,0],"stattrak_volume":[8,2,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCzhqhEutDWR1NesJX_BPQV0CsckQeMLtRbrlNOzY-3i41DbitlEzyv2jiob6CZt5ekcEf1ySivHiG0","stattrak":true,"normal_prices":[38826,40236,0,0,0],"normal_volume":[212,7,0,0,0],"stattrak_prices":[37414,47288,0,0,0],"stattrak_volume":[18,3,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_KfG2KU_uJ_t-l9ASqyzBl14jnXwoyuJCmeZwAiDpolRrFf4EXswN3iNrmw4FPZg9hMmSjgznQe7J0ACeg","stattrak":true,"normal_prices":[28078,17732,15863,15127,14709],"normal_volume":[10,32,32,16,33],"stattrak_prices":[41665,24964,18699,18426,16979],"stattrak_volume":[2,5,4,9,3]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCzgqhEutDWR1N79dy2RbgUhCZZ4Q-ALukS4m9PlNbi25wLfjo5GnyT7jSNJ7Cc4suYcEf1yV0vEDxY","stattrak":true,"normal_prices":[30260,34651,0,0,0],"normal_volume":[156,4,0,0,0],"stattrak_prices":[31047,0,0,0,0],"stattrak_volume":[12,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_ScHnecxPxJoOloXCznqhEutDWR1IuudniQZgMiApAlFLJftRjqkYfuNOKx4lfejtoUzCSvjH5PvSo56rwcEf1y_87DeTE","stattrak":true,"normal_prices":[31908,34226,0,0,0],"normal_volume":[238,5,0,0,0],"stattrak_prices":[31487,45000,0,0,0],"stattrak_volume":[15,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_acHGSVxdF6ueZhW2fjkUUk4GzRmNuvcSnFO1MlW5RxR7MItUbskIHnZurl5ALf341Gmy-rkGoXuTDvkImE","stattrak":true,"normal_prices":[17260,12982,12251,11978,12161],"normal_volume":[8,26,27,16,19],"stattrak_prices":[46808,14616,14622,15228,17989],"stattrak_volume":[6,5,5,5,1]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6V8H_-aAmKU_uJ_t-l9ASu2l0Qj4m7cnNf6JSqSZgAhA5NzFOALsBbrkILuPu625AXcjdpGz33gznQe1ZCqub0","stattrak":true,"normal_prices":[33397,18287,15320,16066,15359],"normal_volume":[17,99,156,74,50],"stattrak_prices":[48074,24681,19990,18257,30801],"stattrak_volume":[4,13,11,8,23]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H_SXHmaE_uJ_t-l9AXmxx01xt2rRnI2uc3uRPVAkW5R0FrIIsha6wdbjZrjh4wOP3t0Ry3_gznQeDR4sxYY","stattrak":true,"normal_prices":[21000,12293,11649,11774,11455],"normal_volume":[2,12,25,10,13],"stattrak_prices":[0,13553,11637,12254,15926],"stattrak_volume":[0,2,13,1,2]},"559":{"index":559,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6d4H_afB3evzeFktd5lRi67gVMi4jjSy937In2fbA4gXptyROJetBK9ldLjPuPi5gyKjINMyCX23Soa8G81tMSuH9C0","stattrak":true,"normal_prices":[27362,20417,15859,15981,15875],"normal_volume":[85,114,177,7,12],"stattrak_prices":[37306,22042,18548,21800,21518],"stattrak_volume":[4,19,25,3,2]},"564":{"index":564,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6d4H_afB3ev0vp5vuR-Tjq7qhEutDWR1NqheHqUOAMlXpR0FOVZ4Ba8wIW2P7u35VPX2Y9Azn6s2ihB7S5v5uccEf1yNTyJJU8","stattrak":true,"normal_prices":[19121,13763,12934,12218,12104],"normal_volume":[23,56,62,58,59],"stattrak_prices":[26951,15593,12827,14606,13215],"stattrak_volume":[4,13,20,8,14]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_WeC3WRzepJveB7TSW2nAcitwKJk4jxNWWWPVdzA5pyQeQCsEG9wNXiYey3sQbcjIhMzi73jy4duCprt-5QWKoh5OSJ2FqzBf3_","stattrak":true,"normal_prices":[135364,141375,0,0,0],"normal_volume":[44,2,0,0,0],"stattrak_prices":[128546,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_eSA2qR_up5oPFlSjuMhRUmoDjUpYPwJiPTcAQmD5YkQbVf4US-kIaxNO7ktAGMiooWnn-v3CxOv3pv5r5QUKMn_6HJz1aWfAqhZnY","stattrak":true,"normal_prices":[42405,0,0,0,0],"normal_volume":[157,0,0,0,0],"stattrak_prices":[46712,80057,0,0,0],"stattrak_volume":[12,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_eSA2qR_up5oPFlSjuMhRUmoDjXpYPwJiPTcAB2DZclFOMLtRm5xt3kZOu35wDa3Y9Bynn8jX5Auydttu5RB6t3qa3Jz1aWbPfUfuc","stattrak":true,"normal_prices":[46590,48313,0,0,0],"normal_volume":[97,2,0,0,0],"stattrak_prices":[47697,82165,0,0,0],"stattrak_volume":[10,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_eSA2qR_up5oPFlSjuMhRUmoDjWpYPwJiPTcAUjCcQhFuRcuhawlIC0ZujqtAKL3oxCmyj723tAv3pr4u5TUfUnrq3Jz1aWLj9dSwc","stattrak":true,"normal_prices":[38609,42153,0,0,0],"normal_volume":[77,1,0,0,0],"stattrak_prices":[41621,109533,0,0,0],"stattrak_volume":[4,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpovbSsLQJf1f_BYQJD4eOxlY2GlsjwPKvBmm5D19V5i_rEobP5gVO8v105NT_6ddCUJw46ZwnX_VS_krzugsS96J2dyCFi7CR253aOyxW_iBpIcKUx0t91Ee8V","stattrak":true,"normal_prices":[38701,40690,0,0,0],"normal_volume":[69,2,0,0,0],"stattrak_prices":[54300,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"574":{"index":574,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6N-H_afB3evwPtiv_V7QCe6liIrujqNjsGrdn-faFMpXJd0TO4ItEKxm92xNurrsQCNiI9Fzy_43y0f63s5t-gCT-N7rYkKXYid","stattrak":true,"normal_prices":[31165,20969,17314,17463,15783],"normal_volume":[33,92,144,9,23],"stattrak_prices":[46575,23733,18812,42415,18308],"stattrak_volume":[5,16,18,1,2]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H_-QC2ae_uV4uedscCW6khUz_WyHy4usJS7EOlJxWMMlFrMMsxKxmobnZr_i4leNgohCxCT_iHwfuH11o7FV6J7t-P8","stattrak":true,"normal_prices":[13522,12769,12191,12104,12974],"normal_volume":[61,84,77,10,8],"stattrak_prices":[17078,15640,14032,16993,12919],"stattrak_volume":[19,5,18,3,1]},"580":{"index":580,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH_2SHGyVxdFjoN5lRi67gVMk4Wzdm4r7cCiWPwUjXpt2QrZZ5ESxktLiNbmx4VPdiogTyi_42CxO8G81tO8hlF8A","stattrak":true,"normal_prices":[13927,13095,12625,12758,15482],"normal_volume":[92,75,71,10,2],"stattrak_prices":[16637,14695,14320,21899,23623],"stattrak_volume":[23,8,11,4,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6VgH-qWDHWR_uJ_t-l9AXrrl0905Gjcm4uqcSmWblNzD8Z2QrZbtkK5ldTmY-rqtAba399BzyjgznQejSHMqZo","stattrak":true,"normal_prices":[29141,26053,25905,0,0],"normal_volume":[75,88,16,0,0],"stattrak_prices":[35026,33019,31004,0,0],"stattrak_volume":[13,3,5,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7d9H_2WHW-v1e94j-1gSCGn20Vz4G3Wztn9JHufO1UhWMclQ-AJ4BTqxIfgM7mzs1OLiosWmXr_hytXrnE8XsE6vh0","stattrak":true,"normal_prices":[17734,11916,11229,11472,11578],"normal_volume":[5,21,34,17,20],"stattrak_prices":[59995,13311,12062,12350,12659],"stattrak_volume":[2,4,19,4,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V6x0H_acHGKD1dF0v_NsTiWMmRQguynLnIuoJXmfb1ciDsR5R-ZfthOwkN3nMryxsw2PiYoUySr63CNLvSts5fFCD_TIli8aVg","stattrak":true,"normal_prices":[26437,12021,11493,11472,11494],"normal_volume":[4,25,48,10,17],"stattrak_prices":[46126,12969,11744,12218,67670],"stattrak_volume":[1,3,8,4,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d4_u-V7diH-CGHHecxNF6ueZhW2fqkxghsDmBydb8JXKXO1QgA8F0RO4KshDrkYblZumz5VGLgt9MxSr2kGoXufZKGhe-","stattrak":true,"normal_prices":[37170,16131,12925,12626,12947],"normal_volume":[4,58,116,25,11],"stattrak_prices":[142376,16720,14614,14999,13201],"stattrak_volume":[2,1,12,3,5]}}},"506":{"name":"Gut Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2pfbAjd6TAXDSSkeh3trdtTCy1zUV2t2vTyoyrIHzDalAgCsN1ROcO40O6wMqnab0rKy1qHw","stattrak":true,"normal_prices":[6298,6298,6298,6298,6298],"normal_volume":[84,84,84,84,84],"stattrak_prices":[9115,9115,9115,9115,9115],"stattrak_volume":[15,15,15,15,15]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SN_WRHVicyOl-pK9tG3-1w0ohsWvQn9iucSiTbgFyCpN5Q-dZ4RK4koa0P7m2tgHcj45A02yg2VxV6Ecz","stattrak":true,"normal_prices":[103488,10558,7994,8952,9692],"normal_volume":[3,33,38,6,12],"stattrak_prices":[0,18463,11142,14261,12754],"stattrak_volume":[0,9,5,7,6]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe7RSNPGDC1iF0-x3vt5lRi67gVN0t2WGz9z8cHufa1IpX5skQbJbuxHtl9KxZu7ntgWM3o8Uziishi5J8G81tIA_RSBn","stattrak":true,"normal_prices":[11663,6206,5490,6327,5947],"normal_volume":[3,3,38,5,7],"stattrak_prices":[78910,9689,8841,9797,35000],"stattrak_volume":[1,7,3,4,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe7RSJPGDHmuV_uJ_t-l9AX-yl0Uj6jvQnoyrcy-TPQd1ApB2E7UIuxWwkoHkMOzjsgXei4pAyXngznQeOP3RS-8","stattrak":true,"normal_prices":[40000,6218,5422,5948,5178],"normal_volume":[1,11,41,14,19],"stattrak_prices":[61126,10421,9865,8951,8633],"stattrak_volume":[1,7,5,2,2]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaaVSJvGXC1icyOl-pK88HyjikUR_6z_UmIyudy-WPVByCpRzQ7UDukbtmofmM-3r4gaKjINH02yg2St2xdPu","stattrak":true,"normal_prices":[12878,19003,0,0,0],"normal_volume":[188,10,0,0,0],"stattrak_prices":[17799,0,0,0,0],"stattrak_volume":[23,0,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe6tSLvmUBnOvzedxuPUnF3C3l0p25mvQz4r7c3ueag91DpclRrFc5kaxk4e2Y7zi4VOIg4hFmTK-0H3lwmjDRw","stattrak":true,"normal_prices":[53416,6258,5775,5637,5902],"normal_volume":[4,13,38,5,6],"stattrak_prices":[0,11979,7529,10000,7885],"stattrak_volume":[0,3,8,2,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaapSNPmUC3Wvzvx3vuZscCW6khUz_WyGyIv7I3nBOlchDZV3RO8JsEa7wYXnNr_n4AeI39pNyX_22yxO6id1o7FVdgPDjag","stattrak":true,"normal_prices":[10860,13825,0,0,0],"normal_volume":[152,5,0,0,0],"stattrak_prices":[13385,19264,0,0,0],"stattrak_volume":[20,3,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSJPGeD3ST1P1JvOhuRz39xhl06zvWmYn9dnuePVVzXJYlQeFZ4Bfpk4XuY-PnsgfcitpDyi_4iTQJsHiloP4S4w","stattrak":true,"normal_prices":[8558,6702,6505,7605,8203],"normal_volume":[47,36,45,7,1],"stattrak_prices":[12627,9174,9805,16500,31412],"stattrak_volume":[13,3,4,2,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSLfGBDGuV_uh3tORWQyC0nQlp4TzTnNz_cHifawAiW8QjTe8Lu0K9w9HjY77m4lTXjI1FyCz9hnxBvDErvbgdMZDtHA","stattrak":true,"normal_prices":[11872,17815,0,0,0],"normal_volume":[234,9,0,0,0],"stattrak_prices":[16088,25136,0,0,0],"stattrak_volume":[30,3,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSM-SWC2uvyuB_tuRWQiy3nAgq_WvTnNr4cnqfPQEpDZB1ReBftEG_kde2P-zl4gzciYsXzC2o2Hgd7n11o7FVh370TBM","stattrak":true,"normal_prices":[0,0,0,7019,4853],"normal_volume":[0,0,0,14,121],"stattrak_prices":[0,0,0,14866,7463],"stattrak_volume":[0,0,0,4,16]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSMuWRF1idwPx0vORgVSy3qhEutDWR1I2pcC2WaQclWZAlQrVe5ES5k9XgMOzm4wXXiokRmC6v2ypNu3pr5-kcEf1yqhk6dhc","stattrak":true,"normal_prices":[47031,56859,0,0,0],"normal_volume":[48,1,0,0,0],"stattrak_prices":[51510,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSM_GDHm-Z0-tJveB7TSW2nAcitwKJk4jxNWWQO1IjW5d4RLUOsEG_lYCxZbjq5QDejYlBnn6o2y9LvCti4OtRUfUl5OSJ2CIbbpiB","stattrak":true,"normal_prices":[32725,42659,0,0,0],"normal_volume":[43,2,0,0,0],"stattrak_prices":[43674,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpovbSsLQJf1ObcTjxP0966lYOAh_L1Ibfum2pD6sl0g_PE8bP5gVO8v11tZzqhLYGRIw86aQ2G81i3k-bog8XptcjIynFi7CB3sH6Jzh2_1BlFcKUx0ncN5NuB","stattrak":true,"normal_prices":[53878,1800000,0,0,0],"normal_volume":[11,1,0,0,0],"stattrak_prices":[70000,0,0,0,0],"stattrak_volume":[1,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6SniMmRQguynLmYmpeCjEPwYhDJF4R-AMsEO-l9exPrjm5gzWjowWmSz323lNuCY65_FCD_QON0IPhg","stattrak":true,"normal_prices":[12938,15238,0,0,0],"normal_volume":[143,4,0,0,0],"stattrak_prices":[15691,22449,0,0,0],"stattrak_volume":[14,3,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6SnuMmRQguynLzYqtd3uXawNxAsAmReINt0S9kNW1N-Pk5lOIiNlNnCio2yNN6Hs-sfFCD_S11dClsg","stattrak":true,"normal_prices":[15730,15415,0,0,0],"normal_volume":[202,6,0,0,0],"stattrak_prices":[17160,26788,0,0,0],"stattrak_volume":[15,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSIvyGC2OvzedxuPUnSyjrw0VztW3Wn4z4d33EPFUiDppyF-JZuhSxlobkP-jl4VHai4NHyzK-0H3cWj3rrw","stattrak":true,"normal_prices":[15325,9356,7135,7022,7466],"normal_volume":[1,27,18,9,7],"stattrak_prices":[39064,12154,10812,10397,10850],"stattrak_volume":[3,9,7,4,6]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6SnqMmRQguynLw96hIC2VagV0W5dzQ7VYsBiwldyyZO3m5VaLiN8WxXmt33sd5y5j4vFCD_RERtuZEw","stattrak":true,"normal_prices":[12642,15725,0,0,0],"normal_volume":[129,4,0,0,0],"stattrak_prices":[15169,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJP-DHmuV09FmuOB6Sn2MmRQguynLzo74JX_EbgIlW5YjEeAKsRntkdbhNe_jtFTXgo0RxS-rj38cuHo95fFCD_S45FzBKg","stattrak":true,"normal_prices":[13049,15573,0,0,0],"normal_volume":[192,4,0,0,0],"stattrak_prices":[15446,20302,0,0,0],"stattrak_volume":[11,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSJv-BDWKU_uJ_t-l9ASqwzUp152vXnoqrcXmfagYgCJF2Q-MD5hTqlN2zMu7m5VDYgt5Nn3jgznQeBu0Fnbw","stattrak":true,"normal_prices":[14367,7188,6434,6648,6480],"normal_volume":[6,31,35,15,5],"stattrak_prices":[45231,8572,10233,11907,9247],"stattrak_volume":[1,2,4,1,5]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRabVSL_mfC2OvzedxuPUnGSvklk535GrRm9arInnEbg8nW8AjRucC4UK-kNDjZO_rtQDWjY1FnDK-0H0tccFB2g","stattrak":true,"normal_prices":[24780,12350,10826,9933,10458],"normal_volume":[12,31,54,31,24],"stattrak_prices":[27692,14764,16689,13186,15717],"stattrak_volume":[3,1,1,3,3]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SJPSDD3OvzedxuPUnS3njl00j5W3cnIqqcnOTaAZzDcF2RuYJtEK9wNTkZL_gsQyNjYwXyDK-0H1ch3290w","stattrak":true,"normal_prices":[0,5861,5393,5605,4973],"normal_volume":[0,19,31,3,15],"stattrak_prices":[103275,9272,7251,8900,10606],"stattrak_volume":[1,1,9,1,3]},"560":{"index":560,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRa7FSJ-WHMWuf0-tJvOhuRz39zU5-4mzUyI2ud32RaQ8lXJB2FuUI40S4kofgM-7hslaPgtpBnHj-iDQJsHjij6hzng","stattrak":true,"normal_prices":[13303,10467,8358,10207,8643],"normal_volume":[54,58,97,8,7],"stattrak_prices":[22909,15389,11649,13982,13358],"stattrak_volume":[9,18,31,3,2]},"565":{"index":565,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRa7FSJ-WHMXSEzuBzp-B6Rxa_nBovp3PRn96tIynBPFJxA5RzROYOtxHpwIWzP7zitQXe2owWySWojisa7S46_a9cBlypMIP0","stattrak":true,"normal_prices":[10935,6798,5932,5566,5769],"normal_volume":[10,57,72,26,32],"stattrak_prices":[19131,9624,8673,8004,7845],"stattrak_volume":[2,10,10,8,11]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJf2WHGacxdF7sfNrQyy6jxgjjDGMnYftby-ROwEmXMciQeUDt0Prkt3hMeKwsQKP2ogRzyWqiy4b6So_5-YBU6Q7uvqAIJUtHr4","stattrak":true,"normal_prices":[44750,51021,0,0,0],"normal_volume":[44,6,0,0,0],"stattrak_prices":[47916,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tmy6lob-KT-JbwN0WZR2Re5fuxXswdKxP-Kx5Qzdj9hCnn6qiyIb5yc45-1QA6Ut_LqX0V-_N17M0A","stattrak":true,"normal_prices":[16638,25500,0,0,0],"normal_volume":[78,4,0,0,0],"stattrak_prices":[20467,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tm-6lob-KT-JOwEgDcN2EOEDsBnumtG1N-nr7wHc2ItAySStiC8auC9p5-1XVKUk87qX0V8XtbYmPA","stattrak":true,"normal_prices":[18374,26800,0,0,0],"normal_volume":[79,1,0,0,0],"stattrak_prices":[22868,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tm66lob-KT-JOAIiWZRwR-NZ5hO5lde2NOrl4QyM3YtDySSoi39J6iZrtrpRAvYm-bqX0V-vZngSFg","stattrak":true,"normal_prices":[15956,24698,0,0,0],"normal_volume":[53,2,0,0,0],"stattrak_prices":[18680,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSJ_GeA2avxeFmoO1sXRajnRw0tmm6lob-KT-JbANxW5okTLMPuhmwmtO2N7-z71bdjNpMm3-s23wb7Cc-4OtRB_Ug_LqX0V_Ys9LWqg","stattrak":true,"normal_prices":[16258,25244,0,0,0],"normal_volume":[68,1,0,0,0],"stattrak_prices":[19286,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"575":{"index":575,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRb7dSJ-WHMWaF1eFiou5nRiqMmRQguynLy46odXPFZw9xD5dyFOUDuhPslNXkNOLj71Db3o4Rn3j7hy8YvCZu4_FCD_SSdjZ6vg","stattrak":true,"normal_prices":[21726,11831,10222,10847,10786],"normal_volume":[15,68,107,7,22],"stattrak_prices":[35257,15673,11390,13000,11307],"stattrak_volume":[3,6,18,2,10]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SL_OWD2mvyuB_tuRWQyC0nQlp4TiDntmtIiqeblAmDsB2QLMNukSxwNDkZOrg4wbajItNzXn4in9LvDErvbi4dh8COQ","stattrak":true,"normal_prices":[6885,6039,5702,6226,7442],"normal_volume":[67,41,39,3,4],"stattrak_prices":[9604,9169,8571,10537,9129],"stattrak_volume":[14,5,7,2,1]},"580":{"index":580,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSLfGBBWKU_vtmj-1gSCGn20tw6jndyNmoIn3FbAQoCMEkTOYJsRTql4fkPriw5gyIjoxAyCj9hy1XrnE8qMFnbCI","stattrak":true,"normal_prices":[8228,6699,6083,7350,7979],"normal_volume":[62,37,52,5,5],"stattrak_prices":[11511,9758,7739,9414,14764],"stattrak_volume":[12,9,9,4,1]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRaalSOvWRHGavzedxuPUnGH7hxk8jtWyByt-peC6RPQAoXJF0FO9Zt0bpw9zuMrjg5QLXjo1BnDK-0H35txVa0w","stattrak":true,"normal_prices":[11893,11032,12531,0,0],"normal_volume":[37,53,9,0,0],"stattrak_prices":[14723,17025,13894,0,0],"stattrak_volume":[13,7,4,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe7RSLfWABliEwOBJvOhuRz39wU12sWnczIyuI3mQbFAnD8RyTLVc4BHukIfmZbjq4Vba2IlMzyT43DQJsHjApBIhpw","stattrak":true,"normal_prices":[50000,5466,4854,4933,5336],"normal_volume":[2,19,46,2,5],"stattrak_prices":[90000,8844,6061,6259,8900],"stattrak_volume":[2,3,4,6,2]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRYL1SJv-BC3SE_ux5ouRoQxa_nBovp3PSmYqhJX6UPw9yD5N1FOEO4UPqwdLmNruz5lePjd9Dmy6q3SkYvCg5_a9cBkQf8e9t","stattrak":true,"normal_prices":[26576,5615,4910,5197,5562],"normal_volume":[1,14,33,4,21],"stattrak_prices":[93275,12387,7073,6699,7458],"stattrak_volume":[1,4,1,1,5]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c-uaRe6tSMOWBHmuV_uJ_t-l9ASvhkRhw4GiDnN2hcXrGOAYgDZFwQrVYs0XtxtDgZu3ktVDXiYgRyy3gznQex8McCSA","stattrak":true,"normal_prices":[19484,8256,5801,6244,5643],"normal_volume":[1,28,78,5,19],"stattrak_prices":[72649,12540,7647,7819,9204],"stattrak_volume":[2,5,8,4,9]}}},"507":{"name":"Karambit","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2labZsLfKaGinEx-0u5LhqGHrjlElz52jRmN2sd3yfb1NzWZVwRbNeu0S5k9WxMuvh-UWA3ObnwJvj","stattrak":true,"normal_prices":[96969,96969,96969,96969,96969],"normal_volume":[221,221,221,221,221],"stattrak_prices":[102823,102823,102823,102823,102823],"stattrak_volume":[46,46,46,46,46]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1iHxOxlj-1gSCGn20wi4mTcyoyoeS_Dbwd2Cpd0RrMK4RbqxNTvZLyw7lff3Y5GxX6oiiNXrnE86bQY1_c","stattrak":true,"normal_prices":[648383,93008,58812,56325,51655],"normal_volume":[1,82,215,30,54],"stattrak_prices":[3375000,108262,64619,65658,61429],"stattrak_volume":[2,19,33,4,5]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AHliEwP5zj_R7TSi9qhEutDWR1N2qeXnGPQN2CcdxRucP5xK6kd3mP7jn4gyNiN1HxSiojHtN6Cc_t7wcEf1yQHicti4","stattrak":true,"normal_prices":[89286,43539,39482,38969,37603],"normal_volume":[4,31,104,27,53],"stattrak_prices":[0,52973,39672,38387,39863],"stattrak_volume":[0,8,23,2,8]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AHliUwP5mvORWQyC0nQlptmzcntmody-fbAYlDpElTLZf50W_ltS2NrywsgWMidlFyS2riS0Y7DErvbjAAm1c_A","stattrak":true,"normal_prices":[82955,44345,40297,38695,38414],"normal_volume":[3,48,103,34,27],"stattrak_prices":[412150,54628,42923,43415,39863],"stattrak_volume":[1,7,18,6,9]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SD1iWwOpzj-1gSCGn20tztm_UyIn_JHKUbgYlWMcmQ-ZcskSwldS0MOnntAfd3YlMzH35jntXrnE8SOGRGG8","stattrak":true,"normal_prices":[167048,184409,0,0,0],"normal_volume":[536,18,0,0,0],"stattrak_prices":[191870,0,0,0,0],"stattrak_volume":[61,0,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AAVieyOl-pN5lRi67gVNxsmzXyd2tJ3-QPwB2W8MkFu5YshG8lN3jYbnm5wTc34NNzS_423wd8G81tLSi0nj9","stattrak":true,"normal_prices":[173260,57308,44889,45125,43115],"normal_volume":[6,65,155,30,50],"stattrak_prices":[925157,65613,48992,52064,46189],"stattrak_volume":[1,7,24,7,10]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SAFiEyOlzot5mXSi9khgYvzSCkpu3eC3BbwUmCcMlQbMD4xG_w9zkPu7gsQXe2YJFzHqqjixL5ylr4ukAWb1lpPNV9oeSnQ","stattrak":true,"normal_prices":[81796,90656,0,0,0],"normal_volume":[389,27,0,0,0],"stattrak_prices":[94218,93300,0,0,0],"stattrak_volume":[47,2,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iUwON3o-J8XBa_nBovp3PUmdetJHyUblInCZF5TeID40bum9znMeKwtleKi4pCyC-q2CofuCxq_a9cBl9itWvl","stattrak":true,"normal_prices":[64205,58434,54842,54281,58477],"normal_volume":[107,127,171,21,30],"stattrak_prices":[73533,61877,56109,55303,62000],"stattrak_volume":[17,16,28,3,1]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1idwPx0vORWSSi3kCIrujqNjsGveH2RaVRxX5ohEe4Juhawm4fiM-ji4APf2YMXmSz_hyoduytv4uhWT-N7rfLHGBJ4","stattrak":true,"normal_prices":[96586,108203,0,0,0],"normal_volume":[987,35,0,0,0],"stattrak_prices":[107354,223061,0,0,0],"stattrak_volume":[96,6,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iD1etzvN5iQSC1kCIqtjmMj4K3cC2TZgQgWJUjR7QIukK7lNO0Prjk41PXjdgXySj4iCJMvH5p4rlRUL1lpPMtop-Pnw","stattrak":true,"normal_prices":[0,0,0,45966,43773],"normal_volume":[0,0,0,18,365],"stattrak_prices":[0,0,0,60000,44337],"stattrak_volume":[0,0,0,2,71]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JbgMoW8Z5Ee8Isha9k9K1YeLr7wXci4wQzyqsjCxBuytssrkLV6Ek-LqX0V8zRrFpiQ","stattrak":true,"normal_prices":[733695,702503,0,0,0],"normal_volume":[46,2,0,0,0],"stattrak_prices":[814375,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMRxFuEM5hi_xNXhMbmx5VCMjd9MyCv6jigc6n064ucLAvZ3_6bViV3fcepqpLtspE0","stattrak":true,"normal_prices":[457258,402132,0,0,0],"normal_volume":[39,1,0,0,0],"stattrak_prices":[458056,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuRLQPsBawkNfiMbnl5AKMiopCnin7iCJBv31j4rkBBKEg-6zUjV3GY6p9v8dpLWT3Fg","stattrak":true,"normal_prices":[856918,979999,0,0,0],"normal_volume":[7,2,0,0,0],"stattrak_prices":[1150000,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXFb1cpDJR2FOFbsBTql9bjYbzq7gPZiN1MxH7_2ytNuCdpte1UB_Ui5OSJ2GbkVqni","stattrak":true,"normal_prices":[125211,125939,0,0,0],"normal_volume":[320,6,0,0,0],"stattrak_prices":[127134,155483,0,0,0],"stattrak_volume":[24,2,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWWXawUgA8dxRLEO40KwkobnMbnj5QKL348Qmy-sji5K7i466uxUUKQn5OSJ2KBZjkQR","stattrak":true,"normal_prices":[184168,183302,0,0,0],"normal_volume":[260,8,0,0,0],"stattrak_prices":[177443,183857,0,0,0],"stattrak_volume":[39,2,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iSzftztN5lRi67gVNw4D_WytioJX2WO1AmCpJ5Qu9Z4EK-wYLjMOzm4gKMjt9BnC732i9M8G81tP_ecAuH","stattrak":true,"normal_prices":[118035,76934,70009,65436,61930],"normal_volume":[25,81,122,64,63],"stattrak_prices":[191937,85844,74044,69746,72345],"stattrak_volume":[1,4,11,11,9]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWWebgAlA8dwQLMOshmwm9y0Puni5Qba3ohEni-r33xA7X5o4uZTV6ch5OSJ2C8W7sST","stattrak":true,"normal_prices":[121082,128710,0,0,0],"normal_volume":[232,5,0,0,0],"stattrak_prices":[127686,136287,0,0,0],"stattrak_volume":[16,2,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWXCaQQnA5B5Q-8O4xnpltazNri37gGPgtlDzin7iXhN6y44tb0GUaYg5OSJ2A0QBM1-","stattrak":true,"normal_prices":[129910,127698,0,0,0],"normal_volume":[265,4,0,0,0],"stattrak_prices":[131427,169186,0,0,0],"stattrak_volume":[23,2,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1iWzvx1teVWQyC0nQlp5zmEyI6rcC7DZg8pXpRyQOMOsBG-xNaxZbzl4wPdit5Azij3239MvDErvbgAJOXq8Q","stattrak":true,"normal_prices":[78532,55889,50988,48461,47393],"normal_volume":[19,67,96,36,39],"stattrak_prices":[383875,60668,56028,51901,49460],"stattrak_volume":[1,15,13,12,5]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SH1ifyOJztN5lRi67gVNz5DvUmdj4eXuWOFAhAsF4RLFc5BC4xtbuY7yx7wDbgo9CzSj2h3xK8G81tB_XeHWq","stattrak":true,"normal_prices":[174540,82046,67511,64877,64852],"normal_volume":[41,209,329,150,122],"stattrak_prices":[246063,111217,80656,83805,78670],"stattrak_volume":[3,25,28,13,10]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1iUxf53pN5lRi67gVN25WuBmNqpeC-RbgdxCZAkRucN4xC8w4axY-O07wfW3YkTzCn6jC9N8G81tIWhen7s","stattrak":true,"normal_prices":[66343,41152,37808,36855,36372],"normal_volume":[4,31,107,26,43],"stattrak_prices":[0,44735,37644,45428,37744],"stattrak_volume":[0,10,29,8,13]},"561":{"index":561,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-QG1ibwPx3vd5lQDu2qhEutDWR1IqrIHLCZlUmDJYlTLFb50HuwdyxPu2w4lCKjI5HniT2jS1PuCxj5e0cEf1y9ZCADXU","stattrak":true,"normal_prices":[103464,76082,53320,55218,46689],"normal_volume":[111,192,301,16,39],"stattrak_prices":[115286,82694,59642,58237,93083],"stattrak_volume":[17,31,46,10,4]},"566":{"index":566,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-QG1ibwPx3vd56Wya9kAomoDW6lob-KT-JbwIlWcYmQ-UM40LrldXkZO6wslONiN0UmCT52iIdui8-5LlUAqUn-LqX0V8xd7EU5Q","stattrak":true,"normal_prices":[92036,67211,62071,57809,55837],"normal_volume":[31,124,181,100,118],"stattrak_prices":[135216,80595,70407,58153,58773],"stattrak_volume":[9,24,25,32,18]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iVzOtkse1tcCSyhx8rtjSfn4vGLSLANkI-X8MjTLFYskTsw9bnZOuwsgSIj4sTniz-2i5A7yY6tbwGV6Nx-qGEjxaBb-MuPavopw","stattrak":true,"normal_prices":[769267,699900,0,0,0],"normal_volume":[30,1,0,0,0],"stattrak_prices":[794851,1326500,0,0,0],"stattrak_volume":[5,1,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cBTLN1F4TowkROZctEXqxNO2Nevn4QzZ2I9Mz3r62C9L634_5uhTWKEh_fKD2w7HL_RjthCBcAWy","stattrak":true,"normal_prices":[205339,239105,0,0,0],"normal_volume":[180,6,0,0,0],"stattrak_prices":[218779,191274,0,0,0],"stattrak_volume":[20,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cxTLN1F4ToxzRbQMukK6k4HnZe3k4gPW34hFmCWrjCgd5yk55-1RBfB0rq2D2w7FL_RjtjtuH2jv","stattrak":true,"normal_prices":[242921,197408,0,0,0],"normal_volume":[93,6,0,0,0],"stattrak_prices":[241714,0,0,0,0],"stattrak_volume":[17,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8chTLN1F4Tox2FOJfsxWxw9LgNOPh5FHY3dpHmC762y1BvClssOoLUqp3_fbX3ADGL_RjtmmTgPB9","stattrak":true,"normal_prices":[171035,168475,0,0,0],"normal_volume":[116,4,0,0,0],"stattrak_prices":[187619,228014,0,0,0],"stattrak_volume":[8,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8dRTLN1F4ToxwQLNZ5xa-xNDuNu_ktgCN2YtNn36thypAuidrsb4BUqMj_qPfiwCTL_Rjtpd8Mt3S","stattrak":true,"normal_prices":[163777,165456,0,0,0],"normal_volume":[89,3,0,0,0],"stattrak_prices":[174666,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"576":{"index":576,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-UHVibwPx3vd5oWj28gQ8ovTSGpYPwJiPTcAMkCJt3QuVY4xXrloHhP-nlsw2Ljo1NzS6ohitJvCc4sOcHAqInqKfJz1aWliaAF_M","stattrak":true,"normal_prices":[163035,100794,80796,72861,65005],"normal_volume":[49,156,343,42,83],"stattrak_prices":[217608,100385,81298,81863,80790],"stattrak_volume":[8,33,51,4,10]},"578":{"index":578,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1ifwut3vt5iQSC1kCIrujqNjsGteH6ebFR1XJp3E-MNtxK7lYbiM-rg5wLZgoNGyyX62Hsb7ixq5e9RT-N7reSUYiY6","stattrak":true,"normal_prices":[51513,46438,43627,42549,43478],"normal_volume":[112,141,179,24,26],"stattrak_prices":[59568,50252,43848,47246,41379],"stattrak_volume":[23,25,39,6,2]},"582":{"index":582,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1idwPx9teVWWjmMkxQptgKJk4jxNWXCOlJ2CZpyEeBbuxbrltXkMbzlsgTXit1NyST9hiJBu3ptsesLAPJ35OSJ2AmQpzvF","stattrak":true,"normal_prices":[55546,50189,46629,46168,48042],"normal_volume":[129,151,187,24,13],"stattrak_prices":[62378,55792,47690,78760,53137],"stattrak_volume":[27,23,42,5,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-SA1iKxOxksd5lRi67gVNx5GzQztqrdH-ea1AjApImFuEJ5EO5wYHmP-2w7gGLgowTz3r5jCwY8G81tFw9kDjw","stattrak":true,"normal_prices":[104741,84883,85493,0,0],"normal_volume":[140,153,43,0,0],"stattrak_prices":[124262,96850,99610,0,0],"stattrak_volume":[17,14,8,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AHlidxP1-j_VoQRa_nBovp3PRw9yhcHyTawJ1X8N4ELVb5BXqw9OxZu-x5wSKit1Mmyj83C9M7Ss__a9cBidCCPpT","stattrak":true,"normal_prices":[60000,37013,35513,36362,37047],"normal_volume":[5,41,59,31,35],"stattrak_prices":[0,41232,37541,43500,38058],"stattrak_volume":[0,10,26,1,15]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-bF1iWzvxzo_VWTSahkBwrjDGMnYftbyifZgQlA8EhRrRfuhm7lIa2MerjtlaKi4NGnius3SMc6Slv574AUPA7uvqA0RoB8ZE","stattrak":true,"normal_prices":[83809,43686,37960,36601,36447],"normal_volume":[3,25,97,28,38],"stattrak_prices":[402149,51748,43908,55751,45000],"stattrak_volume":[2,9,13,4,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q7uCvZaZkNM-AAViA1PxmvORWQyC0nQlpt2uHwtqvdS6WZlUjXJt2RrFbuhC5wYG0MOKz41Hc2IIRm36sjnwf7jErvbiyCF9_ug","stattrak":true,"normal_prices":[172679,57596,44701,43360,42373],"normal_volume":[7,96,271,51,77],"stattrak_prices":[0,68880,45639,45925,43998],"stattrak_volume":[0,9,57,8,7]}}},"508":{"name":"M9 Bayonet","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2jMZtvIemcAGKEj7ojtOIwSnrrkEt25WiEw438cXuUaQB0WcBxFrUItxa6lNezMOKzsVPAy9USYWigJ8Q","stattrak":true,"normal_prices":[73109,73109,73109,73109,73109],"normal_volume":[215,215,215,215,215],"stattrak_prices":[73608,73608,73608,73608,73608],"stattrak_volume":[36,36,36,36,36]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_vlzsvJWQyC0nQlp4GrWzYuqeHjDZlN1XJohTecO5xawwdDvNuLm5wPcjY0QzyX83Xsd7zErvbgxKe4lfw","stattrak":true,"normal_prices":[454930,73647,41442,40721,40799],"normal_volume":[14,117,227,19,87],"stattrak_prices":[1225095,92255,49882,53794,64481],"stattrak_volume":[1,19,35,4,16]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSA_vp3oORWWjuxlBMYvzSCkpu3dnmQagEhApJwTeENsRW-l4LkZLjh4FbWg91ByiT-jSJB5nk96uwFWL1lpPPSsWRCMw","stattrak":true,"normal_prices":[65778,32299,28823,28980,31347],"normal_volume":[9,49,98,19,78],"stattrak_prices":[0,37427,30463,30360,34000],"stattrak_volume":[0,7,11,7,14]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSA_up3oPFlSha_nBovp3PSnNj6dnnEbA4oDZB0TbIP5BTulYG2NO3q4lTWjYpAyi79jHtNvHo6_a9cBpN31nKp","stattrak":true,"normal_prices":[81095,32012,28294,28253,28729],"normal_volume":[1,52,92,26,59],"stattrak_prices":[350000,40602,29454,35094,32220],"stattrak_volume":[1,10,17,2,10]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaR_uh3tORWQyC0nQlp4znQytr6cnjFbg8oC8BzRrQK50S-lNDgP-_r5wWP3t5CyX37jCIb7DErvbiJu9Hv_g","stattrak":true,"normal_prices":[88676,96996,0,0,0],"normal_volume":[424,18,0,0,0],"stattrak_prices":[97567,103348,0,0,0],"stattrak_volume":[64,4,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSf_uB_t-l9cCW6khUz_WSAnIyrIy6ValInCJNyQeIPtxLtk9DuZr7rsQaI3YkRmyyrh3gc6Cl1o7FVxcznlCA","stattrak":true,"normal_prices":[105764,43830,31910,30985,31142],"normal_volume":[3,50,132,36,67],"stattrak_prices":[1642454,57314,33404,33500,42974],"stattrak_volume":[1,7,22,4,10]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWae_vp_t-R7cCahlBMgtgKJk4jxNWWTa1QhDMMmQOMJ5BPtkYHuM-KwsVTYjIoQy3n-iStL7yxj57wDB_cs5OSJ2H8uCzPz","stattrak":true,"normal_prices":[61667,63984,0,0,0],"normal_volume":[389,21,0,0,0],"stattrak_prices":[63152,105337,0,0,0],"stattrak_volume":[56,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_up3veB6TDygqkR3jDGMnYftb3-ePQEjCMQkQuUDsUW7lN22Ze_mtADa3o0RyH3_hyMY6CY94b0GAPU7uvqAmF9xxno","stattrak":true,"normal_prices":[45752,42097,40161,39892,42841],"normal_volume":[127,144,197,18,14],"stattrak_prices":[52802,49400,41117,42374,51097],"stattrak_volume":[27,21,32,1,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_uN3ouNlSha1lBkijDGMnYftb3OTbVRyD8Z1RrNctkS6kobkZLzi7gTW2NpFxH33hi9Nuno65uxXAqs7uvqA7lyFHH4","stattrak":true,"normal_prices":[73107,83422,0,0,0],"normal_volume":[528,25,0,0,0],"stattrak_prices":[76050,87791,0,0,0],"stattrak_volume":[82,6,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_v1iteRlcCK9nBsijDCAnobsLGXCPVV1XpB4ELYIsEbqktbjN-_k71GKjotAyS6sjn8d63pj4ewGUaci5OSJ2GrdBJ84","stattrak":true,"normal_prices":[0,0,0,33806,32401],"normal_volume":[0,0,0,30,334],"stattrak_prices":[0,0,0,35729,32200],"stattrak_volume":[0,0,0,3,77]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_vxjsvhWQiihlxEiuieAnrD1KCzPKhhyX5sjE7MLtRnuxNbjYb-x7gDWiYMTmCms2HlI7H065bsCUPF0-afUkUifZqukeTAH","stattrak":true,"normal_prices":[780119,764499,0,0,0],"normal_volume":[34,3,0,0,0],"stattrak_prices":[716933,889900,0,0,0],"stattrak_volume":[6,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_v13oPFhRju2qhAmoT-Jn4bjJC_4Ml93UtZuQrZfuhi5lYC1Pujr7lDd2YNAmy2siHlJ6Htu5r5TUqcm-6De2wiUOap9v8cDcIwcZw","stattrak":true,"normal_prices":[439599,404994,0,0,0],"normal_volume":[37,3,0,0,0],"stattrak_prices":[464519,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ux6seJiXyyyhxEYvjyXmIP8KDHCOml8U8UoAfkItRCwl9XnNe207lCN2t1EzXr93ClN5yc_5L5UVaRxr6HSjQGXYrc9_9BdcwX6MBne","stattrak":true,"normal_prices":[832325,0,0,0,0],"normal_volume":[14,0,0,0,0],"stattrak_prices":[1779999,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjUpYPwJiPTcA8nCcZ1EOcDu0Lum9CzZO6w4Fbeg4wQxX392ykb6yc4troKAPIm-6fJz1aWPFsIQnE","stattrak":true,"normal_prices":[91830,104458,0,0,0],"normal_volume":[267,5,0,0,0],"stattrak_prices":[95865,129808,0,0,0],"stattrak_volume":[15,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjXpYPwJiPTcFR0D8Z3F-Nb4xS6x4DjNe2x5A3eiNpMzyr6jCpPvHk95O0GAKpz-fbJz1aWGfxjapk","stattrak":true,"normal_prices":[126290,127534,0,0,0],"normal_volume":[302,9,0,0,0],"stattrak_prices":[120626,100897,0,0,0],"stattrak_volume":[22,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_ux6peRtcCW6khUz_TyGnt6sdnLBPQ4mX5ImTeBesRC7k4WxZO7gtVCPjo9Dznj5h3lLuip1o7FVNy-moo8","stattrak":true,"normal_prices":[79262,50464,45604,43657,43806],"normal_volume":[27,71,110,61,90],"stattrak_prices":[97287,53192,48977,46399,43835],"stattrak_volume":[5,14,17,14,8]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjWpYPwJiPTcFBzDcQhFuJf4BiwmtzmP7iw5QXc3YsUzn6oiikauCg44uoEAqQl_6bJz1aWfAW50lg","stattrak":true,"normal_prices":[91244,99500,0,0,0],"normal_volume":[230,2,0,0,0],"stattrak_prices":[92740,125000,0,0,0],"stattrak_volume":[15,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_up5oPFlSjuMhRUmoDjRpYPwJiPTcAAnC8R2FLQD4BG6w4LuZunhswLXjIpGzS7333xPv3ls5e9RUPYkrPbJz1aWcLZcvps","stattrak":true,"normal_prices":[105176,102455,0,0,0],"normal_volume":[272,3,0,0,0],"stattrak_prices":[98040,156161,0,0,0],"stattrak_volume":[26,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_uh5ouJsSxa_nBovp3PQzYuoIH7BaA51CMZ3FO9cskKxk4DjP-7l4VPW3d1Nm3-s3HhPuH4-_a9cBjoiw1dT","stattrak":true,"normal_prices":[48577,40169,37101,35165,34391],"normal_volume":[14,68,90,64,55],"stattrak_prices":[0,49971,39817,35965,38961],"stattrak_volume":[0,10,17,12,11]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWaB_uF_vORtcCW6khUz_WvXnNqteHKQZlV0CpolFLZZthDpxIKyNLmx4ADYiNpHmXqvjSJA5iZ1o7FVI83_8yo","stattrak":true,"normal_prices":[115766,53059,44174,43275,43314],"normal_volume":[21,143,206,116,68],"stattrak_prices":[141465,82265,52105,60150,49005],"stattrak_volume":[1,18,21,14,7]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_upyoOB9cCW6khUz_WrSzdv4d3KXZgAmW5ZxRuMJskS4wNHjM-rktgfagoxEziX5iC1I53x1o7FVgsvyhlU","stattrak":true,"normal_prices":[75690,29477,27356,28399,27312],"normal_volume":[2,37,92,23,57],"stattrak_prices":[0,34448,29433,32258,31964],"stattrak_volume":[0,11,23,4,8]},"562":{"index":562,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWSF_uMvj-NoVha_mg8ijDGMnYftbyrBOw52D5R0FOYPtkG6ltOxNrjl4FPdiN0WzC723SxP6ypp6u8LVKY7uvqAFpeI3XY","stattrak":true,"normal_prices":[112293,74889,44940,41551,36056],"normal_volume":[111,209,428,19,31],"stattrak_prices":[148464,74019,46725,46372,44323],"stattrak_volume":[16,34,56,8,4]},"567":{"index":567,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWSF_uMvj-NoVhaggRIptiqEiYfGLSLANkI-WJZxE-Fct0a6l4bjM-zgtQ2Lio1MnyitiClL7ig44eoLWKB3r_eD3BaBb-N1KCFKnQ","stattrak":true,"normal_prices":[70464,48548,44836,43281,43160],"normal_volume":[39,102,176,93,118],"stattrak_prices":[132880,49773,45586,43586,48772],"stattrak_volume":[1,30,35,30,13]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ut7tfNoQy2MmBw1sTGAk5X8JRTLN1F4Tox1QedZ50O5ktbhNuLrsgLb349FniiviH4b7S0-6-kHVfAjqayCjQrHL_Rjti0DtNMm","stattrak":true,"normal_prices":[690545,660000,0,0,0],"normal_volume":[31,1,0,0,0],"stattrak_prices":[627863,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6WAVp5Xco0W7IMsxGwkdDuYbm0sVHeg49Fziz_h3lP6y5o4-dTUfYh8qXW2wCUYrwjoc5UyoohxGw","stattrak":true,"normal_prices":[122899,128189,0,0,0],"normal_volume":[120,3,0,0,0],"stattrak_prices":[126283,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6VAVp5Xco0W7ZbshTuxoLnM-mxtgaP3t1EmXr4jCoa6ChqsuxQAKQnqaeFigvDM7Ejoc5UDoFmlio","stattrak":true,"normal_prices":[156918,167291,0,0,0],"normal_volume":[111,6,0,0,0],"stattrak_prices":[166904,163300,0,0,0],"stattrak_volume":[10,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6UAVp5Xco0W7MK5xHuwdOxM-KwslDX2Y0Wm3moinwd7CZtsO4GUqUiq_XfiwyTOecjoc5UkA0n2GE","stattrak":true,"normal_prices":[119946,123734,0,0,0],"normal_volume":[75,3,0,0,0],"stattrak_prices":[125455,187000,0,0,0],"stattrak_volume":[5,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_ul3vexocC28hQ0rti-6iof4Mi6TAVp5Xco0W-UPsBDuwdfgN-jn5FHXjdpNzn322CpP5i064-oBVaEm_PWGjFmXMrAjoc5UYR0MRG0","stattrak":true,"normal_prices":[117527,118446,0,0,0],"normal_volume":[85,5,0,0,0],"stattrak_prices":[126388,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"577":{"index":577,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWCD_uMvj-NoVhaygAkopy-KlIb6HifOOV5kFJRxF-RZtxLqlIXvPr63tA2NithGmHj_iiwc6i5qsOwEA_Jxq_CD2grfcepqx0gUsCA","stattrak":true,"normal_prices":[117924,75852,61788,58377,54314],"normal_volume":[57,171,352,38,91],"stattrak_prices":[189263,84958,63525,63042,60132],"stattrak_volume":[7,24,61,2,18]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_uF1teBncCK9nBsijGTVpYPwJiPTcFUmC5p3FO5YsRO_lIG2Me3rsVOM3tpAmSv_33ka5i5r5upWV6Qsq_HJz1aWbk46ROo","stattrak":true,"normal_prices":[37714,35177,32088,31746,33633],"normal_volume":[131,133,156,16,22],"stattrak_prices":[44210,35375,32081,33810,35111],"stattrak_volume":[15,21,30,2,8]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_13","set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_uN3oupsSxamhSJ-4wKJk4jxNWWSbVd2D8R1TbYKtxCww4DvZL7j71OI340Qnyqo2isbu3ps4ecHAqtz5OSJ2C2JEBJP","stattrak":true,"normal_prices":[39981,36893,33943,32695,33997],"normal_volume":[142,145,162,23,10],"stattrak_prices":[44293,42504,36600,35825,38911],"stattrak_volume":[16,31,34,4,4]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMWad_vRzsvNocCW6khUz_WXQyN6uIH-fbFd1XJcjFuEJ50W6xofhYuu05AHdiYxNn3-viXlM7C91o7FVpU-ja-I","stattrak":true,"normal_prices":[79938,64923,63224,0,0],"normal_volume":[128,116,41,0,0],"stattrak_prices":[105090,73613,68500,0,0],"stattrak_volume":[18,23,2,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSA_uNzo-lWWyi9qhEutDWR1Nv8dXqWPVUpXpp5TLFbsxLtxNDkM-zi51CM34NFm3n_i3tNvXs44u0cEf1yDs3UNjs","stattrak":true,"normal_prices":[74161,28383,27129,26933,27748],"normal_volume":[2,41,81,26,70],"stattrak_prices":[0,31403,27260,30306,31743],"stattrak_volume":[0,4,26,3,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_bravo_i","set_community_1","set_community_10","set_community_2","set_community_5","set_esports","set_esports_ii","set_esports_iii","set_weapons_i","set_weapons_ii","set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMW-J_uh5ouR6Wxaxmg8isjG6lob-KT-JZwMlApdxTOQMtBTtk4CzZezktgLW34pBz3r-in9JvC4-5ucEB_Bzq7qX0V9JeuCeUw","stattrak":true,"normal_prices":[131226,29899,27780,28030,28225],"normal_volume":[1,37,79,29,68],"stattrak_prices":[0,34472,28188,38059,30267],"stattrak_volume":[0,9,15,5,9]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_12","set_community_6","set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Wts2sab1iLvWHMXSf_v5jovFlSha_nBovp3OAzd6qcX6ROFd1X5QkF7MDuxDpxIDgNb_msVTbiI4XzCit2iMfvH1v_a9cBqI-pjxG","stattrak":true,"normal_prices":[161304,44940,32572,31555,31193],"normal_volume":[7,107,255,50,95],"stattrak_prices":[0,50596,34407,60709,33220],"stattrak_volume":[0,11,43,5,19]}}},"509":{"name":"Huntsman Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s26aad5KfOSAimVlugu47U5HSrmzEp14zncz4ygICiealIiAsF2EOdYtkTpwNXuYbjk-UWA3JpY_ZDP","stattrak":true,"normal_prices":[13539,13539,13539,13539,13539],"normal_volume":[70,70,70,70,70],"stattrak_prices":[22104,22104,22104,22104,22104],"stattrak_volume":[12,12,12,12,12]},"1107":{"index":1107,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-QG1iY1OBio-xoQRa_mg8ijDGMnYftb3qfPQZyWJtyFuNe4BG5ktDuY-ritleIid1Hynir3H9KvH055btRV6s7uvqAU_ahZxI","stattrak":true,"normal_prices":[15299,11549,9870,9437,9432],"normal_volume":[125,188,238,16,25],"stattrak_prices":[20122,16527,10512,11990,12285],"stattrak_volume":[8,16,32,5,6]},"1112":{"index":1112,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-UHViY1OBio-xoQRaxmRwkuAKJm4LwLyrTO2l8U8UoAfkJ5kTsmtfvNe7mswOL3YNByX_9338Y7ig44-cEV_Yk_PGBjgnCZeY7_9Bdc4dD_RHM","stattrak":true,"normal_prices":[12497,8074,6704,6583,6620],"normal_volume":[40,99,133,61,68],"stattrak_prices":[16182,10502,8622,8843,8143],"stattrak_volume":[6,19,22,19,5]},"1117":{"index":1117,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-UHViY1OBio-xoQRaygAkopy-KlIb6HifOOV5kFMF1QrMNu0Puw4DvYbnk5Qfc2d5Azyv_3C1O7Hlq4ulRAvcn_qKBiFvfcepq3JPpPWw","stattrak":true,"normal_prices":[19382,11590,10220,10013,9275],"normal_volume":[54,149,316,27,59],"stattrak_prices":[22123,15406,11601,12669,11365],"stattrak_volume":[5,28,42,8,5]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1iHxOxlj-1gSCGn20V24znRw4v7JXPEaVUnW8AkQbUP5xW4wYKzMeu3sgPbio4WzXr_3HxXrnE84qvZFNo","stattrak":true,"normal_prices":[84067,23390,11075,12000,11330],"normal_volume":[12,32,74,4,9],"stattrak_prices":[700000,47384,18033,27957,18278],"stattrak_volume":[1,4,5,3,4]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AHliEwP5zj_R7TSi9qhEutDWR1Nb4IH_GZw8lW8QiRu4M40Htl9W0NeK3tQKLjt9Cm3j4iypO6309suYcEf1yAgdvvhk","stattrak":true,"normal_prices":[20996,9911,7008,7311,7241],"normal_volume":[1,9,26,6,10],"stattrak_prices":[0,17346,9453,0,17000],"stattrak_volume":[0,3,8,0,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AHliUwP5mvORWQyC0nQlp5GiDnIqseHPGalMnXJMhQ-cDtkPrm93jZe7l5wbb2YsTyy352CpP7TErvbiCPrzwVA","stattrak":true,"normal_prices":[35000,9490,6770,7739,6128],"normal_volume":[1,17,38,3,5],"stattrak_prices":[96164,13567,9857,10478,11811],"stattrak_volume":[1,3,6,3,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SD1iWwOpzj-1gSCGn2x8hsW6DmIqpcXjBZgYkCZt5F7VcthS8ldS2Nr7m5VCMi4gRyyuqjHtXrnE8oar8MtU","stattrak":true,"normal_prices":[22998,34700,0,0,0],"normal_volume":[209,7,0,0,0],"stattrak_prices":[33874,64500,0,0,0],"stattrak_volume":[16,3,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AAVieyOl-pN5lRi67gVMktj_XzNapIi6QPwYjCcd1FOIJsBPsm9TvM7-ztFfXjIgXnyX7jCxA8G81tHpNPllX","stattrak":true,"normal_prices":[129481,14517,7802,8500,8608],"normal_volume":[1,13,37,4,11],"stattrak_prices":[175123,24500,13651,20753,12805],"stattrak_volume":[1,4,1,3,1]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SAFiEyOlzot5mXSi9khgYvzSCkpu3JHmWZwFzWZB1R-RbtxC_kofvMLzg51SLj41Nmyuqjyoc5nxi5ekLUr1lpPOee5ognQ","stattrak":true,"normal_prices":[15526,16324,0,0,0],"normal_volume":[256,8,0,0,0],"stattrak_prices":[19843,29900,0,0,0],"stattrak_volume":[24,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iUwON3o-J8XBbqxSIrujqNjsGpIn_GbA8pA5J5Q7Jesxm5w9flZezi5FHXgo9Fzy_2iX8c7yhu47oCT-N7rcl4-qvl","stattrak":true,"normal_prices":[11029,9432,9040,9268,11208],"normal_volume":[60,64,78,10,9],"stattrak_prices":[16715,17243,12691,15138,13879],"stattrak_volume":[4,5,10,4,1]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1idwPx0vORWSSi3kCIrujqNjsH8JXvCZgEiDZVwEeUK40W6ldaxZOnn7g3Zj4gUmySoi39A7SxqsrsET-N7rT4plPHN","stattrak":true,"normal_prices":[18638,26689,0,0,0],"normal_volume":[243,7,0,0,0],"stattrak_prices":[27601,35625,0,0,0],"stattrak_volume":[31,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iD1etzvN5iQSC1kCIqtjmMj4K3cXiUbFd1ApZwQ-Bb5Ba5kYfjMu3hslSI2oNDyi6shy4bvy1i5-hWU71lpPPSsstkpw","stattrak":true,"normal_prices":[0,0,0,7293,5544],"normal_volume":[0,0,0,14,178],"stattrak_prices":[0,0,0,17072,7341],"stattrak_volume":[0,0,0,8,27]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JaAV1W8ZzEecL4RXtwYHkZry25lSMj95GxCj_3CMc6is5sb4GAPBx-rqX0V9XRKLfoA","stattrak":true,"normal_prices":[89777,93309,0,0,0],"normal_volume":[60,2,0,0,0],"stattrak_prices":[101225,225486,0,0,0],"stattrak_volume":[7,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMN5Qe8CshbrltLlNOqxsgLc2t8Uzyv9jSNLuC9r4-oEVfB2r_GFjg3fcepqRzB392E","stattrak":true,"normal_prices":[63345,66900,0,0,0],"normal_volume":[55,5,0,0,0],"stattrak_prices":[73852,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuE7UDuhC-mtbnNb-xtFfZ3YtGzSv6hisauns-5b5WVqIgqKDfjwjEYKp9v8eb6jzRvA","stattrak":true,"normal_prices":[119913,144216,0,0,0],"normal_volume":[16,1,0,0,0],"stattrak_prices":[275000,0,0,0,0],"stattrak_volume":[1,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXEa1V1CpR1FOQD4xK4xNzhN-6w5AXX3opCn3ivjy1N6C9t67xUU_Jw5OSJ2AqihnPi","stattrak":true,"normal_prices":[29273,57000,0,0,0],"normal_volume":[82,3,0,0,0],"stattrak_prices":[36942,45670,0,0,0],"stattrak_volume":[8,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWXBag91D5JxRu8N5hC_mtflP-6x7gSMio5Nnius2i1Avypisr0CVadx5OSJ2A8DtsQk","stattrak":true,"normal_prices":[37008,61780,0,0,0],"normal_volume":[89,2,0,0,0],"stattrak_prices":[38283,1578980,0,0,0],"stattrak_volume":[7,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iSzftztN5lRi67gVN1tW3UzousdnrBbFB0WZt0QbVctEawxoGxN-ywtgGNjtgUySz-hiIa8G81tLF2CaOG","stattrak":true,"normal_prices":[48750,17202,12153,12089,10507],"normal_volume":[1,20,21,15,19],"stattrak_prices":[136645,25045,19246,18863,21086],"stattrak_volume":[1,8,10,1,4]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWWROAEmX5omROIPskTtmobkZrvjtgzajIwRmSn723xK6Shr4LpXV6Yh5OSJ2Po9oSed","stattrak":true,"normal_prices":[28722,43075,0,0,0],"normal_volume":[66,2,0,0,0],"stattrak_prices":[35976,60470,0,0,0],"stattrak_volume":[4,2,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWXBOFcmWMN0QLJbuxXrwNTiMejm7weKiIhEzCqo2i5JuClt5u0EBKZw5OSJ2Df-bXry","stattrak":true,"normal_prices":[31670,48876,0,0,0],"normal_volume":[102,2,0,0,0],"stattrak_prices":[37136,71100,0,0,0],"stattrak_volume":[8,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1iWzvx1teVWQyC0nQlpsjyHnIyvI3-UbgImApJxTLYJsUa9m4fkY7y25lbe3o8UzCn5j39BuzErvbgKxgW_zw","stattrak":true,"normal_prices":[23384,11132,9280,8827,8935],"normal_volume":[7,23,29,16,8],"stattrak_prices":[0,16585,11770,14636,14381],"stattrak_volume":[0,2,1,6,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SH1ifyOJztN5lRi67gVN_4W-Byt-hIi2UbVV2W5p2Fu4PuxmxkdO0Zejj7wff3okWzCT3ji4f8G81tJdWCOsa","stattrak":true,"normal_prices":[39113,20734,17664,16626,16846],"normal_volume":[7,30,75,37,17],"stattrak_prices":[0,34580,31419,26877,30000],"stattrak_volume":[0,3,4,6,4]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1iUxf53pN5lRi67gVN-6mqBz4msIHnDPAd1X5YiQuBe5Ba5ltG2NOvj7wTcjo1Eyn79inwd8G81tJCD569m","stattrak":true,"normal_prices":[29752,8228,6537,6594,6621],"normal_volume":[1,21,14,5,8],"stattrak_prices":[0,11925,9438,14019,11789],"stattrak_volume":[0,5,5,2,1]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iVzOtkse1tcCSyhx8rtjSfn4vGLSLANkI-A5d0Q7EI4BPqwdHlNe3m4Q3Zj4IQnn6s2ilJ6y5i5r4AU_cg-qaBiBaBb-MAj17m6g","stattrak":true,"normal_prices":[63575,69977,0,0,0],"normal_volume":[119,4,0,0,0],"stattrak_prices":[73038,138142,0,0,0],"stattrak_volume":[13,3,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cBTLN1F4Tox4R7JZs0bsldLnMurg5VfWg4wUyyn72yhIuiY6tu1UBaAlrKDT2Q3HL_Rjtkcw7QQm","stattrak":true,"normal_prices":[22239,25688,0,0,0],"normal_volume":[169,6,0,0,0],"stattrak_prices":[23285,38745,0,0,0],"stattrak_volume":[16,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cxTLN1F4TowiQ-MD5xe_moa1P-7ltA2IjIlNz3_7jiwd5yw44-YLB6Zzr6LWjQ6VL_RjttkcOtMw","stattrak":true,"normal_prices":[24895,25664,0,0,0],"normal_volume":[230,7,0,0,0],"stattrak_prices":[26709,40000,0,0,0],"stattrak_volume":[14,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8chTLN1F4ToxwTLFe5EO5x4LhYuvi5w3eiIwRyi2qjXgYvyZj4ugCWKssr6XRhwiTL_RjthxPDqn6","stattrak":true,"normal_prices":[21993,26399,0,0,0],"normal_volume":[169,4,0,0,0],"stattrak_prices":[25625,53846,0,0,0],"stattrak_volume":[12,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8dRTLN1F4TowjF-ULthGxkdDhZuqw4A3diYwTyiX33S8f5yto4rkKUKsirqzTigySL_RjtsSe7bgM","stattrak":true,"normal_prices":[22086,26748,0,0,0],"normal_volume":[185,6,0,0,0],"stattrak_prices":[22952,42500,0,0,0],"stattrak_volume":[10,2,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1ifwut3vt5iQSC1kCJ-4wKJk4jxNWWVOA4hA5MjQONbtRGwkYHlP77l5FaLj9gTxS76hn4avXo-t-tTV_Uk5OSJ2DtQY32N","stattrak":true,"normal_prices":[7550,6524,5875,5761,6581],"normal_volume":[123,124,162,22,19],"stattrak_prices":[10083,8739,6891,8000,7999],"stattrak_volume":[24,17,28,7,4]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1idwPx9teVWWjmMzE0YvzSCkpu3cC-Wald2A5tyFu9esxDpktO2Nrzq4wzaiYlGzXmo3SxIuHw65bsLU71lpPPkJkZySA","stattrak":true,"normal_prices":[9157,8024,6690,7716,8208],"normal_volume":[124,126,164,19,14],"stattrak_prices":[11939,9501,8335,9038,200974],"stattrak_volume":[27,24,23,6,22]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-SA1iKxOxksd5lRi67gVN_42jTnourc3OSbA4iCJV5F7UCsEXpx93jYrnn7gfago4QyH6ri3tL8G81tAzA6RBm","stattrak":true,"normal_prices":[28948,20096,20439,0,0],"normal_volume":[64,51,12,0,0],"stattrak_prices":[32982,26033,87205,0,0],"stattrak_volume":[1,8,1,0,0]},"620":{"index":620,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-QG1iA1PxmvORWRzy9gQ4qsjO6lob-KT-JbFQlC5YhFrQN4xe4m4ezNL7g4QyLiItFyS772C5I7ilq6rpWUaYh-rqX0V82KISxGQ","stattrak":true,"normal_prices":[33078,10976,6363,7154,6114],"normal_volume":[5,56,141,16,32],"stattrak_prices":[68123,16221,9119,8828,9296],"stattrak_volume":[1,8,15,1,4]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-AHlidxP1-j_VoQRa_nBovp3OEzd7_dn_FOAVxCpp2QuQC4xW9kYaxNOLqtA3dgowWyyn7jnxAuCxj_a9cBvBQQTn3","stattrak":true,"normal_prices":[0,6562,5927,7140,5819],"normal_volume":[0,18,31,5,4],"stattrak_prices":[0,8689,7509,8842,8427],"stattrak_volume":[0,3,6,1,5]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1P7vG6YadsLM-bF1iWzvxzo_VWTSahkBwrjDGMnYftb3qRaFMmCpokE-YOsRW5xNbjY-ri7gTb2YpDz36o3XtL7H1psecLUfI7uvqAW2HsimI","stattrak":true,"normal_prices":[30502,8100,6660,7674,7271],"normal_volume":[1,7,15,2,7],"stattrak_prices":[0,9497,12131,9305,10816],"stattrak_volume":[0,5,6,2,8]}}},"512":{"name":"Falchion Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2oaahuKPmcACmSlL4u5uVqG37klhh24DnUytaqJXKQbgcmX5RyF-4Puha8xofmZejg-UWA3FLkEz9H","stattrak":true,"normal_prices":[11269,11269,11269,11269,11269],"normal_volume":[89,89,89,89,89],"stattrak_prices":[15958,15958,15958,15958,15958],"stattrak_volume":[20,20,20,20,20]},"1106":{"index":1106,"max":0.65,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-QG1iWwOJ1uOhmQRa_mg8ijDGMnYftby-SalJ1AsQiEecC4xiwlobjMLnjsQffjtkQzSj2iS9I63xj4OwDVqo7uvqAGhE4d3k","stattrak":true,"normal_prices":[15834,12016,10367,10007,10104],"normal_volume":[100,148,219,20,23],"stattrak_prices":[20708,14992,11245,13832,12273],"stattrak_volume":[18,17,32,4,4]},"1111":{"index":1111,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-UHViWwOJ1uOhmQRaxmRwkuAKJm4LwLyrTO2l8U8UoAfkMtkKxwdTkY-m34ADfjoJNyiWs3ypN6ylp5bsAWaUi-KTWjQ-TNOI8_9BdcxUxepgb","stattrak":true,"normal_prices":[11455,7891,6561,6223,6286],"normal_volume":[33,77,146,50,68],"stattrak_prices":[17485,9642,7885,7832,8673],"stattrak_volume":[5,13,19,6,15]},"1116":{"index":1116,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-UHViWwOJ1uOhmQRaygAkopy-KlIb6HifOOV5kFJAkRO5esxC-w4LjNezg5ASIgtkTyn76jHkc7XxisOcFWaUg8_LQi1nfcepqdp_zzW8","stattrak":true,"normal_prices":[17258,11822,10201,10855,10383],"normal_volume":[57,150,260,27,38],"stattrak_prices":[23863,14874,11891,16694,12890],"stattrak_volume":[19,23,24,5,6]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1iHxOxlj-1gSCGn20t242-Eno34cC6SOgYoCZZzE-JesxawkIG0Pry24lCKj4IRzn-th3xXrnE8QWIt39g","stattrak":true,"normal_prices":[118479,17834,12452,13153,11763],"normal_volume":[5,52,87,8,19],"stattrak_prices":[672626,23028,19203,19641,0],"stattrak_volume":[2,5,15,2,0]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AHliEwP5zj_R7TSi9qhEutDWR1IqtI3_EOgYpC5EmQe5esha7kdHnPu3m4gTdg4MRxC6q2yxO6ik-67scEf1yx78TVSg","stattrak":true,"normal_prices":[24156,9775,7447,6644,7320],"normal_volume":[4,20,44,4,13],"stattrak_prices":[75545,11458,9211,13701,11756],"stattrak_volume":[1,2,6,4,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AHliUwP5mvORWQyC0nQlpsG2Bmdv_cS7DOwIoDJB4F7MPsBHtkoDmZri25APZjYpNni_3higbvDErvbjw_sgWtw","stattrak":true,"normal_prices":[14764,8313,6666,7530,6562],"normal_volume":[2,17,37,9,16],"stattrak_prices":[58261,11510,10749,9000,10679],"stattrak_volume":[1,2,6,2,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SD1iWwOpzj-1gSCGn20l-tmjVmIqhdHmWa1AkCJRyFuUItBW9wNTmY7jh5ADa3o5Fy3-sinhXrnE8OtZmGks","stattrak":true,"normal_prices":[20298,25997,0,0,0],"normal_volume":[242,18,0,0,0],"stattrak_prices":[30240,38867,0,0,0],"stattrak_volume":[33,3,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AAVieyOl-pN5lRi67gVN35jjcmNmqcSrDPAR2ApMhQ7UDsBmwwNfvZL_r5wHcgoNFynj-2y9B8G81tDvvgv8m","stattrak":true,"normal_prices":[34197,10532,8498,8662,8961],"normal_volume":[9,21,44,5,16],"stattrak_prices":[176735,19718,13159,12990,10996],"stattrak_volume":[1,6,8,2,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SAFiEyOlzot5mXSi9khgYvzSCkpu3cCiRZwIiDcZ2ReEO4EW5xtXlMuO05weKjYNBxS-tjytOvC495u0BWb1lpPPh4hsqrQ","stattrak":true,"normal_prices":[14427,20161,0,0,0],"normal_volume":[233,11,0,0,0],"stattrak_prices":[20539,24301,0,0,0],"stattrak_volume":[22,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iUwON3o-J8XBbqxSIrujqNjsH7eXjGPwAkXJR2QLMJtRe5kN2xYu7k5QHcio0XyX-o3S4duH5u4eYFT-N7rR0fzt1P","stattrak":true,"normal_prices":[11499,10136,9269,9542,12462],"normal_volume":[61,61,75,8,11],"stattrak_prices":[15152,13722,12500,13674,14469],"stattrak_volume":[7,9,7,3,1]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1idwPx0vORWSSi3kCIrujqNjsGqdXrFbFIlA8QjTO8Lu0O7m921ZLy05gfXj99Aziz_2nscuic6sr4AT-N7rSTjmXt5","stattrak":true,"normal_prices":[18510,22203,0,0,0],"normal_volume":[283,6,0,0,0],"stattrak_prices":[23340,28431,0,0,0],"stattrak_volume":[29,1,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iD1etzvN5iQSC1kCIqtjmMj4K3Ii3DbgAnCMBwQbRZtEG9wILlZu_nswyI345FxCSvjyMc6XxvtrxTUr1lpPMD9UqAWA","stattrak":true,"normal_prices":[0,0,0,7379,5943],"normal_volume":[0,0,0,14,184],"stattrak_prices":[0,0,0,10000,8071],"stattrak_volume":[0,0,0,3,33]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JagN2CZV4QbYPtBe9ktDvYeLrsgLaiYtCmyT2j38aunpq47sEUfVx-LqX0V96C3cwag","stattrak":true,"normal_prices":[69659,89995,0,0,0],"normal_volume":[51,4,0,0,0],"stattrak_prices":[84477,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMB1TeAIsxi5w4K0Y7_jtVTc3d1MzX_3iSxAuy85seYDA6Bxq6eCjV7fcepqbrrX6Yc","stattrak":true,"normal_prices":[49258,81326,0,0,0],"normal_volume":[49,2,0,0,0],"stattrak_prices":[73955,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuQLECtxDrkIHlMem041aP2ohHmymsjSkaun49te9UAKp3-PWBjg-QNqp9v8frwaFCRg","stattrak":true,"normal_prices":[105220,135000,0,0,0],"normal_volume":[11,2,0,0,0],"stattrak_prices":[166615,2472065,0,0,0],"stattrak_volume":[2,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXBaQMpDZMjRu4ItxTsmoa0PrjrtQHWj4NNnH38hi1A7Xpt5-kBB_Zw5OSJ2M_vVPun","stattrak":true,"normal_prices":[30018,0,0,0,0],"normal_volume":[56,0,0,0,0],"stattrak_prices":[36615,45173,0,0,0],"stattrak_volume":[6,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWXBaAEnX5R0ELJb5EK5moa1MOyw7gSNj4tBnyT4hi4d5idr4O4GA6px5OSJ2IVStUtw","stattrak":true,"normal_prices":[35651,39679,0,0,0],"normal_volume":[65,2,0,0,0],"stattrak_prices":[36798,55222,0,0,0],"stattrak_volume":[4,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iSzftztN5lRi67gVNxsT7Tntmpdi-XPQAmWJJ5QuRYsBa7loe2P-7lsVTZjtkUnyz_inhK8G81tNS01icZ","stattrak":true,"normal_prices":[25104,16151,13921,11925,11610],"normal_volume":[9,26,29,11,28],"stattrak_prices":[31400,22875,17000,20715,17709],"stattrak_volume":[3,3,3,1,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWXDPFV2CMckRLRc5BG5xIa1Ne3qtFfe2doTnC743yxL7Sxv6rtWVqst5OSJ2F-BiodS","stattrak":true,"normal_prices":[29106,39978,0,0,0],"normal_volume":[57,2,0,0,0],"stattrak_prices":[35723,60000,0,0,0],"stattrak_volume":[5,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWWWPFRyWZF0QbII5hDpl9fiNerh5gKKgt8Wyy6riC5Ov3tjsrsHBKR25OSJ2EkYY4Ju","stattrak":true,"normal_prices":[31055,39400,0,0,0],"normal_volume":[72,5,0,0,0],"stattrak_prices":[35247,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1iWzvx1teVWQyC0nQlp4G-BnNeqc3KVaAAlDJomEOEI4BC4w4W2NLm0tlHWio0XnH332ilM6DErvbhTfwMZNQ","stattrak":true,"normal_prices":[14898,10264,8654,8211,8310],"normal_volume":[10,27,26,19,24],"stattrak_prices":[23339,11036,11460,11848,11685],"stattrak_volume":[2,1,5,2,10]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SH1ifyOJztN5lRi67gVMi4z-Hz96tcSiUblcoA5tyTONZsxG4wdPjZLvg4Q3ej99Ezyr2jS1L8G81tJVww3hv","stattrak":true,"normal_prices":[30052,19026,16825,14998,14385],"normal_volume":[19,81,108,57,34],"stattrak_prices":[60858,29797,22758,20313,25865],"stattrak_volume":[2,12,9,3,11]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1iUxf53pN5lRi67gVMksWuHntutdi_Cb1IlCZFwROYMuxmxloGyY77msQCNiNhNm3j-2CIa8G81tBGTV0lI","stattrak":true,"normal_prices":[17642,7143,6422,6498,6776],"normal_volume":[2,15,38,4,16],"stattrak_prices":[0,10335,8172,10222,9602],"stattrak_volume":[0,6,7,5,4]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iVzOtkse1tcCSyhx8rtjSfn4vGLSLANkI-WZEiR-cOu0Hrm9S1Nunm41PejopGny_-iStBuys5sukBVvYjrqTV2RaBb-OVFNXjzg","stattrak":true,"normal_prices":[53840,55067,0,0,0],"normal_volume":[83,3,0,0,0],"stattrak_prices":[60640,70000,0,0,0],"stattrak_volume":[6,2,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cBTLN1F4TowmFu4P4xaxkIHjMOrhs1CLjo5FxCj83XxN6Cs_6upWUKJ3_PLShg6SL_RjttqUSV6v","stattrak":true,"normal_prices":[22452,25840,0,0,0],"normal_volume":[140,4,0,0,0],"stattrak_prices":[26178,46000,0,0,0],"stattrak_volume":[17,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8cxTLN1F4ToxxF-4P4BTtl4DvZem04wbejY5AyyqsjS0a6Xw4tuYFVvcmrvfRhw2TL_RjttGzwP08","stattrak":true,"normal_prices":[24587,27882,0,0,0],"normal_volume":[198,7,0,0,0],"stattrak_prices":[27567,0,0,0,0],"stattrak_volume":[15,0,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8chTLN1F4Tox2EecPuha9m4bhZuLhtQTZid4UxCT8h39PvCo54egAVqF2-PaF3QGSL_RjtnjgxS7B","stattrak":true,"normal_prices":[21602,27331,0,0,0],"normal_volume":[147,5,0,0,0],"stattrak_prices":[25742,46506,0,0,0],"stattrak_volume":[12,2,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iXwON7sd5tQDmjmRg1jC2Nm5z8dRTLN1F4Tox2RO8NtxG9kYCxYbvisw3bj9lByCyo3ylKuy9stboEUqcn_a3RiFuVL_Rjtvg0XKwV","stattrak":true,"normal_prices":[21403,25373,0,0,0],"normal_volume":[145,4,0,0,0],"stattrak_prices":[26594,52500,0,0,0],"stattrak_volume":[12,1,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1ifwut3vt5iQSC1kCJ-4wKJk4jxNWXCPA4kAsBxReFbt0S9xtCyNuq35lTfio8XxHmqh39O6S5rsL1QV_Uh5OSJ2JvTxrZB","stattrak":true,"normal_prices":[9376,7363,6767,7395,8224],"normal_volume":[111,111,145,23,19],"stattrak_prices":[10402,9468,8764,9000,9977],"stattrak_volume":[27,24,27,5,1]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1idwPx9teVWWjmMzE0YvzSCkpu3eX6RbVN0D5t5F-MCtRjpl9DgYerq7lHb2t1Nynj_3C5I6ik5tr5TB71lpPOmEPqDwA","stattrak":true,"normal_prices":[10250,8507,7930,9459,9261],"normal_volume":[143,128,116,7,4],"stattrak_prices":[12754,11598,10022,9849,13848],"stattrak_volume":[34,24,18,9,3]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-SA1iKxOxksd5lRi67gVMhsWvXnIurc36UP1RzWJB4QbYCsBC-xoC0N-3gtVHY2N8XmCT_2isb8G81tLxG9DyC","stattrak":true,"normal_prices":[23779,20047,19545,0,0],"normal_volume":[79,68,19,0,0],"stattrak_prices":[34000,23556,28289,0,0],"stattrak_volume":[4,7,1,0,0]},"621":{"index":621,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AAViA1PxmvORWSSi_lhUuvDO6lob-KT-JOAQiCpJyRu4PsxPsk4fkNerjs1bXjtpCyCqri39BuH094OgKWfUn-LqX0V-hhcTrMg","stattrak":true,"normal_prices":[29281,12361,7775,7903,8192],"normal_volume":[9,42,111,15,20],"stattrak_prices":[131023,12441,10813,11855,22131],"stattrak_volume":[1,7,22,4,4]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-AHlidxP1-j_VoQRa_nBovp3Pcwtv7dyqUPw5yDZN5FOAIu0Pqw4fmPuu07gSIiI5Fzy323Xga7C9u_a9cBhYueYQh","stattrak":true,"normal_prices":[0,6837,6173,6516,6329],"normal_volume":[0,25,49,14,17],"stattrak_prices":[85739,10594,7139,11811,8300],"stattrak_volume":[1,9,3,1,2]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1d7v6tYK1iLs-bF1iWzvxzo_VWTSahkBwrjDGMnYftbyjDPVQgCJEhELMOtRG9mtfkP-jr7wyMjoMWny2vjSxMvCc9suxWAqU7uvqAOEaxeJw","stattrak":true,"normal_prices":[22229,9428,6752,8188,7213],"normal_volume":[4,16,40,10,11],"stattrak_prices":[0,11870,10260,12762,9977],"stattrak_volume":[0,1,16,7,8]}}},"514":{"name":"Bowie Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s29fbZ7KeaSAliSzvl_ta88TX61xExyt2nTz9eveHjEPQRzXMcjFuYIuhHtkIKyNLnmtACLg4sX02yg2XbF4Kcv","stattrak":true,"normal_prices":[9608,9608,9608,9608,9608],"normal_volume":[72,72,72,72,72],"stattrak_prices":[11752,11752,11752,11752,11752],"stattrak_volume":[4,4,4,4,4]},"1104":{"index":1104,"max":1,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF1pd5rQD66kCIrvC-ApYPwJiPTcAJyAsZ3FrINuhK-l9O2Yei35wTago9NyCj4iHtP5n5itbsGA6FwqaTJz1aWiYxmw3g","stattrak":true,"normal_prices":[18966,10938,9239,8599,8321],"normal_volume":[58,127,173,62,67],"stattrak_prices":[29499,14976,11156,10802,9758],"stattrak_volume":[6,26,26,14,1]},"1109":{"index":1109,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFxo95rQD66kCIlvzyGkbD1ICbOMFdkX_0sHLBS9g7qx9HhMuyxtA3b3o0Tyij92H4fuy5q675XAPBxrvHVh1nBOeFo5ZYAOr_5Gl4TXifL","stattrak":true,"normal_prices":[10767,6007,5767,5646,5650],"normal_volume":[31,85,166,54,50],"stattrak_prices":[16455,8641,7311,7668,7276],"stattrak_volume":[12,15,27,14,12]},"1114":{"index":1114,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFxo95rQD66kCImpimKjp32LyLEAVp5Xco0W-cIsEW9xty1Zb-z7gHd3o8UzSv3hypNvX0-tu5QWKMk-6XUjAiUYLAjoc5UIuuJ8AY","stattrak":true,"normal_prices":[15444,10328,8527,9457,8495],"normal_volume":[55,153,211,25,57],"stattrak_prices":[26350,13257,9272,11400,10620],"stattrak_volume":[14,24,23,8,14]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5-SiugqhEutDWR1Nb6eHLCOlR0C8Z3TeEPtEHsw4KyY-Lh5gLZ2d9BnCiv2itI7Hps5-scEf1yekXUy9I","stattrak":true,"normal_prices":[221466,17922,11938,12349,21500],"normal_volume":[1,53,75,5,28],"stattrak_prices":[300000,28453,19668,0,30051],"stattrak_volume":[2,2,9,0,1]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFloN59Tjm2qgg1sTyLpYPwJiPTcFUkDMFxRecO50LpxNazY7vgtAHcioNExSr4iH4Y6nk-57pRWaIlqPXJz1aWG3uFyDs","stattrak":true,"normal_prices":[19600,7628,5915,7093,9017],"normal_volume":[1,23,33,14,8],"stattrak_prices":[117550,17665,8100,9298,10499],"stattrak_volume":[1,1,1,2,8]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFloN5tTjmjmRgYvzSCkpu3d3yWbFIoDJYiE-cLshHtkoHlYbyw7gzX2Y8WziysjH9I7n4_5L5RU71lpPPWuYfcpQ","stattrak":true,"normal_prices":[17913,7047,6022,6216,6858],"normal_volume":[1,12,29,2,9],"stattrak_prices":[104177,20077,7799,11349,8966],"stattrak_volume":[1,1,2,3,3]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3sd5vTi22qhEutDWR1NiocCqeZwYoC5pxRuMM5BPqxtTgY-20sgXZ2NpHnyqqiCpA5nk56u8cEf1y_UmCvro","stattrak":true,"normal_prices":[20819,26755,0,0,0],"normal_volume":[214,6,0,0,0],"stattrak_prices":[27216,45826,0,0,0],"stattrak_volume":[22,3,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFlv95nRi67gSIrujqNjsGtdSqTagJ0CsF5RbMK5BC_lofjMLy0sQPcj90Tn3r7iC8cvShv5eZWT-N7rdA_agun","stattrak":true,"normal_prices":[38400,8708,6864,7260,7614],"normal_volume":[3,20,37,11,20],"stattrak_prices":[129755,23000,11640,13000,13051],"stattrak_volume":[2,5,3,1,4]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vt59Ri62hyIooTyLnYrGLSLANkI-XJJ0FLNY5BOxw4XjNu-zsQDd2IpFyy32jS0b7Ss95L5RVaIk_qyE3RaBb-Pz4OFuTg","stattrak":true,"normal_prices":[13382,17824,0,0,0],"normal_volume":[221,12,0,0,0],"stattrak_prices":[18539,18790,0,0,0],"stattrak_volume":[38,5,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5tTiSyhh4yoALcyrD1KCzPKhhxX5RxTeYN4BnuxtPgMurg5Qbbjt4UxC2sjS1N7ntv5-lRB_YsqPHekUifZkcTPu2g","stattrak":true,"normal_prices":[10515,9027,8247,8299,11392],"normal_volume":[60,62,74,6,11],"stattrak_prices":[15432,12689,12814,14152,44293],"stattrak_volume":[20,15,6,4,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5kTjuxmRgYtTyBn7D1KCzPKhgpXMdyTeBb5BPuktPvZOi2sgWM2d9HmSr-i3xAuidssO8HBKcsrvLXkUifZhxP_T8X","stattrak":true,"normal_prices":[16753,23282,0,0,0],"normal_volume":[253,14,0,0,0],"stattrak_prices":[21393,40824,0,0,0],"stattrak_volume":[36,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od56Wyy2mSIsvTSDn7D0JC_OK1s-C5F1RO4Ktka_kofuMevjtgWMjI8QmSj7iStM7itv6-hXUfEnqKHQ2xaBb-ObX0d6iA","stattrak":true,"normal_prices":[0,0,0,7260,5129],"normal_volume":[0,0,0,11,178],"stattrak_prices":[0,0,0,13968,6990],"stattrak_volume":[0,0,0,5,29]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd57WiuqqhAmoT-Jn4bjJC_4Ml93UtZuQe5Y50O-wNzhMuji5w3e344Rny-q3H5K7iZtsekLU6El-6eBi1vHY6p9v8dqQrLELQ","stattrak":true,"normal_prices":[72202,83000,0,0,0],"normal_volume":[51,3,0,0,0],"stattrak_prices":[91274,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd56TjmjnRQ1tgKIm537LS7OJFN0Zc4pEr9OrBaxl4KxNr7r5VHZiYtBzH-qiShJ7y1v4roHAvZ2qfLTjlvDOLw_sMIdZKHwjx9VvzI","stattrak":true,"normal_prices":[48534,55369,0,0,0],"normal_volume":[45,3,0,0,0],"stattrak_prices":[57355,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5rQyiwng0isi-JpYL4MynLO19qX8YfGb5d6lSmxt2yZeLq5QeI2dgWzSmsjiMauyxr5O4LB6Ej-6PXjVyQZLc54pZRJOHnE0pg4-kgmA","stattrak":true,"normal_prices":[99484,100000,0,0,0],"normal_volume":[12,1,0,0,0],"stattrak_prices":[164000,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8cBTLN1F4TowmEeFct0WxkIayNe7ksQOKiIwXyH35jCIb63xo47kAB6Vz8qPR2lmQL_Rjti6PPai2","stattrak":true,"normal_prices":[26163,32203,0,0,0],"normal_volume":[55,2,0,0,0],"stattrak_prices":[31009,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8cxTLN1F4TowiELQMtkG_ldDvNOri4VDXioMTxC6s2CJN7C1osOtXAqMk__eCiV2UL_RjtoCtKbyV","stattrak":true,"normal_prices":[28950,40030,0,0,0],"normal_volume":[91,2,0,0,0],"stattrak_prices":[37133,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5rQzy2kSIrujqNjsGrI3mTbQR1DpNxE7YK50O4wYfnMe207gLc2ohDyC7-jiobvy445L0GT-N7rT12_gEU","stattrak":true,"normal_prices":[25084,14333,10022,11030,9888],"normal_volume":[2,24,18,13,24],"stattrak_prices":[37389,17810,17652,20594,23569],"stattrak_volume":[3,2,1,4,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8chTLN1F4ToxwQ7FbtxXuldSyZuuztVHWiYlCxC75hnlO6ic_secAV6dxqaPQjQ3FL_RjtlsVJsRA","stattrak":true,"normal_prices":[25098,39925,0,0,0],"normal_volume":[57,2,0,0,0],"stattrak_prices":[32440,166078,0,0,0],"stattrak_volume":[5,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5tQDmjmRg1jC2Nm5z8dRTLN1F4Tox3E-cOukLuk9W0NLjr7g2Pj4lAzy782ytO6Sdv5e4GVKQl8qTRiQGSL_Rjtvx55ayw","stattrak":true,"normal_prices":[30157,35629,0,0,0],"normal_volume":[62,2,0,0,0],"stattrak_prices":[36304,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5vQDuwkBkYvzSCkpu3dy-QPAcoDJYjRbYI5xjrxNKyN77itFPaiN9Fmy-t2C5Jun5ptrsLUL1lpPMuQwpi3w","stattrak":true,"normal_prices":[13700,8755,8409,7926,8131],"normal_volume":[11,18,24,16,12],"stattrak_prices":[27360,17500,14144,12157,11719],"stattrak_volume":[2,2,1,4,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3od5mRiW2kSIrujqNjsH_eHrFOAdzA8B2TeQLtBm6x4flNejislbb2tlHxCyti3tK53xq6uhTT-N7rR3UNjRY","stattrak":true,"normal_prices":[53409,16550,15208,14626,15777],"normal_volume":[7,54,75,67,39],"stattrak_prices":[248160,36600,20500,20500,20663],"stattrak_volume":[1,6,2,4,3]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5tSzmygSIrujqNjsGhIymfbFB1D5siE-RY5kK_xtTmPri0sVaIjtpCxCn53Hgf6XlotecLT-N7rWlxTPbP","stattrak":true,"normal_prices":[16256,7794,5683,5886,6425],"normal_volume":[1,16,28,13,8],"stattrak_prices":[0,10252,8237,9742,10608],"stattrak_volume":[0,5,1,2,3]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5sQiyhlBEjjDCEiI31JCLdO1JPVssnHaMU4EG-ltyyPuLq5gHYj9lMzyz7hyxNuCs-5OoDVKImrKTe21mXZ-Zu5I5Deqhh5Zn_hA","stattrak":true,"normal_prices":[49893,67475,0,0,0],"normal_volume":[90,3,0,0,0],"stattrak_prices":[57370,0,0,0,0],"stattrak_volume":[10,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1C_0sHLBS9g67l9G0Mu_q5ATZ3t1BxSn6in5B6yc9t7kHBaFw_aPQ3QiTNLQ_ssICOr_5Gko8dFgH","stattrak":true,"normal_prices":[19846,26767,0,0,0],"normal_volume":[127,4,0,0,0],"stattrak_prices":[23400,39500,0,0,0],"stattrak_volume":[15,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1CP0sHLBS9g7tl4fgPujh71CNg91En36si3kY6ns-4OlQWfclqPbQ21zHZbVp4ZdWOr_5GrvoSFRK","stattrak":true,"normal_prices":[20794,26212,0,0,0],"normal_volume":[157,4,0,0,0],"stattrak_prices":[22859,40000,0,0,0],"stattrak_volume":[19,3,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1Cf0sHLBS9g7sl9WzN-q27gLWiYxDxH3_2y4avyxp575WAvck_aGGjADAYrU6s8EBOr_5Gs3270vO","stattrak":true,"normal_prices":[19543,25534,0,0,0],"normal_volume":[141,2,0,0,0],"stattrak_prices":[23266,41100,0,0,0],"stattrak_volume":[10,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5uTiS-lCIjvC2VlorrHjvPP0V1Dv0sHLBS9g6-xoXnNr6xsQze2IxFy377iX4d7itr4ehWA_V0_aPT2VyTMudrs8YLOr_5GgyA1D52","stattrak":true,"normal_prices":[19110,26079,0,0,0],"normal_volume":[145,4,0,0,0],"stattrak_prices":[22106,41169,0,0,0],"stattrak_volume":[15,2,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5mTCyymyIsvTSDn7CgcRTLN1F4Tox3E7RY4BW8l4CyMLvq5gSL2oMXzCyqin5I5nttsrsGA_Ihq6LX2lnAL_Rjtv1VSd_s","stattrak":true,"normal_prices":[6941,6067,5621,5923,6700],"normal_volume":[92,132,161,14,16],"stattrak_prices":[9859,7219,7017,8248,37801],"stattrak_volume":[32,24,21,4,1]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5kTju4kBkYpi26w9_GLSLANkI-CcFyQbResEbuxIa0Nunr7wSMj95GxH77i39N6Hlitu4LB6oj8vHfjxaBb-PSbjYTRA","stattrak":true,"normal_prices":[8754,7340,6500,8027,9385],"normal_volume":[111,92,144,22,6],"stattrak_prices":[11008,9035,8109,10205,20601],"stattrak_volume":[29,22,28,1,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF3vd5zSiuhlCIrujqNjsGscnueZwYoDJUmFO8Nsxfpx9buMeLm5Afe3Y8RxHivjS8bu34-4rsHT-N7rRZowTHv","stattrak":true,"normal_prices":[22228,18863,18567,0,0],"normal_volume":[59,43,11,0,0],"stattrak_prices":[29610,24000,23876,0,0],"stattrak_volume":[4,4,2,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFloN5kSjq7qgkmvQKJk4jxNWWfZgMnD5ZyF7ICs0awxoHkZuyw7wHYi9kUn3qvh3hI7no-5elXUKot5OSJ2DhCNq62","stattrak":true,"normal_prices":[0,5592,5241,6207,6112],"normal_volume":[0,14,41,6,20],"stattrak_prices":[0,8800,7367,7500,7600],"stattrak_volume":[0,6,3,1,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNF-qd5vQDu2hgkYsTKXn471HifOOV5kFJJzE-IJs0K7mtfgN--0tATegt1MmX332nkcvS8557sDB6Bx86XejQ7fcepqCHZuB98","stattrak":true,"normal_prices":[12332,7220,5847,6260,6362],"normal_volume":[1,20,37,11,20],"stattrak_prices":[38999,13043,10472,9660,8906],"stattrak_volume":[2,6,5,2,3]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-uC4YbJsLM-RAXCZxNFlv955WjujmRgYvzSCkpu3dHKePw8oW8N5QOYLshW-wdC1N--0tAHajoNCmCj7iStI6Hw-tegBU71lpPP9HYRDsQ","stattrak":true,"normal_prices":[29400,10088,6383,7105,6789],"normal_volume":[2,58,117,12,25],"stattrak_prices":[71153,17702,9373,9429,10823],"stattrak_volume":[1,8,17,1,6]}}},"515":{"name":"Butterfly Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2sfbB5JeKVAn7elO8l6LRoF3_hzBsmtWSDzt-rcy3BP1AnXsR4FOJZskG6xtDkM7627xue1dy94mNpNQ","stattrak":true,"normal_prices":[119467,119467,119467,119467,119467],"normal_volume":[549,549,549,549,549],"stattrak_prices":[117806,117806,117806,117806,117806],"stattrak_volume":[102,102,102,102,102]},"1105":{"index":1105,"max":1,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsDXKvw_tipOR7SSWqqhEooTi6lob-KT-JZw90XJMiTO8PukW4wIXmN-zq5gXf2tpBm37_2y4auylv5exUAKAi_7qX0V8Ly4BE2w","stattrak":true,"normal_prices":[207514,91751,60312,53000,48431],"normal_volume":[81,374,617,246,233],"stattrak_prices":[275500,95774,65062,58246,55399],"stattrak_volume":[6,58,80,41,25]},"1110":{"index":1110,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsCXSvw_tipOR7SSWqqh8rsj6OpYP4LCLJP0J1Zc4pEr9OrBC7xtOyN-vjtFDZjYNAnH6qiS9J73s56u4BWPJxqK3U2gDDYLU-t5YdZKHw7iAX8js","stattrak":true,"normal_prices":[81441,65288,60021,56436,55005],"normal_volume":[57,253,428,200,236],"stattrak_prices":[100260,65185,59128,56645,54847],"stattrak_volume":[12,51,73,37,62]},"1115":{"index":1115,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsCXSvw_tipOR7SSWqqhwypzKRiID3KCj4Ml93UtZuROIDtUawltG1N-Pj4gaMg98Xyy2q2CxN63k54uwHBfd0-_GEhwHBOap9v8dVISN0PQ","stattrak":true,"normal_prices":[131858,96492,77751,72100,64037],"normal_volume":[105,341,750,76,190],"stattrak_prices":[164229,90017,75915,78356,69268],"stattrak_volume":[14,27,135,13,31]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6v1ut0o95lRi67gVN04WmDzNz_cX_CalAiW8FxR7MI4xKxmtPlYe7ksgzeiN5BziT83y4f8G81tOxPsLb-","stattrak":true,"normal_prices":[513660,98825,61918,61049,51579],"normal_volume":[15,245,489,66,88],"stattrak_prices":[1849999,119552,67740,71948,64005],"stattrak_volume":[2,32,63,13,16]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHXev1e9mtd58XSuymyIrujqNjsH_JCmUalNzCJJ2EOZb4RC_mtPiZLyz4laPg9lGyX-v2itI7i1r6-ZQT-N7rSOfJ1lh","stattrak":true,"normal_prices":[110322,49303,42632,42729,42606],"normal_volume":[12,96,253,44,105],"stattrak_prices":[187559,60583,44904,45477,45066],"stattrak_volume":[2,17,31,7,17]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHXevxe9moO1scCW6khUz_WTVzdurInyVbVdzXsB5TLZc50XuwdW1Yeu05Fbd3osXzXj_iy9N7H11o7FVf664M8c","stattrak":true,"normal_prices":[93001,47163,43593,42542,41476],"normal_volume":[5,97,253,48,87],"stattrak_prices":[181566,54164,42754,45734,44291],"stattrak_volume":[1,19,49,9,12]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2avx-9ytd5lRi67gVNwsDvSwtqqc3iXZg4kCZYjReYLtRbum9XgYuvm5wbWjtgUzCn3iSsf8G81tFEeH9rw","stattrak":true,"normal_prices":[208186,188915,0,0,0],"normal_volume":[1092,44,0,0,0],"stattrak_prices":[201631,261226,0,0,0],"stattrak_volume":[153,5,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHWivz-dxuPVWQyC0nQlp4T_QnNarcXzBPQN1CZcjFuEC40a4ktzuNeLgslGL2t5GmS733Cwc6jErvbgctlCLOw","stattrak":true,"normal_prices":[153127,59896,50169,48119,45267],"normal_volume":[11,124,358,54,103],"stattrak_prices":[559800,63848,53683,55806,51469],"stattrak_volume":[2,19,50,9,15]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2mv1edxtfNWQDuymxoijDGMnYftb3mfOg8hAsFzRrYCtxKxxtPlZOnl5gaM3ogQmX_7jnkdvHppseoGVvI7uvqAJhUGkWs","stattrak":true,"normal_prices":[105358,106782,0,0,0],"normal_volume":[522,36,0,0,0],"stattrak_prices":[110499,103351,0,0,0],"stattrak_volume":[66,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avxe97sfJqWjqMzE0YvzSCkpu3J32VZgF1CZN1QLULsUWwkNTjNrnhtALYjo1Cnn762H4f5io9t-gBBL1lpPNt-MvFbw","stattrak":true,"normal_prices":[81253,71059,65501,62591,61854],"normal_volume":[180,185,220,40,29],"stattrak_prices":[97841,81532,69938,73450,92023],"stattrak_volume":[25,21,38,7,5]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvzO9ksu1scC-ykRgYvzSCkpu3JCrBPVMkCZIiFLUC40S-l9DkZerg4Qfc3Y9DzCuo3SlK6ydv5e9UA71lpPNwsjHPzA","stattrak":true,"normal_prices":[125252,140272,0,0,0],"normal_volume":[874,36,0,0,0],"stattrak_prices":[136835,166420,0,0,0],"stattrak_volume":[90,9,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3av0vpzte1WRCe6kxgYvjiBk5r0by7EbQMjDcdwF-UC4BG4l9C1ZO7q4VbYj49AySmt339LvH1ptupXUKA7uvqA1J4Dodk","stattrak":true,"normal_prices":[0,0,0,53002,49843],"normal_volume":[0,0,0,26,476],"stattrak_prices":[0,0,0,64070,51176],"stattrak_volume":[0,0,0,9,88]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qv0_t0qd5kTjuxmRguqTiBpYPwJiPTcAcnCsF0FLFcsRHtwNy0Neji41aKiNhAzyqsjyxK7X5o4u8GB_UmrPDJz1aWz8iftUI","stattrak":true,"normal_prices":[979688,0,0,0,0],"normal_volume":[51,0,0,0,0],"stattrak_prices":[927615,1386190,0,0,0],"stattrak_volume":[7,2,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tmy6lob-KT-JOgRzAsZ3RuNfs0a5x9HhYuLj4gbbg99NySr6iy4d6C9t4r0EUqF0qLqX0V8wFp5G5A","stattrak":true,"normal_prices":[215959,218796,0,0,0],"normal_volume":[125,3,0,0,0],"stattrak_prices":[232145,582498,0,0,0],"stattrak_volume":[5,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avw-JjteVWQyC0nQlpsmyBwo2tcS-eaFB2XpUjE7Jeuhi_kdfvYerj4FCMgtgUm3732ipM6jErvbi_vJM0jA","stattrak":true,"normal_prices":[115568,79595,71729,67870,65500],"normal_volume":[44,174,283,147,158],"stattrak_prices":[174220,95807,80411,72475,73095],"stattrak_volume":[2,27,31,21,24]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tm66lob-KT-JaAJzD5FxELELtRa4lIe2M7mw7wLfjY9DzSj6jXxA6X0-5-wDAqst_bqX0V_xuMbXZA","stattrak":true,"normal_prices":[195155,234500,0,0,0],"normal_volume":[119,3,0,0,0],"stattrak_prices":[203803,187731,0,0,0],"stattrak_volume":[9,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tmm6lob-KT-JPVQpA5d3Q7IM4Ra_ltLgN7jn4wKPi41Nyyir3CpK6H1vt7xWAKt0qLqX0V-7tNsN5g","stattrak":true,"normal_prices":[266295,273097,0,0,0],"normal_volume":[100,2,0,0,0],"stattrak_prices":[270176,269900,0,0,0],"stattrak_volume":[12,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avx-Fks-RtcCW6khUz_TnXmImvIHuQaw8gC5AhRe4ItUTqw9a1NOyw7wTYiYgRzi__jHsbvCZ1o7FVCIQMXZk","stattrak":true,"normal_prices":[80105,59874,53994,50813,50013],"normal_volume":[35,147,219,91,101],"stattrak_prices":[130256,63398,59249,52718,55056],"stattrak_volume":[4,22,30,18,22]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD3avzud6teVWQyC0nQlp5z6AyN_7I3mfOFQnApUlFrMN5BbpwdbhP-vgs1Pd3dpBmXr9jnwf6DErvbim1G57Bg","stattrak":true,"normal_prices":[129035,82019,65026,62328,60507],"normal_volume":[59,339,577,223,173],"stattrak_prices":[228848,114487,80535,85343,80434],"stattrak_volume":[3,33,49,26,19]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6vxepmsfVWQyC0nQlp4W3Xw4v4di6fOFMkDpF5EeUL4UXqxtS2Zry0sVHdj4JBxCr32y5JvDErvbh_aZ0FHw","stattrak":true,"normal_prices":[68779,43966,41218,41122,40207],"normal_volume":[14,104,230,54,95],"stattrak_prices":[232519,47181,42358,45768,44503],"stattrak_volume":[2,21,40,6,13]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxONzouBlSxa-lA8lvziMgIr9HifOOV5kFJp2Ee9b4Rntm4GxY7_ntQHc2o1DmH6r3Hgcv3w4t-pXU6ZzrPHQjQnfcepq0dwfRJw","stattrak":true,"normal_prices":[784607,724388,0,0,0],"normal_volume":[82,5,0,0,0],"stattrak_prices":[702939,794979,0,0,0],"stattrak_volume":[11,2,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJHr4Ml93UtZuF7EMshHumoXnY76w4wLe2IxAn3r3iXhO6Sxj6rkBAvZ3-KOBjV2TNqp9v8eAgEBjpg","stattrak":true,"normal_prices":[187417,197959,0,0,0],"normal_volume":[235,5,0,0,0],"stattrak_prices":[180707,210000,0,0,0],"stattrak_volume":[23,1,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJHn4Ml93UtZuF-AK4USwmtS2Nei05w2NjNoQzCX9iXwavHo-57oKVfFw__GFjVvGNKp9v8f8XHnkNg","stattrak":true,"normal_prices":[228794,222066,0,0,0],"normal_volume":[213,8,0,0,0],"stattrak_prices":[218020,200000,0,0,0],"stattrak_volume":[33,3,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJHj4Ml93UtZuTbULtxfsxNDjZejqtFbajIMUyy36iytOvS1u5-ZXVPAt_PbejgiSZap9v8cjE0cexQ","stattrak":true,"normal_prices":[181183,180852,0,0,0],"normal_volume":[213,9,0,0,0],"stattrak_prices":[180910,204745,0,0,0],"stattrak_volume":[23,2,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxu97veBWSyajhREioQKVko7qJH_4Ml93UtZuQrVe4EOxkNHvYryx5g2L39oXyS6q2ixM5i9s474GUast_6PU3AuXY6p9v8diATcRqA","stattrak":true,"normal_prices":[176525,181971,0,0,0],"normal_volume":[196,9,0,0,0],"stattrak_prices":[177691,327347,0,0,0],"stattrak_volume":[28,1,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6vzu1zse9WRCe6kxgY6m26lob-KT-JbgckDsR5TeRftkKwxN3mY7nq7wbci4hBzy783X5P7iZp67sEWaV0qbqX0V8sk0fSOA","stattrak":true,"normal_prices":[59147,53236,49730,47702,45837],"normal_volume":[259,294,494,52,47],"stattrak_prices":[65164,55580,50644,52108,52777],"stattrak_volume":[53,42,76,15,7]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvzO9ku-RtcDyjqkR3jDGMnYftbyqSZlcgCMd5RLEItBe9koXhZbzi4AyK34tNmXn4i3hO6SxttuoBAKI7uvqA0_B7rlE","stattrak":true,"normal_prices":[65719,58848,54517,52015,51935],"normal_volume":[316,401,477,48,25],"stattrak_prices":[70500,61156,57726,60109,94625],"stattrak_volume":[50,45,82,9,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qv2-t0ouBWQyC0nQlp4G_dmdauIC_DPQBzDpclRLINsEXsx92yP7jq7gXd2t1NzCT3iCwc6TErvbhfNpboFw","stattrak":true,"normal_prices":[130875,112665,102868,0,0],"normal_volume":[263,301,97,0,0],"stattrak_prices":[156953,124223,128376,0,0],"stattrak_volume":[39,27,20,0,0]},"617":{"index":617,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvw-J3s-p5SiihmSIqsi-HlorwOy7DAVRPVssnHaMUuhe9xIHlMuvqtgPf2IoTyC383Sod7CY-sr4DVfZ2qKPU3g-TNuE-545DeqjFvb87vg","stattrak":true,"normal_prices":[1103928,1018500,0,0,0],"normal_volume":[15,2,0,0,0],"stattrak_prices":[1474944,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"618":{"index":618,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qvxeFmoO1sXRajnRw0tm-6mLD1KCzPKhh2DMckEeYNshC6koe1Munq5AbbitgTyyX6jixL7i5qteYLA6Mh-vWGkUifZkSF3e67","stattrak":true,"normal_prices":[403875,435323,0,0,0],"normal_volume":[84,3,0,0,0],"stattrak_prices":[386758,814723,0,0,0],"stattrak_volume":[13,2,0,0,0]},"619":{"index":619,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsD2qv0u9moOlgXSyMmBw1sTGAk5X8JRTFAVp5Xco0W-ENtRXswYC1Mu_ks1fdjN9EyiqthiMbvHtv5btQBPck-KbT2gnHM-Ajoc5Ufn65u8U","stattrak":true,"normal_prices":[621107,633778,0,0,0],"normal_volume":[46,2,0,0,0],"stattrak_prices":[613250,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHXevzOtluN59TieMmRQguynLmY2rdyqUOFNyC5N0QeQNuhC6kYe2M7nl7gTait1Hy3n52ipMvytj4_FCD_SLIWJ_mw","stattrak":true,"normal_prices":[74974,42507,40806,40114,40182],"normal_volume":[7,108,169,38,73],"stattrak_prices":[191843,51133,42061,41288,45462],"stattrak_volume":[1,14,48,10,10]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsBn6vx-FktfJ9cCu8hxgmvwKJk4jxNWWfOlMoWMByQ7QCskGwx9WzMr60tVHfj41EyyX3jXxM5ypu5e5TA_Vx5OSJ2NuQJF0J","stattrak":true,"normal_prices":[96571,46701,41662,41750,40222],"normal_volume":[18,101,220,37,74],"stattrak_prices":[0,48707,43325,42828,44097],"stattrak_volume":[0,14,47,11,12]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Z-ua6bbZrLOmsHWiv0ftkoO1scCW6khUz_WuHyor4cnLEPAMjD5F2FOcLt0O-ktLgMLvg7wbYjIJNmH-viX9A6351o7FVdgPZdkU","stattrak":true,"normal_prices":[200972,70153,54204,50981,45536],"normal_volume":[8,142,393,50,116],"stattrak_prices":[580000,75987,54887,59103,47516],"stattrak_volume":[1,26,72,8,28]}}},"516":{"name":"Shadow Daggers","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2-fbdlbvXKWWXIlbh15bdrTnvmwkt34z_Qz46hdnjFbAIkCJdzR-Zctxi5kNb5d7S1mgn3amY","stattrak":true,"normal_prices":[7462,7462,7462,7462,7462],"normal_volume":[72,72,72,72,72],"stattrak_prices":[11089,11089,11089,11089,11089],"stattrak_volume":[15,15,15,15,15]},"1108":{"index":1108,"max":1,"min":0,"rarity":5,"name":"Lore","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6d4H-CGHW-vzeFktd5lRi67gVMksWXQz96sIy2UP1B2D8dwRe5b4Be9moDkN7nl4QLYg94UmX-vjHhM8G81tMoT8OiD","stattrak":true,"normal_prices":[12951,6980,5814,5575,5605],"normal_volume":[35,85,141,42,49],"stattrak_prices":[24264,11399,8814,9077,7803],"stattrak_volume":[6,13,19,10,7]},"1113":{"index":1113,"max":1,"min":0,"rarity":4,"name":"Black Laminate","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6N-H-CGHW-vw-J3s-pWQyi-nBMmpzi6lob-KT-JbQ9zDsMhEO8L4xS7k93mMbu35wOPitpBzij9hngY5ypitexXB_BxqbqX0V9R9Pjb9Q","stattrak":true,"normal_prices":[7096,4550,4303,4400,4330],"normal_volume":[32,86,95,40,44],"stattrak_prices":[17700,5822,5466,6311,5905],"stattrak_volume":[5,11,15,6,10]},"1118":{"index":1118,"max":0.85,"min":0,"rarity":4,"name":"Autotronic","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6N-H-CGHW-vwPtiv_V7QCe6liIrujqNjsGrIH2fOFJxX5F1TeICsRe8x4ezY-vj7gHc2N9HxHir3HhK7Cds5L4AT-N7rU0zpOnr","stattrak":true,"normal_prices":[9133,5605,4896,6066,4984],"normal_volume":[40,80,120,14,34],"stattrak_prices":[12307,8242,6742,7972,6979],"stattrak_volume":[7,17,31,5,7]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H-eWDHSvzedxuPUnHi3mkRx24j_cn4qgIHnGbwF0A5p1R7UI5xm-k9XnMrjq5gOPj95BxDK-0H2triMq-g","stattrak":true,"normal_prices":[35434,11341,6849,6865,8717],"normal_volume":[2,17,58,2,25],"stattrak_prices":[0,16874,9984,14000,13094],"stattrak_volume":[0,10,5,1,1]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7d9H-SSHmKv1Px0se9WQyC0nQlp5GTdz4mqcniVPQAkCZYiFrQMs0TslYXmM-7i5wfb3dpEn32viShL7DErvbjmz8a0gQ","stattrak":true,"normal_prices":[15592,5410,4982,5950,5776],"normal_volume":[3,17,31,8,10],"stattrak_prices":[89611,9820,9444,0,9490],"stattrak_volume":[1,3,6,0,2]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7d9H_SSHnecxNF6ueZhW2fkkxlx5W3Wz4mtJHySag8iDJcjFuIM50S9x92yPuOz5ADaj9oTm3r-kGoXueH6PD3x","stattrak":true,"normal_prices":[15000,5678,4901,5250,4539],"normal_volume":[1,21,28,4,5],"stattrak_prices":[83822,10717,7562,6680,8243],"stattrak_volume":[1,7,11,1,4]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VsH_aSCmKvzedxuPUnFy-3l0tz5DmGzNmhdnmVblB0CcMjTbQJsBe6k9zlMuLl4gHYjoIRmDK-0H3ZqbeWvA","stattrak":true,"normal_prices":[14098,23517,0,0,0],"normal_volume":[210,5,0,0,0],"stattrak_prices":[24287,52700,0,0,0],"stattrak_volume":[23,1,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7diH_6aCW-E_uJ_t-l9AX3llBlwsGiAy47_cSiWagdzDpMjF-8MsRHrloXhP-_r4FOP2o1NyyzgznQeozLE8WY","stattrak":true,"normal_prices":[30125,6639,5022,4610,4753],"normal_volume":[2,21,31,5,6],"stattrak_prices":[290295,12453,8204,6749,7334],"stattrak_volume":[1,6,4,3,2]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VjH-SaCWKC_uFkse9uSha_nBovp3PUwt-uJHjFOgYlXpt4EbQJshS8loCxP7vr7gDZiItMnir-iC1O7X1s_a9cBp8PQ5hi","stattrak":true,"normal_prices":[8061,12350,0,0,0],"normal_volume":[114,6,0,0,0],"stattrak_prices":[10754,13000,0,0,0],"stattrak_volume":[27,3,0,0,0]},"411":{"index":411,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_SSA2aDwvtlj7g5cCW6khUz_WvXz9j8JHjBaAZ2ApMhRLVZtUK4w9ziNerr4QDYjotBynmqjSlM7Ct1o7FVMY__Aoc","stattrak":true,"normal_prices":[6310,5274,5130,5856,7197],"normal_volume":[48,70,56,9,7],"stattrak_prices":[11382,7513,7825,9100,0],"stattrak_volume":[14,4,7,1,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_2SHGWcxNFwseVscCW6khUz_T_dyI2tJXrFbQN2X5MjTLUCtEa5kYXnYuPh5QGLjowUxXitjixA7nl1o7FVu7_YRqU","stattrak":true,"normal_prices":[10641,15805,0,0,0],"normal_volume":[173,5,0,0,0],"stattrak_prices":[14263,15500,0,0,0],"stattrak_volume":[26,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H-OHC2Kc_uV4uedscCS2kRQyvnPQzdn6dSiUbw4jX8MmROdbskHpwde2Yu-x4VGKiYtBni__hisf63ti_a9cBjfCVlsL","stattrak":true,"normal_prices":[0,0,0,5762,4320],"normal_volume":[0,0,0,13,91],"stattrak_prices":[0,0,0,9168,5958],"stattrak_volume":[0,0,0,3,26]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH-KGDH6vzO9ksu1sRjO2kSIrujqNjsGgJXPFaA4kC8RxE7MPshO6lda0M-Kw7lPaiooWmX6sj35N7y495OdRT-N7remj_pWP","stattrak":true,"normal_prices":[33372,42927,0,0,0],"normal_volume":[48,3,0,0,0],"stattrak_prices":[56475,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCziqhEutDWR1Nmgd3yUZwMgCZQmRuVfthW8x9WxNOi05g2Ij48UnC323SxPu3s5t-ocEf1yJR6gz8E","stattrak":true,"normal_prices":[13589,19886,0,0,0],"normal_volume":[32,3,0,0,0],"stattrak_prices":[17265,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_KfG2KU_uJ_t-l9AS21w0smtm-HmIz8JHyVbgMmDJYjQeNf40G9moXiYrnqsgGNjIoUxSzgznQe0gLV55c","stattrak":true,"normal_prices":[26238,7865,6231,6146,7430],"normal_volume":[15,31,24,13,16],"stattrak_prices":[22239,16802,7376,8500,10000],"stattrak_volume":[4,5,4,3,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCzgqhEutDWR1N6vJ3yeOw91Dpp1TeMItRK7kYe0Yuyx7gDegtoQzXr43H8Y6Cdt4-ccEf1ysB-0XEk","stattrak":true,"normal_prices":[14081,20253,0,0,0],"normal_volume":[44,4,0,0,0],"stattrak_prices":[17087,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCznqhEutDWR1Nv9J3PDOFN1X5AmTO8NsRO4x9fuYe-07gLWgopDzH3_jnsYuilt4rscEf1y5zaZlV8","stattrak":true,"normal_prices":[15290,24187,0,0,0],"normal_volume":[71,3,0,0,0],"stattrak_prices":[19098,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_acHGSVxdF6ueZhW2fkx0t_4D_WntapICjCbgMkD8NzR7ZeskK4lNDvN7_k4wTZiotFzi35kGoXuV1xPlgw","stattrak":true,"normal_prices":[13726,6207,5888,5893,5637],"normal_volume":[5,22,15,15,13],"stattrak_prices":[0,9688,9049,9886,9613],"stattrak_volume":[0,3,1,1,4]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6V8H_-aAmKU_uJ_t-l9AX3kkEx1tz7Vw437dXmUbQ9zCpF2RrUDsRe4wNXuZuzm7lHW2I0TzC_gznQe3C7aMsc","stattrak":true,"normal_prices":[25698,11464,11216,10198,10988],"normal_volume":[8,49,56,40,16],"stattrak_prices":[33255,13522,13049,17150,15753],"stattrak_volume":[3,7,8,3,2]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H_SXHmaE_uJ_t-l9AX_jkU925m_UnN-qcXOfa1UjWcN5E-AOshi7xNe1ZOjhs1fWiYJGzX_gznQeild8Gek","stattrak":true,"normal_prices":[10905,5082,4707,5747,4919],"normal_volume":[6,14,27,9,15],"stattrak_prices":[48853,5934,7700,12500,7526],"stattrak_volume":[2,3,9,3,5]},"568":{"index":568,"max":0.08,"min":0,"rarity":5,"name":"Gamma Doppler (Emerald)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_WeC3WRzepJveB7TSW2nAcitwKJk4jxNWWXaAYgXMBwEe5btxKwx9O1Pu-0tg3ZjN1Bzi782iwa6i1otroAVqAh5OSJ2JW4jdt1","stattrak":true,"normal_prices":[21884,25305,0,0,0],"normal_volume":[95,4,0,0,0],"stattrak_prices":[22846,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"569":{"index":569,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 1)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjUpYPwJiPTcAIhApZzQ7EN5BexxobmYbmw7lDb2d9FyiT6iSgcvC9ssb4KVqJ0qPHJz1aWdVHoWzY","stattrak":true,"normal_prices":[10848,12880,0,0,0],"normal_volume":[105,3,0,0,0],"stattrak_prices":[12658,18992,0,0,0],"stattrak_volume":[9,4,0,0,0]},"570":{"index":570,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 2)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjXpYPwJiPTcAQnD8YhTbML50btkobnNu7m5ACL2owRzHj62igYvy1q5-tRUaEt-KbJz1aWfS6Wzvg","stattrak":true,"normal_prices":[10656,12984,0,0,0],"normal_volume":[116,3,0,0,0],"stattrak_prices":[11848,21200,0,0,0],"stattrak_volume":[13,1,0,0,0]},"571":{"index":571,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 3)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjWpYPwJiPTcFV2W5p3TeUDtUS4lIaxY7zgsgGLiIkUzHj83ChJuyZjt7lWB_cmqaDJz1aW8z9pbLE","stattrak":true,"normal_prices":[10951,13655,0,0,0],"normal_volume":[101,4,0,0,0],"stattrak_prices":[12442,21324,0,0,0],"stattrak_volume":[13,1,0,0,0]},"572":{"index":572,"max":0.08,"min":0,"rarity":4,"name":"Gamma Doppler (Phase 4)","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_eSA2qR_up5oPFlSjuMhRUmoDjRpYPwJiPTcFB2DJB3F-4LsBG_kd21Ne23tVPait9HmX6t2n5P6i1q5uoHAKJwq6TJz1aWm5wQ7fM","stattrak":true,"normal_prices":[10664,13665,0,0,0],"normal_volume":[104,3,0,0,0],"stattrak_prices":[12440,21172,0,0,0],"stattrak_volume":[5,1,0,0,0]},"579":{"index":579,"max":0.5,"min":0,"rarity":3,"name":"Bright Water","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H_-QC2ae_uV4uedscHDjqhEutDWR1NapdiiWblJxCpdyROVftBS9lNa1Meng5wXd3oJEyy_7ji1J6ilu6-0cEf1yYi7ebTk","stattrak":true,"normal_prices":[4931,4486,4281,4463,5116],"normal_volume":[118,81,118,14,15],"stattrak_prices":[6783,5370,5083,6501,7000],"stattrak_volume":[28,15,20,11,2]},"581":{"index":581,"max":0.48,"min":0,"rarity":3,"name":"Freehand","collections":["set_community_29","set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_2SHGyVxdFjoN4wHxa_nBovp3OHzomhdC3BbwIiDZV2Ru9ZukK4ld2zYerg4AGNjItExCT52C0c7H0__a9cBh2VpMK4","stattrak":true,"normal_prices":[6263,5226,5063,6457,5505],"normal_volume":[98,94,102,15,8],"stattrak_prices":[10428,8149,6963,8950,8177],"stattrak_volume":[19,22,19,4,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH-qWDHWR_uJ_t-l9AXHqx0V_tWzRn4v7Iy7Ea1QlDsEiF7UP5xWxkIexZuPjsgLWi91MyC3gznQen1baSVU","stattrak":true,"normal_prices":[11262,10146,11186,0,0],"normal_volume":[60,49,8,0,0],"stattrak_prices":[16082,19157,23415,0,0],"stattrak_volume":[4,7,3,0,0]},"617":{"index":617,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_KfD2Sb0et3ou1WQiihlxEiuieAnrD7HifOOV5kFJZ2TbMNtES-xobhY-rj4lTd39gRny_2jiIf6C5u67oHBasm-PXRjADfcepqXuISEy4","stattrak":true,"normal_prices":[62734,0,0,0,0],"normal_volume":[11,0,0,0,0],"stattrak_prices":[64915,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"618":{"index":618,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH_ScHnecxPxJoOloXCzhqh8YvzSCkpu3I37BOAAiCZR1RbUO5BLtwNzhZOy04VeKg44WmCWq3CJB73xp4rkFVr1lpPNoRdm_rA","stattrak":true,"normal_prices":[19156,23716,0,0,0],"normal_volume":[69,4,0,0,0],"stattrak_prices":[27277,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"619":{"index":619,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6VgH-OSHneYyPxzj-xoXSu_kBQ9tjm6mLD1KCzPKhghX5N4EOBfthfsw4LnYuvh5AbfioNHmyms3Cgf6Sk54e4CVvIl_qOEkUifZuDD3SRj","stattrak":true,"normal_prices":[23109,26219,0,0,0],"normal_volume":[50,3,0,0,0],"stattrak_prices":[31509,47220,0,0,0],"stattrak_volume":[5,2,0,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7d9H_2WHW-v1e94j-1gSCGn201xtj7dn96hJCmTOlcjCMclELUMtEW5lYDkNum351aLjo5Gynj62ytXrnE8619lrZ4","stattrak":true,"normal_prices":[10581,5174,4355,4618,4813],"normal_volume":[1,29,36,11,13],"stattrak_prices":[106750,7914,6765,10421,14391],"stattrak_volume":[1,6,4,1,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV6x0H_acHGKD1dF0v_NsTiWMmRQguynLnI2uIi3DaQd0XpNwTLNctES-lILgM-_j5gfcjNlAxXj83S5N73tssPFCD_REhu3w7w","stattrak":true,"normal_prices":[12000,6141,4421,5126,4930],"normal_volume":[1,21,47,10,15],"stattrak_prices":[82453,8860,5761,8800,6603],"stattrak_volume":[1,6,2,3,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_16","set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1L-uGmV7diH-CGHHecxNF6ueZhW2e2wk9y4jiBntn7cy2XPwMgD8BxF7MN4BK5l9KzZu3kswTaj4kTxST6kGoXuU3Nl_sm","stattrak":true,"normal_prices":[22167,6428,5183,6851,5220],"normal_volume":[5,33,73,14,25],"stattrak_prices":[40530,10269,7312,7762,9724],"stattrak_volume":[3,4,11,3,6]}}},"517":{"name":"Paracord Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2tZ7ZpbqWRXmWTmbsm5bU5TXu3lkR_5j_Swor8JC_BPFVxWJd1FuID4RW7w9b5d7S1z-U4Rao","stattrak":true,"normal_prices":[5766,5766,5766,5766,5766],"normal_volume":[362,362,362,362,362],"stattrak_prices":[6703,6703,6703,6703,6703],"stattrak_volume":[76,76,76,76,76]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6x0H-eWDHSvzedxuPUnGH_gx0pxtT-Dm9uvdXrGbAFzCsZ5Ee9YtkTpx9LgYuPjtA3djotByDK-0H0Jjl4AqA","stattrak":true,"normal_prices":[109930,11517,9027,9700,8822],"normal_volume":[2,105,205,50,34],"stattrak_prices":[379352,16210,13246,12488,18185],"stattrak_volume":[2,16,29,8,4]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H-SSHmKv1Px0se9WQyC0nQlptm3Tw9aseHKeagAgDcMjEOIPtBSxwNHmMerlsQLYgoIRxHmv3ygcvzErvbijdLAgow","stattrak":true,"normal_prices":[18292,6178,5146,5552,5693],"normal_volume":[8,42,71,20,27],"stattrak_prices":[34152,9353,6859,7583,7590],"stattrak_volume":[4,5,14,9,4]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H_SSHnecxNF6ueZhW2fqzEl_sT7QwtegdCnEa1QnXsckEbIIt0TpxIWzZr7g5QPag4sXzXr8kGoXuabkrFHY","stattrak":true,"normal_prices":[13377,5983,4991,5203,4741],"normal_volume":[9,32,98,27,20],"stattrak_prices":[46951,8457,6971,7382,7971],"stattrak_volume":[2,10,22,1,3]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VsH_aSCmKvzedxuPUnHSixkUl-4mqEnNj8IH3BOgUjX5RzFOMDthewlN3iYu-27gHcio1DmTK-0H2HlTMq_Q","stattrak":true,"normal_prices":[14898,23638,0,0,0],"normal_volume":[580,33,0,0,0],"stattrak_prices":[17675,41033,0,0,0],"stattrak_volume":[74,2,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VjH-SaCWKC_uFkse9uSha_nBovp3OGnon7dXufZwcnC5cjEO8M5BDrw4LlNuvq5ADWid4XnCX63yxM5i8-_a9cBvWv3FY7","stattrak":true,"normal_prices":[11571,13106,0,0,0],"normal_volume":[215,10,0,0,0],"stattrak_prices":[14971,19162,0,0,0],"stattrak_volume":[49,9,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_SSA2aDwvtlj-1gSCGn2xh0sG_VmNz9cS7CaAcgW8MkTOdftxS4wNexPu3n4QPbj9hHyH72jy5XrnE819bSoUk","stattrak":true,"normal_prices":[7902,6707,6033,6500,6370],"normal_volume":[63,54,72,7,6],"stattrak_prices":[11291,8634,8623,9113,7211],"stattrak_volume":[13,8,13,1,4]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_2SHGWcxNFwseVscCW6khUz_TnXw9-qdyiWbQEiA8FxROQMtxPqlILjM7vk4waIjoxNmSr9iyxK6yh1o7FVj-pHDZk","stattrak":true,"normal_prices":[12992,17300,0,0,0],"normal_volume":[234,14,0,0,0],"stattrak_prices":[17539,25043,0,0,0],"stattrak_volume":[37,3,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H-OHC2Kc_uV4uedscCS2kRQyvnPUzo2qIHjEaFQhC5dyF-ZbsxPpx9C1Y-nq4ACPiIJFzn_-hntJ6yxr_a9cBo1AYhy6","stattrak":true,"normal_prices":[0,0,0,5522,4677],"normal_volume":[0,0,0,20,211],"stattrak_prices":[0,0,0,6496,6272],"stattrak_volume":[0,0,0,7,28]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH-KGDH6vzO9ksu1sRjO2kSIrujqNjsH6cnzCagN0DsciELRf4Be-x9OxZbjmtAOKgt8Uny_7jCoavy4-474FT-N7rYiv01su","stattrak":true,"normal_prices":[57862,65082,0,0,0],"normal_volume":[70,3,0,0,0],"stattrak_prices":[60340,72847,0,0,0],"stattrak_volume":[11,2,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH-OSHneYyPxzj-xoXSu_kBQ9tjm6lob-KT-JbQEkC8dxFLFYthK-x9TgMeyx5Q2Pjo1DzC6r3ClNuCc94OhWVKoiqbqX0V_9YbYNGA","stattrak":true,"normal_prices":[41157,41475,0,0,0],"normal_volume":[67,2,0,0,0],"stattrak_prices":[45376,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_KfD2Sb0et3ou1WQiihlxEiuieAnrD1KCzPKhh1WcB3F-IPu0O4x9HnMO62tA3bj9gWmCz6i3lNui5i67kHWKYmq_CCkUifZiWg2J7C","stattrak":true,"normal_prices":[68136,65518,0,0,0],"normal_volume":[20,3,0,0,0],"stattrak_prices":[97083,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCziqhEutDWR1Nv6JHuXbQUpCpIkQe8KsBjsxNLgYevltlTe3olHyHiv3StK73pqtugcEf1yeFJGil8","stattrak":true,"normal_prices":[20508,25848,0,0,0],"normal_volume":[98,4,0,0,0],"stattrak_prices":[24584,29500,0,0,0],"stattrak_volume":[10,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCzhqhEutDWR1In_cimXOAMpAsRyROdethi7xtbmPuu0sgDW2N4UxS2v3S9OuC9t5bkcEf1y7nwgVpQ","stattrak":true,"normal_prices":[24763,27201,0,0,0],"normal_volume":[103,5,0,0,0],"stattrak_prices":[25983,35901,0,0,0],"stattrak_volume":[8,3,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_KfG2KU_uJ_t-l9ASu2zEkjsm6HytytcHnBPQ90XMNxE-VYsUK_m9TlN7nl7gHag48WmyngznQeOvn5VbM","stattrak":true,"normal_prices":[16767,9702,7933,7763,7332],"normal_volume":[21,56,86,36,34],"stattrak_prices":[25463,13184,11143,9993,12674],"stattrak_volume":[5,9,15,11,12]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCzgqhEutDWR1N38IiqfZwd1CMF5EeEOskaxlNWxNeLq5gCPjIJNyn322ykduH054-ccEf1ylmda9Aw","stattrak":true,"normal_prices":[20335,26985,0,0,0],"normal_volume":[87,3,0,0,0],"stattrak_prices":[24759,31900,0,0,0],"stattrak_volume":[9,1,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH_ScHnecxPxJoOloXCznqhEutDWR1Nz7eSnCOwEpA5twQu4CsRe8ltyzMOrntAaM3dpMzS2siypK7CY54-4cEf1yr5PbGSk","stattrak":true,"normal_prices":[21805,27776,0,0,0],"normal_volume":[88,5,0,0,0],"stattrak_prices":[23757,36847,0,0,0],"stattrak_volume":[11,3,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_acHGSVxdF6ueZhW2ewxU9wsDjXm9yrJXvCbAUiCsByF-RY4xfrk4CxZr605VTbj49GyC_3kGoXuZB2l8Tw","stattrak":true,"normal_prices":[11165,6149,6102,6074,6201],"normal_volume":[33,46,51,25,35],"stattrak_prices":[53152,7867,6916,7985,7851],"stattrak_volume":[1,3,13,7,4]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6V8H_-aAmKU_uJ_t-l9ASrglh8l5DjWz479d3iTOwYlX5UhFrYMsRnrltWxNrzl5QHYjYJCyX_gznQeOO_KAyk","stattrak":true,"normal_prices":[22132,12289,9875,9718,9678],"normal_volume":[40,225,301,139,91],"stattrak_prices":[29556,18732,15801,13677,13852],"stattrak_volume":[5,21,20,13,10]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6x0H_SXHmaE_uJ_t-l9AS3gkB4m5myGyo6sciifPQdzD8RzR-JctBjsl9bvMOzjslPYgopAyi_gznQexg-GN_M","stattrak":true,"normal_prices":[10335,5084,4699,5510,4788],"normal_volume":[2,45,81,16,33],"stattrak_prices":[0,6496,6097,8500,7910],"stattrak_volume":[0,10,14,1,11]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6VgH-qWDHWR_uJ_t-l9AXjik0x362yDyIr8eHKUPQQnD5B4F-MKtxjrlNfnMu-04gDY2IlFnH7gznQeNL2G-UI","stattrak":true,"normal_prices":[14333,13133,13567,0,0],"normal_volume":[152,130,51,0,0],"stattrak_prices":[22284,16044,16509,0,0],"stattrak_volume":[21,12,4,0,0]},"621":{"index":621,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7diH-CGHHecxNFwse1qRyC8myIrujqNjsGrJXjEPwAiC5pwEeAC40brkNzvPuLgsgHY2oMWyiv9jCxIvChr4egHT-N7rbYjcxXs","stattrak":true,"normal_prices":[31689,9813,6673,7463,6942],"normal_volume":[8,52,90,22,22],"stattrak_prices":[49413,12849,9499,8449,9051],"stattrak_volume":[2,18,9,2,6]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H_2WHW-v1e94j-1gSCGn20t35z6HzdagcnmQPAMmD5V5Q7Rf5hLtwIK0MO-24wSM2YkXnnr_iiNXrnE8Zdgcdss","stattrak":true,"normal_prices":[10037,4900,4469,4552,5143],"normal_volume":[11,47,93,17,25],"stattrak_prices":[79536,7946,5500,5906,7012],"stattrak_volume":[3,7,7,3,11]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV7d9H_6aCW-E0vpkufFscCW6khUz_WvQm9v4cy-XaAIiXpshQ7QDsBLpktO2Nbnn4gfY2oxGmSmr3SwdvC91o7FVXhfCwdw","stattrak":true,"normal_prices":[24042,6248,5369,5071,4960],"normal_volume":[8,55,104,11,19],"stattrak_prices":[0,11230,7343,8470,7897],"stattrak_volume":[0,10,13,1,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y4OCqV6x0H_acHGKD1dF0v_NsTiWMmRQguynLztutd3qfaFMlDcZwQbYIsUGwlILlYuzi4wGMi4MWyyusjnxJ7nk-5vFCD_TajkSe4A","stattrak":true,"normal_prices":[15303,5901,4871,5451,5258],"normal_volume":[2,37,86,32,31],"stattrak_prices":[42640,9661,6304,8202,6949],"stattrak_volume":[1,3,19,2,8]}}},"518":{"name":"Survival Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2taapkM77CDzbIlrsms-NsHHGxzUwj5G6En4yuIy_BbQAjC5VxQLRc5hm8x4HvKaq8sEukLuHu","stattrak":true,"normal_prices":[5621,5621,5621,5621,5621],"normal_volume":[478,478,478,478,478],"stattrak_prices":[6346,6346,6346,6346,6346],"stattrak_volume":[77,77,77,77,77]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tlOc-EC2WD_uJ_t-l9AXqxlEtytzzXwo2pJSnBb1InC5dzQrVYsRK5ktOzNenn7gXdi95FzX3gznQeN2X8HrE","stattrak":true,"normal_prices":[69020,11318,9151,9708,8476],"normal_volume":[23,100,187,24,26],"stattrak_prices":[165000,14680,11586,11447,14540],"stattrak_volume":[3,13,23,3,6]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-HD3eV_vtksuBncCW6khUz_WnTwo2vIHrEO1UpCcRwTe4MtEO-wNXnZOm2sw2Pgo5GxHr7j35I6y11o7FVtOoVFFs","stattrak":true,"normal_prices":[12941,6092,5176,6082,4970],"normal_volume":[1,30,64,25,24],"stattrak_prices":[33567,9006,7335,6800,7488],"stattrak_volume":[2,8,19,1,8]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-XD3eAzetJvOhuRz39k09w5WnVyI34cnqUb1R2AsN5FuAPtha-m4CyMejitlfYiYpNmH392jQJsHiJvqHvqQ","stattrak":true,"normal_prices":[15724,5422,4840,5604,5288],"normal_volume":[7,41,85,18,21],"stattrak_prices":[34999,8712,7320,6943,6549],"stattrak_volume":[3,7,14,3,4]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsIc-VD2OV_uJ_t-l9AXuwwBh0sT-BydarInPGPQUpCMcjELJY5xm4xIG0NLy241Dag9hNzirgznQeOQeAleU","stattrak":true,"normal_prices":[13889,19221,0,0,0],"normal_volume":[514,15,0,0,0],"stattrak_prices":[17775,28592,0,0,0],"stattrak_volume":[68,2,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLs-HB2CV09F5ouBnSCyMmRQguynLy42tdSnBOFcgC8EjF-ECtBi6x9fuY-3n4w2P2YsWyiX42iMd7Clp4vFCD_R6ZwboAg","stattrak":true,"normal_prices":[11133,13866,0,0,0],"normal_volume":[246,16,0,0,0],"stattrak_prices":[13502,21372,0,0,0],"stattrak_volume":[33,3,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-XD2qR0u1jo95lRi67gVNw6myGnN6teHyTbFV1DMQhTeFYsBa7xtHhZb-z5gfejN4Un3-si3wf8G81tKX6O3VS","stattrak":true,"normal_prices":[7867,6943,6222,6738,7867],"normal_volume":[72,52,62,11,3],"stattrak_prices":[9238,8589,9292,9274,15500],"stattrak_volume":[17,10,10,3,3]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-eD3WSzetJtuBtSha_nBovp3OGztqtIH-RbwV1X5Z5QuEPshGwl9TuY-vrsQPd3d0QmSz72nwY5ilo_a9cBrKGUnAZ","stattrak":true,"normal_prices":[13043,17175,0,0,0],"normal_volume":[243,4,0,0,0],"stattrak_prices":[17167,19766,0,0,0],"stattrak_volume":[37,2,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-AGmKVzdF9vuhvSha-kBkupjDLn9ytc36QZwByCJpwE-4I4UW9kNy0NO3mtQHdj4xFxSr6j35Lu35s6vFCD_SeoZUIGw","stattrak":true,"normal_prices":[0,0,0,5517,4558],"normal_volume":[0,0,0,13,190],"stattrak_prices":[0,0,0,8510,5851],"stattrak_volume":[0,0,0,5,31]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-BG2WJ_uN3ouNlSiCpkBkYvzSCkpu3dnLGOFMmXJJ5FLMC5Ba-w4CzP763tFHZ3Y8Xnir73yJB6So4sOtUU71lpPMvbRQrHg","stattrak":true,"normal_prices":[51594,54064,0,0,0],"normal_volume":[69,5,0,0,0],"stattrak_prices":[58800,104350,0,0,0],"stattrak_volume":[3,2,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-AD3eAyedktd5kTjuxmRguqTiBpYPwJiPTcAUjCpohTOYPtES7ldzvYrjl5laLi4JBnC_6iS1PvHtst7wDV_Ui-fLJz1aWWu-XwP8","stattrak":true,"normal_prices":[35150,44358,0,0,0],"normal_volume":[63,3,0,0,0],"stattrak_prices":[35959,118260,0,0,0],"stattrak_volume":[9,1,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-RAmaTyv5zsfNlcCSyhx8rtjSfn4vGLSLANkI-CJQjFrQJsxHrktfjMu6z5gbYi49FyS-rh3lJuHxst7oLAvci-PDehxaBb-MyRwuVrw","stattrak":true,"normal_prices":[54543,70484,0,0,0],"normal_volume":[22,1,0,0,0],"stattrak_prices":[57447,73299,0,0,0],"stattrak_volume":[4,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2xCIrujqNjsH8eX-TbAYpCZElTeFcs0a8x9eyP7uxsVOM2o8RziuojC4c5i9u4u8BT-N7rRTkBvdt","stattrak":true,"normal_prices":[19240,25573,0,0,0],"normal_volume":[77,3,0,0,0],"stattrak_prices":[24897,23500,0,0,0],"stattrak_volume":[4,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2xyIrujqNjsH8dy6SbgFyXMAlQLIMtELuxNTuY77j51Hc3YJGyCX_insa6C5ot-5QT-N7rXTHzhfD","stattrak":true,"normal_prices":[22232,23537,0,0,0],"normal_volume":[89,3,0,0,0],"stattrak_prices":[23491,34661,0,0,0],"stattrak_volume":[8,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-RAnKVxdF6ueZhW2fqxBh1tWXVm4v9c3iTawUnDpsjQeMMshW6ld2xP-_q5w3bjoNCyHn2kGoXucNZoqIn","stattrak":true,"normal_prices":[13881,8639,7016,7162,7026],"normal_volume":[14,82,63,34,55],"stattrak_prices":[36572,11049,9290,9662,9112],"stattrak_volume":[5,7,2,5,11]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2xiIrujqNjsH_IHmVbw4gDpIlF7Nb5kO4k9CzZr_q5FbaiopNyyqoii0cvSZjsOcKT-N7rcPcFrXZ","stattrak":true,"normal_prices":[18967,24506,0,0,0],"normal_volume":[82,3,0,0,0],"stattrak_prices":[20322,28957,0,0,0],"stattrak_volume":[9,3,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-XAXeAzetkj_FhTjq2wSIrujqNjsH_J3jDZlV1AsAmE-QNtxG6koCxY-mx41bcjo9CnC35inkb6C06tb5QT-N7rTRepqpg","stattrak":true,"normal_prices":[19991,22800,0,0,0],"normal_volume":[102,1,0,0,0],"stattrak_prices":[24201,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-VAXWTxOpJvOhuRz39kEkjtjmGydmhdi-TbVNyDJNwTbRf4BjpwILhNe7k4wzW2otCyn72jzQJsHhv3Am88A","stattrak":true,"normal_prices":[11026,6782,6851,6659,6662],"normal_volume":[27,44,46,21,21],"stattrak_prices":[15221,9517,8465,9473,9104],"stattrak_volume":[4,14,11,6,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsMc-cB2uVxdF6ueZhW2fmx0gi4jzQm9qhdSqSPVRzDJR2FOEKsha4xtbgPuy04QON3YJEyyr_kGoXuQK6HIuK","stattrak":true,"normal_prices":[18492,10143,9018,9795,9090],"normal_volume":[48,210,255,140,108],"stattrak_prices":[42232,14680,14248,13787,12487],"stattrak_volume":[6,19,27,28,1]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tlOc-XCneR1dF6ueZhW2frxE106zzQztb6Jy2TaQYoCpQiEO5Y4xOwldfjZurg5QTdid5GxCj-kGoXucz3RTaX","stattrak":true,"normal_prices":[14615,5399,4645,5064,4690],"normal_volume":[8,25,77,19,33],"stattrak_prices":[51066,6801,6585,7027,6004],"stattrak_volume":[1,3,17,2,8]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tsLc-JC2WCwNF6ueZhW2fglEt-5jmDytn_InKRPwQkAsQhE-UJu0a4lYflNO7k41bc34sTyH76kGoXuTxGW3zC","stattrak":true,"normal_prices":[12822,11782,12050,0,0],"normal_volume":[123,118,42,0,0],"stattrak_prices":[17077,16683,17779,0,0],"stattrak_volume":[23,16,5,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-eC3SY_vp3vt5lRi67gVNztTmBydj4I32fZ1UpDMAiEecMuxXqxN2zN7zi5Abdg4hDxSj5iywf8G81tEchNhm2","stattrak":true,"normal_prices":[10339,4547,4459,4590,4800],"normal_volume":[11,45,84,27,28],"stattrak_prices":[62191,8560,6271,6325,6303],"stattrak_volume":[2,5,6,3,10]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-MM-dB2CY1f1iouh5Sha_nBovp3PVnN6uIn2VPQEiA5ZzR-BfuhS5loCxNO7gtFTa34hEyS75iS4duHk6_a9cBmI-JI41","stattrak":true,"normal_prices":[12626,5808,5350,5831,5489],"normal_volume":[6,41,86,17,13],"stattrak_prices":[69999,9585,7442,6416,8293],"stattrak_volume":[1,7,14,4,13]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5tlOc-VAXWV0vpJsu57Sii_qhEutDWR1Ir9d3KSbgFxDJQiRe8O4ESxm9HiZu_k4lCP2NhBz3-tji1N6Hlv470cEf1yxrD6pCc","stattrak":true,"normal_prices":[13447,4807,4622,4774,4420],"normal_volume":[3,30,70,14,29],"stattrak_prices":[64097,6644,5679,5893,6785],"stattrak_volume":[2,4,12,1,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Y7vyne5t-L8-DG3WAzetJvOhuRz39k0104GnVzor_InqfPQ9xDZJ0E7JfuxDql4XhPryxtg2MiI5An3-r2zQJsHhQRDEjrg","stattrak":true,"normal_prices":[23014,8015,6464,7187,6522],"normal_volume":[8,53,100,18,17],"stattrak_prices":[180000,9832,8190,8259,8000],"stattrak_volume":[3,4,25,6,2]}}},"519":{"name":"Ursus Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s27erd4M77AXWWWx7h3tOA5SyvilEkj5WuGw42qc3zEOg4iDJEjQu9b4xa6w4DgKaq8sDVgNcPY","stattrak":true,"normal_prices":[10382,10382,10382,10382,10382],"normal_volume":[321,321,321,321,321],"stattrak_prices":[10353,10353,10353,10353,10353],"stattrak_volume":[123,123,123,123,123]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tlOc-EC2WD_uJ_t-l9ASzrwRt14WXTmNqrIy-eaAIoCpdyQuYJtxHuwNyyZe_m5wHb39lCmSTgznQedPIzvI4","stattrak":true,"normal_prices":[98571,16697,11977,11562,11537],"normal_volume":[5,119,187,24,34],"stattrak_prices":[885006,23916,18074,18900,18113],"stattrak_volume":[1,11,35,1,3]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-HD3eV_vtksuBncCW6khUz_W7Rw9ihcHqTaFUnDMYiEeEOtRe9kNXjM7vhswbZ3Y1BnCv6jSgbuix1o7FV-Na7K10","stattrak":true,"normal_prices":[25900,8814,6834,7415,7104],"normal_volume":[2,46,69,17,25],"stattrak_prices":[49999,13649,9067,9656,11390],"stattrak_volume":[2,2,13,1,3]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-XD3eAzetJvOhuRz39zUgjtTvQyYz8ci6TPARzCZtyELILuhbsltazMOm04AHXiYJMziytjjQJsHj5P22EGw","stattrak":true,"normal_prices":[16436,7637,6306,6334,6918],"normal_volume":[5,40,62,13,15],"stattrak_prices":[130000,9795,8882,8249,8983],"stattrak_volume":[1,15,18,4,1]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsIc-VD2OV_uJ_t-l9AXzml00i527XzouseH7GblAjX5N3R-NbuhLswYfjY-zj7laKjdkRyX_gznQeK-1-7hY","stattrak":true,"normal_prices":[19722,30149,0,0,0],"normal_volume":[440,20,0,0,0],"stattrak_prices":[25745,44230,0,0,0],"stattrak_volume":[55,4,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLs-HB2CV09F5ouBnSCyMmRQguynLnNypeXqeZ1coC5tyE-9fuxbpw4e1Yuvj5Qza344TzyuqjyoY6n1v4fFCD_RAjV1-VA","stattrak":true,"normal_prices":[13413,16028,0,0,0],"normal_volume":[434,23,0,0,0],"stattrak_prices":[17755,28000,0,0,0],"stattrak_volume":[55,2,0,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-eD3WSzetJtuBtSha_nBovp3OEw92gdH_DPFcnWMB2EO9f5EPsktzhNO_n5gCIjdhHxH3_hnwauiht_a9cBmW6TNz5","stattrak":true,"normal_prices":[15784,19775,0,0,0],"normal_volume":[458,19,0,0,0],"stattrak_prices":[19693,27465,0,0,0],"stattrak_volume":[77,7,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-AGmKVzdF9vuhvSha-kBkupjDLy9-hcymePwV0XpN1E7MPshfrl9HkMO7q5QyI2Y9MnC353ClLvCdu5PFCD_SZq2fGzA","stattrak":true,"normal_prices":[0,0,0,6809,5703],"normal_volume":[0,0,0,22,297],"stattrak_prices":[0,0,0,10388,6722],"stattrak_volume":[0,0,0,4,44]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-BG2WJ_uN3ouNlSiCpkBkYvzSCkpu3I3-eOFJxCJJ0Re8PsELuxoW2ZOzlslPfj98QxSyqintBuCY66-hTVr1lpPOXbk3ZOw","stattrak":true,"normal_prices":[75281,106988,0,0,0],"normal_volume":[51,2,0,0,0],"stattrak_prices":[83434,220234,0,0,0],"stattrak_volume":[4,1,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-AD3eAyedktd5kTjuxmRguqTiBpYPwJiPTcAB2DpUkRrYK50awk9LhZrjg4lPZ2I1Dzyr_3X8Y6n1j4roFUKcl_qPJz1aWr6Afqe0","stattrak":true,"normal_prices":[50732,89995,0,0,0],"normal_volume":[44,3,0,0,0],"stattrak_prices":[67793,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-RAmaTyv5zsfNlcCSyhx8rtjSfn4vGLSLANkI-C5IiRrQN5BaxktbgNOrksVOPj9gRnin-jS8fvX4_6-kAAqNx8vLQiRaBb-PCt4gg5w","stattrak":true,"normal_prices":[83239,126230,0,0,0],"normal_volume":[15,2,0,0,0],"stattrak_prices":[104643,105000,0,0,0],"stattrak_volume":[3,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2xCIrujqNjsGrcnKTbgQjWZRyFuEL4EO4xoXuY-7n71bY2YtGxH35jSga6Cs4sboLT-N7rSrR5rr3","stattrak":true,"normal_prices":[23994,39552,0,0,0],"normal_volume":[68,3,0,0,0],"stattrak_prices":[27589,60000,0,0,0],"stattrak_volume":[4,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2xyIrujqNjsH6dHORbFMiW5QlQ7EMtEK-m9fjZurh5QGMjdgXm3j43y1OuCY_57tUT-N7rRKbF8ni","stattrak":true,"normal_prices":[27629,36829,0,0,0],"normal_volume":[73,3,0,0,0],"stattrak_prices":[31854,50000,0,0,0],"stattrak_volume":[8,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-RAnKVxdF6ueZhW2e1kx8ksTnVzdz9Jy7FawNyX8NzQLNc4xK4xIflYb7n7gbcjI1Fzi_3kGoXuVwKdqHm","stattrak":true,"normal_prices":[19076,10300,9650,8966,8848],"normal_volume":[15,45,43,44,50],"stattrak_prices":[88171,16178,11161,10477,12357],"stattrak_volume":[3,20,13,4,8]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2xiIrujqNjsH8dSrDOgZxCsdwQbIKshHqlYa2Y-i35wzW2ItEn3mtjysdvS9s4ekET-N7rUzmvdlV","stattrak":true,"normal_prices":[23578,31871,0,0,0],"normal_volume":[67,2,0,0,0],"stattrak_prices":[27362,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-XAXeAzetkj_FhTjq2wSIrujqNjsGvdiqQZ1clCJIhQLUCtkGxx4G1Ye7m7gSPjY5Nzn_6hipJv304t-hQT-N7rW2UnqIg","stattrak":true,"normal_prices":[24851,33033,0,0,0],"normal_volume":[77,2,0,0,0],"stattrak_prices":[27036,32153,0,0,0],"stattrak_volume":[7,2,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-VAXWTxOpJvOhuRz39lBsk5m2Dz4mrdX6SZg92CsEhRrIO4USwmtHkZe3rsgTXjd9AniyrhjQJsHhzJIw6OA","stattrak":true,"normal_prices":[11548,9505,8334,7888,8199],"normal_volume":[18,62,55,30,21],"stattrak_prices":[20077,9962,10325,9970,9840],"stattrak_volume":[1,9,7,8,2]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-cB2uVxdF6ueZhW2fmxBx-427Xntr_c3rBaFIkDZAhRLVYtxXql9LjMe_itQKL2d0UzXmskGoXueV9R1qR","stattrak":true,"normal_prices":[23504,13494,11556,11428,11471],"normal_volume":[28,171,189,98,56],"stattrak_prices":[43488,21166,14727,15134,16600],"stattrak_volume":[3,22,19,10,5]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tlOc-XCneR1dF6ueZhW2fqxU0ktmTTytugdi_CZ1ckDZYiRO8Muka-kYXiZuri4wTdjIJDyHr9kGoXuTEenuE-","stattrak":true,"normal_prices":[18781,6455,5872,6648,5949],"normal_volume":[6,41,47,11,24],"stattrak_prices":[0,9725,9228,9120,8164],"stattrak_volume":[0,8,16,2,9]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsLc-JC2WCwNF6ueZhW2fhkU9wtTjWytepcHueblR2ApslReYM4xS6kYDlZrnjtAzb3dpBzi2skGoXufPjJEMh","stattrak":true,"normal_prices":[16894,16168,17029,0,0],"normal_volume":[112,90,39,0,0],"stattrak_prices":[22690,20786,32642,0,0],"stattrak_volume":[15,18,2,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-eC3SY_vp3vt5lRi67gVNzsW-Bn9-qIniRbgAhCMAkR-ZfsxPtmoDvPuzr7lHa3YhBzCr-3Xwf8G81tFy8vCpc","stattrak":true,"normal_prices":[14214,6010,5604,6048,5818],"normal_volume":[7,36,72,5,22],"stattrak_prices":[43375,11021,8184,7525,6916],"stattrak_volume":[1,10,9,8,4]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-MM-dB2CY1f1iouh5Sha_nBovp3Pdmd-qJ3rFZwclA5AlEbINsUS9ltbhM-6xtQHfit4UnC__hylB6Xpp_a9cBpOKr6LC","stattrak":true,"normal_prices":[23159,9066,7429,7531,7582],"normal_volume":[1,33,75,20,16],"stattrak_prices":[0,10980,9009,10217,10391],"stattrak_volume":[0,14,15,5,9]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tlOc-VAXWV0vpJsu57Sii_qhEutDWR1I2uJS-QZ1IhCJB2TOcOt0PuwNPvM-3k4VSMi4sQzCysiSxP73xi6-0cEf1y17OWkH8","stattrak":true,"normal_prices":[13673,6067,5728,6223,5856],"normal_volume":[5,42,72,12,15],"stattrak_prices":[0,9058,8266,8112,7709],"stattrak_volume":[0,8,11,1,2]},"857":{"index":857,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5tsMc-XD2qR0u1jo955XSCgmBwYvzSCkpu3IHqeOwImXMFxEbULtUPqx9XmZO_iswTcg41Gzy743CxL7ntusLpTWb1lpPNKGasTBw","stattrak":true,"normal_prices":[10512,8642,7856,8853,9367],"normal_volume":[78,76,115,22,15],"stattrak_prices":[13130,10565,10447,10175,8916],"stattrak_volume":[28,21,19,5,1]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1O_eG7e5t-L8-DG3WAzetJvOhuRz39k0Rw4jiHw4r4I3nEZ1UiWZJ3F7Jb4xPul9HnNejgtADWjNoUmC76iDQJsHhIUD-ATQ","stattrak":true,"normal_prices":[46448,11714,8332,8574,8217],"normal_volume":[4,88,198,48,40],"stattrak_prices":[75000,13618,11156,9800,12299],"stattrak_volume":[2,13,30,6,8]}}},"520":{"name":"Navaja Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2pcbR-Oc-ZD2SbyuB_tuQnGXu1kBxw62_dwtird3qXZwQgXJV0E-4PtESxl4ezYr6x4FaMjI4UyzK-0H1iy36efQ","stattrak":true,"normal_prices":[4457,4457,4457,4457,4457],"normal_volume":[297,297,297,297,297],"stattrak_prices":[5664,5664,5664,5664,5664],"stattrak_volume":[49,49,49,49,49]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJuPhWWCyxhiIrujqNjsGtJS-eag4iCpN4QrZYsEK_m9K0ZLzl4gOLiYgQxSj2in9Buis_5OZRT-N7rdEUHJYn","stattrak":true,"normal_prices":[33159,9187,6618,7959,6717],"normal_volume":[4,36,52,7,12],"stattrak_prices":[408641,17533,10586,10833,10771],"stattrak_volume":[2,7,14,5,2]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWWyijkCIyoT-ElLD1KCzPKhggC5p4EeIPtkTtkdy2Y-7mtAOMg9pEnCr8iyIf6C8-sL5TWfYh_aCGkUifZi7Rx6Sa","stattrak":true,"normal_prices":[18357,5462,4679,4814,4758],"normal_volume":[3,36,40,9,12],"stattrak_prices":[35123,7707,6969,7334,7000],"stattrak_volume":[3,10,2,8,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWSyijhREijDGMnYftb3qQPwNzXJIjELQLsxiwkdWxZOLntAHX2Y5Gm3_6i34a5n0-4OwBVqM7uvqAVQbj3nE","stattrak":true,"normal_prices":[12616,4656,4459,5260,4665],"normal_volume":[8,30,41,5,10],"stattrak_prices":[52561,8277,7085,7204,7299],"stattrak_volume":[1,1,8,3,2]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJseBWSSi3kCIrujqNjsH7c3qVOwV2DcZyQbQOukG5m4CyMeqz4laIgoxAnH_93Ckbvyw5troCT-N7rT3KN2DN","stattrak":true,"normal_prices":[11042,14206,0,0,0],"normal_volume":[268,11,0,0,0],"stattrak_prices":[17059,22000,0,0,0],"stattrak_volume":[34,1,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJse9WWyC0kA8YvC-ElIj8HifOOV5kFMMlRLJf4BK4k9LlZuy35QTYg95NzXmri3tB6yk4sO5XBaoh_PDRhgHfcepqTt5nFFY","stattrak":true,"normal_prices":[7462,9308,0,0,0],"normal_volume":[197,8,0,0,0],"stattrak_prices":[10392,9254,0,0,0],"stattrak_volume":[42,2,0,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWQiihlxEijDuEnorGLSLANkI-DpolR7Vf5hK5kdTlNbiwsg3YiNlCm3mq3Cgd6iZusetRUPJx-qTT2xaBb-MDauzVhA","stattrak":true,"normal_prices":[10134,12391,0,0,0],"normal_volume":[189,11,0,0,0],"stattrak_prices":[12856,20329,0,0,0],"stattrak_volume":[31,7,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWXD22kBEYuDOMnIrGLC7DN0N9FMF2E7NbsEWwkYXjMe3r51OKid1MmXr42i0cvSdttb0KAKpz86WCjgDfcepqQnV13Fs","stattrak":true,"normal_prices":[0,0,0,5122,4268],"normal_volume":[0,0,0,11,205],"stattrak_prices":[0,0,0,9967,5690],"stattrak_volume":[0,0,0,2,16]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWXTyxjCIqsi-HlorwOy7DAVp5Xco0W-cMsRO5x92yMe3r51Pd3d5Nn3isiy9LvSli5OZRAqYmq6OEiAuQZeIjoc5Uu2hkHeU","stattrak":true,"normal_prices":[28075,32000,0,0,0],"normal_volume":[51,5,0,0,0],"stattrak_prices":[33500,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWXCijhRUuoTi6l47rIyfCN0x1Xv0sHLBS9g6_m4GzMr-xsgOIidhMyC743C1O53ti5ecCWPAmrqeCjg2QNbU06ZBROr_5GjZZEpGb","stattrak":true,"normal_prices":[20001,24713,0,0,0],"normal_volume":[44,2,0,0,0],"stattrak_prices":[26127,0,0,0,0],"stattrak_volume":[4,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWTSWylhY3tjyXlrD0IDnFMlN5QMckKrtT5Uj8jILvNu7r4VfZj4gTySX_33gc6i5r475RBPAh_vKBjQrIZ7Q45sEHJ_y5DUPZghIomjw","stattrak":true,"normal_prices":[42304,37005,0,0,0],"normal_volume":[21,3,0,0,0],"stattrak_prices":[63960,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJHr4Ml93UtZuQ-ALs0O_koWzN-vr5wzaioNNzCyt2i5P6y856-9RUadzrKDS2wzEZKp9v8dpzTWWrA","stattrak":true,"normal_prices":[12120,0,0,0,0],"normal_volume":[38,0,0,0,0],"stattrak_prices":[17885,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJHn4Ml93UtZuFOFcthixx9PnNLvr4FeKid0QxCn82i4cuCo94OdTWPcgq6TVhgDIZap9v8c93PrlJQ","stattrak":true,"normal_prices":[13485,18100,0,0,0],"normal_volume":[62,3,0,0,0],"stattrak_prices":[17440,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWTSWmkBkYvzSCkpu3JCqUaFIjCpV4ReAD50S9w4bgZO7h4Vba399DmC36jHlI6yo_tr0LB71lpPNA0Lycxg","stattrak":true,"normal_prices":[13548,5740,5229,5386,5129],"normal_volume":[6,19,38,20,22],"stattrak_prices":[2227270,10168,9054,9155,7605],"stattrak_volume":[1,7,9,3,1]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJHj4Ml93UtZuFuJZ5BTuxNTlNLvm5ADejYIUmSysi3wY63lo4e0GAKsn8_CCig2SZap9v8fr59Kpfw","stattrak":true,"normal_prices":[11590,29859,0,0,0],"normal_volume":[40,2,0,0,0],"stattrak_prices":[18413,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWSyajhREioQKVko7qJH_4Ml93UtZuTORYsxm-w9K2ZLyztlTcioNAxHn2j3sauis_5b0DAKR0_vbX2QDFNKp9v8ccuootUQ","stattrak":true,"normal_prices":[11707,15882,0,0,0],"normal_volume":[55,1,0,0,0],"stattrak_prices":[18631,30000,0,0,0],"stattrak_volume":[3,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWSSahlhgjjDGMnYftbyiSaQUnX5BzELJY4Bi5w4DuMLvl4lSNiY1NmSj223wY7yo64b5TWKQ7uvqAVA9om-4","stattrak":true,"normal_prices":[10187,5018,4828,4693,4863],"normal_volume":[8,21,27,12,11],"stattrak_prices":[14764,8168,8689,8743,9442],"stattrak_volume":[2,9,7,1,7]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWQCC_kBkYvzSCkpu3eHKWaQ8jXpQkReZZtxa_x4HvYujh41HZg9pNzX2ojCJA7itpteYHBb1lpPM10bWGng","stattrak":true,"normal_prices":[15088,10068,8044,7859,7858],"normal_volume":[18,104,151,85,56],"stattrak_prices":[59057,14826,13915,13918,11638],"stattrak_volume":[1,15,8,10,2]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJuPhWSy2jlAkYvzSCkpu3eSjBPVcoCZQiEbZYtRawwYXjM7nktgXW3YkXyH-qiiJL7Hpr6-hRAL1lpPMoI6wPcw","stattrak":true,"normal_prices":[8671,4575,4270,4284,4842],"normal_volume":[3,25,49,15,19],"stattrak_prices":[60012,10158,6120,8125,8903],"stattrak_volume":[2,2,13,2,2]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsexWVSyxhxwYvzSCkpu3JSjFaQR0WZFwFOFYtBLtl4e2Nrmz4FHci4tAxCT8iipK6yc6sekKUL1lpPNhGLzFnw","stattrak":true,"normal_prices":[10135,9275,9733,0,0],"normal_volume":[71,64,18,0,0],"stattrak_prices":[13777,15603,17569,0,0],"stattrak_volume":[14,7,4,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWQiygnSIzsjO6lob-KT-JZgIlDJFxQbUIsxnsk9zjNrmz7wbfg4IQziT6hi9P5n5j674CWPIlqLqX0V-GxNuRmA","stattrak":true,"normal_prices":[22287,4572,4232,4331,4591],"normal_volume":[1,27,55,5,10],"stattrak_prices":[24946,6348,5400,6454,8270],"stattrak_volume":[4,12,6,2,4]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo_FWQSC0nQk0py-MiorGLSLANkI-AsF1FrUI4US9wdeyZujg5lOIiIwTzHn823hO7X5rsrlUWatxqKWEjRaBb-NTNYcBTg","stattrak":true,"normal_prices":[22979,5161,4511,4857,4859],"normal_volume":[4,30,55,8,21],"stattrak_prices":[23100,7331,7188,7558,7117],"stattrak_volume":[3,2,3,6,3]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJuPhWSSahkA4zjD-KiIr4LRTLN1F4TowkTeFc5kHpwNGzY--05VPd34NMxCz8jiJI6ns_4LtUVaYtqKHQ3gHDL_RjtjQ2sZy9","stattrak":true,"normal_prices":[0,4934,4518,4759,4723],"normal_volume":[0,23,40,6,15],"stattrak_prices":[34598,7091,7270,10677,6969],"stattrak_volume":[2,9,2,1,4]},"857":{"index":857,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJsfBWSyi-lA4kpi66ip3wMibGAVp5Xco0W-8JuxK-k9y0Mbjj7wTXioNHmH33i3wcvCY6670CVKt3r_LTigyTMrUjoc5Uv9yDDqU","stattrak":true,"normal_prices":[5738,4848,4585,5572,5679],"normal_volume":[52,57,73,9,13],"stattrak_prices":[9742,7378,7159,7589,7307],"stattrak_volume":[11,10,9,5,2]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1c9uK9cZtnIfOYBWmZx-tJo-5WXzyhhREijDGMnYftby3FOgUhAsYjTeZetBm4xtXkNbiw5lPbi9pGxCr92itB7C9q4ekDU6c7uvqA74P7bNU","stattrak":true,"normal_prices":[13630,5754,4980,5381,4974],"normal_volume":[7,39,91,18,18],"stattrak_prices":[75111,8308,6792,7062,6785],"stattrak_volume":[1,8,15,7,1]}}},"521":{"name":"Nomad Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2hfbBpL_-BQDPEw-hz57cxTnCxkEh_5jnVzor8dymXbgAiAsFyEOEMsBW8l9O1Ne38p1uJmh0Kkm0","stattrak":true,"normal_prices":[13649,13649,13649,13649,13649],"normal_volume":[781,781,781,781,781],"stattrak_prices":[13886,13886,13886,13886,13886],"stattrak_volume":[132,132,132,132,132]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_iKMXCVw_1JvOhuRz39xEV_sT6Bn9mueX3EP1QjApd4QbZe5EW6wIDmNO7islfW391EzCWt3TQJsHib9FqZhg","stattrak":true,"normal_prices":[75006,21516,14923,14637,14322],"normal_volume":[8,147,331,37,40],"stattrak_prices":[0,26485,17654,19214,17557],"stattrak_volume":[0,26,41,8,6]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMXOR0etJpfNrTieMmRQguynLm96uciqSawMgX8Z1RrEIs0G8wN3nYbvjs1fZ2I1GmC-o3CofvSdi4PFCD_SLffhL6Q","stattrak":true,"normal_prices":[24000,11478,9730,9258,8915],"normal_volume":[4,53,116,25,51],"stattrak_prices":[86959,14739,10719,10748,10527],"stattrak_volume":[2,14,18,6,4]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMWOR0f56td5lRi67gVN252yBy4uteS7FaQ4kA5B5Q7EMthW6wdO0Zu7m5VTXgthFzy__ji1L8G81tIOO-uWD","stattrak":true,"normal_prices":[16242,10410,9043,8678,8287],"normal_volume":[5,63,80,43,44],"stattrak_prices":[36393,10955,9208,13111,9595],"stattrak_volume":[2,15,35,4,11]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GSMWGRxetJvOhuRz39wUUksW7Vm4n7d3yUO1InXsdxTeQDukO4l9zuN7_j5QzYjIlFy3n6jDQJsHjNMoy1vA","stattrak":true,"normal_prices":[28681,30424,0,0,0],"normal_volume":[717,37,0,0,0],"stattrak_prices":[30704,54772,0,0,0],"stattrak_volume":[128,9,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GdMXOZxutkj-57Tie0kCIrujqNjsGsIH-WOlUnCpp3FOAMshe-xNHgZe20slPX2YNFn336iy1L6Stp47oET-N7rXiT8mY0","stattrak":true,"normal_prices":[18942,21038,0,0,0],"normal_volume":[444,22,0,0,0],"stattrak_prices":[20822,29569,0,0,0],"stattrak_volume":[64,5,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWORzO9ls_R6cCW6khUz_W6Hyt-vJXifaQFzCJNzR7RZsxLsx4K0N-_m5AbZg9kXn3r93S1NvHx1o7FV4ooHb_M","stattrak":true,"normal_prices":[14921,13335,12482,12944,13359],"normal_volume":[103,117,164,18,14],"stattrak_prices":[19082,16653,15269,14565,23273],"stattrak_volume":[20,13,19,4,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWqR0-x6td5vTi22qhEutDWR1NqsdS6Wa1UpC8cjQ7QJ5BHqx9zjZurgsgfZiYgXn3r7hy8b6yo_5OocEf1y7tM7KOE","stattrak":true,"normal_prices":[23079,27039,0,0,0],"normal_volume":[548,20,0,0,0],"stattrak_prices":[24609,32456,0,0,0],"stattrak_volume":[69,1,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMXSExOt6j-pnRi-2qhAitzSQl8GteHyfZ1coCZB3FLUDthK_kdKzZr7i4leN3okTxH6t2i9M6XxpselRT-N7rRxzBN3w","stattrak":true,"normal_prices":[0,0,0,10948,10099],"normal_volume":[0,0,0,22,271],"stattrak_prices":[0,0,0,11796,10216],"stattrak_volume":[0,0,0,5,75]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMXWFw_dJveB7TSW2nAcitwKJk4jxNWWVOlUiWZt0RO4MtkW8ldK2ML7i4wHW2t9Bm3n2iH5Kv3pttuwBU6Rw5OSJ2BsJTr2y","stattrak":true,"normal_prices":[121781,130577,0,0,0],"normal_volume":[79,3,0,0,0],"stattrak_prices":[122406,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMXSR0f5-ufNscCSyhx8rtjSfn4vGLSLANkI-DZF4E7EL4xiwxILgMLni41SM3o8Uz3j4h3tJ6ik_sO9WU_F3-KPUjRaBb-NU6ZNx2A","stattrak":true,"normal_prices":[81543,92119,0,0,0],"normal_volume":[68,4,0,0,0],"stattrak_prices":[77613,0,0,0,0],"stattrak_volume":[11,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWWcwO19oORoXSWMmBw1sTGAk5X8JRTLN1F4TowlROMLuxe8k9DjP-rj4QONjNhAnCuojiNLvytpt-pRUPci-PffilzIL_Rjtq5H6bYu","stattrak":true,"normal_prices":[114518,402162,0,0,0],"normal_volume":[40,1,0,0,0],"stattrak_prices":[110017,350000,0,0,0],"stattrak_volume":[4,2,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhh2jDGMnYftb3mSbQF0A5NzEbMI5BO4l4bvNujh5gPaj95Mzy75iStI7ito5-tXVvY7uvqAlag3iO0","stattrak":true,"normal_prices":[37524,42447,0,0,0],"normal_volume":[106,4,0,0,0],"stattrak_prices":[40979,61872,0,0,0],"stattrak_volume":[8,1,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhh1jDGMnYftby6SPAV2X8N3Q7NcsEa_lNezMuPq5wzY2IpHmHn6j3tNvytq5OhXBaY7uvqAC7ut2F0","stattrak":true,"normal_prices":[43444,46703,0,0,0],"normal_volume":[137,3,0,0,0],"stattrak_prices":[41503,200000,0,0,0],"stattrak_volume":[12,1,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWWc1Otyj-1gSCGn2011smSEyIz6eH2XaAIkDpt3TLQDtEXpwdHmYe_itgTd3o9DySr8hihXrnE81fc4CIg","stattrak":true,"normal_prices":[22890,14680,13468,12739,12965],"normal_volume":[27,97,156,99,106],"stattrak_prices":[29528,20232,17509,16504,17821],"stattrak_volume":[6,14,21,10,17]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhh0jDGMnYftb3rDbQcmCsMlQrEP5xTsxIa2Yuy2tVDdjIITyi352iob7C1j47tUBfA7uvqAy8gEoCY","stattrak":true,"normal_prices":[36983,43479,0,0,0],"normal_volume":[96,3,0,0,0],"stattrak_prices":[38832,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMWOf0f56tfNWXyGyhhhzjDGMnYftbyqeblVzX5ohROZbtxfpxNDvZOjmsVSKj98Wzi_5jilO6ilose8GBKE7uvqAQvAc2Rg","stattrak":true,"normal_prices":[42327,41466,0,0,0],"normal_volume":[126,4,0,0,0],"stattrak_prices":[41585,0,0,0,0],"stattrak_volume":[17,0,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWGf0-1ztN5lRi67gVMh6mjXwo6ud3rEOgVyA5ZxQeFZtBDpk9e0MrzmslDW2d5GzSit338a8G81tHbrR9Yc","stattrak":true,"normal_prices":[17480,12993,11811,11435,11316],"normal_volume":[37,108,141,71,58],"stattrak_prices":[26512,14691,13918,14971,13472],"stattrak_volume":[8,23,21,13,6]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GCMWiZzetyj-1gSCGn2xhz5GyHwtr_dS7EOlR1DZtyEe8MsBO-xNKyNbnq7w3b2d8WzC7-jSNXrnE8rdGSE7w","stattrak":true,"normal_prices":[38401,16932,14988,15047,14725],"normal_volume":[63,348,575,275,206],"stattrak_prices":[78079,23609,19210,19461,21609],"stattrak_volume":[4,45,66,35,21]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_iKMWOU0e9ij-1gSCGn20x_5jnRnN37dH-TO1MgXsAhTeUPt0XskYLiN7-24AaPiIoRniX_2HxXrnE8-aG-K_E","stattrak":true,"normal_prices":[20155,9853,8574,8421,7817],"normal_volume":[7,45,71,24,47],"stattrak_prices":[76547,11505,9384,11449,10904],"stattrak_volume":[1,10,33,5,12]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_GeMX2Vw_x3j-1gSCGn20R15TyGnNv_cS3GZlUnA5smTLEM4xDpx4bmY77h51OMiIJNziX53SJXrnE8R49sMsc","stattrak":true,"normal_prices":[24357,21596,21420,0,0],"normal_volume":[197,197,45,0,0],"stattrak_prices":[26396,24953,25403,0,0],"stattrak_volume":[33,29,9,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMWqV0uZJpOBncCW6khUz_WzWm9esdXOfbwRyWZR0ROACthDulYeyM-m34AeL3doXxX-s2Hwb7311o7FVDfDKraI","stattrak":true,"normal_prices":[13152,8504,7536,7720,7734],"normal_volume":[7,29,65,20,41],"stattrak_prices":[57893,9669,8393,9331,8485],"stattrak_volume":[3,13,28,5,14]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-ODMWmZxuZio_V7Rjm2qhEutDWR1N__eS6WbFMmD5MhFOJZ4xjswYHhMbzktFPYi45BmS3_2yJO6Cppt-4cEf1yoG4tbbU","stattrak":true,"normal_prices":[16230,10646,9730,9250,9283],"normal_volume":[8,72,123,34,28],"stattrak_prices":[72938,12577,10491,10915,10433],"stattrak_volume":[1,13,24,10,4]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H_iKMWGf0-tlpN5rQDu2lBEYvzSCkpu3IC_EawN1WJMjRrMIsBiwlYXiPr7h5VOKgoJAyi37hy0f6Chp5egFVr1lpPOSgy8u-g","stattrak":true,"normal_prices":[14764,10317,8291,8336,8255],"normal_volume":[8,33,86,23,37],"stattrak_prices":[31903,10335,9104,10725,11335],"stattrak_volume":[2,16,30,3,3]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1U-uaqZ6t_H-OcMXeF0_56td5lRi67gVMhsDiHyduhcS7BaQ4oApUmRrFf4ES-k9GzPumxsQLej44Wzi37i3wb8G81tLNXf6VL","stattrak":true,"normal_prices":[29233,13781,11302,10799,10623],"normal_volume":[9,92,258,25,49],"stattrak_prices":[22928,16379,12926,14221,13388],"stattrak_volume":[1,15,47,2,13]}}},"522":{"name":"Stiletto Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s29fK1hJeSHASnCmO8v4bc_HCjilkkismTWyNutciqealMhDsR5F7MM4UWwlYC1Zr7n-UWA3E6ZCYCt","stattrak":true,"normal_prices":[19637,19637,19637,19637,19637],"normal_volume":[479,479,479,479,479],"stattrak_prices":[19431,19431,19431,19431,19431],"stattrak_volume":[103,103,103,103,103]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-bF1iHxOxlj-1gSCGn2xl-426HnourJHKWaQYkDpt5FLMKuxW4m9bvNO7k4ALYjIxNxH77iHxXrnE8aQrZRtQ","stattrak":true,"normal_prices":[128733,30130,21626,21594,20097],"normal_volume":[13,72,166,20,39],"stattrak_prices":[751319,34843,28365,26899,23394],"stattrak_volume":[1,16,15,4,8]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHliEwP5zj_R7TSi9qhEutDWR1Niud3ufbFMpA8B0TeNbuxW6w9PuP-_ntlTWi9oUnir5j35K5ypq67wcEf1y6MY6rfc","stattrak":true,"normal_prices":[38937,18195,14393,14152,14326],"normal_volume":[4,29,100,23,26],"stattrak_prices":[78506,22382,18382,17314,18799],"stattrak_volume":[1,13,18,1,5]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHliUwP5mvORWQyC0nQlpsmuDzNj6d3-SaQ4hCpN1FOMM40LuwdeyMe625gOIidlMmXn6hi1N6DErvbhNNNdMtg","stattrak":true,"normal_prices":[28935,14560,13366,12855,12418],"normal_volume":[6,55,120,21,28],"stattrak_prices":[98666,20305,17307,16241,19682],"stattrak_volume":[1,11,8,2,10]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SD1iWwOpzj-1gSCGn20h2smqHzNuqcy6TawckApJ5EeIJuxPpwNaxMejmtQLa2o5Nnnj3hy9XrnE8H9hk9aQ","stattrak":true,"normal_prices":[39526,42615,0,0,0],"normal_volume":[451,6,0,0,0],"stattrak_prices":[41663,61864,0,0,0],"stattrak_volume":[80,3,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SAFiEyOlzot5mXSi9khgYvzSCkpu3JyjBawQkXsF0EeEO4Ea_m93iNLjk71PfjtlDxSms3S1M7yhj47wLA71lpPOYHm96Lg","stattrak":true,"normal_prices":[26921,27999,0,0,0],"normal_volume":[441,9,0,0,0],"stattrak_prices":[28517,48552,0,0,0],"stattrak_volume":[72,3,0,0,0]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1idwPx0vORWSSi3kCIrujqNjsGgI3mSbgIoA8N3TeICtBC-kYG0Nenl4QPYjIJHmX6qingY5yZut-cHT-N7rRs0KjZk","stattrak":true,"normal_prices":[28470,30491,0,0,0],"normal_volume":[520,21,0,0,0],"stattrak_prices":[34456,44500,0,0,0],"stattrak_volume":[62,4,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iD1etzvN5iQSC1kCIqtjmMj4K3dCqUbgVzDJQiR7FcshW8kNfvNejh5wKPgokXyS__3y1N634_5OsKVr1lpPNkLaxKOQ","stattrak":true,"normal_prices":[0,0,0,14557,12982],"normal_volume":[0,0,0,19,392],"stattrak_prices":[0,0,0,15615,14048],"stattrak_volume":[0,0,0,8,79]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JZgMiD5UkTecD4Ra7w9LkNrzm4QXa2oJGnC-sjntM63pstbsEVvJ0qbqX0V8oOnXyXg","stattrak":true,"normal_prices":[177458,205000,0,0,0],"normal_volume":[78,5,0,0,0],"stattrak_prices":[180890,0,0,0,0],"stattrak_volume":[9,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFMYmE-VfuxK-x9O0Yu7n4wDWgoxFyyz7jy4d53w65uxTVqR2qfHTi1vfcepq9g3r7qM","stattrak":true,"normal_prices":[106782,115132,0,0,0],"normal_volume":[58,5,0,0,0],"stattrak_prices":[112579,0,0,0,0],"stattrak_volume":[3,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuFrJbtRW_xNDhYbyxsgWKioJCxS7-jCga7Sto6usFUfIkq6bS3gCTMap9v8f8BQu6Gg","stattrak":true,"normal_prices":[181759,201650,0,0,0],"normal_volume":[23,1,0,0,0],"stattrak_prices":[182917,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWXEbwAgX5RwQucPuhPrmobhN-2z4w3c2IkQyiz2jC0c7C04tusKUPIn5OSJ2D2EqjOB","stattrak":true,"normal_prices":[45429,50983,0,0,0],"normal_volume":[108,1,0,0,0],"stattrak_prices":[45906,90000,0,0,0],"stattrak_volume":[10,2,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWWRblMkAsRwELJf4RK8kNDlZbuxtFDX3o5EyC_7h3sb6XxrsO0GAvEh5OSJ2JbXapRd","stattrak":true,"normal_prices":[60043,63290,0,0,0],"normal_volume":[150,6,0,0,0],"stattrak_prices":[61477,0,0,0,0],"stattrak_volume":[6,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iSzftztN5lRi67gVMksmTczt-pcyiVOFAnCpJ2FOMOu0K4x9XmYuzq4APa3YgTz3mvjH9K8G81tONtHs_a","stattrak":true,"normal_prices":[33494,21559,19993,19191,18883],"normal_volume":[20,49,73,38,59],"stattrak_prices":[55723,28588,25456,22090,22315],"stattrak_volume":[5,13,7,2,11]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWXBPQ8lCcR2E-QLsRXuwNHuMeiwsQKIjokWm3r2hytIvypp4O4BBaIi5OSJ2HdaKYE7","stattrak":true,"normal_prices":[43225,50166,0,0,0],"normal_volume":[112,2,0,0,0],"stattrak_prices":[49659,57167,0,0,0],"stattrak_volume":[4,4,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWXGb1NxD5R1RLYNtEa8k9zkP-nk4VPeg4NAySSr3S0dvC5qtugCUvB25OSJ2JxPHqta","stattrak":true,"normal_prices":[49895,50378,0,0,0],"normal_volume":[136,4,0,0,0],"stattrak_prices":[52142,57000,0,0,0],"stattrak_volume":[5,1,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iWzvx1teVWQyC0nQlp4zjVyNn4cX-SPQcjCMBxRbIL40Kwl9SzNu3i5wSLjY9Byyz93X4f7jErvbjY1bBrVA","stattrak":true,"normal_prices":[22783,17577,16734,16628,16853],"normal_volume":[18,55,73,40,23],"stattrak_prices":[29528,20565,18995,17851,19194],"stattrak_volume":[1,13,7,1,1]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1ifyOJztN5lRi67gVNzsWTdn92oJy6XaVUgWJQlQuALtxS4l4HnMrzk5VDc2d1Mmyj9hn8b8G81tHhX34fn","stattrak":true,"normal_prices":[48974,25715,22566,20787,20195],"normal_volume":[32,164,223,131,75],"stattrak_prices":[59113,32750,29321,34742,30428],"stattrak_volume":[4,16,29,9,6]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-bF1iUxf53pN5lRi67gVN_4mrQzt74eCmebgUhXJFzTbQMshm-wd2zM--xtAbYi48Xmy_-3CMb8G81tPLKibvi","stattrak":true,"normal_prices":[19789,12983,12056,12006,11935],"normal_volume":[2,49,86,21,30],"stattrak_prices":[69933,13670,14807,16400,15041],"stattrak_volume":[1,10,16,3,1]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SA1iKxOxksd5lRi67gVNy4GjTydv9JHvEZgJzC5NxTecD4xe9ltGxP7_r7gaK34hMzyr_jiob8G81tBYNQxXS","stattrak":true,"normal_prices":[38666,32377,34244,0,0],"normal_volume":[109,102,37,0,0],"stattrak_prices":[51285,41212,42127,0,0],"stattrak_volume":[16,15,8,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHlidxP1-j_VoQRa_nBovp3OEzoyhI3nBP1AlX5AkF7VZtRG6kd2xM7vj7lCIjoNDxSj_h34d6Hpt_a9cBqAgwT_I","stattrak":true,"normal_prices":[34325,12369,11856,12093,11820],"normal_volume":[7,40,45,21,25],"stattrak_prices":[39339,14366,13230,13000,16241],"stattrak_volume":[2,8,15,4,3]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AHlieyOl-pPJ9XSCjkCIrujqNjsGpdn2eOgZxWZJ2FO5Z4xW9kdyxYbjjsVGK2thEnC2th3lA63xj4O8HT-N7rY8ygNQY","stattrak":true,"normal_prices":[41096,15466,13698,14204,13206],"normal_volume":[3,47,110,18,26],"stattrak_prices":[96575,20440,17501,17376,20862],"stattrak_volume":[2,2,15,2,4]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-bF1iWzvxzo_VWTSahkBwrjDGMnYftb3zCa1cgCZMhFONf4BDukofkZe7i5wPbid8Wniqtji5B6iptseoFAvI7uvqA6NgizlQ","stattrak":true,"normal_prices":[31278,12840,12175,12050,11964],"normal_volume":[9,38,51,22,27],"stattrak_prices":[28000,14693,13286,13400,17613],"stattrak_volume":[1,12,20,1,5]},"857":{"index":857,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-SH1iUwON3o-J8XBajhxQ0vjy6lob-KT-JZw52XpsiQuADtxjsm4GxPum37lSLjINBni7-iS1K7S9v5OkAUKIlq7qX0V-S_V0ZqQ","stattrak":true,"normal_prices":[20048,18490,17284,18723,16593],"normal_volume":[120,138,240,22,14],"stattrak_prices":[25163,20210,18778,19195,34430],"stattrak_volume":[27,16,36,5,2]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I-_uibbB5L8-AAViA1PxmvORWQyC0nQlptmmGmdeqcHyebQ5zXJVzFrMC4RO8moHlZOPj4Fba2dlAzin3iX9L7DErvbgj2cX5Sw","stattrak":true,"normal_prices":[46259,20240,15425,15494,14238],"normal_volume":[11,81,298,30,42],"stattrak_prices":[47500,22916,18283,19337,17179],"stattrak_volume":[5,18,30,7,1]}}},"523":{"name":"Talon Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_20","set_community_21","set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s25YaBiN_2SBWKCj7ghsrRrTHDnzB8h4mTRw9iudC_DPFVyCsF3R-Zc4xK_ldXgNb7qsgDAy9USS1NPX9M","stattrak":true,"normal_prices":[30614,30614,30614,30614,30614],"normal_volume":[546,546,546,546,546],"stattrak_prices":[30933,30933,30933,30933,30933],"stattrak_volume":[84,84,84,84,84]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMW-J_vlzsvJWQyC0nQlp5zzcw9qoIHuRZgV2A8EhF-IDtRC6l9PjN-zk4VHW2dhCyC-qjCtJ6TErvbjqnV9ukg","stattrak":true,"normal_prices":[200000,50420,32742,33909,30407],"normal_volume":[4,72,185,22,29],"stattrak_prices":[938161,60454,40736,39825,42000],"stattrak_volume":[2,16,10,2,4]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_vp3oORWWjuxlBMYvzSCkpu3Ii2TbwEjCZpzTOUIskawlYCxN7nisg2I2olAmyqrhy4duC5i67wKB71lpPPq3A_5rQ","stattrak":true,"normal_prices":[60767,25971,21434,21385,21410],"normal_volume":[3,43,98,13,31],"stattrak_prices":[121412,34708,25998,24264,27864],"stattrak_volume":[1,13,15,1,1]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_up3oPFlSha_nBovp3ODydepeCqeOwBxC5NwQ-NZ5BDswIKxP7y04wzdgt9NzC_33XlBuChr_a9cBq0veVHG","stattrak":true,"normal_prices":[39392,24292,20295,21019,19484],"normal_volume":[8,38,90,31,33],"stattrak_prices":[124177,35588,22399,23280,29500],"stattrak_volume":[1,7,13,2,4]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaR_uh3tORWQyC0nQlpsmXcnNaoeHuTZwUiWMZzRrVZsxm9x9ThNrzj4QCPjdhNmHj73S9KujErvbhX2ACGeQ","stattrak":true,"normal_prices":[73506,94020,0,0,0],"normal_volume":[484,23,0,0,0],"stattrak_prices":[80026,105398,0,0,0],"stattrak_volume":[70,2,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWae_vp_t-R7cCahlBMgtgKJk4jxNWXFOFN1XMF0Q7FfukW7moCyN-nq7gfejopDmSn73S4c7Ctu4esDBaUt5OSJ2J-DVBrR","stattrak":true,"normal_prices":[44706,46778,0,0,0],"normal_volume":[384,19,0,0,0],"stattrak_prices":[52159,56189,0,0,0],"stattrak_volume":[52,3,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_v1iteRlcCK9nBsijDCAnobsLGWUaFB1WZAiE-Vf4UK5m93vP-3ntFGPidlDzn36jCobuy5usOwKA6oi5OSJ2B5Cd8s9","stattrak":true,"normal_prices":[0,0,0,26409,23488],"normal_volume":[0,0,0,27,500],"stattrak_prices":[0,0,0,33355,25207],"stattrak_volume":[0,0,0,11,58]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_vxjsvhWQiihlxEiuieAnrD1KCzPKhgjDJt0TOZYsEWxm9C1ZOzqtgfW3oITxS_3jntJ6y5t4-YFA6YlrvaCkUifZtYs94Eq","stattrak":true,"normal_prices":[263265,253386,0,0,0],"normal_volume":[78,5,0,0,0],"stattrak_prices":[282875,0,0,0,0],"stattrak_volume":[5,0,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_v13oPFhRju2qhAmoT-Jn4bjJC_4Ml93UtZuF-MMt0btxtHlZr7m5gKKjYwRmH2oj3gcuH095e1QAqVwqKzUjluTMKp9v8cWgnOBZw","stattrak":true,"normal_prices":[172143,174707,0,0,0],"normal_volume":[72,3,0,0,0],"stattrak_prices":[203790,0,0,0,0],"stattrak_volume":[7,0,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_ux6seJiXyyyhxEYvjyXmIP8KDHCOml8U8UoAfkC4UbuldyzNOy35lHc3opEyS2qhiocvHs_5bsHVPIgq_bQhgrBM7w9_9Bdc1T7Obpq","stattrak":true,"normal_prices":[280509,264014,0,0,0],"normal_volume":[17,1,0,0,0],"stattrak_prices":[525834,0,0,0,0],"stattrak_volume":[2,0,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_ux6peRtcCW6khUz_WqHnNmqJH7GPwEhXJN5F-Ff5hPrlt3uN7vhsw2IidpEmyyq3yxJ6Cd1o7FVPYygbVE","stattrak":true,"normal_prices":[66772,40448,36248,35646,35693],"normal_volume":[16,52,80,47,50],"stattrak_prices":[60476,51221,42055,40337,40530],"stattrak_volume":[2,8,11,6,6]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_uh5ouJsSxa_nBovp3PTm96sdnmRPwcnCcB0QeVcsEG-mtLiMunn51CI2YhByy-ojnhLvHo5_a9cBs8s08Rw","stattrak":true,"normal_prices":[40235,30492,28336,27564,27270],"normal_volume":[19,43,70,38,43],"stattrak_prices":[59001,31500,31119,34295,29074],"stattrak_volume":[2,6,7,9,6]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_uF_vORtcCW6khUz_WqBzd39Ii_CaVApAsYlEeUO4xXslNexY7nl5ALWjI0WmSqq3XlN5yx1o7FV8eN3eSM","stattrak":true,"normal_prices":[89077,46966,37222,36322,37240],"normal_volume":[40,76,398,209,117],"stattrak_prices":[98827,66267,60224,45553,52771],"stattrak_volume":[3,12,26,19,18]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMW-J_upyoOB9cCW6khUz_WTQn9iqdXjDOwEjDsdyQuQC5BHpkNyxML_i5Abeio9Cyy362H9N7yZ1o7FVCmRPBKA","stattrak":true,"normal_prices":[55456,24079,19239,19745,19160],"normal_volume":[8,41,78,13,31],"stattrak_prices":[125949,27986,22208,25838,23662],"stattrak_volume":[2,10,16,2,4]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_vRzsvNocCW6khUz_W-Gy4n9cC3BOwIhA5t2ELFbuhm8x9LhYevq5AzZ3tkUmyr42HtIvXp1o7FVC_3pdDk","stattrak":true,"normal_prices":[66204,50886,48277,0,0],"normal_volume":[108,112,48,0,0],"stattrak_prices":[79444,61746,61862,0,0],"stattrak_volume":[23,12,5,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_uNzo-lWWyi9qhEutDWR1ImueHmRbwFzCJF5RO8OtRXpkNyzM-rn51aP2YpEyS73ii5Auits6u0cEf1yj0RX76A","stattrak":true,"normal_prices":[38350,20046,18962,18966,18728],"normal_volume":[6,50,82,25,45],"stattrak_prices":[80879,23718,20287,22342,20313],"stattrak_volume":[2,10,12,5,3]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSA_uB_t-l9XD2hnA0ijDGMnYftby3GOA4pX8EiReRYtkbtkIXkY-y05FeIg4NCyi79ji4d6Hw65-0CAqU7uvqAN4w4WLQ","stattrak":true,"normal_prices":[53071,25870,22312,23253,21505],"normal_volume":[3,53,148,29,37],"stattrak_prices":[250000,35232,26514,31663,27389],"stattrak_volume":[1,7,16,1,7]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_20","set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMW-J_uh5ouR6Wxaxmg8isjG6lob-KT-JZgUhDZVwRe4P5xm-mtfiZOnkswTc2YtEnC36jC4bunk94e4HVvAsrLqX0V8QiPlhEA","stattrak":true,"normal_prices":[38262,23034,19770,19658,19299],"normal_volume":[5,37,91,23,29],"stattrak_prices":[132579,28899,22096,22932,21805],"stattrak_volume":[2,5,7,7,6]},"852":{"index":852,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjUpZjwJSTQAVp5Xco0W7UItUPuk4XiMr_q4gXXidkXzn73jipJvCw-4r1QWPEkr_DX2lrFYLAjoc5U3elI6r0","stattrak":true,"normal_prices":[79602,80238,0,0,0],"normal_volume":[115,3,0,0,0],"stattrak_prices":[85290,117528,0,0,0],"stattrak_volume":[13,2,0,0,0]},"853":{"index":853,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjXpZjwJSTQAVp5Xco0W-MOsxPpkILlN-zmtg3YiYlEz3qqiyxAuHw55ecHUaAl8qDR3A7EOOUjoc5UCy3x4c0","stattrak":true,"normal_prices":[95872,93843,0,0,0],"normal_volume":[140,5,0,0,0],"stattrak_prices":[111504,160000,0,0,0],"stattrak_volume":[7,1,0,0,0]},"854":{"index":854,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjWpZjwJSTQAVp5Xco0W-8M4RG7wdPhYrvm4FPZio1Ezi323HhN6ytp47tRWKcsrqCBigzDOLUjoc5UMQO3baE","stattrak":true,"normal_prices":[79863,80726,0,0,0],"normal_volume":[114,4,0,0,0],"stattrak_prices":[86037,150000,0,0,0],"stattrak_volume":[12,1,0,0,0]},"855":{"index":855,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_up5oPFlSjuMhRUmoDjRpZjwJSTQAVp5Xco0W-8LuhXrm9ayMuPn4gHbitgUynn_2ChM531itu5UUqQtqKXUiwmQNrIjoc5U6_TK_Fs","stattrak":true,"normal_prices":[88947,91500,0,0,0],"normal_volume":[142,3,0,0,0],"stattrak_prices":[95056,117670,0,0,0],"stattrak_volume":[9,1,0,0,0]},"856":{"index":856,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWad_uN3ouNlSha1lBkijCqMnoDuHifOOV5kFJMlQecC4RW5x4bkMLvgsgGP2IIXzy_-iysaunlo4bwEBfYh_aLS3A7fcepqAVr8ibw","stattrak":true,"normal_prices":[52521,59167,0,0,0],"normal_volume":[768,23,0,0,0],"stattrak_prices":[63867,66234,0,0,0],"stattrak_volume":[76,6,0,0,0]},"858":{"index":858,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMWaB_up3veB6TDygqgoutzKSpYPwJiPTcAYoAsB4E-cIsRXqktKyMOzm4QWL3d4QziT53ykfu3tqtuYHBaJz8qzJz1aWxqN5i4Q","stattrak":true,"normal_prices":[34853,30294,28375,29158,33003],"normal_volume":[104,127,210,19,17],"stattrak_prices":[40672,39172,31899,40440,36230],"stattrak_volume":[18,15,20,2,2]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_22","set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1M5vahf6lsK_WBMXSf_v5jovFlSha_nBovp3PTzIuudXLGbVMkWJd0ELEPsEa6wNa0PunktASMj44QzSr2hiwcuHxt_a9cBqbhUpOe","stattrak":true,"normal_prices":[95682,34340,24944,25053,23418],"normal_volume":[9,87,245,39,54],"stattrak_prices":[217975,38561,28405,28571,26134],"stattrak_volume":[1,10,35,4,8]}}},"525":{"name":"Skeleton Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s29Y6FhJeScACnDkL8j6LU8GS3mwUh24G-Bno2tIymeblMgC5R3F-ECsBK6k4XuN-Lh-UWA3P3GyEv9","stattrak":true,"normal_prices":[24577,24577,24577,24577,24577],"normal_volume":[773,773,773,773,773],"stattrak_prices":[24865,24865,24865,24865,24865],"stattrak_volume":[142,142,142,142,142]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-bF1iHxOxlj-1gSCGn2011t26Bytr_cn-VZwciXJskRLQKuka9k4ezYrnqtQXf2YhGzC6viXxXrnE8k9yhp-k","stattrak":true,"normal_prices":[161173,35275,27612,27161,24316],"normal_volume":[13,160,503,68,104],"stattrak_prices":[1913466,46287,31985,32372,40582],"stattrak_volume":[1,29,61,20,12]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHliEwP5zj_R7TSi9qhEutDWR1N3_cnmWOAJzXJVwF-AO4xW8ld3iY-mz4lff399Mzi_7i39M6Cc947wcEf1y1H02ID0","stattrak":true,"normal_prices":[30504,15860,13193,13205,13081],"normal_volume":[11,79,185,37,62],"stattrak_prices":[175829,21039,16942,16000,18521],"stattrak_volume":[1,15,35,1,9]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHliUwP5mvORWQyC0nQlp42zQydivIn_EaQFzXpRyFLIDuhe-ldXmZOLg7lSP3dlAmC79hn5N5zErvbgU3gnTIw","stattrak":true,"normal_prices":[29007,13838,12620,12300,11603],"normal_volume":[11,88,252,52,59],"stattrak_prices":[50000,17708,13307,18089,14756],"stattrak_volume":[3,17,33,5,19]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SD1iWwOpzj-1gSCGn20kjt2-En9mpcCmQag8hXsciQeJYthW9kILkMLji4g3Ygo8Uznj6jX9XrnE8raC5r1M","stattrak":true,"normal_prices":[51010,54837,0,0,0],"normal_volume":[816,50,0,0,0],"stattrak_prices":[54412,73822,0,0,0],"stattrak_volume":[135,3,0,0,0]},"409":{"index":409,"max":0.08,"min":0,"rarity":5,"name":"Tiger Tooth","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SAFiEyOlzot5mXSi9khgYvzSCkpu3dyjBagAlXMB4R-YOt0OxlIe2ZuuztQXdjNhAySn52i5Mv3tj5rlRUb1lpPPHmhG_Tw","stattrak":true,"normal_prices":[31672,33883,0,0,0],"normal_volume":[474,29,0,0,0],"stattrak_prices":[32477,52305,0,0,0],"stattrak_volume":[75,3,0,0,0]},"410":{"index":410,"max":0.5,"min":0,"rarity":4,"name":"Damascus Steel","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iUwON3o-J8XBa_nBovp3PUm9_7JHOWZ1QjAsN0ELUD5EHpwdGxP7nksQTbgoxEyXj833gf7S1j_a9cBoUrfx8l","stattrak":true,"normal_prices":[23040,21330,19434,19650,19757],"normal_volume":[130,121,224,28,22],"stattrak_prices":[29473,25443,20778,20232,23000],"stattrak_volume":[18,32,32,8,2]},"413":{"index":413,"max":0.08,"min":0,"rarity":5,"name":"Marble Fade","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1idwPx0vORWSSi3kCIrujqNjsGtdy-SbFUhApd1QbZbsUa7l9LmMurktgza3tgQxC38iS0Y6Hlo4rsKT-N7rTdSaj39","stattrak":true,"normal_prices":[37718,44114,0,0,0],"normal_volume":[536,26,0,0,0],"stattrak_prices":[42807,52867,0,0,0],"stattrak_volume":[60,4,0,0,0]},"414":{"index":414,"max":1,"min":0.4,"rarity":3,"name":"Rust Coat","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iD1etzvN5iQSC1kCIqtjmMj4K3d37COgAhXJEkQedc4ETuk4fkP7jq4VON3otFnCz_iHwdvH5qteZRA71lpPNCX9mpHA","stattrak":true,"normal_prices":[0,0,0,15909,13217],"normal_volume":[0,0,0,32,446],"stattrak_prices":[0,0,0,20381,13700],"stattrak_volume":[0,0,0,9,55]},"415":{"index":415,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Ruby)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iC1Oxvj-xoXSu_kBQ9tjm6lob-KT-JPVAnCJojELJetUG5wIC1ZLjr7wXXgolFmCivjXhN7Hxi4-YEUKok87qX0V8jai52PA","stattrak":true,"normal_prices":[254236,254822,0,0,0],"normal_volume":[78,4,0,0,0],"stattrak_prices":[238445,275000,0,0,0],"stattrak_volume":[10,3,0,0,0]},"416":{"index":416,"max":0.08,"min":0,"rarity":5,"name":"Doppler (Sapphire)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iDwP5muOh7Sha-lA8lvziMgIr9HifOOV5kFJN4FOMPtRi9wdK2MuvksVPa34NMyyX62C0a7Ho_5-pWBaQtrqXfjFzfcepq5_yhcsc","stattrak":true,"normal_prices":[147716,157443,0,0,0],"normal_volume":[77,4,0,0,0],"stattrak_prices":[131108,134051,0,0,0],"stattrak_volume":[12,1,0,0,0]},"417":{"index":417,"max":0.08,"min":0,"rarity":6,"name":"Doppler (Black Pearl)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iSze91u_FsTju_qhAmoT-Jn4bjJC_4Ml93UtZuR7JYtEO-mtzjN-_gs1DXjN9MyHr92n4d7S89sL4AWaR2_vbSigzFZKp9v8c7W1qI3g","stattrak":true,"normal_prices":[240063,261931,0,0,0],"normal_volume":[34,3,0,0,0],"stattrak_prices":[231945,350898,0,0,0],"stattrak_volume":[3,1,0,0,0]},"418":{"index":418,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 1)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i4gKJk4jxNWWRbwR0XpokQuJYthW6kdXmZu_h5wHZ2YMRmC6s3X9IuH5i5r0LVasj5OSJ2E5r5oFO","stattrak":true,"normal_prices":[62212,72739,0,0,0],"normal_volume":[126,4,0,0,0],"stattrak_prices":[67542,0,0,0,0],"stattrak_volume":[8,0,0,0,0]},"419":{"index":419,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 2)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i4QKJk4jxNWWTZg5zDpV4R-QOsEO7lNa2NL_h41Da34tCyCiqhyxN6yxv4OoBVqcs5OSJ2Fw1OS4C","stattrak":true,"normal_prices":[81319,85340,0,0,0],"normal_volume":[126,6,0,0,0],"stattrak_prices":[81843,86771,0,0,0],"stattrak_volume":[13,3,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iSzftztN5lRi67gVMj4ziDz9-hc3vGbVAgCpB4RbQNu0G4lNHgPuqw4QfXi45BnHmtiixM8G81tDT9ezBU","stattrak":true,"normal_prices":[40319,23443,20597,20077,20043],"normal_volume":[35,93,135,111,133],"stattrak_prices":[62708,29859,24900,23433,23327],"stattrak_volume":[5,16,16,18,10]},"420":{"index":420,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 3)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i4AKJk4jxNWWSPA51DZomRuECtka6lYDhZbm3tQGI3d0XmS_4hysd63ltt-kHAKF35OSJ2Jqs4QDO","stattrak":true,"normal_prices":[62065,64621,0,0,0],"normal_volume":[117,5,0,0,0],"stattrak_prices":[68341,0,0,0,0],"stattrak_volume":[8,0,0,0,0]},"421":{"index":421,"max":0.08,"min":0,"rarity":4,"name":"Doppler (Phase 4)","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iUzv5mvOR7cDm7lA4i5wKJk4jxNWWSbQ8iDsMkQ7QLtUO7kNXmZLy24wLZjYwQyy6v2y5Nvy9t67oCVKN05OSJ2CIEz_WG","stattrak":true,"normal_prices":[70792,71944,0,0,0],"normal_volume":[124,3,0,0,0],"stattrak_prices":[71158,150039,0,0,0],"stattrak_volume":[11,2,0,0,0]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1iWzvx1teVWQyC0nQlpsGjRw9_8cn6QPAd2DZN1TbJYtxjumtGzZLyw4wSIjN4Uzin3iyNPujErvbgnFqUCGg","stattrak":true,"normal_prices":[31173,20124,17970,16589,16918],"normal_volume":[34,134,129,76,67],"stattrak_prices":[51159,21949,19288,20804,18770],"stattrak_volume":[2,22,40,7,1]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SH1ifyOJztN5lRi67gVMj6m3Rnt2sdnOUZwIgWJAkTLUJ4xbrx9buYuywsgCLjItBmC79jiNN8G81tGbdgHHm","stattrak":true,"normal_prices":[52150,30370,23056,21500,20752],"normal_volume":[25,370,520,300,205],"stattrak_prices":[144691,37990,34320,32939,31803],"stattrak_volume":[4,57,68,23,14]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-bF1iUxf53pN5lRi67gVMh5z-Hy4z9IniUZlR1DZVzRrUMsUPpwNPuNuLn4QCL34xAznmt3Ssd8G81tIt2ow-p","stattrak":true,"normal_prices":[23630,12174,11520,11273,11214],"normal_volume":[6,72,159,32,49],"stattrak_prices":[64803,14749,13212,11811,11883],"stattrak_volume":[1,16,17,6,12]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-SA1iKxOxksd5lRi67gVMh62_RzdygJHORZlAlDpZwQOYM4Ri5k4HhNezg4wOLg49Nyy772y9J8G81tBUopZdW","stattrak":true,"normal_prices":[41934,36676,36475,0,0],"normal_volume":[202,221,85,0,0],"stattrak_prices":[51519,41093,43851,0,0],"stattrak_volume":[33,46,8,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHlidxP1-j_VoQRa_nBovp3PSyd6qdSqePQEhDpJ5E-cI5kK5kIe2Zrzh4Qza2I9Fyiys2i1N7Xpv_a9cBuq3CrbI","stattrak":true,"normal_prices":[26894,11475,11095,11050,11043],"normal_volume":[9,57,142,53,46],"stattrak_prices":[45628,14756,11610,13537,13133],"stattrak_volume":[4,18,36,7,12]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AHlieyOl-pPJ9XSCjkCIrujqNjsH8dX2VbVJ1X5Z0RbVZtEO5mtPhY77qtlbc34IQxC_6jy0f7C0457wLT-N7rW2ankyk","stattrak":true,"normal_prices":[41163,15858,13513,13627,13680],"normal_volume":[7,81,214,35,63],"stattrak_prices":[198456,21792,15992,15755,17715],"stattrak_volume":[1,13,35,1,5]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_23","set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-bF1iWzvxzo_VWTSahkBwrjDGMnYftb32fPFIkDZV4EeJbskTpxt2yN-6wtQCIjY1GnyWriyIauCxv4LtQAvY7uvqAMerubhQ","stattrak":true,"normal_prices":[22294,12305,11508,11301,11188],"normal_volume":[7,64,162,32,44],"stattrak_prices":[0,15947,12353,15535,14543],"stattrak_volume":[0,14,30,6,4]},"98":{"index":98,"max":0.8,"min":0.06,"rarity":3,"name":"Ultraviolet","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1I5PeibbBiLs-AAViA1PxmvORWQyC0nQlp4WTSnN74J3PCOAF0A5V3R-ACsUS6kYCzYrzk7geI2YlMzS2r2i1NvzErvbhVpSdBEA","stattrak":true,"normal_prices":[64465,22130,18251,17634,17124],"normal_volume":[10,108,334,53,70],"stattrak_prices":[200000,28899,19476,21103,19745],"stattrak_volume":[2,15,49,8,11]}}},"526":{"name":"Kukri Knife","sticker_amount":0,"type":"Knives","paints":{"0":{"index":0,"max":0.8,"min":0.06,"rarity":6,"name":"Vanilla","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnr8ytd6s2lfa9_Kb6VXmPGwuogsbNvSyi3zR4jsTnQztyqdS6QP1IoXpoiEeAC5Be5l9CxKaq8sIvgdE5J","stattrak":true,"normal_prices":[10213,10213,10213,10213,10213],"normal_volume":[725,725,725,725,725],"stattrak_prices":[10865,10865,10865,10865,10865],"stattrak_volume":[144,144,144,144,144]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtlOc-EC2WD_uJ_t-l9AS-3x0x15m2Hw4z9eS-QbgQnA5ElFu8OtBfqwIK2NLjg4gbciN8UzirgznQebo7XmtM","stattrak":true,"normal_prices":[49047,12031,8824,8247,8436],"normal_volume":[26,253,690,75,105],"stattrak_prices":[147644,14102,10278,10986,11058],"stattrak_volume":[3,48,119,24,23]},"143":{"index":143,"max":0.8,"min":0.06,"rarity":1,"name":"Urban Masked","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-HD3eV_vtksuBncCW6khUz_W2GmdupJ3mfPA8jW5ZwR-QN4UKxmtOyN7y25lfW2YtNziX8jCtN7Xp1o7FVXby906g","stattrak":true,"normal_prices":[15177,7311,4970,5277,5394],"normal_volume":[17,91,243,38,103],"stattrak_prices":[26221,8589,6562,7382,7071],"stattrak_volume":[5,24,44,9,29]},"175":{"index":175,"max":0.8,"min":0.06,"rarity":1,"name":"Scorched","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-XD3eAzetJvOhuRz39kUpw42zRnoz7InOeOAd2XpQiQ7Ve5xixm9HhMe3l5wCI2YxHxS_2iDQJsHhKp4l7vg","stattrak":true,"normal_prices":[13010,6606,4760,4880,4800],"normal_volume":[16,129,278,45,115],"stattrak_prices":[31240,7419,5753,6544,5900],"stattrak_volume":[2,20,43,8,18]},"38":{"index":38,"max":0.08,"min":0,"rarity":3,"name":"Fade","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsIc-VD2OV_uJ_t-l9AXyyzEohsGvVn4moIi-VO1N2CJR1E-UD4BXtkIXhMe2x7lbej4tEnyzgznQeN9c5PgA","stattrak":true,"normal_prices":[17652,20835,0,0,0],"normal_volume":[1468,75,0,0,0],"stattrak_prices":[20652,27410,0,0,0],"stattrak_volume":[201,14,0,0,0]},"42":{"index":42,"max":1,"min":0,"rarity":2,"name":"Blue Steel","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsMc-RAnKVxdF6ueZhW2exzE0h62nVyd6qeXjEbgF0X8EiEbZesRS_wIXkPujq7wPWjNpDyn6vkGoXudm1ivk1","stattrak":true,"normal_prices":[13183,9272,8381,7730,7772],"normal_volume":[60,166,172,141,142],"stattrak_prices":[21447,10488,9601,9250,10232],"stattrak_volume":[4,30,37,25,30]},"43":{"index":43,"max":1,"min":0,"rarity":2,"name":"Stained","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsMc-VAXWTxOpJvOhuRz39lkgl52TXzdiscH2TOgAkX8QiRuFftxW6kNW1Yrzr7wOK2YkWxXr43zQJsHia9a0bCA","stattrak":true,"normal_prices":[11625,7537,6915,6471,6402],"normal_volume":[53,145,221,132,91],"stattrak_prices":[15286,8417,7869,8630,8478],"stattrak_volume":[11,37,40,20,16]},"44":{"index":44,"max":1,"min":0,"rarity":4,"name":"Case Hardened","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsMc-cB2uVxdF6ueZhW2fizRsk4G_dzY39eCrCaA51W8QlF-ZZtRK6m4XlPunn71TbjY0QzimokGoXuR84GhWV","stattrak":true,"normal_prices":[20493,11605,10247,9447,9491],"normal_volume":[108,588,851,421,315],"stattrak_prices":[61576,17819,13505,12238,14501],"stattrak_volume":[14,70,80,60,31]},"5":{"index":5,"max":0.8,"min":0.06,"rarity":1,"name":"Forest DDPAT","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtlOc-XCneR1dF6ueZhW2eyw0wk4TuDnI6pdS7BOAcnWMFyEbNYtEa6x9HjPurj4lHajYIWny6vkGoXuZN4gz37","stattrak":true,"normal_prices":[13936,5561,4702,4615,4618],"normal_volume":[13,116,297,59,74],"stattrak_prices":[24935,6338,5782,6104,5728],"stattrak_volume":[3,38,47,18,8]},"59":{"index":59,"max":0.26,"min":0.01,"rarity":3,"name":"Slaughter","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtsLc-JC2WCwNF6ueZhW2fmwkwj62TWmdyuc3nEOFB1Csd5ReFZtUTpxtXvYb_k4waPj4wXxXitkGoXuVwivb-T","stattrak":true,"normal_prices":[14407,12943,12492,0,0],"normal_volume":[376,392,113,0,0],"stattrak_prices":[17413,15030,15866,0,0],"stattrak_volume":[72,49,14,0,0]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":1,"name":"Safari Mesh","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-eC3SY_vp3vt5lRi67gVMit2vVyt-sc3qSalUjAsR1QOQLthKwk9HhYri34gzXg4wXmHmvjiNA8G81tJ681NhB","stattrak":true,"normal_prices":[10872,4900,4438,4513,4723],"normal_volume":[16,122,268,63,149],"stattrak_prices":[29271,6010,5265,5077,5338],"stattrak_volume":[1,37,46,11,31]},"735":{"index":735,"max":0.8,"min":0.06,"rarity":1,"name":"Night Stripe","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZt-MM-dB2CY1f1iouh5Sha_nBovp3OHz9ahIynFPQUoDZZ2TbINtRK8lYXuM-nksQbago1FyS_23CNB5ihu_a9cBvtwqC7R","stattrak":true,"normal_prices":[13799,7153,5069,5265,5137],"normal_volume":[23,120,288,48,169],"stattrak_prices":[28039,8799,5888,6707,6909],"stattrak_volume":[1,33,57,27,27]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":1,"name":"Boreal Forest","collections":["set_community_33","set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL6kJ_m-B1Q-vm8YZtlOc-VAXWV0vpJsu57Sii_qhEutDWR1N2vIH7Dbw8jXMZwTecNsEPsmoKzP-Kx5QHZ2YtAniyoi3kb6yht5-ocEf1yVn7b_ls","stattrak":true,"normal_prices":[10084,5336,4581,4592,4524],"normal_volume":[18,95,265,42,80],"stattrak_prices":[19911,6591,5585,6116,5682],"stattrak_volume":[2,26,37,13,5]}}},"60":{"name":"M4A1-S","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1001":{"index":1001,"max":1,"min":0,"rarity":6,"name":"Welcome to the Jungle","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9Jo-9oRCyMmRQguynLzYqgInjGZlcnX5ciE-IPthLrkN3hYu_ltQPW3Y1NzSn-jCpJ6ydpsvFCD_TdxQe8NQ","souvenir":true,"normal_prices":[197874,134842,83250,61341,57489],"normal_volume":[77,55,67,35,16]},"1017":{"index":1017,"max":0.08,"min":0,"rarity":5,"name":"Blue Phosphor","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWrEwL9lj-NlWiygmBIstgKJk4jxNWWeOg5xDJR2Q-5b5BGwxIDuP7uw4ALa3ohMz3n3iypLvyc55-pQUKct5OSJ2OKlF5Nn","normal_prices":[65596,77707,0,0,0],"normal_volume":[780,28,0,0,0]},"1059":{"index":1059,"max":0.57,"min":0,"rarity":3,"name":"Fizzy POP","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H-ODMXOVwuZ4v_ZoXRahkBkYvzSCkpu3JyqVagUhX5Z2QOYMs0a4lYHmMOjn7gCN2YwQyX6r3HhO5i464b1RA71lpPPi0vWs1A","normal_prices":[1258,261,171,179,159],"normal_volume":[774,437,546,54,119]},"106":{"index":106,"max":0.597321,"min":0,"rarity":6,"name":"Vaporwave","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_vh3oO57WCilkCIrujqNjsH_In7DZgYnWcAiR-MJshO6koDlN7vhsQyLi41HySX6iXlAvCZrsb0HT-N7rW-9qIHE","stattrak":true,"normal_prices":[20729,8891,4831,5186,4568],"normal_volume":[459,597,825,44,51],"stattrak_prices":[31176,18400,9914,12178,10412],"stattrak_volume":[131,147,106,11,11]},"1073":{"index":1073,"max":0.8,"min":0,"rarity":6,"name":"Imminent Danger","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9JpuR7WyC0miIrujqNjsGpciiVZgIpCpAjEOUPuhXuw93kZOzm4laPi4IRyij-2H9P6yc65rwCT-N7rc1sfRJu","souvenir":true,"normal_prices":[147176,119842,76827,105000,72771],"normal_volume":[43,27,39,2,11]},"1130":{"index":1130,"max":0.7,"min":0,"rarity":4,"name":"Night Terror","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj-hnXCa-mxQmjDGMnYftby3FPFVxA5ZwRecOtUXuxtPiNL_jsQLc2NkTzS38jC5L7ydj5u8EUKo7uvqAgGSM4LM","stattrak":true,"normal_prices":[203,76,52,64,67],"normal_volume":[2104,1953,6456,438,2898],"stattrak_prices":[452,205,142,202,224],"stattrak_volume":[473,503,1078,127,727]},"1166":{"index":1166,"max":0.7,"min":0,"rarity":5,"name":"Black Lotus","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_ux6seJicCW8gQg0jDGMnYftb3-eOgEpDcFyQuMMtRG8kIbhMuK051ba2IMQyH6r3yof5ilv4bwLWfU7uvqA7qRNHGA","stattrak":true,"normal_prices":[1541,738,495,544,504],"normal_volume":[1978,2748,6831,217,345],"stattrak_prices":[3666,2003,1371,1435,1434],"stattrak_volume":[433,422,676,67,287]},"1177":{"index":1177,"max":0.08,"min":0,"rarity":6,"name":"Fade","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GSMWGRxetJvbVoHjqMmRQguynLm92pci2WagEkC5Z5Q7VetkbukIXjNrnm5QPbjt8WxS-vii4b5i5v4fFCD_TfxF4xWg","normal_prices":[28784,30962,0,0,0],"normal_volume":[3739,126,0,0,0]},"1216":{"index":1216,"max":0.8,"min":0,"rarity":5,"name":"Stratosphere","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGC1iD1fx3pO56XyG2hxgYvzSCkpu3eSjEOgUkDsRxR7RYsRexwNe0Y-O05VeNg90UmX2q33lJ7itvt-cKB71lpPNheQHx2Q","normal_prices":[6370,1465,564,612,547],"normal_volume":[399,608,1322,87,146]},"1223":{"index":1223,"max":0.8,"min":0,"rarity":4,"name":"Emphorosaur-S","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-dsSi26mxoYtS-AlJXgHifOOV5kFJt4F-8KukXtldyyMLjjtVOIjIsWzXj8iylJ5ig6tbsKV_ItqaaB3gHfcepq28_00F4","stattrak":true,"normal_prices":[259,90,41,42,38],"normal_volume":[1886,2647,8716,430,493],"stattrak_prices":[626,213,105,159,105],"stattrak_volume":[517,1046,1003,115,218]},"1243":{"index":1243,"max":0.73,"min":0,"rarity":2,"name":"Mud-Spec","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj-xgQzqjkB4YvzSCkpu3I3rGP1JxDJpwEbEJ40G6mtfjPuqx7wTf3d5AzHn5hy9AuH5p4u9QBb1lpPNjrdVvDA","souvenir":true,"normal_prices":[338,103,29,42,41],"normal_volume":[785,441,1511,255,1213]},"1311":{"index":1311,"max":0.67,"min":0,"rarity":4,"name":"Glitched Paint","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iHMWaS0vpkseJ9cD66mxkYvzSCkpu3dSnCPFJxXJZ2RrEP4Ri8k4a1Yu_j7w3e3okTzXr92ytA5ilrsroDUr1lpPMn2xt0Zg","normal_prices":[953,385,171,206,149],"normal_volume":[1116,1243,1507,88,330]},"1319":{"index":1319,"max":0.5,"min":0,"rarity":3,"name":"Rose Hex","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMW-V2e9xv-9WQyC0nQlp6mzTyNr8eH3EOAAmXMQjEOdZtxC7mt3gMuuw5FSL3YlNn3qv3CxO5jErvbgiwdR6KA","normal_prices":[80,35,17,17,16],"normal_volume":[1351,730,829,102,28]},"1338":{"index":1338,"max":0.7,"min":0,"rarity":5,"name":"Solitude","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H-OcDW-vzOFjvvVoRiegqhBzsmyWpYPwJiPTcFIoXpslROVftRK5kYblN7zq5VbX3YtMmH_8ji5MvX1qtu1XWPFxrvLJz1aW589-peo","normal_prices":[2245,449,175,188,135],"normal_volume":[4937,15859,18263,329,1391]},"1340":{"index":1340,"max":1,"min":0,"rarity":4,"name":"Liquidation","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_v9jueJicCW6hAgutzyRk4D3HifOOV5kFJtwQLQCshW4kYazNOngsQGMj4tAyXj8iy1N7CxqsulQVqt0-aaFhwrfcepqI4yC_kU","stattrak":true,"normal_prices":[1057,474,242,129,94],"normal_volume":[1012,1860,1800,47,405],"stattrak_prices":[3193,1374,694,428,342],"stattrak_volume":[218,363,359,81,81]},"1376":{"index":1376,"max":0.6,"min":0,"rarity":5,"name":"Party Animal","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKC1iRz-d7se1WXzu6mwkY6m2WpYPwJiPTcFNxDcMjEeUIuxK-wNWyPrzj4wePiIxGmCj5jngcuCpvt7wBAKFw-KbJz1aW-PVDUm8","normal_prices":[8416,2246,1075,1086,1053],"normal_volume":[195,247,421,31,54]},"1433":{"index":1433,"max":1,"min":0,"rarity":4,"name":"Electrum","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_3HDzaD_ut6teJ9XTy-qhEutDWR1Iz4cnjCag51DZQlEOIMtEa7k9TiNbmw51OP3tlBxCr8iCsY6C5t6uwcEf1y--utkZE","stattrak":true,"normal_prices":[1006,379,166,106,94],"normal_volume":[467,667,651,155,315],"stattrak_prices":[2884,1048,563,398,406],"stattrak_volume":[103,124,180,55,97]},"160":{"index":160,"max":0.58,"min":0,"rarity":2,"name":"Wash me plz","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMWiGxPxmsfJ6cC28mhkrtgKIzo6oMhTLN1F4Tox1TLUNthHuxtbuZejntAzWjNlNmX6rjylJuyhp6-kLBKt38vKFiFuUL_Rjtk_8Ljjf","souvenir":true,"normal_prices":[41,8,4,4,5],"normal_volume":[3220,1883,2068,157,156]},"189":{"index":189,"max":0.22,"min":0.1,"rarity":4,"name":"Bright Water","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMWiTxO94j-N7Tj-8qhEutDWR1N2scy2Sa1UkC8NyRbMPuhexx4fgYrziswHf395Az3-qiStK5i864-kcEf1ycufvRr8","stattrak":true,"normal_prices":[0,5094,3697,0,0],"normal_volume":[0,629,166,0,0],"stattrak_prices":[0,6648,7085,0,0],"stattrak_volume":[0,211,82,0,0]},"217":{"index":217,"max":0.3,"min":0,"rarity":3,"name":"Blood Tiger","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMXWVxfp_t-R7cCW6khUz_WXWmdmpeXOWbA4jDJolQeMNthnrlIbiMO7m71TfjIpFxH-vjClO6CZ1o7FVlF3bnRA","stattrak":true,"normal_prices":[2364,482,479,0,0],"normal_volume":[557,460,125,0,0],"stattrak_prices":[1613,1136,1178,0,0],"stattrak_volume":[284,355,111,0,0]},"235":{"index":235,"max":0.6,"min":0,"rarity":3,"name":"VariCamo","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMXGR0-d1sexmcCW6khUz_WjSw9qgd32TaAV1DMAlRrNcuhG7xt2yM-_ktlHW2tlHxHqs2iJI7yZ1o7FVeF8MW04","souvenir":true,"normal_prices":[147,43,18,33,22],"normal_volume":[1186,1744,1108,180,162]},"254":{"index":254,"max":0.8,"min":0.06,"rarity":4,"name":"Nitro","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H-OcMWiCwOBxtd5oTCq2mwk0jDGMnYftb3nFaVQgApQiQuEOukS-x4KxP-PjsQOLjt9HzS6t2CpB6C0_4LxWBaA7uvqANEieesU","souvenir":true,"normal_prices":[2865,109,42,38,31],"normal_volume":[705,2335,5462,584,634]},"257":{"index":257,"max":0.5,"min":0,"rarity":5,"name":"Guardian","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL87o95sQyy0lBMzjDGMnYftb3-QPFUlWZJ1F7VbsBi7xoa0Y7vl5ACP2ohEzX-t2iJA7Xtv4ugKWaQ7uvqAAzqYQbE","stattrak":true,"normal_prices":[12552,3118,2400,2736,3023],"normal_volume":[666,657,457,39,22],"stattrak_prices":[9903,7175,6208,6597,7283],"stattrak_volume":[182,147,135,10,5]},"301":{"index":301,"max":0.9,"min":0,"rarity":5,"name":"Atomic Alloy","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWrEwL87o95oQyW8jCIooTyLnYrGLSLANkI-D5d2FrENtRG7wNDvZe-3slfci9pFmHj8jSof6yZjtugEB6QtrKTXhxaBb-PhITXxPA","stattrak":true,"normal_prices":[15435,4168,2648,2792,2874],"normal_volume":[228,585,430,84,44],"stattrak_prices":[18916,8620,4973,4509,5345],"stattrak_volume":[86,107,134,16,36]},"321":{"index":321,"max":1,"min":0,"rarity":5,"name":"Master Piece","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL87o956RiW2mx4ijDGMnYftby3FbFdyXpZxQ-AP5hi7wILkZOzg5ASNgt4WmCv833hKuntvsLxWAKE7uvqATAFok6E","souvenir":true,"normal_prices":[50269,21975,14142,10748,10556],"normal_volume":[69,105,109,35,33]},"326":{"index":326,"max":0.1,"min":0,"rarity":5,"name":"Knight","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWqV1e96o95lRi67gVNwsWTQzdn4JHyQZ1QhWMZyQe5YsxK-ktPnZOiwtVDcjo9ExS393ytB8G81tGXpYjdX","souvenir":true,"normal_prices":[351738,374000,0,0,0],"normal_volume":[63,1,0,0,0]},"360":{"index":360,"max":0.5,"min":0,"rarity":6,"name":"Cyrex","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-JwXSyrqhEutDWR1N77cimSbQQgC8F5QLYCsELpltTnZuvk7wbcjdhDzy_43yMb6ilvt7kcEf1yDWu2yf8","stattrak":true,"normal_prices":[17607,15820,15112,15799,16371],"normal_volume":[704,583,486,36,34],"stattrak_prices":[21344,16377,15460,16587,14932],"stattrak_volume":[155,84,105,10,2]},"383":{"index":383,"max":0.68,"min":0,"rarity":4,"name":"Basilisk","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GCMWrEwL9lj-NoXCC_nA4sjDGMnYftbyqVPwUiX5V5ReUDuxC5m9zmNOPktAHYiIgXzSz43C4a7Sg_6uZQVKU7uvqA7bOYRbA","stattrak":true,"normal_prices":[5242,946,748,950,755],"normal_volume":[315,586,645,30,102],"stattrak_prices":[4952,3088,2353,2492,2408],"stattrak_volume":[122,157,208,4,55]},"430":{"index":430,"max":1,"min":0,"rarity":6,"name":"Hyper Beast","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9JuPh5SjuMlxgmoCm6lob-KT-JbwF1WZEjR-YJskK9k9XiYePltAeNjYlAxSn5j34dvCZstb4LB6Ut-7qX0V8Xkv5_2A","stattrak":true,"normal_prices":[33108,10710,9939,9948,9932],"normal_volume":[162,474,639,184,110],"stattrak_prices":[40788,17810,10187,10480,11327],"stattrak_volume":[48,97,115,54,40]},"440":{"index":440,"max":0.1,"min":0,"rarity":4,"name":"Icarus Fell","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMW6TwPxjo95lRi67gVN_smmHyor9eHyUZwImDpJzEeZf4xS6kN2zY77i7wPdjtgXn3msin4b8G81tDwr8lc2","normal_prices":[56437,66462,0,0,0],"normal_volume":[689,42,0,0,0]},"445":{"index":445,"max":0.08,"min":0,"rarity":5,"name":"Hot Rod","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GdMXWVxdF75OA4XBa_nBovp3PXyt2uJ32QaQciDZUhReUM5hLskdy2Pu_n4wLe2doXm3j-2i5A7X5i_a9cBuWkb97d","normal_prices":[177299,188365,0,0,0],"normal_volume":[309,8,0,0,0]},"497":{"index":497,"max":1,"min":0,"rarity":6,"name":"Golden Coil","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj_JnTiK2lxQztgKClYP9HifOOV5kFJclQ-Jb5xW-m9CxPuLq4QTfjd0XzyX6jCpL6X5o5OgDVfYn_a2Ci1rfcepqgV49FrE","stattrak":true,"normal_prices":[24026,9511,5930,5324,4985],"normal_volume":[183,385,590,129,113],"stattrak_prices":[37641,24278,13007,11164,9887],"stattrak_volume":[65,79,113,36,29]},"548":{"index":548,"max":0.99,"min":0,"rarity":6,"name":"Chantico's Fire","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj_JmWiWnlBYioQKJk4jxNWXFZ1IgC5MiQuZeuhK4wIXnMuPhslCM2oMTxH75hnxK6Htjse4BVqd25OSJ2DU2Q_CD","stattrak":true,"normal_prices":[28718,10238,9848,9990,10366],"normal_volume":[143,319,546,141,72],"stattrak_prices":[35446,14624,10638,10633,11665],"stattrak_volume":[57,104,109,26,9]},"587":{"index":587,"max":0.8,"min":0,"rarity":6,"name":"Mecha Industries","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9JveRqRyiMnBMjpi6RiIb8MhTLN1F4TowiE7EMtRW7ltzlMbvi5wPej4pDmCT2i3tKuHo4sOoEWKFz8qPS3F7BL_Rjtn0I4s52","stattrak":true,"normal_prices":[25188,9779,9353,10656,9940],"normal_volume":[260,644,795,27,83],"stattrak_prices":[21440,12869,9754,10623,10177],"stattrak_volume":[107,140,140,8,21]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":4,"name":"Dark Water","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMX2Vw_x3j-VoXSKMmRQguynLzI6td3-TPQAlD5slR-EJ5hDux9XmMe7i71CI2t8UzSuthi9OvSlo6vFCD_TltxSe0A","stattrak":true,"normal_prices":[0,10566,6948,0,0],"normal_volume":[0,358,131,0,0],"stattrak_prices":[0,14382,11554,0,0],"stattrak_volume":[0,127,78,0,0]},"631":{"index":631,"max":1,"min":0,"rarity":4,"name":"Flashback","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9Jtu1oXCGxlB4sjDGMnYftb3yVPQFyDMB3EbJZ5xC4kNPvMOO35AHW3d1AnC_3iHlNuytqtuYDVfI7uvqAZWXE-YM","stattrak":true,"normal_prices":[12702,892,324,264,267],"normal_volume":[39,238,727,357,352],"stattrak_prices":[1826,524,259,269,270],"stattrak_volume":[92,120,214,72,77]},"644":{"index":644,"max":0.85,"min":0,"rarity":5,"name":"Decimator","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9JtORqRiSygRI1jDGMnYftb3iUb1dxW5ImFLNftxCxktflZLm2tgaP2otGyn_-hytOvy9q5elQV_A7uvqA6CRSoZY","stattrak":true,"normal_prices":[5279,1778,1154,1399,1156],"normal_volume":[626,1209,1902,72,206],"stattrak_prices":[8429,4394,2811,3875,2809],"stattrak_volume":[184,236,295,24,35]},"663":{"index":663,"max":0.8,"min":0,"rarity":3,"name":"Briefing","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-xsWzu6gRg1sgKJk4jxNWWTZgclDpNzQ7FZsESxxNPgZujksVDf2dkTmS343S1M731t5OcLAvZ05OSJ2NaAMPYY","stattrak":true,"normal_prices":[10037,988,674,588,716],"normal_volume":[72,219,171,17,39],"stattrak_prices":[4553,1493,718,1535,801],"stattrak_volume":[62,69,60,9,10]},"681":{"index":681,"max":0.7,"min":0,"rarity":5,"name":"Leaded Glass","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9Jo-loWz22hyIrujqNjsH8dn6ePwB2DpEmFuAMt0HulYa1Nu2z4QWPjt9NnCX63H9M5ys96r1QT-N7rZDTLd1E","stattrak":true,"normal_prices":[3702,935,842,895,906],"normal_volume":[517,1184,1450,45,130],"stattrak_prices":[4009,1884,1332,1928,1380],"stattrak_volume":[169,199,283,29,54]},"714":{"index":714,"max":1,"min":0,"rarity":5,"name":"Nightmare","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-9gSCGnmBw1tgKJk4jxNWXCbAUpXpp0FrYPthC7k4fnZOm04laMjYxHn3r52HxJ6i065e0FVKV05OSJ2IHiKyzQ","stattrak":true,"normal_prices":[23644,2037,912,669,732],"normal_volume":[310,760,1259,213,158],"stattrak_prices":[11989,5294,2436,2187,2205],"stattrak_volume":[91,135,189,42,42]},"77":{"index":77,"max":0.8,"min":0.06,"rarity":2,"name":"Boreal Forest","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_iKMWGf0-tlpN5rQDu2lBEYvzSCkpu3dyqVZgF1CJAhF7NYtULrlIa2M-Lh4wKMiYlDmyqrhygduCZs6-xXV71lpPMY7TF_eA","souvenir":true,"normal_prices":[2267,29,10,10,11],"normal_volume":[140,969,1607,190,558]},"792":{"index":792,"max":1,"min":0,"rarity":5,"name":"Control Panel","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_eAMWrEwL9lj-55SjuygRI1jDGMnYftbynDbQBzDcR3ROMI40Hpmt3kP-y271OK3tpFmy7633hJ73xit70GBPE7uvqArjH2yek","souvenir":true,"normal_prices":[15657,2879,1630,473,463],"normal_volume":[171,445,486,258,300]},"862":{"index":862,"max":0.5,"min":0,"rarity":2,"name":"Moss Quartz","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_GeMWSC2P1ise1lRjO2kSIjsi-OpYjrJC7JAVp5Xco0W7NZsRCwmoCzNbni7lGNi4JMyij3ii9LvS5q4u4KUKIl-ayF2QnBOeYjoc5UYcWIs5E","normal_prices":[13790,4445,2881,3451,3162],"normal_volume":[331,222,172,19,8]},"946":{"index":946,"max":0.84,"min":0,"rarity":6,"name":"Player Two","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj-J6SCbhxUl_jDGMnYftby7BbVdyCsB0EeZY4RPukNfhZOO2sQ3W398Qy3_6jHxIunptsO9TUqs7uvqAAWrfZoM","stattrak":true,"normal_prices":[15148,5775,4960,5398,5115],"normal_volume":[202,763,1084,39,108],"stattrak_prices":[18831,9855,5852,7450,6299],"stattrak_volume":[66,118,166,9,23]},"984":{"index":984,"max":0.8,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyL8ypexwjFS4_ega6F_H_OGMWrEwL9lj_F7Rienhgk1tjyIpYPwJiPTcAAoCpsiEO5ZsUbpm9C2Zuni4VHW3o5EzSX62HxP7Sg96-hWVqYi_6TJz1aW0nxrkGs","stattrak":true,"normal_prices":[47948,26291,18207,16871,15448],"normal_volume":[670,1352,1917,76,186],"stattrak_prices":[99568,50065,29803,35311,25794],"stattrak_volume":[214,235,238,11,40]}}},"61":{"name":"USP-S","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"1027":{"index":1027,"max":0.5,"min":0,"rarity":5,"name":"Target Acquired","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sB2mExOJ6ueZsQSq2qhAmtDiLjo7GLSLANkI-XpZxE-4MtxW5ldeyZbvq51PXid9EzSr6iSof7y1t47lQAqRxrvCEjxaBb-PT-N1SiA","normal_prices":[54054,23639,17650,21421,22000],"normal_volume":[93,46,20,3,6]},"1031":{"index":1031,"max":0.45,"min":0,"rarity":4,"name":"Ancient Visions","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsD2mTyOt4pN5rXSC0nQkYvzSCkpu3eHiSOAB0DsMkTOcJtRjtwNG1ZOvq4wDe2t1AzCuojy1JvSpp4ewKVr1lpPOm90TY1A","souvenir":true,"normal_prices":[10283,5019,4263,4042,0],"normal_volume":[60,49,8,5,0]},"1040":{"index":1040,"max":1,"min":0,"rarity":6,"name":"The Traitor","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OsG3SA0tF-se9uSi2-lBMYvzSCkpu3eX7EP1MpApdwR-8NsxbukoXuNLnj4QOMiN8XzHn_iC8a7Spi4upRWb1lpPOCQNKXgA","stattrak":true,"normal_prices":[13369,5152,3276,2981,2849],"normal_volume":[149,579,877,297,186],"stattrak_prices":[21203,7983,5033,4213,3979],"stattrak_volume":[83,104,158,43,20]},"1065":{"index":1065,"max":0.8,"min":0.06,"rarity":5,"name":"Whiteout","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-sGW-Z1et5pfVWXSCjgRQjtgKJk4jxNWXCbQQpCJF1QLINsUbrlofgNunj5lSLg4sXnCT8jS5Oun445O8CUqUt5OSJ2Dgwztii","normal_prices":[63610,11472,5486,4080,3702],"normal_volume":[136,884,605,71,104]},"1102":{"index":1102,"max":0.9,"min":0,"rarity":3,"name":"Black Lotus","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_ux6seJicCW8gQg0jDGMnYftbynFZg8nXpt2Ru8D5hSwl9PhN7_m7wzdjotFxXr62y4Y6C894OxQVKA7uvqAvobUkb8","stattrak":true,"normal_prices":[3629,242,109,77,63],"normal_volume":[289,773,917,181,196],"stattrak_prices":[3741,667,319,328,287],"stattrak_volume":[108,312,309,91,101]},"1136":{"index":1136,"max":0.76,"min":0,"rarity":4,"name":"Ticket to Hell","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_vp5j-lsQyWMmRQguynLzt_8JXiVOwF2AsF4R-ECshftltKxZe6x41CKjotExST8jn8f7ilr5PFCD_TZVvgG5g","stattrak":true,"normal_prices":[213,79,50,49,47],"normal_volume":[1668,1438,4159,166,425],"stattrak_prices":[595,199,81,135,69],"stattrak_volume":[678,545,1375,96,219]},"1142":{"index":1142,"max":0.85,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_v5kue99XD2hkBwqjDGMnYftb3yUPFR0XsNyRrNc5kO5ltziMenr5lONj4kXyi2riywc7y9o5LtQAqQ7uvqAkScWnv4","stattrak":true,"normal_prices":[10969,5840,3563,3499,3311],"normal_volume":[657,1571,3175,105,255],"stattrak_prices":[23665,10875,6003,6093,5352],"stattrak_volume":[212,447,495,30,70]},"115":{"index":115,"max":1,"min":0,"rarity":3,"name":"27","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpoo6m1FBRp3_bGcjhQ08mlhL-NnvL4N4TCmGpa7fp9g-7J4cKtjQC38ks9YTz6cNSQdQU5Zl3V81S-xOzqgsfv6s_Byydi7nZ3sSnbgVXp1oZrc3sm","stattrak":true,"normal_prices":[729,39,17,14,14],"normal_volume":[210,227,219,76,247],"stattrak_prices":[470,105,45,44,52],"stattrak_volume":[40,155,177,118,185]},"1173":{"index":1173,"max":1,"min":0,"rarity":5,"name":"Jawbreaker","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSNeODHViUzulxqd5lRi67gVMl62nUyd2scnOVPAcgA5J2TOFY5xLrlN22YbzgsQaI2IlHyiWojnwa8G81tErOD-_J","stattrak":true,"normal_prices":[2145,615,383,302,309],"normal_volume":[576,953,1775,316,612],"stattrak_prices":[4562,1581,852,689,692],"stattrak_volume":[170,309,399,102,146]},"1186":{"index":1186,"max":0.9,"min":0,"rarity":3,"name":"PC-GRN","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSNeODHViS0_titedmXSq2qho1tjiLpYPwJiPTcFcoCpV2F-Nc4xXpwNPhZeLg5AffiIxNynj2jylP53xp6ugHU6Ig__XJz1aWMWkGKhU","stattrak":true,"normal_prices":[131,19,8,8,7],"normal_volume":[909,840,1211,201,247],"stattrak_prices":[297,65,21,24,23],"stattrak_volume":[279,902,222,247,209]},"1217":{"index":1217,"max":0.6,"min":0,"rarity":4,"name":"Royal Guard","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-WMWWc1OtJse9tcC68mRkYvzSCkpu3dymfbAUmWJAkQ-AI40Oxx9ezMrvl5gyLj41Nn3n6iHlKvXk9trpXUr1lpPMve4WI8Q","normal_prices":[672,308,64,59,53],"normal_volume":[1174,1349,1875,83,114]},"1253":{"index":1253,"max":1,"min":0,"rarity":2,"name":"Desert Tactical","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OsG3SA0tFiseJ9RiqymSIksjCKpYPwJiPTcARxX5VzROcIuhLtl9HkMum25AbZ2YtDzCT5234b6Ho-67lRA6Bw_fDJz1aWLNvRpDs","souvenir":true,"normal_prices":[616,113,24,15,17],"normal_volume":[169,490,401,124,109]},"1284":{"index":1284,"max":0.55,"min":0,"rarity":3,"name":"Tropical Breeze","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-WMXOCzv5_s-BlcCW6khUz_WqBz9avIyiRbAQiApB1E-dZsEK7ld3gZuPqtFHbiYtMnyn9hn5Avy51o7FVuRzLF34","normal_prices":[199,103,38,42,23],"normal_volume":[3385,1830,2415,227,173]},"1323":{"index":1323,"max":0.6,"min":0,"rarity":4,"name":"Bleeding Edge","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOSsHGKU_utyt-R6cCW6khUz_TvRzd2tdy2WOlUoDZtxRLZY5xWwxty1Muzr4FCP2N5GmS-siywf7Xl1o7FVhoySCzY","normal_prices":[841,306,126,140,127],"normal_volume":[777,894,1132,42,110]},"1377":{"index":1377,"max":0.7,"min":0,"rarity":4,"name":"Sleeping Potion","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-WMXeF0_56td5lRi67gVMh4D-Gn4qheH6RPFIoCcAhELVf5kK-xNexMe_rtFfai45EnC_8iH9I8G81tAH9GDu2","normal_prices":[1264,561,148,134,123],"normal_volume":[403,296,611,53,104]},"1431":{"index":1431,"max":1,"min":0,"rarity":3,"name":"Silent Shot","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSNeODHViDyOJzvvVWTSaqqhEutDWR1Nf8cn_CPAQmW8Z5Ee8P4UbuxILmMLu3tAXYj4hByyWsjCscvy89sOYcEf1yCvXTIoM","stattrak":true,"normal_prices":[231,85,46,26,23],"normal_volume":[812,920,770,299,148],"stattrak_prices":[808,312,195,128,122],"stattrak_volume":[193,241,266,89,86]},"183":{"index":183,"max":0.8,"min":0.06,"rarity":4,"name":"Overgrowth","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsHW6VxutJsvNoWSaMmRQguynLytyqdy2eaVUgAsB0QeIIsxfuldy2MO3gtFSI2ooRzSiq3HxA7SlvtfFCD_RGjmYWyQ","stattrak":true,"normal_prices":[9530,3390,2140,2328,2020],"normal_volume":[45,165,158,26,20],"stattrak_prices":[31355,5656,3087,3269,3569],"stattrak_volume":[13,94,104,13,10]},"217":{"index":217,"max":0.3,"min":0,"rarity":3,"name":"Blood Tiger","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsHGKU1edxtfNWQyC0nQlptWWEzd-qd3mVbgR2WZYiFuUMtUG7x4HhYeLhs1fZiN1DnC6viH4Y7TErvbgp6HjWjQ","stattrak":true,"normal_prices":[3146,350,367,0,0],"normal_volume":[153,351,66,0,0],"stattrak_prices":[1016,530,580,0,0],"stattrak_volume":[178,268,103,0,0]},"221":{"index":221,"max":0.25,"min":0,"rarity":5,"name":"Serum","collections":["set_weapons_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sC2uVwvpkueJWXSy3qhEutDWR1I34J3uXOwFyCsF4TeAJt0bpw9OxNrzh7gyI3t1DmHiq3y5M6HxqsrwcEf1yfEp4lzc","stattrak":true,"normal_prices":[13763,5618,5424,0,0],"normal_volume":[110,76,15,0,0],"stattrak_prices":[7268,5364,5354,0,0],"stattrak_volume":[59,35,13,0,0]},"236":{"index":236,"max":0.6,"min":0,"rarity":3,"name":"Night Ops","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsGGaCyO13ve5WQSC0nQkYvzSCkpu3cy-RbFciDJUlQ7Rc4xW6l4DuNLzi4gPdg41NzX6r3H8d7y5q5epTAr1lpPPHAcmmJQ","souvenir":true,"normal_prices":[363,41,17,32,22],"normal_volume":[609,319,596,92,130]},"25":{"index":25,"max":0.8,"min":0.06,"rarity":2,"name":"Forest Leaves","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsAmKR1-tlj-1gSCGn2xgh5W3Rwo2gcH6eP1IhWcYmTeYO4xTsw9TmY-mx5Q3a3ogQmSqsiCtXrnE8utrnVdI","souvenir":true,"normal_prices":[995,19,3,7,4],"normal_volume":[133,533,1293,187,219]},"277":{"index":277,"max":0.8,"min":0,"rarity":3,"name":"Stainless","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIeGsG3SA_v1isehnQyyghiIrujqNjsGqcHuVa1VxCcciR7MP50a5ktLuP-rr5ATXioJNyij93y0a7nlstboAT-N7rU1N1uE6","stattrak":true,"normal_prices":[5457,1066,550,597,465],"normal_volume":[400,858,935,31,130],"stattrak_prices":[10108,3319,1785,2079,1843],"stattrak_volume":[173,409,505,12,60]},"290":{"index":290,"max":0.38,"min":0,"rarity":4,"name":"Guardian","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_ut6teZoQT2MmRQguynLyd76I32fbFUkD5EmRu4Ct0O4m9fmY-zlsQSMiN9CnHj2jitL531o4fFCD_TZrkjVNw","stattrak":true,"normal_prices":[694,285,266,0,0],"normal_volume":[1349,813,619,0,0],"stattrak_prices":[1039,571,444,0,0],"stattrak_volume":[666,543,543,0,0]},"313":{"index":313,"max":0.5,"min":0,"rarity":5,"name":"Orion","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpoo6m1FBRp3_bGcjhQ09-jq5WYh8jnI7LFkGJD7fp9g-7J4cL23lexqhI9ZT3wd4WTJ1VvZ1rZr1G2wu2805W46p6amnJj6SEmt3_YgVXp1sALRvj2","stattrak":true,"normal_prices":[14172,5753,5885,6149,19895],"normal_volume":[426,452,86,1,6],"stattrak_prices":[17730,12524,13109,0,37306],"stattrak_volume":[175,81,41,0,2]},"318":{"index":318,"max":1,"min":0,"rarity":4,"name":"Road Rash","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_v13vuV5Tjm2hxgjjDGMnYftby2UaFcmCsF1R-cLsBS4mtLmM7nmsVbfiNlHxSuriypAvytisuhQWPY7uvqAwrOwBmU","souvenir":true,"normal_prices":[19428,6077,4610,3580,4304],"normal_volume":[118,60,137,40,29]},"332":{"index":332,"max":0.8,"min":0.06,"rarity":2,"name":"Royal Blue","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSKOmsB2mUyOl5j_R6Xxa_nBovp3OAzNv6d3yVbVBxAsNzReNZuxK8kIHnNurj4wTaiNlBnH6q3CMYv3po_a9cBsy26Gzj","souvenir":true,"normal_prices":[14988,4924,1025,1168,1260],"normal_volume":[76,252,225,30,54]},"339":{"index":339,"max":0.4,"min":0,"rarity":5,"name":"Caiman","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsBWaZzO94j-1gSCGn20t-4WyBn4mocC6XbVN0CMB2RLYMsUG5x9DgN-20tQSNiI1GzS2q3XtXrnE8NAiGp64","stattrak":true,"normal_prices":[9872,3334,2985,3474,0],"normal_volume":[95,62,67,6,0],"stattrak_prices":[9021,6679,6334,6949,0],"stattrak_volume":[63,40,28,6,0]},"364":{"index":364,"max":1,"min":0,"rarity":3,"name":"Business Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsAnKXxu9xtd58XDn-hiIrujqNjsGvJSjDPQ4nW5d1EO5btka6x9y1Me7ktgWM2oMWn3irjn8Y5ils5rxWT-N7rQDu-iuk","normal_prices":[8741,4151,3307,3064,3033],"normal_volume":[43,27,39,15,5]},"443":{"index":443,"max":0.35,"min":0,"rarity":2,"name":"Pathfinder","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsAmaS2Px_vvVhHRa_nBovp3PQzImpJHuTa1InCsEhF-cDsxjplIGxN7nqtlfdgotHyy6viylN6Sxj_a9cBrrpg9X-","normal_prices":[12803,1700,1621,0,0],"normal_volume":[106,111,39,0,0]},"454":{"index":454,"max":0.8,"min":0,"rarity":2,"name":"Para Green","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM_-sBW-RyudJt_NsSieMmRQguynLw9erJynFawZ0XMd0FLVZ5he4lIe0Puvq4gDfi9oQyy3_j3gd6Hw65PFCD_QfWpQsfw","normal_prices":[8252,1060,801,1069,909],"normal_volume":[124,139,138,16,24]},"489":{"index":489,"max":0.46,"min":0,"rarity":3,"name":"Torque","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_v5kv-Z7SjqgnAsYvzSCkpu3cH2eZgcgD5cmTOQK5BftlobvY-zk4gCN2I4UyX-s3XhI7S4_supXA71lpPNCDDeLhA","stattrak":true,"normal_prices":[174,98,59,62,177],"normal_volume":[1358,776,1149,91,66],"stattrak_prices":[386,280,166,212,318],"stattrak_volume":[476,401,478,41,43]},"504":{"index":504,"max":1,"min":0,"rarity":6,"name":"Kill Confirmed","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_uV_vO1WTCa9kxQ1vjiBpYPwJiPTcFB2Xpp5TO5cskG9lYCxZu_jsVCL3o4Xnij23ClO5ik9tegFA_It8qHJz1aWe-uc160","stattrak":true,"normal_prices":[24949,9900,6460,5751,5593],"normal_volume":[209,494,579,143,92],"stattrak_prices":[58286,27939,17863,14840,14892],"stattrak_volume":[99,103,127,36,30]},"540":{"index":540,"max":1,"min":0,"rarity":3,"name":"Lead Conduit","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OsG3SA_vh5vPVoSCyMmRQguynLmNyrdimTZw4mW8cmE-ZYsxewkYaxZb6z5FbfjY8RyS__iXsc6S09sfFCD_RkYnnFtg","stattrak":true,"normal_prices":[2102,175,84,60,54],"normal_volume":[181,275,367,238,206],"stattrak_prices":[2016,477,230,164,168],"stattrak_volume":[60,127,213,120,106]},"60":{"index":60,"max":0.26,"min":0.1,"rarity":4,"name":"Dark Water","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sFGKS0-9JtOB7RBa_nBovp3OHy9v8J3vFbgIhC5UmQ7UIsxm7wNDnNr_rswOMiNlGmCWoiH9Juis9_a9cBl2xnYuj","stattrak":true,"normal_prices":[0,11465,6933,0,0],"normal_volume":[0,124,55,0,0],"stattrak_prices":[0,14845,11384,0,0],"stattrak_volume":[0,78,50,0,0]},"637":{"index":637,"max":0.55,"min":0,"rarity":4,"name":"Cyrex","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_u1vouRxcCW6khUz_TjdzdmsJyiTZg8kX8N4ELUP5EPsw9G1YeLn5VTXjY0WxS6rhiIYuCd1o7FV2N83Spg","stattrak":true,"normal_prices":[2711,428,323,373,345],"normal_volume":[412,978,1202,82,69],"stattrak_prices":[1536,725,557,658,584],"stattrak_volume":[293,208,301,49,42]},"653":{"index":653,"max":0.7,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA0tF4v-h7cCW6khUz_WXdmd-vI3uRPwEkApR4QuBcu0Xrk4biYr_mtQXdidlCz3r63Ska7Hx1o7FVWuokIcU","stattrak":true,"normal_prices":[10392,8684,8547,10304,8854],"normal_volume":[389,564,433,35,29],"stattrak_prices":[14558,10425,8898,11328,9673],"stattrak_volume":[131,97,113,10,16]},"657":{"index":657,"max":0.86,"min":0,"rarity":3,"name":"Blueprint","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA0tF0vPRsXzu6mwkYvzSCkpu3IiqTZgAmCJIlRLEP5BXpxtPlMOOxswPZithFyyj3iyNPvCo96r1QBb1lpPPa5SpubA","stattrak":true,"normal_prices":[10690,2203,626,543,459],"normal_volume":[217,600,736,56,99],"stattrak_prices":[11314,2645,1182,1162,1152],"stattrak_volume":[78,263,313,19,54]},"705":{"index":705,"max":1,"min":0,"rarity":5,"name":"Cortex","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_u1jpN5lRi67gVNz4G7Qm938cS_Da1AhXpB1EeVb4xm4mtDjN7vj4A3b2NpGyCr52i4Y8G81tMzdoYZ7","stattrak":true,"normal_prices":[2557,630,343,299,295],"normal_volume":[437,1080,2214,377,256],"stattrak_prices":[3911,1367,736,733,763],"stattrak_volume":[185,311,357,115,107]},"796":{"index":796,"max":0.6,"min":0,"rarity":3,"name":"Check Engine","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSM-CsA2KDydFlsedsWzChkBkYvzSCkpu3Iy6RbQYnXJZ2F7QN4UPqkIfmNeni5laNit1Dyiz42C5JvCdo57xQA71lpPMz6iO7bg","souvenir":true,"normal_prices":[236,119,93,80,69],"normal_volume":[1084,762,1412,76,108]},"817":{"index":817,"max":0.5,"min":0,"rarity":4,"name":"Flashback","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_uh6sfJhTSiwniIrujqNjsH6dnKfbAdxAsF3ELQCu0Hsmty1N76z71GIit4RySX_2CJI6yk9tucLT-N7rUYlhjC0","stattrak":true,"normal_prices":[286,64,53,67,77],"normal_volume":[497,550,1156,84,145],"stattrak_prices":[312,167,134,189,253],"stattrak_volume":[233,440,569,46,46]},"818":{"index":818,"max":0.55,"min":0,"rarity":3,"name":"Purple DDPAT","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sCmOAwPpJoPR7XyW2qhEutDWR1N-rcHPBPFMiDZUkF-9Z4ETtxtDkYu3js1ffg94Tnn2o3yMavH0957ocEf1yWMwziKM","souvenir":true,"normal_prices":[3876,1026,662,1472,1664],"normal_volume":[383,144,133,20,20]},"830":{"index":830,"max":0.68,"min":0,"rarity":3,"name":"Alpine Camo","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSJ-OQBliS0-dxuPVWTCi-miIyoC26lob-KT-JaVIpXpRxFuIMtRe4x9PjYrni7wfejYpFnn3-jCNB6C4_5u4FU6It8rqX0V8gYmZtWA","normal_prices":[257,76,39,41,35],"normal_volume":[3606,2904,5611,212,246]},"922":{"index":922,"max":0.37,"min":0,"rarity":4,"name":"Orange Anolis","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSIf2sAm6KwPxyj_NsSxa_nBovp3OHn4qqcX3FbQMgD5okQeFYtBbsktLmMeux5leLjIIXxXn4i3wdvC9s_a9cBikK0tGN","souvenir":true,"normal_prices":[9620,2676,3885,0,0],"normal_volume":[71,64,29,0,0]},"991":{"index":991,"max":0.7,"min":0,"rarity":5,"name":"Monster Mashup","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLkjYbf7itX6vytbbZSI-WsG3SA_uVkv-pmXBa_nBovp3PQn46ueX3FbAB0WZMjTe9csEKwk9XvNbnl41Tcj48WzHqv3HhP5ydj_a9cBuLIfNg1","stattrak":true,"normal_prices":[9972,3291,2180,2393,2476],"normal_volume":[242,315,312,33,35],"stattrak_prices":[10910,5865,3118,3501,3321],"stattrak_volume":[106,114,106,10,27]}}},"63":{"name":"CZ75-Auto","sticker_amount":5,"type":"Weapons","paints":{"1036":{"index":1036,"max":0.9,"min":0,"rarity":3,"name":"Circaetus","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H-ebB3Wc1ud4tN5lRi67gVN242-AzNuoIyieOg8lDJdyEeVe40TqxoDvZLixtVPZ2IhFmC333yNJ8G81tFbyihAW","stattrak":true,"normal_prices":[183,23,18,15,15],"normal_volume":[97,156,221,61,62],"stattrak_prices":[232,51,33,28,27],"stattrak_volume":[82,152,233,43,69]},"1064":{"index":1064,"max":0.7,"min":0,"rarity":4,"name":"Syndicate","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M26eqVkLs-QFDDF_uJ_t-l9ASjglxhw52rQy974IirCa1UiC5R4RbJbsxjrk9SxMb7k4lfZ2o9AzirgznQeG7VwMmI","normal_prices":[4047,1403,704,893,869],"normal_volume":[159,81,76,6,33]},"1076":{"index":1076,"max":0.8,"min":0,"rarity":1,"name":"Framework","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s24bbZ5KfecB2uc1P1_v-9WQyC0nQlp4WrQn42pIiqTZlQpXMByE-8Mu0Huxte0Y-zl41Pci4lFxST_33lA6TErvbh9z0zyoQ","souvenir":true,"normal_prices":[349,115,131,100,79],"normal_volume":[33,35,61,4,59]},"1195":{"index":1195,"max":0.563291,"min":0,"rarity":2,"name":"Copper Fiber","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2tabZvL_6sCG6SxPxJs_s-Gha_nBovp3OEzIn8c3qUagUiD5p0FuILtUKxm4e2Mrzms1baiIpCyiiqhi1J6yxo_a9cBnTQQcTV","souvenir":true,"normal_prices":[40,5,1,2,1],"normal_volume":[2461,686,390,35,59]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s25baZ-H_yaCW-Ej-0u4-VsH3G2x0x-sGXQyY76JXPGOAQkCMAlR-YNsBDqxtHhZerjsgTAy9USIjIDnE8","stattrak":true,"normal_prices":[2802,517,214,246,182],"normal_volume":[30,206,138,33,53],"stattrak_prices":[9373,562,242,237,229],"stattrak_volume":[8,111,228,32,49]},"1329":{"index":1329,"max":0.7,"min":0,"rarity":1,"name":"Pink Pearl","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4PeReK1jK8-DC2aCzdF6ueZhW2exk0xx6mnSmN-qci_BOwAgDZd3ReUO4BW4wYDmMejq51OL34lBmyT9kGoXudH7YXET","normal_prices":[3,1,1,1,1],"normal_volume":[428,198,543,47,173]},"1390":{"index":1390,"max":0.6,"min":0,"rarity":1,"name":"Honey Paisley","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9veReKVkM_yWF1iUxP13pN5lRi67gVN2tW3Sntuvd3OROFUoXsB2Q-9Zs0Hqlta0Pujr7waIiYJAxS-sjy0c8G81tBzzAWSY","normal_prices":[6,1,1,1,1],"normal_volume":[420,172,262,128,398]},"147":{"index":147,"max":0.8,"min":0.06,"rarity":1,"name":"Jungle Dashed","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I_826abRoH-ObAXWE_uRjvuZlSha_nBovp3PQyt2reHrGPAQiDJYjTOQItRDpwd3kZO23sQLY3Y0TmX75iXxB631i_a9cBsRmAsJf","normal_prices":[559,103,84,82,76],"normal_volume":[136,130,355,138,97]},"218":{"index":218,"max":0.4,"min":0,"rarity":3,"name":"Hexane","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s2sZLFoKPWLMWuZxuZi_rBqS3vrkRxz5W7dnN2oIyiTZgYhXpN5EOIPsUbsloC1M-_qs1HdiYlbjXKpP5VEBps","stattrak":true,"normal_prices":[559,310,332,753,0],"normal_volume":[42,62,110,7,0],"stattrak_prices":[678,340,229,796,0],"stattrak_volume":[28,72,120,5,0]},"268":{"index":268,"max":0.2,"min":0,"rarity":4,"name":"Tread Plate","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2qYaVgL_6XMXecwPpzj-1gSCGn20l_62-Bzd39cH2QaAYoD8ckE-9csxmxx9biML_q4w3Wi4gTmSyvjShXrnE8FqKNMu4","stattrak":true,"normal_prices":[1334,578,663,0,0],"normal_volume":[100,48,5,0,0],"stattrak_prices":[669,669,855,0,0],"stattrak_volume":[51,60,11,0,0]},"269":{"index":269,"max":0.4,"min":0,"rarity":5,"name":"The Fuschia Is Now","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2ofbduKPmSMWuZxuZi_uM-Sn_hlhgi4D_RnImrJC3COFIoApB3FLUP4RS9mtSzYu_r7wHZjopbjXKpFZZFzGk","stattrak":true,"normal_prices":[4749,2054,1937,2402,0],"normal_volume":[100,77,26,5,0],"stattrak_prices":[4833,2842,3117,4198,0],"stattrak_volume":[34,24,29,2,0]},"270":{"index":270,"max":0.75,"min":0,"rarity":6,"name":"Victoria","collections":["set_weapons_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a_s2rfKdlJfSsDX3HlNF6ueZhW2fkk04i5WrXmY2sc3qfPFAlWZd3EOdY4Bi6loCxPu7h51fZjNlGzST5kGoXuTXAF0gA","stattrak":true,"normal_prices":[10540,7508,7305,9154,7101],"normal_volume":[106,95,86,4,22],"stattrak_prices":[21147,9261,8282,11000,8751],"stattrak_volume":[29,22,41,3,7]},"297":{"index":297,"max":0.8,"min":0,"rarity":3,"name":"Tuxedo","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4M2heqdsH_yaCW-Ej7lz6Oc9GXC3zEwh4D_VzY36eHvDaQYkXJV3FLMJtEG_kNHiZLmxtAPAy9USE1srPao","normal_prices":[257,71,29,35,28],"normal_volume":[361,167,288,60,115]},"298":{"index":298,"max":0.3,"min":0,"rarity":1,"name":"Army Sheen","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2veql0H-ObB2mV_uJ_t-l9ASrgl0lzsWSDytatICnDaVQmWZt3Q-MJsxS4m4DgYuuz7w2L3ogRyivgznQeVdjncD8","normal_prices":[512,441,335,0,0],"normal_volume":[42,95,28,0,0]},"315":{"index":315,"max":0.7,"min":0,"rarity":3,"name":"Poison Dart","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGJKz2lu_XuWbwcuyMESA4Fdl-4nnpU7iQA3-kKnj53UO7ryvaac0dKiVW2XBlrwmsuA6GH3hkE9062qEz9aoeCmVawchW8dwEe4MrFDmxWPDR_Ga","stattrak":true,"normal_prices":[1318,413,252,28025,747],"normal_volume":[60,38,29,1,20],"stattrak_prices":[2520,605,262,1102,577],"stattrak_volume":[13,51,31,7,11]},"32":{"index":32,"max":0.08,"min":0,"rarity":2,"name":"Silver","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4c29Yah7JeKsAm6Xyfo457c5Gn7nwEV-6jvRy96rcHPEPwcpDcZ4RrQItxHsk9bnMOrg5QKPi5UFk3v7O4lRrA","souvenir":true,"normal_prices":[598,1362,0,0,0],"normal_volume":[299,11,0,0,0]},"322":{"index":322,"max":0.8,"min":0.06,"rarity":3,"name":"Nitro","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4M2heqVjJ_WsD2STxOBio7NWQyC0nQlptWvXw9_7I3zCaVB1C5YkTeAIsRC8m9a1MePg5VGLiI9CnH772C9AuDErvbi4qlLcDQ","souvenir":true,"normal_prices":[8641,2624,860,888,1205],"normal_volume":[14,42,56,15,11]},"325":{"index":325,"max":0.1,"min":0,"rarity":4,"name":"Chalice","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s28Z71sLM-fB2CY1aBzsrQ5HnyyzBh25jzcyI3_dyqXaFcmC8ByReBZuxi-lYXlMei05FSPlcsbmsOlfuvI","souvenir":true,"normal_prices":[42970,57993,0,0,0],"normal_volume":[20,2,0,0,0]},"333":{"index":333,"max":0.8,"min":0.06,"rarity":1,"name":"Indigo","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I4M2nZqBkJ_-sD2mU_ulktfhWQyC0nQlp5zmGzo2rcXnDbFJxDZoiRrII40Puw9a2YeOwsgbdjNlCnCSoiilK6TErvbj4Q9U5dw","normal_prices":[1772,413,331,288,198],"normal_volume":[35,40,233,36,26]},"334":{"index":334,"max":1,"min":0,"rarity":3,"name":"Twist","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2pcbZsNPWsAm6Xyfo45bY7TXzjxk5w42XXn93_cnLFOFN1C5t0ROANsBLtx9ziNu6x4FHejpUFk3uH-TvaLw","stattrak":true,"normal_prices":[689,160,81,82,114],"normal_volume":[126,94,90,151,75],"stattrak_prices":[354,172,105,88,106],"stattrak_volume":[48,192,167,131,84]},"350":{"index":350,"max":1,"min":0,"rarity":4,"name":"Tigris","collections":["set_community_4"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tP_FsbeSaCWKC_uJ_t-l9ASvil0R15WjUmYmqc33CaQ91W5QlRbVetETtwNC1P-u34g2L2dpEmS_gznQebcVQ6rs","stattrak":true,"normal_prices":[905,226,188,187,182],"normal_volume":[179,261,262,108,39],"stattrak_prices":[1023,317,178,169,172],"stattrak_volume":[99,136,140,109,76]},"366":{"index":366,"max":0.58,"min":0,"rarity":1,"name":"Green Plaid","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1T9s2-ZKVkJKKsAm6Xyfo4s7Y4Fn22xkhw6mzSyY2tcn3DaVIhXpshFLQD5hTpmtCzP-Pg4wKLg5UFk3t4lHCTnQ","normal_prices":[574,388,280,408,398],"normal_volume":[14,15,52,7,3]},"435":{"index":435,"max":0.7,"min":0,"rarity":4,"name":"Pole Position","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H-CBC2SZ0ud5vt5lRi67gVNy4mTdzdmgc33COg90DcB2FuMPtxLpldSxZeLn4w2K34NCzXj9hnsY8G81tCL36RK-","stattrak":true,"normal_prices":[704,181,104,111,108],"normal_volume":[204,276,341,35,81],"stattrak_prices":[604,261,132,136,120],"stattrak_volume":[124,209,217,18,31]},"453":{"index":453,"max":0.08,"min":0,"rarity":3,"name":"Emerald","collections":["set_chopshop"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4c2rZaF_IfyXMWuZxuZi_rNsFyzqzUhy4zzWmdqvdnPFbQYoCpolQeMOuxHum4HnMbjl4FCM2I1bjXKpBQcUgmo","normal_prices":[4185,6285,0,0,0],"normal_volume":[355,28,0,0,0]},"476":{"index":476,"max":1,"min":0,"rarity":5,"name":"Yellow Jacket","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4Ic-QBmaD1edstfNWQyC0nQlptjjRn9z8cHjBbgB2WccmFOAPukbux9zlP77nsQXf3YxFzSX9iy9AvDErvbgg0Q8tFg","stattrak":true,"normal_prices":[2923,629,391,374,347],"normal_volume":[77,81,117,82,19],"stattrak_prices":[4740,1660,798,855,901],"stattrak_volume":[57,29,34,27,15]},"543":{"index":543,"max":1,"min":0,"rarity":4,"name":"Red Astor","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4Ic-BC2OR0vp5ot5lRi67gVMh5D_cwor7cy7GZ1UpA8F0QrQP5BjuwdHiZr7r5FeNjIpAmyT8hnlI8G81tORsc2LX","stattrak":true,"normal_prices":[947,140,108,103,99],"normal_volume":[174,164,309,103,103],"stattrak_prices":[802,221,114,112,110],"stattrak_volume":[77,82,145,39,62]},"602":{"index":602,"max":1,"min":0,"rarity":3,"name":"Imprint","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4H-SBC2aU_uJ_t-l9AX_ql0kksWTVyYupJC7FOAUiAptxQudbs0KxkNK1MLzl4wOPjIsWyCngznQeZTDWXeo","stattrak":true,"normal_prices":[380,31,37,18,18],"normal_volume":[183,188,113,48,153],"stattrak_prices":[368,63,24,21,23],"stattrak_volume":[50,101,105,67,122]},"622":{"index":622,"max":0.5,"min":0,"rarity":3,"name":"Polymer","collections":["set_community_15"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2tcrI_H_2VMWuZxuZi_rcwSnHjwxgh527SzI6oIHKUZ1dxA8ckTbUCskG6ldTuY-nh5FTf34JbjXKpj6qz0B4","stattrak":true,"normal_prices":[470,49,48,46,41],"normal_volume":[387,112,182,33,24],"stattrak_prices":[138,48,33,47,55],"stattrak_volume":[118,90,127,34,21]},"643":{"index":643,"max":0.56,"min":0,"rarity":5,"name":"Xiangliu","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcpt-LvGYC3Sv0ftkoO1scCW6khUz_WTcw9r7JH7BOgApApojQuBb5kO5lNO1ZO_h4VaM2o5Gm36s3HgbvH51o7FVgkdxNDg","stattrak":true,"normal_prices":[2961,1281,1116,1360,1270],"normal_volume":[147,130,111,20,26],"stattrak_prices":[3528,2150,2090,2045,2102],"stattrak_volume":[54,37,42,11,19]},"687":{"index":687,"max":0.7,"min":0,"rarity":4,"name":"Tacticat","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4H-SSDXOZwu9ij-1gSCGn2x4k5zvVm9z8IH7FZwFyCJckR7NfshSwwNGyMLzn41fejINHn3r6jy5XrnE8D8_CCNo","stattrak":true,"normal_prices":[410,138,82,97,84],"normal_volume":[434,392,566,63,80],"stattrak_prices":[523,227,132,185,141],"stattrak_volume":[197,142,247,35,52]},"709":{"index":709,"max":1,"min":0,"rarity":4,"name":"Eco","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H_WQAVicyOl-pK87HivqxR5xt2_Qnt6qI3-fPFciWJBzRuFZ5Ba_moG0Mrm04lfajYwQ02yg2Q7xomN1","stattrak":true,"normal_prices":[2682,342,90,66,60],"normal_volume":[180,319,279,172,70],"stattrak_prices":[1903,381,164,115,124],"stattrak_volume":[109,123,139,32,76]},"859":{"index":859,"max":0.7,"min":0,"rarity":3,"name":"Emerald Quartz","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1a4s2ter1-NPGfAm6KxOpJt_NsSieMmRQguynLyNivIn6XPFUnXsYmFuNbukK6ltfiYeux5A2M2dgXyCqo2igY7yhutfFCD_SCQHbp0w","normal_prices":[15003,9081,9298,165975,9428],"normal_volume":[30,16,8,1,10]},"933":{"index":933,"max":0.5,"min":0,"rarity":2,"name":"Midnight Palm","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1I_82-aahgH_6aCW-E_uJ_t-l9ASiwl0lw5z_Unt_9IHqRbwV1X5QmFuJZtxi-l9HuML7htgGN3t1NzSjgznQe0h5WimA","souvenir":true,"normal_prices":[181,85,34,110,132],"normal_volume":[162,36,65,48,16]},"937":{"index":937,"max":0.57,"min":0,"rarity":4,"name":"Slalom","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2vard5MvGQGliHyeditd5qVRa_nBovp3Pdzt3_eSqUOA4hDpB1EbQPshXqkdPmPrm04APXjdhExXis2C1N7io9_a9cBtMaUZjs","normal_prices":[2188,918,711,816,924],"normal_volume":[255,147,164,31,14]},"944":{"index":944,"max":1,"min":0,"rarity":3,"name":"Distressed","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1Y-s2tcvM4H_OWHGabzvpzj-1gSCGn208hsTyHw9z6eS2faQEoX5p1ELECtBi7xtG2Pr7j5APZjopDynj_iHtXrnE8XiCan1o","stattrak":true,"normal_prices":[176,20,25,18,15],"normal_volume":[178,21,248,143,74],"stattrak_prices":[147,25,15,12,15],"stattrak_volume":[48,43,42,48,30]},"976":{"index":976,"max":1,"min":0,"rarity":3,"name":"Vendetta","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLyhMG1_B1c_M2tcvM4H-aWAGOV1fp3j-1gSCGn205ysWiEw9iqInueOAZyD5J1EOdf4Ea9l9bmMb_q4AaI2NhGySz6iStXrnE8_AWQoqE","stattrak":true,"normal_prices":[576,136,70,55,53],"normal_volume":[62,111,68,60,71],"stattrak_prices":[484,139,83,72,55],"stattrak_volume":[22,22,33,35,22]}}},"64":{"name":"R8 Revolver","sticker_amount":5,"type":"Weapons","paints":{"1011":{"index":1011,"max":0.6,"min":0,"rarity":2,"name":"Phoenix Marker","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vZZt9KP-WAG6I_vp3t_JWTSWmkCIrujqNjsH9dSnGZgQiC5Z5EOQP5ETsmtLjNuzi5lPe3tpEmyj9ji0a6Cxp4blRT-N7rZuorHqs","normal_prices":[2215,658,459,457,454],"normal_volume":[197,138,90,24,31]},"1047":{"index":1047,"max":1,"min":0,"rarity":3,"name":"Junk Yard","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-BG3SEyud4t95lRi67gVMj4WTdzY2qcXjFbwUmDpcmTOEO5xC-x9XgYb7h71eM2dlMmCX_3CpK8G81tNsMj6E-","stattrak":true,"normal_prices":[1126,27,22,15,15],"normal_volume":[163,394,203,91,158],"stattrak_prices":[249,60,33,30,29],"stattrak_volume":[94,113,209,162,66]},"1145":{"index":1145,"max":1,"min":0,"rarity":4,"name":"Crazy 8","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_JeacAnGV09FmpfN5QyyMkBEupzi6lob-KT-JZlJ0X5MhEOFcthO9wIHuZrng5A3XgotFmSv82ClAuHo46-wHU6p38rqX0V9gOeDH5A","stattrak":true,"normal_prices":[417,73,37,32,30],"normal_volume":[348,665,930,263,176],"stattrak_prices":[491,143,62,58,54],"stattrak_volume":[173,188,510,235,174]},"12":{"index":12,"max":0.8,"min":0.06,"rarity":3,"name":"Crimson Web","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2mcZt6JfKAMWuZxuZi_rdrHny2wkR_sDuHw4muJXuWOwZyAsdzTeNcu0S4ktfkP77htAOPiYlbjXKp8jg9HbM","stattrak":true,"normal_prices":[1429,75,20,25,17],"normal_volume":[40,504,182,75,68],"stattrak_prices":[3105,232,38,52,30],"stattrak_volume":[58,193,134,42,83]},"123":{"index":123,"max":0.851064,"min":0,"rarity":3,"name":"Tango","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c28MJt_L-OWHViRz-pJt_RnXBa_nBovp3PSm4urdy7Da1UjWJolF-RbshfqldXuMuqxsgGKi45HmXj4iS5IuCxi_a9cBo6oJFLo","stattrak":true,"normal_prices":[219,37,15,16,12],"normal_volume":[285,231,240,62,58],"stattrak_prices":[453,121,28,46,30],"stattrak_volume":[75,96,132,71,69]},"1232":{"index":1232,"max":1,"min":0,"rarity":4,"name":"Banana Cannon","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-RD2mRz-9JvOhuRz39kU4msjzdmd6peXKTOFd2DcchEOEP40btlt3lN7iz5FbeiNpFzi_83zQJsHgWY2btRg","stattrak":true,"normal_prices":[373,59,32,31,29],"normal_volume":[454,781,956,283,234],"stattrak_prices":[412,91,44,38,42],"stattrak_volume":[91,127,183,62,151]},"1237":{"index":1237,"max":0.76,"min":0,"rarity":1,"name":"Inlay","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_JeacAnGV09F3s-BnWyGmhiIloTKLgIrGLSLANkI-A5cjFOBc5ES_m921Ybux5gXeioMQzy2ojHlMuChi4bxQVfFzr6OEjRaBb-Nm3twhXg","souvenir":true,"normal_prices":[52,12,3,5,3],"normal_volume":[359,517,350,25,106]},"1276":{"index":1276,"max":0.80339,"min":0,"rarity":1,"name":"Cobalt Grip","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z6dlH_mdCm6XztFxouh5XBa_nBovp3ODyI2scn3BO1J2WJJ0F-MLsha6wNTgY7_m4VePid9AzSv4iC9LuiY5_a9cBmU4DDcB","normal_prices":[8,1,1,1,1],"normal_volume":[456,475,498,68,306]},"1293":{"index":1293,"max":0.65098,"min":0,"rarity":2,"name":"Leafhopper","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2veZt5KeSSAG6FzNF3s-htcCW6khUz_W-Gy96pJXmWOwJyX8QlF7Zeshm5wYbiMOvm5laLjohNxCis3S8a5311o7FVOU-zWog","normal_prices":[19,6,2,2,1],"normal_volume":[612,404,476,36,65]},"1363":{"index":1363,"max":0.80339,"min":0,"rarity":2,"name":"Dark Chamber","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z6dlH-OeAWyV_ulkufF6cCW6khUz_WqGmNatdnzDbAR0CcR2FLQO4UKxxNfuM-rj4QzX3YsTziuqiHgf7351o7FV2A-FKGc","normal_prices":[35,5,1,1,1],"normal_volume":[259,354,297,40,92]},"1389":{"index":1389,"max":0.80339,"min":0,"rarity":1,"name":"Mauve Aside","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z6dlH_OcHneV09F3s-JsQT2MhxgxvDGTn53GLSLANkI-C5d5Q7EK4xLpxtDhY-vksleP3d1DzXn52itKvCxstewGVKosqPDTiRaBb-Oa78uGvw","normal_prices":[5,1,1,1,1],"normal_volume":[377,231,1089,42,109]},"27":{"index":27,"max":0.8,"min":0.06,"rarity":1,"name":"Bone Mask","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29eJt5IeCWMWuZxuZi_rNtHX_hwh91sWjXm9qreSqfaAIgD5d3RLNbt0Pqx4e2Mrjn5wHbi99bjXKpUIbZI8w","souvenir":true,"normal_prices":[189,7,1,1,2],"normal_volume":[66,152,258,42,1149]},"37":{"index":37,"max":0.08,"min":0,"rarity":3,"name":"Blaze","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vaZtrLPGeC3SvzedxuPUnTCznkR9xsGiHzomgIn-UPwN1DZZyELNe5xDrlNTgY-jm5FeM3tkUnDK-0H3jUXrCJQ","normal_prices":[332,340,0,0,0],"normal_volume":[1408,105,0,0,0]},"40":{"index":40,"max":0.8,"min":0.06,"rarity":1,"name":"Night","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z5tjKfebGlicyOl-pK9oGCjkk0sktWyAntv6cSrDaAdzAsFxQuFZtRnqwNPlP7jg5QHd39oU02yg2UcfjkJE","souvenir":true,"normal_prices":[1212,83,144,173,65],"normal_volume":[75,48,142,8,12]},"522":{"index":522,"max":0.4,"min":0,"rarity":6,"name":"Fade","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vaZtrIfSWMXWV1-F6puR7cCW6khUz_W2EnIuheSiVZgIgX8F3Ee9YthLuw9LjMePqswCL34kQzHj6iypPu351o7FV6jjqgC8","stattrak":true,"normal_prices":[8645,7547,6863,8553,0],"normal_volume":[297,250,147,9,0],"stattrak_prices":[12109,8316,7749,14902,0],"stattrak_volume":[78,35,30,2,0]},"523":{"index":523,"max":0.4,"min":0,"rarity":5,"name":"Amber Fade","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2vaZtrIfSWMWqV1e96vOhqcDu2gxIrpTiXpYPwJiPTcAIpDJckF-9cuhfqltDuZujgs1DZj4hDy338jnhM73xusOcKVaos-qPJz1aW9R0yRq8","souvenir":true,"normal_prices":[389,136,122,217,0],"normal_volume":[191,611,618,49,0]},"595":{"index":595,"max":1,"min":0,"rarity":4,"name":"Reboot","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2tfZt_eM-QF2WV0_1mv_N9cCW6khUz_WjRyouseHqUPwQoXMNyQbMM4ETulNSxNuq3s1DZi95CzH_-2Cgf7Hp1o7FVySZFkkA","stattrak":true,"normal_prices":[1248,233,110,95,97],"normal_volume":[163,269,215,58,58],"stattrak_prices":[1774,490,208,151,171],"stattrak_volume":[84,132,194,60,47]},"683":{"index":683,"max":0.7,"min":0.03,"rarity":5,"name":"Llama Cannon","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-fAmadwO13vu9mQRa_nBovp3OEz9n7JH-UPwEoA5t2TLFYtBmxlNzhYuOztgHZjo9Mzyqq3C9O63o5_a9cBr5nn1G8","stattrak":true,"normal_prices":[3529,945,844,864,846],"normal_volume":[65,101,220,18,59],"stattrak_prices":[4997,1530,958,1032,990],"stattrak_volume":[27,37,63,6,29]},"701":{"index":701,"max":1,"min":0,"rarity":3,"name":"Grip","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_JeacAnGV09FiouRoSxa_nBovp3PTwt-hJH-WbFMnWJdwRuUPtEG7k93iN7uw4wLf2I9FxCr733hBvXxj_a9cBlQvB05B","stattrak":true,"normal_prices":[101,18,12,9,10],"normal_volume":[154,108,214,73,59],"stattrak_prices":[152,26,15,14,11],"stattrak_volume":[121,107,138,71,63]},"721":{"index":721,"max":0.7,"min":0,"rarity":3,"name":"Survivalist","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2tfZt_eM-AG3WGyPh3vOh6Wxa_nBovp3OBzditcSmSOFUnDsEiE-4MuhPqw4bmY-jisQff2dhGnCyq2n4a631v_a9cBkWPt9yi","stattrak":true,"normal_prices":[309,29,28,29,23],"normal_volume":[182,141,53,20,46],"stattrak_prices":[132,63,27,49,34],"stattrak_volume":[45,84,131,33,49]},"798":{"index":798,"max":0.8,"min":0.06,"rarity":2,"name":"Nitro","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29Z5tiMvGdCWKvwO11te99XHqMmRQguynLzo34IiiTagQoWZUlFOYOsha6ltLlPuPlsweMj4tDnyT6jy5MuytosvFCD_SeBWArcQ","souvenir":true,"normal_prices":[517,20,8,9,7],"normal_volume":[115,299,291,331,300]},"843":{"index":843,"max":0.8,"min":0.25,"rarity":5,"name":"Skull Crusher","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2tfZt_JeacAnGV09F5oPF7Sjqgmg8YvjiBk5r0b3uSaQUiCsZ2E-EI5EKwldW2NOzqslffgopHxHj-jHxLvH4_tbwHWaQ7uvqApie1xz8","stattrak":true,"normal_prices":[0,0,619,477,482],"normal_volume":[0,0,356,112,109],"stattrak_prices":[0,0,1085,640,554],"stattrak_volume":[0,0,85,21,48]},"866":{"index":866,"max":0.6,"min":0.06,"rarity":1,"name":"Canal Spray","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c29eJt-MOKSF1iHwPpzot5lRi67gVN04jnTyd2hIHqUOwUiX8BzEbYM4xDum4K2ZrvltQWPgthFm3j63yhB8G81tDz6WJ29","normal_prices":[1707,460,289,303,198],"normal_volume":[16,74,74,18,38]},"892":{"index":892,"max":0.8,"min":0,"rarity":3,"name":"Memento","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-eC2qVz_p5j-1gSCGn20wk4D7Vz9_9JHyeawMnXpByReMDshfuxIDnPunj5gCN2ohFyST_2C1XrnE8s2YJKK4","stattrak":true,"normal_prices":[500,238,97,146,81],"normal_volume":[66,47,59,7,35],"stattrak_prices":[1121,336,163,283,138],"stattrak_volume":[42,20,34,10,9]},"924":{"index":924,"max":0.6,"min":0,"rarity":1,"name":"Desert Brush","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2mcZtvMuWABliTwON5j_VoQRa_nBovp3PUz9iodirCaQQkA5R2RbFe5kO5lt3lZuLn41DfiI9FxSn4j38f73xs_a9cBhkVhlil","souvenir":true,"normal_prices":[123,43,41,65,39],"normal_volume":[460,209,328,52,65]},"952":{"index":952,"max":0.6,"min":0,"rarity":3,"name":"Bone Forged","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLjm4Dv8TRe_c2pe5t_eM-fC3GZwPp-se9WQyC0nQlp5jmEydqpci2SaQdyDZEjEeFe4Re4wdznNu6ztgbWidkQzSz6jiJKuDErvbgK8jU85g","stattrak":true,"normal_prices":[63,19,26,14,18],"normal_volume":[439,106,402,21,104],"stattrak_prices":[89,21,13,25,20],"stattrak_volume":[62,123,104,34,63]}}},"7":{"name":"AK-47","sticker_amount":5,"type":"Weapons","faction":"t","paints":{"1004":{"index":1004,"max":1,"min":0,"rarity":6,"name":"X-Ray","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV7x_IemsAm6Xyfo44OQ_Tn3il08k4GzVyo2qeSnDaQAlXpF1RuZZsUO4kNLjNO2w51HWjJUFk3tTkVsnkA","normal_prices":[259287,124657,71295,49475,40492],"normal_volume":[93,72,94,57,40]},"1018":{"index":1018,"max":1,"min":0,"rarity":5,"name":"Panthera onca","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV65sJ-WSHFicyOl-pK9sSS-2wEV25z_Qw4mqcn3EOgclCpJ3TbRctELtm9HmNLix4wHc3o5H02yg2Q50xEQx","souvenir":true,"normal_prices":[55120,29574,22305,20157,18052],"normal_volume":[89,60,54,28,25]},"1035":{"index":1035,"max":1,"min":0,"rarity":4,"name":"Slate","collections":["set_community_28"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSMOKcCGKD0ud5vuBlcCW6khUz_W3Sytb4cCqTOFUpWJtzTOUD5hPsw9a0Yrnrs1SK3ooXzy6shilM5311o7FVYrIufmI","stattrak":true,"normal_prices":[1567,689,444,346,349],"normal_volume":[2851,7323,11711,3519,4137],"stattrak_prices":[4563,2095,1333,1180,1163],"stattrak_volume":[651,1210,1781,650,833]},"1070":{"index":1070,"max":0.4,"min":0.02,"rarity":3,"name":"Green Laminate","collections":["set_vertigo_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sCXWVxOBJvOhuRz39xUgj4WmByIuqInLCag8jWZJ3F-AL4xi6wd22Ne3rtQLZjYNEnHj92zQJsHgD_GLtVg","souvenir":true,"normal_prices":[13768,3357,2637,3719,0],"normal_volume":[136,147,137,21,0]},"1087":{"index":1087,"max":0.65,"min":0,"rarity":6,"name":"Leet Museo","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSIfKAGnWRwvpJvOhuRz39xEly6jmHmdiqeS6UawMmCsBzFrRb4BLtx9DgPr635A3Xj45GySj5jzQJsHjwtGRbjQ","stattrak":true,"normal_prices":[54624,23492,17003,8929,7169],"normal_volume":[133,247,318,73,77],"stattrak_prices":[29641,14882,10387,11948,11493],"stattrak_volume":[90,103,116,12,8]},"113":{"index":113,"max":0.9,"min":0,"rarity":5,"name":"The Outsiders","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WRfJtvNeOsAm6Xyfo4tbg7G3-wxxwl5mzRyYqodSrBagMjCZJxELMPthi8lNLgYuzltgHc3ZUFk3sO-7HKrg","stattrak":true,"normal_prices":[6533,1426,733,711,716],"normal_volume":[292,883,1876,195,206],"stattrak_prices":[9676,3196,1845,1892,1886],"stattrak_volume":[110,205,290,45,67]},"1141":{"index":1141,"max":1,"min":0,"rarity":6,"name":"Nightwish","collections":["set_community_30"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSLvmUBnOHyP1-j-1gSCGn20glt2nXnt78cnKUbwN2XJp2R-ZbuxHqlNXlMLiw5AHc3toWnCur23hXrnE8p0T2bx4","stattrak":true,"normal_prices":[10050,6290,5764,5456,5341],"normal_volume":[501,1023,1326,456,275],"stattrak_prices":[13244,6491,5560,5486,5322],"stattrak_volume":[198,274,292,92,74]},"1143":{"index":1143,"max":0.77,"min":0,"rarity":5,"name":"Ice Coaled","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSI_-UGm-Zz-llj-1gSCGn2x4l5z_RyNj6JXnEbgFzXMYjEOUIsBe5m9exP-zg4leMj4pGxXn7jCJXrnE84asPq_0","stattrak":true,"normal_prices":[1564,763,422,471,375],"normal_volume":[2418,4776,9077,237,535],"stattrak_prices":[3529,1797,977,1072,954],"stattrak_volume":[598,781,897,64,83]},"1171":{"index":1171,"max":0.797346,"min":0,"rarity":6,"name":"Inheritance","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQ0OKheqdoLPGaAFicyOl-pK8xGH_nwUt1sGrSz9ivcHKQOAcjXMYkRu5Yuxe4lYCyZOq25VSM2oMT02yg2UxBSEgA","stattrak":true,"normal_prices":[12968,6148,4162,3856,3526],"normal_volume":[1179,2448,4952,166,493],"stattrak_prices":[26701,13985,8023,9883,7276],"stattrak_volume":[270,419,593,49,92]},"1179":{"index":1179,"max":0.5,"min":0,"rarity":2,"name":"Olive Polycam","collections":["set_realism_camo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipP0OKhZL1SI_GeAViRyrohj-1gSCGn201-4G7dyo2oeXORaAIpCcFwTeEK4ELskNa0NeKxtVTXiItDySms3XxXrnE8JD9gyYo","normal_prices":[58,13,7,7,8],"normal_volume":[6495,2286,4559,140,118]},"1207":{"index":1207,"max":1,"min":0,"rarity":5,"name":"Searing Rage","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WRbbx9LP-AB3GV_uJ_t-l9AXu2lk1xsD-EnI3_JHmeaAV1CZB1RbEJtxfuxNHuMuq251PY3o4UxXjgznQeg4Qz-rg","stattrak":true,"normal_prices":[2872,677,436,393,387],"normal_volume":[828,1200,2151,616,443],"stattrak_prices":[3669,1447,900,897,920],"stattrak_volume":[225,298,464,121,160]},"1218":{"index":1218,"max":0.75,"min":0,"rarity":4,"name":"Midnight Laminate","collections":["set_timed_drops_cool"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFU6s2neq1pJeOQC2mE_v5jovFlSha_nBovp3PRnt36d36UOlUmCcF2TOZfsRC_ldW1ML625AbZ2dhHyn_7jSgauCtp_a9cBpVVSdXG","normal_prices":[2035,1033,380,365,238],"normal_volume":[1552,2317,2963,105,216]},"122":{"index":122,"max":0.8,"min":0.06,"rarity":2,"name":"Jungle Spray","collections":["set_aztec"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFL0OG-eqV0H_qGAGCcxNF6ueZhW2ewlhhz5T6ByY2oIi2XZgVxX8Z0FrFfsxnrl9bkMu625lbb2o9DzSyvkGoXuXE-297B","normal_prices":[15800,4110,1176,921,886],"normal_volume":[20,163,340,33,68]},"1221":{"index":1221,"max":1,"min":0,"rarity":6,"name":"Head Shot","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV6xoIfSsHW-f1dF-v-1mcCW6khUz_TzRnNigd3-SOg4lAsF1QOQN4xS4wdHnMu-0swaMjIxExSSoiyof6ih1o7FVGHIdVhw","stattrak":true,"normal_prices":[9355,4531,3000,2763,2666],"normal_volume":[415,1143,1593,315,238],"stattrak_prices":[10200,4412,2877,2573,2530],"stattrak_volume":[170,254,303,75,96]},"1238":{"index":1238,"max":0.73,"min":0,"rarity":3,"name":"Steel Delta","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSM-SBAWmV_uJ_t-l9AXqyk0hy5GWEyduhdC2TPAEjDptzQbRf5EHrmoWyZu22sQLciokQyyzgznQesAEGx_A","souvenir":true,"normal_prices":[2891,307,167,218,209],"normal_volume":[332,488,853,99,466]},"1283":{"index":1283,"max":0.75,"min":0,"rarity":3,"name":"Wintergreen","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFU6s2jbbBsLPyaDViX0-tzvt47cCW6khUz_W-Ay96seSrBaQcnDJRyTbMDuxTsw9bmNLy0sQPb34JNyn_-jS9N6n51o7FVK4Nkj6A","normal_prices":[564,235,69,68,55],"normal_volume":[2102,1963,2455,184,248]},"1288":{"index":1288,"max":0.671875,"min":0,"rarity":2,"name":"VariCamo Grey","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFU6s24abZkI_GeAVicyOl-pK8_TXvhxh5_626Bn477dn-fbQcnXMZzEeMPtxe_w9DhY-OztAXc2IsT02yg2Vc0ERtW","normal_prices":[56,11,7,12,6],"normal_volume":[1754,276,1693,167,659]},"1309":{"index":1309,"max":1,"min":0,"rarity":5,"name":"Nouveau Rouge","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC6s2vY_A6H_6cG3GVwPtJvOhuRz39zBsm5j-HyNqpd32fPVd1AsB3RbEP4xntwdPuM-jl4QaK2NpCzX_23DQJsHjpyGbntg","normal_prices":[9870,2940,1091,801,802],"normal_volume":[453,748,1046,196,156]},"1352":{"index":1352,"max":1,"min":0,"rarity":6,"name":"The Oligarch","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WReLFrJvWBMWSF0vp5vd5lRi67gVNz4Tvdn4qoJC3Ba1V1WcdxTbFcsEbpxoHhNunnsVPYitlFm3392C4f8G81tEVBuxrI","stattrak":true,"normal_prices":[27833,10941,6376,3911,3579],"normal_volume":[299,873,787,251,206],"stattrak_prices":[56076,20797,10462,7351,7151],"stattrak_volume":[86,179,158,64,50]},"1358":{"index":1358,"max":0.75,"min":0,"rarity":4,"name":"Breakthrough","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC6s20baB-H_yaCW-Ej-olseI8Gyq1kBkh4GrVz4queXySPAd0XJEkQ7UMu0TrldaxYbzjsw3Ay9USrh0CgFA","normal_prices":[1410,736,335,309,220],"normal_volume":[458,596,933,74,92]},"1397":{"index":1397,"max":1,"min":0,"rarity":6,"name":"Aphrodite","collections":["set_xpshop_wpn_01"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI7PqRaa9SJPqaB2mvzedxuPUnGCi3wktzt2rRn92pdXuXbA4iDcdxQOIMsBK4k9S2Zeiw4lTdjdhNyTK-0H1wmrL4zA","normal_prices":[49550,3703,1809,1314,1280],"normal_volume":[305,2598,3323,1378,705]},"14":{"index":14,"max":0.8,"min":0.06,"rarity":5,"name":"Red Laminate","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sAm6Xyfo4tucxS3rjwRx_42zRwo6pdSnCPwAmX5ohFOIJsUTqwdThNOi0s1TajZUFk3t5vdi_Cw","stattrak":true,"normal_prices":[56419,15014,5939,6166,6415],"normal_volume":[29,239,772,79,107],"stattrak_prices":[89106,22152,14909,15075,19230],"stattrak_volume":[5,82,160,30,36]},"142":{"index":142,"max":0.8,"min":0,"rarity":6,"name":"B the Monster","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0P24bbZ9IeOAMWqfz_1itfNWTiLnwiIrujqNjsGocC6QPQNyA8FxReZYtEHrw4ezMe_nsgbWjYIXni782ipA5yxv5OkET-N7rajaE730","souvenir":true,"normal_prices":[56017,21851,13426,11333,7248],"normal_volume":[481,641,925,68,241]},"1425":{"index":1425,"max":1,"min":0,"rarity":5,"name":"Crane Flight","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNQu6WRa7ZsLvWsCGuZxuZij-1gSCGn20wksT7Xzo6ueX6VOgUmWZQiTO5btxDrldbmNru05QLfiN5EmHmsj3hXrnE8mi375M8","stattrak":true,"normal_prices":[8663,3793,1911,1270,1065],"normal_volume":[256,802,877,250,289],"stattrak_prices":[15714,7598,3947,2532,2326],"stattrak_volume":[48,178,184,64,59]},"170":{"index":170,"max":0.8,"min":0.06,"rarity":2,"name":"Predator","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFL0OirarZsI_GeMWuZxuZi_uMwF3i3xkh25W_VzNevICqTP1QoXpJ2E-MM40bpldXvY7yw4wXb3olbjXKpy8jW9Xo","normal_prices":[8476,1627,879,942,954],"normal_volume":[28,170,307,33,76]},"172":{"index":172,"max":0.8,"min":0.06,"rarity":3,"name":"Black Laminate","collections":["set_vertigo"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sDHCvzedxuPUnGnzjlh51sTyAzomrICnEbQByWcciTOQIsBG_m9LiZOLh7wfdi91DnzK-0H1Z7oynag","souvenir":true,"normal_prices":[31758,7144,3223,4010,4061],"normal_volume":[23,384,431,43,83]},"180":{"index":180,"max":0.76,"min":0.06,"rarity":6,"name":"Fire Serpent","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0PSneqF-JeKDC2mE_u995LZWTTuygxIYvzSCkpu3cnvFPQB2DpUkROFY4Rntw93lP7i241DbiI1BxSuviHlKunk_6-sHU71lpPMTRLyP4Q","stattrak":true,"normal_prices":[226628,105046,69574,74548,53772],"normal_volume":[80,423,648,23,72],"stattrak_prices":[453412,278845,174248,167877,131100],"stattrak_volume":[56,109,103,5,10]},"226":{"index":226,"max":0.4,"min":0.02,"rarity":4,"name":"Blue Laminate","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0POlPPNhIf2sDGuFxNF6ueZhW2fhzE5_5G7dnt_7JXufa1J0DZAkE-cKtBaxl9WzPuyz5lDY3YpAzCn9kGoXuZPu7T4u","stattrak":true,"normal_prices":[6406,1586,1435,2321,0],"normal_volume":[1423,1980,1679,63,0],"stattrak_prices":[4924,3501,3134,4672,0],"stattrak_volume":[555,617,608,14,0]},"282":{"index":282,"max":0.7,"min":0.1,"rarity":5,"name":"Redline","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSI_-RHGavzedxuPUnFniykEtzsWWBzoyuIiifaAchDZUjTOZe4RC_w4buM-6z7wzbgokUyzK-0H08hRGDMA","stattrak":true,"normal_prices":[0,14472,2854,2491,2559],"normal_volume":[0,1605,15418,268,314],"stattrak_prices":[0,26987,5975,5167,4939],"stattrak_volume":[0,486,2610,75,179]},"300":{"index":300,"max":1,"min":0,"rarity":4,"name":"Emerald Pinstripe","collections":["set_bank"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0OKnZrd5MvmDC1iRyrohj-1gSCGn20t-422Bn4v6eH_FaFcpWcFyRrRbsRK9xN3lNOK0tFPX2YJBmS_4iytXrnE8zwmR9Cc","normal_prices":[3132,379,258,258,241],"normal_volume":[370,686,1216,473,431]},"302":{"index":302,"max":0.9,"min":0,"rarity":6,"name":"Vulcan","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSMuWRDGKC_uJ_t-l9AXCxxEh14zjTztivci2ePQZ2W8NzTecD4BKwloLiYeqxtAOIj9gUyyngznQeF7I6QE8","stattrak":true,"normal_prices":[60241,35303,17786,12769,11384],"normal_volume":[1015,1571,1658,100,174],"stattrak_prices":[137231,84342,33565,28015,20406],"stattrak_volume":[228,274,276,33,53]},"316":{"index":316,"max":1,"min":0,"rarity":6,"name":"Jaguar","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0OKvZrBlJeKsD2zEltF6ueZhW2fhzUwi4WuBzNv6dCiWPVUgApV0TLIM40SwxNLuN-Pl71fdjogXmy79kGoXuYeqaPqj","stattrak":true,"normal_prices":[65055,16559,7540,7639,7836],"normal_volume":[62,163,311,60,48],"stattrak_prices":[62606,33289,17900,13475,17531],"stattrak_volume":[18,38,45,3,7]},"340":{"index":340,"max":1,"min":0,"rarity":5,"name":"Jet Set","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0OWrZKhSNOKSGGKcxOpJseo9GBa_nBovp3ODydescy_FbVcoDZMkReYP4xC8w93jY7u35AeK2IhMmC__2itN73pv_a9cBpGGBr1j","normal_prices":[115492,41225,30828,30806,32431],"normal_volume":[21,52,26,14,23]},"341":{"index":341,"max":1,"min":0,"rarity":4,"name":"First Class","collections":["set_baggage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0PW8baFjH_yWD3OYxPxJseo9GBa_nBovp3PXmNmpdymUZwMnX8EhEeBbtBnrk4LjZLzi7wbe3opNmCn8iH8YvX5i_a9cBikeWj5H","normal_prices":[22930,13837,9287,8832,8767],"normal_volume":[52,27,52,21,11]},"380":{"index":380,"max":0.7,"min":0.05,"rarity":6,"name":"Wasteland Rebel","collections":["set_community_5"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0Oa8YaZ4NPWsD2zEltF6ueZhW2fgkEh35m3cmIusIn6TbwMpWJJxReMKtBHsw4HhM7nh4gTc3YJCxXr2kGoXudZyw1tq","stattrak":true,"normal_prices":[39672,9616,7203,8457,7714],"normal_volume":[44,209,345,16,33],"stattrak_prices":[138000,19603,10968,15587,10258],"stattrak_volume":[8,52,105,2,7]},"394":{"index":394,"max":0.75,"min":0,"rarity":5,"name":"Cartel","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNK0POlPPNSI_GBGmKc_uJ_t-l9ASuywktwtW3dwt79eX6fZlUiCJJ1RbUPtkW8w4LiZe_i4ATYjN8WmH7gznQeZkk4ehM","stattrak":true,"normal_prices":[6029,1972,1561,2333,1576],"normal_volume":[480,1261,1228,34,149],"stattrak_prices":[9401,5694,4419,5766,4195],"stattrak_volume":[209,228,297,16,66]},"422":{"index":422,"max":1,"min":0,"rarity":3,"name":"Elite Build","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSLfGAGmKC2NF6ueZhW2e2wh9y5GjTztirdSqfP1dyCpclR7FZ5xe9wNbhZei25FGPjokXxC2vkGoXuQLr5jvs","stattrak":true,"normal_prices":[880,285,182,150,144],"normal_volume":[1255,3984,3933,2271,1430],"stattrak_prices":[2739,880,512,352,371],"stattrak_volume":[458,1186,1218,686,702]},"44":{"index":44,"max":1,"min":0,"rarity":5,"name":"Case Hardened","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNK0P2nZKFpH_yaCW-Ej7sk5bE8Sn-2lEpz4zndzoyvdHuUPwFzWZYiE7EK4Bi4k9TlY-y24FbAy9USGSiZd5Q","stattrak":true,"normal_prices":[65782,23771,20043,17549,17370],"normal_volume":[552,1830,1749,614,359],"stattrak_prices":[91248,65777,45888,41389,36421],"stattrak_volume":[135,178,178,115,74]},"456":{"index":456,"max":0.8,"min":0,"rarity":5,"name":"Hydroponic","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiNW0PCvZaZiL8-ZG2mXzetJvOhuRz39lk0m4Dncztz7Jy2fagIoC5t5QeNbskW6xNLgZu-24AXZgt4Xyi_4izQJsHjOr8RS6A","normal_prices":[501992,207263,134756,110904,89756],"normal_volume":[174,134,112,4,17]},"474":{"index":474,"max":1,"min":0,"rarity":6,"name":"Aquamarine Revenge","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSI_-GHGaXxNF3vPVWQyC0nQlp4WvVzturJ3qVb1B1DMd3Q7EO5xW_l9O2ZOLg5gyP2N9BxST_jXwY7TErvbj-FmM1dA","stattrak":true,"normal_prices":[18329,6088,3656,3335,3536],"normal_volume":[302,577,873,115,94],"stattrak_prices":[29567,16246,8784,6461,6457],"stattrak_volume":[90,91,133,53,47]},"490":{"index":490,"max":0.87,"min":0.02,"rarity":5,"name":"Frontside Misty","collections":["set_community_9"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSN_mdGmKC_v1mv_N9cCW6khUz_WvRm9r8JS-SaFMmWcN5ReMD4BDsltDkN-Prs1DfjN9Cn3r_jC4YvHl1o7FVgJsyBlQ","stattrak":true,"normal_prices":[13501,2894,1694,1689,1746],"normal_volume":[172,1064,1751,177,125],"stattrak_prices":[18392,5993,3433,3594,3861],"stattrak_volume":[92,247,319,44,49]},"506":{"index":506,"max":0.67,"min":0,"rarity":5,"name":"Point Disarray","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSMP-aAHOvxedlsfN7TjCMmRQguynLnIz_dXnEbFcoDsNzQLMN40S7mte0Zuzl5gbY34JEnnr52ChA7ytisPFCD_Rw7udDlA","stattrak":true,"normal_prices":[6687,2037,1335,1760,1403],"normal_volume":[666,1459,1442,44,86],"stattrak_prices":[8780,4846,3063,4082,3390],"stattrak_volume":[225,229,208,9,21]},"524":{"index":524,"max":1,"min":0,"rarity":6,"name":"Fuel Injector","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSM-WDC3WTye9kt-RtcCW6khUz_WuGy9_8dHuRbg5xW5IjQ-BYshK9mta0NLmw4lDa2o0Wni_3iy4f6np1o7FVB0pWHHg","stattrak":true,"normal_prices":[45336,20685,15340,11533,10897],"normal_volume":[291,739,1015,279,197],"stattrak_prices":[81468,44640,29385,23999,19268],"stattrak_volume":[108,165,183,65,40]},"600":{"index":600,"max":0.8,"min":0,"rarity":6,"name":"Neon Revolution","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIf6SHGSY2NF6ueZhW2e3w0524mjQzomreXqVbAAhWJF3RuZfuxC5x920Yurh7gONjY0RxHr4kGoXuT5bpI-V","stattrak":true,"normal_prices":[22035,10134,9752,10034,9517],"normal_volume":[186,530,692,46,72],"stattrak_prices":[19588,10746,9473,9924,9698],"stattrak_volume":[108,124,144,10,22]},"639":{"index":639,"max":0.45,"min":0,"rarity":6,"name":"Bloodsport","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSIvycAWOD0eFkpN5lRi67gVN15mmDw9egci_EPFAkDMQlTeZe4EXplNa0Yrvr5wbd345GyHioiC4b8G81tFuqg_k_","stattrak":true,"normal_prices":[17339,13886,12500,12788,0],"normal_volume":[1791,1296,1139,81,0],"stattrak_prices":[36336,29528,23964,27055,0],"stattrak_volume":[406,238,235,24,0]},"656":{"index":656,"max":0.55,"min":0,"rarity":4,"name":"Orbit Mk01","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlV6diLP-dFzfB_vxztN5lRi67gVMk4TmEn9n_c3PGPwZyDMckTO8JsEPuktG1ZOrjsgPX2IwUyiyv3S0f8G81tLnuvOvF","stattrak":true,"normal_prices":[10935,3241,2644,2931,2768],"normal_volume":[285,478,404,34,44],"stattrak_prices":[9486,6458,5549,6357,5730],"stattrak_volume":[118,83,102,3,23]},"675":{"index":675,"max":1,"min":0,"rarity":6,"name":"The Empress","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSJf2DHGKD0tF6ueZhW2exxEt152rWzI7_Ii-Ubw90DMB0Ee4C5xOwx9GxZbjk71PXgogWn36tkGoXudZeYvlo","stattrak":true,"normal_prices":[22780,9240,8854,8512,8526],"normal_volume":[333,970,1230,262,202],"stattrak_prices":[35961,16052,10340,9377,8964],"stattrak_volume":[162,240,259,68,47]},"707":{"index":707,"max":0.8,"min":0,"rarity":6,"name":"Neon Rider","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV6poL_6sHG6UxPxJvOhuRz39xkQhsTnVzoygdy7Ea1UoCZQkRe9bs0brl9TvN-m0tVHYjY5CyS35jjQJsHhk4o5zcA","stattrak":true,"normal_prices":[19621,6864,4530,5678,4660],"normal_volume":[381,734,1026,30,55],"stattrak_prices":[36494,18468,8524,10741,8997],"stattrak_volume":[131,175,167,4,35]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":2,"name":"Safari Mesh","collections":["set_dust_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wjFL0P-re6xSNPGdMWuZxuZi_rIxSirkkElyt2qEzI2heXiTaVIiX5siROQJtxnul4XnYbvgswOMgolbjXKpnRk9Yjk","souvenir":true,"normal_prices":[1404,21,6,7,6],"normal_volume":[353,2084,6877,567,958]},"724":{"index":724,"max":1,"min":0,"rarity":6,"name":"Wild Lotus","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlV61-LPGdCliWzeFkse1WQyC0nQlpsDuGyt-pdnyRPA4hDcYkR-QPuhi-wdPuYbyx5AaMidkQnC_-2ilIuzErvbi4ijV5Mw","normal_prices":[1251390,938021,712430,546490,402231],"normal_volume":[167,73,82,40,18]},"745":{"index":745,"max":1,"min":0,"rarity":2,"name":"Baroque Purple","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0OSrZqF5L8-DG3WAzetJvOhuRz39wEgl6jyBwtqtJS6QbFRzApIkR-YLsRe6wdDvZung4gHbjd4XyH7_iTQJsHhGzMbuTA","normal_prices":[9135,970,606,595,603],"normal_volume":[218,606,463,116,125]},"795":{"index":795,"max":0.6,"min":0,"rarity":4,"name":"Safety Net","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wipC0P-re6xSM_GVC3OJzvx3vuZscCW6khUz_W3RyI2tdyjFaAUlW5J5QeNc4BS_xoKzYePi4QSIgoJDynn4jS9Mvyh1o7FVeAmr1N8","souvenir":true,"normal_prices":[3020,370,268,338,293],"normal_volume":[479,559,754,78,112]},"801":{"index":801,"max":0.7,"min":0.05,"rarity":6,"name":"Asiimov","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIeOaB2qf19F6ueZhW2e2wEt-t2jcytf6dymSO1JxA5oiRecLsRa5kIfkYr-241aLgotHz3-rkGoXuUp8oX57","stattrak":true,"normal_prices":[40828,5187,3964,4245,4080],"normal_volume":[129,1993,2539,84,100],"stattrak_prices":[50561,10887,6618,7821,6946],"stattrak_volume":[83,387,348,12,31]},"836":{"index":836,"max":0.75,"min":0,"rarity":3,"name":"Uncharted","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIeqHC2SvzedxuPUnFnCwwBl_5D_Syon8dnyUaQUlD5oiQ7ECuxW7l920ZL-w4AfX2IlByTK-0H0PRM7cOA","stattrak":true,"normal_prices":[284,79,56,107,60],"normal_volume":[359,1334,1961,223,634],"stattrak_prices":[548,260,211,281,226],"stattrak_volume":[318,463,601,61,133]},"885":{"index":885,"max":1,"min":0,"rarity":4,"name":"Rat Rod","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSLvmRDGuV09F6ueZhW2fklBx362TTnN36dHiRa1AmW5QlQuVftxO9k4HhZuvksVDc398Rzy32kGoXuR34FNLu","stattrak":true,"normal_prices":[7459,710,421,422,385],"normal_volume":[129,714,710,181,184],"stattrak_prices":[5044,1702,1227,1237,1431],"stattrak_volume":[78,110,107,50,51]},"912":{"index":912,"max":0.5,"min":0,"rarity":3,"name":"Crossfade","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0PW8abRlKfOsAXGV0-J3qd5oRH3kqhEutDWR1N6vdi2Wb1IjA5V5FrUPuhW6ldGzMe7htQTd2YoRzyn83HhPvys65eocEf1y0nVviGs","normal_prices":[627,283,184,184,182],"normal_volume":[1829,966,875,145,21]},"921":{"index":921,"max":0.7,"min":0,"rarity":6,"name":"Gold Arabesque","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiVI0POlPPNSJ_-fCliR0-90tfJ4WiyMmRQguynLntmvICieOARzCpMhF-BYsRe-xoHvYu_g5lSNj4NDyy2viCwY6Hlu5_FCD_Q1jEqYuQ","souvenir":true,"normal_prices":[262886,179216,132210,155710,126998],"normal_volume":[206,126,153,8,27]},"941":{"index":941,"max":0.65,"min":0,"rarity":5,"name":"Phantom Disruptor","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlJfA6H-CbD2mEzuNJtOh6XTyjgRI1jDGMnYftb3qTbQMpCZVxF-8Ku0Xtw4XkYu2xtQSL3d5FxSz-3H5Ovy895epRA6E7uvqAsbzZtpo","stattrak":true,"normal_prices":[2454,737,533,645,517],"normal_volume":[585,1075,2223,76,159],"stattrak_prices":[3091,1878,1399,1621,1513],"stattrak_volume":[239,204,226,27,29]},"959":{"index":959,"max":0.7,"min":0,"rarity":6,"name":"Legion of Anubis","collections":["set_community_26"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwlcK3wiFO0POlPPNSIf6GDG6D_uJ_t-l9AX_nzBhw4TvWwo6udC2QbgZyWcN2RuMP4xHrlYDnYezm7geP3d5FyH3gznQeY_Oe4QY","stattrak":true,"normal_prices":[5017,3401,3230,3196,3001],"normal_volume":[826,1203,1220,34,72],"stattrak_prices":[6963,4315,3623,3881,3956],"stattrak_volume":[291,273,232,23,21]}}},"8":{"name":"AUG","sticker_amount":5,"type":"Weapons","faction":"ct","paints":{"10":{"index":10,"max":0.38,"min":0.12,"rarity":3,"name":"Copperhead","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk7P2-eKF_KPWSClicyOl-pK9oTCvmk0hw5TzXytqodXzEOgYlCsMjQ7YDshG_wdbkNLjltgPb39pM02yg2WdB2M5V","normal_prices":[0,9563,8541,0,0],"normal_volume":[0,20,10,0,0]},"100":{"index":100,"max":0.8,"min":0.06,"rarity":1,"name":"Storm","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1k_OaheqlrMv-dGlicyOl-pK84GCzkxEkisDnUz42qc32WaVckW5AhQeVYs0W9wIfuP7i34laK2d9G02yg2S19fQbA","souvenir":true,"normal_prices":[202,5,1,2,1],"normal_volume":[148,112,803,981,166]},"1033":{"index":1033,"max":0.2,"min":0,"rarity":3,"name":"Carved Jade","collections":["set_op10_ancient"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k5fOqbZthKfebGimWkLlytrI5TXrlwBx-sGyGw9-gcC-fZgAhCpRwQbRbtxe4kdSxP7vm-UWA3MgZU-ku","souvenir":true,"normal_prices":[5827,1637,1659,0,0],"normal_volume":[359,59,11,0,0]},"1088":{"index":1088,"max":0.76,"min":0,"rarity":3,"name":"Plague","collections":["set_community_29"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7RhIfeGC1icyOl-pK8_GH7hzUx04WSByNj4JXuRaQJzXJclEO8MthHpl9DhYejjtAeL2YMU02yg2aipyCXk","stattrak":true,"normal_prices":[576,189,58,80,49],"normal_volume":[180,88,99,30,40],"stattrak_prices":[405,268,107,103,74],"stattrak_volume":[37,80,61,54,31]},"110":{"index":110,"max":0.8,"min":0.06,"rarity":2,"name":"Condemned","collections":["set_safehouse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4ve9YJtrL-KWHXOvx-dktd5lRi67gVNztmXQz92qcyiWPQAiDZZ1ELUD5kG8wNW0P762tVaMjopBxCX3jiMc8G81tDi9HBdS","souvenir":true,"normal_prices":[1066,21,4,4,5],"normal_volume":[23,64,850,51,79]},"1198":{"index":1198,"max":1,"min":0,"rarity":2,"name":"Steel Sentinel","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Ddc0PGhZKBSM_WdGm6exOJJvOhuRz39xRsltT6Hw92peX6SaAYpX8RwFuFf5BPuktLiZuKztVTYid9GyCqtiTQJsHi4iDvrNw","souvenir":true,"normal_prices":[195,11,2,1,1],"normal_volume":[274,859,463,172,205]},"121":{"index":121,"max":0.9,"min":0,"rarity":3,"name":"Luxe Trim","collections":["set_community_34"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Ddc0OK7bqJoMs-fB2CY1aAntOUwSivrwksmtTyBnI2udijFZ1cmDZt0QeUCsRG7xoWzNu3r5gPelcsbmlZvKhNj","stattrak":true,"normal_prices":[265,27,18,12,11],"normal_volume":[94,191,214,36,45],"stattrak_prices":[427,81,24,26,21],"stattrak_volume":[49,139,100,43,55]},"1249":{"index":1249,"max":0.55,"min":0,"rarity":1,"name":"Snake Pit","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6-egbZt5MvGDMWuZxuZi_rg4S3rqwxgltjyEy9r_cH7GbFBxXpd2RbEPukLtxoXgNOLg7gXe2thbjXKpZivzOLA","souvenir":true,"normal_prices":[30,10,3,2,3],"normal_volume":[895,390,405,72,52]},"1308":{"index":1308,"max":0.65,"min":0,"rarity":1,"name":"Commando Company","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6f6ra695IeKdMWuZxuZi_rQwHHrlxRl_smzQn4qqIiqePAAmDcZyEbNYthW-k9y0Zem2swzbi9hbjXKptZgodME","normal_prices":[4,1,1,1,1],"normal_volume":[510,365,589,72,121]},"1339":{"index":1339,"max":1,"min":0,"rarity":3,"name":"Trigger Discipline","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Ddc0Oa8YaNqJeKsCm6DwudmvOhnShalkBEkvAKJk4jxNWXEbwMhDpMkELUP4BSxxt2zYeuw71ff3d9AxHn5hyxL7nlrsr4HU6pz5OSJ2GiAbBJR","stattrak":true,"normal_prices":[89,20,10,7,5],"normal_volume":[623,457,358,84,93],"stattrak_prices":[175,47,27,21,16],"stattrak_volume":[203,249,148,86,53]},"134":{"index":134,"max":0.85,"min":0,"rarity":4,"name":"Eye of Zapems","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk4OSrerRsM-OsCXWRx9F3peZWQyC0nQlp6m7WyNescHuQOlIiXMd3F7UMtxfuwdSxMunh5waMjdhAzSutj3hBvTErvbhjFS7Ncw","souvenir":true,"normal_prices":[1293,471,214,220,170],"normal_volume":[695,813,831,58,120]},"1362":{"index":1362,"max":0.8,"min":0,"rarity":3,"name":"Creep","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1e0PO7b5tuMvWWHlicyOl-pK9oSnnnkRl34WqBwtavcH6TagRxWZR2E7FYuhm9wIblZr60slHXjYtM02yg2RFs1ez8","normal_prices":[121,47,19,18,15],"normal_volume":[249,378,589,25,58]},"173":{"index":173,"max":0.8,"min":0,"rarity":5,"name":"Lil' Pig","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk4_uieK1qH_GGCVicyOl-pK84TXCwxRhx627SmNj6J3PFaQV2X5R1R7JctBixldfvY7u24ATY2owX02yg2cUR6r7A","normal_prices":[13393,9172,4492,5823,4096],"normal_volume":[125,112,158,14,36]},"197":{"index":197,"max":0.08,"min":0,"rarity":3,"name":"Anodized Navy","collections":["set_bravo_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Cxk4fO4cZtvMvGFAVicyOl-pK8wSnngwk8msDnRz9yseXzDZ1R0XJAhEbYN4RW9xNTiM-vmslOPjd5M02yg2bwhPrnn","normal_prices":[3891,5948,0,0,0],"normal_volume":[98,4,0,0,0]},"246":{"index":246,"max":0.4,"min":0,"rarity":3,"name":"Amber Fade","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_CNk6fOqbZtgJeSSAmuZwtF6ueZhW2fizUlwsmuEytmvJHzGaQJyXMclEbYCuhPtkdHmPrvqsVaL3osTmyj6kGoXuZFFysy6","normal_prices":[664,249,160,404,0],"normal_volume":[446,93,51,28,0]},"280":{"index":280,"max":0.5,"min":0,"rarity":6,"name":"Chameleon","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV6dlIf2WAmKfz-9_ouRWQyC0nQlpt23VztercCjGbg90C8RyQOcMs0G5x93uZLm37wbe2owTz3j9iShI6TErvbi7ZmzWCw","stattrak":true,"normal_prices":[7984,7052,6463,7774,7100],"normal_volume":[261,349,177,13,8],"stattrak_prices":[9623,7396,6618,9370,8063],"stattrak_volume":[65,75,44,7,1]},"305":{"index":305,"max":0.5,"min":0,"rarity":4,"name":"Torque","collections":["set_community_3"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV7R_L_eBC3SDyPhJvOhuRz39lxhxsm_WzN37Iy7CbAcmC8B2QuYPtRCwx9HvNr-xtQPaj95EmS__3TQJsHjrLu4xbg","stattrak":true,"normal_prices":[1226,782,638,738,710],"normal_volume":[167,99,77,5,12],"stattrak_prices":[1082,940,686,726,829],"stattrak_volume":[69,100,110,18,11]},"33":{"index":33,"max":0.08,"min":0,"rarity":3,"name":"Hot Rod","collections":["set_assault"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_Cxk_feqV6hkJ_iHQDCVkuxz5bY_H3znlhtz5jzTztigeXLBbwRyD8ckTOZbt0G8wNOyZuL8p1uJa1KD__k","normal_prices":[40770,150000,0,0,0],"normal_volume":[39,1,0,0,0]},"375":{"index":375,"max":0.55,"min":0,"rarity":2,"name":"Radiation Hazard","collections":["set_cache"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4eelbbd5MvmDC1if0-94t-RWTjy0qhEutDWR1N__dX2WOlIoX8N4QOYDu0K6kILuM-m05ASP3YJFz3r3jy0buio_4uYcEf1yDazvhM4","souvenir":true,"normal_prices":[1210,504,309,280,338],"normal_volume":[170,65,105,22,24]},"444":{"index":444,"max":0.55,"min":0,"rarity":1,"name":"Daedalus","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4_OscbZkLuSbXVicyOl-pK8wGyy3zEl25jjVwtareXqUbQN0CpZzTLNYuhm7kYe1MLy3tAzei4JG02yg2fD5c25_","normal_prices":[847,656,465,453,453],"normal_volume":[85,36,84,8,2]},"455":{"index":455,"max":1,"min":0,"rarity":6,"name":"Akihabara Accept","collections":["set_kimono"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7vynZaFSIeWUMWuZxuZi_rZvSXDgzUV_tWWAydyqI3mQbVMiWJolTLQOtBS4w4a1MuznsVHa3YlbjXKpUc8HttI","normal_prices":[372358,107007,48499,33243,26930],"normal_volume":[45,60,69,14,15]},"46":{"index":46,"max":0.8,"min":0.06,"rarity":1,"name":"Contractor","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1k__-tV6hkJ_iHQGWWxOx04LlsGn7lwElytW3cnNihdnqTaFMhWJZxQeYLsUXpxoeyZOv8p1uJ4uPpmuk","souvenir":true,"normal_prices":[159,4,1,2,1],"normal_volume":[60,418,485,1348,141]},"47":{"index":47,"max":0.8,"min":0.06,"rarity":1,"name":"Colony","collections":["set_mirage"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7i1k_OKva6FSLfGBB2mV_uJ_t-l9ASjnk0p06jmHmIyveCmWPFAiCZUlF-BcsEW4wYW2ZO3q4QLf3Y9NmC3gznQeEvKGZSQ","souvenir":true,"normal_prices":[1888,320,269,301,272],"normal_volume":[4,16,43,2,18]},"507":{"index":507,"max":0.8,"min":0,"rarity":3,"name":"Ricochet","collections":["set_community_10"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7uepV654LfKfC1icyOl-pK9tHi-wxUp0sTyGw4z8dXqfb1IlWcd1QedctUbpwNHgPrnjtFeLj4tD02yg2euRXb9L","stattrak":true,"normal_prices":[232,31,20,23,15],"normal_volume":[296,278,383,48,77],"stattrak_prices":[188,89,27,73,26],"stattrak_volume":[99,169,143,4,72]},"541":{"index":541,"max":1,"min":0,"rarity":5,"name":"Fleet Flock","collections":["set_community_12"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV7d6IfyfAXCD_uJ_t-l9AXnmw0t252TVztercCmTZ1AmDMZ2RuBftRnsx4LhN-O0s1DYi9pEmCTgznQesuSvNik","stattrak":true,"normal_prices":[3377,1121,1048,980,993],"normal_volume":[72,195,264,66,47],"stattrak_prices":[3683,1213,958,1106,1097],"stattrak_volume":[62,64,58,18,14]},"583":{"index":583,"max":0.66,"min":0,"rarity":4,"name":"Aristocrat","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV6V_KeOHAWSCwPpJvOhuRz39w00j5WSDytyqI3_CPwAgXMd2E-Vc4US-koCxNOzq5AaMithNyij32DQJsHjdc8VZyg","stattrak":true,"normal_prices":[1231,188,104,115,108],"normal_volume":[235,272,265,56,57],"stattrak_prices":[795,374,174,320,162],"stattrak_volume":[136,96,145,49,30]},"601":{"index":601,"max":0.8,"min":0,"rarity":5,"name":"Syd Mead","collections":["set_gamma_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7d0JM-eC2aU_uJ_t-l9AX_rkU9-5j_Ry42qcnuQbw5zCcMhQrINtRO-xIHvY-Ow4gPY2Y4UmSngznQeqqNNbYw","stattrak":true,"normal_prices":[2370,995,963,999,936],"normal_volume":[175,384,477,51,58],"stattrak_prices":[2503,1028,879,921,957],"stattrak_volume":[83,80,128,20,28]},"674":{"index":674,"max":1,"min":0,"rarity":3,"name":"Triqua","collections":["set_community_18"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV6t_If6UC1iE0-d3vuZlSha_nBovp3OGyd-hdXzDZwApApYjF7UJtUK5l9LnYe_g4wDWjd5NmHqojnxJuCw-_a9cBrjnwKiq","stattrak":true,"normal_prices":[409,24,18,14,13],"normal_volume":[71,245,175,61,83],"stattrak_prices":[235,38,14,14,15],"stattrak_volume":[99,183,131,72,86]},"690":{"index":690,"max":0.63,"min":0,"rarity":5,"name":"Stymphalian","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7d5Of2DBmacyO94j-NgXS2gqhEutDWR1Iz6cnqXOA8mD5shTOEPuhm-moHlZLnj4gLWjdhEzimr2n8bvC5q4e8cEf1yYjdCpmM","stattrak":true,"normal_prices":[1062,438,329,288,344],"normal_volume":[274,430,676,25,64],"stattrak_prices":[1413,512,339,382,349],"stattrak_volume":[115,142,194,21,43]},"708":{"index":708,"max":0.55,"min":0,"rarity":3,"name":"Amber Slipstream","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk7uepV7BiMv6sAXWRz-lzj-1gSCGn2x8msm2Dn9-oeSnGbAAiXppxE-cMs0Prm9a0Mrnqtg2L3dgQzS2vh3lXrnE8QYlxFJI","stattrak":true,"normal_prices":[136,27,34,26,23],"normal_volume":[359,117,219,41,48],"stattrak_prices":[134,50,30,40,32],"stattrak_volume":[119,100,142,15,10]},"727":{"index":727,"max":0.5,"min":0,"rarity":4,"name":"Midnight Lily","collections":["set_stmarc"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7f6hZ6lSIvyGC1icyOl-pK8-FnDrlE8k62uAytipeSqRaFcoC8BwQbIM5xjtwdWzMr6ztAPd2YNA02yg2RS7P3lf","normal_prices":[37560,44055,34791,43654,49405],"normal_volume":[99,9,19,3,4]},"73":{"index":73,"max":0.14,"min":0,"rarity":3,"name":"Wings","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6fevfKxoMuOsD3KX_uJ_t-l9AX7qzE5_sGmEw9uoJCrBOgMoDsN2ReMI4EPrm4fvY-m04ASPgt8Uz3_gznQePzx-iqc","stattrak":true,"normal_prices":[1690,1601,0,0,0],"normal_volume":[330,54,0,0,0],"stattrak_prices":[2071,2184,0,0,0],"stattrak_volume":[296,49,0,0,0]},"740":{"index":740,"max":1,"min":0,"rarity":1,"name":"Navy Murano","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk4ue8aapiH_KfG2KvzedxuPUnF3rgl0R-5DjXn4z7Ii_GbQEhC5VzQrNZuxW5l9ayY77g4gDa2tgWmzK-0H0vbAfLTQ","normal_prices":[1764,409,301,269,147],"normal_volume":[134,94,64,81,30]},"758":{"index":758,"max":0.5,"min":0,"rarity":4,"name":"Flame Jörmungandr","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k5f28ZZtiMvGdCWKvzedxuPUnTn7glkly423Xy4yoJHOWaFR0A5YlQrNc5xXrm93hZejntQWN3YNCzzK-0H2szzSoFw","normal_prices":[36637,39388,40710,0,65336],"normal_volume":[75,15,4,0,1]},"779":{"index":779,"max":0.5,"min":0,"rarity":4,"name":"Random Access","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7Pu8a7FkNPKcD3WU_uFkse9uSha_nBovp3PcnImuIi2RbA8iD5B5FLYNtULqwdLuYbvg4w2Ng9hAziSvjnhBv31v_a9cBkz61Qws","souvenir":true,"normal_prices":[909,148,73,89,85],"normal_volume":[257,230,248,28,41]},"794":{"index":794,"max":0.6,"min":0,"rarity":1,"name":"Sweeper","collections":["set_inferno_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf7jJk4ve9YJt-IfaWGn6Sze91u95lRi67gVNysGXWwt78dXmVawMnC5t5EeFftkTpk9S1Zu6xswbai4MWyy-rjngb8G81tGCvNXTC","souvenir":true,"normal_prices":[7,3,1,1,1],"normal_volume":[829,2674,808,56,115]},"823":{"index":823,"max":0.5,"min":0,"rarity":4,"name":"Sand Storm","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7dsLvSsHXOf0-NJvOhuRz39kxtzt2jcyNqsdy2TawElApolF7Zf50bsl9fvZuq05waMi44XyX3-2zQJsHjlDs_LaQ","souvenir":true,"normal_prices":[5683,2722,1990,5369,2876],"normal_volume":[77,48,42,1,2]},"845":{"index":845,"max":1,"min":0.05,"rarity":5,"name":"Momentum","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV6liLfWdGnKd_uJ_t-l9ASi2zUp042SBno6sICrFbFMnCZR5EedftkPqk9ayMr_j71fXjo8XmXrgznQeFjVtTWM","stattrak":true,"normal_prices":[4466,1269,502,487,480],"normal_volume":[86,299,633,119,129],"stattrak_prices":[6006,1743,704,738,734],"stattrak_volume":[45,103,124,59,65]},"886":{"index":886,"max":0.7,"min":0,"rarity":4,"name":"Arctic Wolf","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_jdk7uepV7NlKeSWCGaextF6ueZhW2frxxtxsGrTw46sI33BOAUiXMElFO4L50O9xNLvNOyz4lDd3olMzX6skGoXude_sLiC","stattrak":true,"normal_prices":[1420,357,178,289,181],"normal_volume":[261,203,357,56,73],"stattrak_prices":[1858,874,346,620,360],"stattrak_volume":[87,118,131,20,18]},"9":{"index":9,"max":0.8,"min":0.06,"rarity":5,"name":"Bengal Tiger","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk-_upbbZSLPmUBnPeme1z5LU7F3_gxk9xtj6Em4yveCrDOgIiW5cjRrIL5hnuk9TkM-rr5hue1dxoTofnTA","stattrak":true,"normal_prices":[9603,3165,1277,1446,1340],"normal_volume":[35,93,78,11,18],"stattrak_prices":[11773,3965,1873,2137,1985],"stattrak_volume":[12,23,22,6,17]},"913":{"index":913,"max":0.4,"min":0,"rarity":5,"name":"Death by Puppy","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k7uepV6BoIeSbMWWJ_up5t-ZwcCW6khUz_W7RnNegdyqRPAcpDZdwQOAO5xW4w4C0ZemwtgHYjoNHniX6iSsd7Cx1o7FVmQFtzuc","stattrak":true,"normal_prices":[1527,447,352,791,0],"normal_volume":[210,154,70,4,0],"stattrak_prices":[2066,741,787,1172,0],"stattrak_volume":[66,69,29,13,0]},"927":{"index":927,"max":0.48,"min":0,"rarity":2,"name":"Spalted Wood","collections":["set_dust_2_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf9Ttk6-C3V7NiL_SsAm6Xyfo44-JsFiy3wBkl6miBmNz9IHrEbAZxDZciEO8Kuxbtm93gP-Lgtlbe35UFk3vZ4ja9kg","souvenir":true,"normal_prices":[249,101,51,113,376],"normal_volume":[167,97,37,64,27]},"942":{"index":942,"max":0.8,"min":0,"rarity":3,"name":"Tom Cat","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf-jFk7uepV7BlNf6XC3WD1eFkvd5lRi67gVMm5GrRzt2sJXqUag4kDZAmFuBYtUTslIXuPui2s1Hb2o4Wyir2hy1N8G81tF6C_jtH","stattrak":true,"normal_prices":[101,17,23,20,15],"normal_volume":[435,231,567,45,125],"stattrak_prices":[131,26,19,27,14],"stattrak_volume":[226,253,174,44,41]},"995":{"index":995,"max":0.6,"min":0,"rarity":1,"name":"Surveillance","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwi5Hf_C9k5vy6bahhKfeWAGSV_ulktfhWQyC0nQlp42TWmI2seXOUb1UgXJp3F-ZbsxixltbiNLvl7gza3olCyST-i3wa6zErvbj9bg91yA","normal_prices":[171,90,79,84,81],"normal_volume":[643,315,350,88,55]}}},"9":{"name":"AWP","sticker_amount":5,"type":"Weapons","paints":{"1026":{"index":1026,"max":0.08,"min":0,"rarity":6,"name":"Fade","collections":["set_op10_ct"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_CNk7uW-V6JsJPWsAm6Xyfo45-c5GXDnwB534DuEwtuoIHOfaAYiAsYjF-QItUaxmoC0MO_h5ALcjJUFk3sEzfdk4w","normal_prices":[90343,96654,0,0,0],"normal_volume":[535,24,0,0,0]},"1029":{"index":1029,"max":0.6,"min":0,"rarity":5,"name":"Silk Tiger","collections":["set_op10_t"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k-_upbbZ-H_KfG2KvzedxuPUnTXywkU1x4DvXztz_dH2WZlQkXMEhFrFY5BDrm9HhMurq4AfdiYxAnDK-0H0fPMTeBA","normal_prices":[72190,37810,17488,20071,20922],"normal_volume":[142,62,57,2,4]},"1058":{"index":1058,"max":0.44,"min":0,"rarity":4,"name":"POP AWP","collections":["set_train_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk-_etYKpiN_GBMXWHw9F6ueZhW2fikxgjtmjTzd-ucXOXbgEiCZN1QOcKtka_l9PgY7jrswbe2t5NyC_6kGoXuXrlRr9k","normal_prices":[6863,1029,764,905,0],"normal_volume":[486,617,330,51,0]},"1144":{"index":1144,"max":0.7,"min":0,"rarity":6,"name":"Chromatic Aberration","collections":["set_community_31"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6dlMv-eD1iAyOB9j-1gSCGn2x50tT_Tm9f4cXORPA4oWJckFOMLtha_x9e1Nu-35QfbjYtHyiythitXrnE8ylr09zg","stattrak":true,"normal_prices":[6976,3591,2996,3046,2831],"normal_volume":[547,979,992,81,76],"stattrak_prices":[4904,2908,2402,3112,2447],"stattrak_volume":[250,237,224,17,62]},"1170":{"index":1170,"max":1,"min":0,"rarity":6,"name":"Chrome Cannon","collections":["set_community_33"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0OarZbRoMvWXMWuZxuZi_uM6SXngxR5-smTXw4ugIi6RbVcpXsN1ELUDtxPrktOyNL7h4g2P2tpbjXKpKIbjbD4","stattrak":true,"normal_prices":[8488,3648,2678,2415,2366],"normal_volume":[500,1241,1896,411,290],"stattrak_prices":[17047,6264,3957,3244,3233],"stattrak_volume":[139,238,279,92,84]},"1206":{"index":1206,"max":1,"min":0,"rarity":6,"name":"Printstream","collections":["set_community_35"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0OK8Yap5M-SBC2ad_uJ_t-l9AX_qlk4k5GyAzo6ocC-QZgZxX8AjEbZY5xnrxtPjM7vnsgGIj9oTmXngznQeg3pfcPs","stattrak":true,"normal_prices":[23420,7255,4484,4033,3972],"normal_volume":[613,1646,2695,560,342],"stattrak_prices":[42144,13382,7715,6084,5818],"stattrak_volume":[174,340,393,128,117]},"1213":{"index":1213,"max":1,"min":0,"rarity":6,"name":"LongDog","collections":["set_train_2025"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0P6hZqNpL_esAm6Xyfo44rNtFi_kxhx-4WvWnImoJ3mTblJzDJFzR-QP4EK4m9XjZbvk7lCLiZUFk3u2JoT1UA","souvenir":true,"normal_prices":[90011,25806,14195,7511,6705],"normal_volume":[200,329,402,251,206]},"1222":{"index":1222,"max":0.8,"min":0,"rarity":5,"name":"Duality","collections":["set_community_32"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6hkLfKcMXSewOVzj-1gSCGn20p_62-HnN7_cH-XblQjDZYhR-FZsETqmoXjYry2s1DX3d5AyyT62ipXrnE8bpg5yZk","stattrak":true,"normal_prices":[1358,519,297,283,272],"normal_volume":[1238,1914,3397,132,573],"stattrak_prices":[2335,959,580,682,562],"stattrak_volume":[301,432,601,58,257]},"1239":{"index":1239,"max":0.75,"min":0,"rarity":3,"name":"Black Nile","collections":["set_anubis"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V7d5Mv-dC1icyOl-pK89Gyvhlhsit2-BwoyrICmWPQcmDpEkQOdeskOxwNKzN7vm4VeP2oMR02yg2Z2CmmVC","souvenir":true,"normal_prices":[3466,496,289,333,324],"normal_volume":[489,654,781,73,522]},"1280":{"index":1280,"max":0.75,"min":0,"rarity":5,"name":"Green Energy","collections":["set_timed_drops_neutral"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jde0Pi7ZbRSLPmdC1icyOl-pK8wTCzlxkl_tm7Vz9j6cnLEOA91C5siTOBYsRWwxtC2MOzj5g2I3Y4W02yg2VFgswq6","normal_prices":[5735,2121,1015,925,727],"normal_volume":[546,879,1329,71,117]},"1324":{"index":1324,"max":0.501961,"min":0,"rarity":3,"name":"Arsenic Spill","collections":["set_timed_drops_warm"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk-fO8YadsLf-sHW6d0eJzj_hsQyW8giIrujqNjsH8eS2ePANxXJN3Q-NbtxDtkNexMeri5lfd3doTnij7hiJMuy5jtutQT-N7rTqLZycV","normal_prices":[107,44,27,30,34],"normal_volume":[1487,383,524,75,27]},"1346":{"index":1346,"max":1,"min":0,"rarity":5,"name":"Ice Coaled","collections":["set_community_36"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0PutbZtuL_GfC2OvzedxuPUnS3u3wR8lsTzTn4qqcXuXOlQmCpUiQOdYtUG_ltXgP-u04wWL3Y9NnjK-0H2dw8uldQ","stattrak":true,"normal_prices":[3085,1456,743,549,455],"normal_volume":[502,1242,949,287,448],"stattrak_prices":[7038,3098,1533,1153,1111],"stattrak_volume":[124,204,211,75,131]},"1356":{"index":1356,"max":1,"min":0,"rarity":5,"name":"The End","collections":["set_timed_drops_achroma"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf7i1e0PC5V7BlJc-WAGOvwPlmj-1gSCGn20hytjzSy4r_cy_FZlB1DJdxE7QN50bql4LuNL7g4gTYj9lGnir9iyJXrnE8dWNkiOM","normal_prices":[8126,2839,1634,1470,1416],"normal_volume":[122,237,377,61,99]},"137":{"index":137,"max":1,"min":0,"rarity":5,"name":"Crakow!","collections":["set_overpass_2024"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk4OSrerRsM-OsDXWRyuFhj-B-Xxa_nBovp3OAyd34cC2VOgUoCZYmF7UCthm_kdGyMry05wHa3t0XxH_23XhP7y9q_a9cBncOjtH9","souvenir":true,"normal_prices":[12331,5113,2621,2099,2066],"normal_volume":[662,857,1384,313,299]},"1378":{"index":1378,"max":0.7,"min":0,"rarity":4,"name":"Exothermic","collections":["set_timed_drops_exuberant"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Tte0PSneqF6L-KYMXeR1e1-tfJWQyC0nQlp4W7Xzd-qcH_DO1N0W5FzQuEP5kW8ltfnM-q24wzYgt0RmC_7jSlL5jErvbgX7dER8Q","normal_prices":[1559,707,424,448,347],"normal_volume":[407,662,715,45,133]},"1422":{"index":1422,"max":1,"min":0,"rarity":6,"name":"Queen's Gambit","collections":["set_community_37"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DVL0OO7baFjM8-UD2qSyPpJvOhuRz39kUpw42zWntiteSiVaQYhCJJzEeIOukSwl4XmPrmw4VHXjtpExC_33zQJsHjNnJgjQA","stattrak":true,"normal_prices":[26407,11698,5956,5409,4153],"normal_volume":[190,494,449,209,214],"stattrak_prices":[47088,16426,8228,5739,5175],"stattrak_volume":[67,122,111,29,34]},"163":{"index":163,"max":0.8,"min":0,"rarity":6,"name":"CMYK","collections":["set_graphic_design"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk5vyqbbRoLvSWMWaH0dF6ueZhW2e1zElxtmzQmIv8J3qQalRzW5t0RrYOsBCwlte2Mbmw5AbXiYlAnnn4kGoXuYBQOb0Q","normal_prices":[101820,41162,22910,18359,13289],"normal_volume":[123,149,211,34,77]},"174":{"index":174,"max":0.28,"min":0.06,"rarity":5,"name":"BOOM","collections":["set_esports"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk7f6vZZt-Kf2DAmKvzedxuPUnTX7mkxhy62iDzYqhdiqXbw4oWZEkE-IDsRa9lIXlMejktFOMi49MmDK-0H2AgUnw_w","stattrak":true,"normal_prices":[43800,14996,10968,0,0],"normal_volume":[69,742,209,0,0],"stattrak_prices":[72140,21851,18443,0,0],"stattrak_volume":[28,161,45,0,0]},"181":{"index":181,"max":0.3,"min":0.06,"rarity":5,"name":"Corticera","collections":["set_esports_iii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk6fO4bahsH_GEHlicyOl-pK8xTSzqwU1-5jjWno6hJHyeOg91A5R2TOEOtRS-kIG2ZeO25lDYg90U02yg2USK57Qn","stattrak":true,"normal_prices":[20142,2562,2332,0,0],"normal_volume":[90,676,246,0,0],"stattrak_prices":[11905,4497,4138,0,0],"stattrak_volume":[47,149,57,0,0]},"212":{"index":212,"max":0.12,"min":0,"rarity":5,"name":"Graphite","collections":["set_bravo_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k7OC7ZbRhJc-RHGaGztF6ueZhW2e2k0l2sW_WzN7_cS6SbgV1CsF3TOEI4EOwloGzNLzg5g3fiIpHxC78kGoXuTqeOjwH","stattrak":true,"normal_prices":[15417,16254,0,0,0],"normal_volume":[1132,115,0,0,0],"stattrak_prices":[35201,50596,0,0,0],"stattrak_volume":[201,10,0,0,0]},"227":{"index":227,"max":0.4,"min":0,"rarity":5,"name":"Electric Hive","collections":["set_esports_ii"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk5_u4bZthKfebGinElLtytLVtG362x05wsWyByt2scHrGOgd1WZJ1ROBc4xi_ld3gNO7g-UWA3Kwc2RVq","stattrak":true,"normal_prices":[12327,3424,3335,4902,0],"normal_volume":[556,584,443,27,0],"stattrak_prices":[10404,6768,6074,9276,0],"stattrak_volume":[154,114,81,6,0]},"251":{"index":251,"max":0.5,"min":0.08,"rarity":4,"name":"Pit Viper","collections":["set_italy"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk_PyvY6F-K_mdMWuZxuZi_rQ_GS3mxRwk4jvTyNv6eC-RPQV1W5AlTOZb4xLtw9fuNriw51Hd3otbjXKp4cSTTIs","souvenir":true,"normal_prices":[0,143,82,118,101],"normal_volume":[0,2964,2776,204,292]},"259":{"index":259,"max":0.4,"min":0.1,"rarity":5,"name":"Redline","collections":["set_community_1"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6diIuKSMWuZxuZi_rUxHS3lzUwm5DjWy976dSiRagd1WJB1RLQP4RK-mtazM-3itQeL2INbjXKpw2eVIZ0","stattrak":true,"normal_prices":[0,6481,3519,4978,0],"normal_volume":[0,1772,1933,26,0],"stattrak_prices":[0,13994,8015,11999,0],"stattrak_volume":[0,307,357,5,0]},"279":{"index":279,"max":1,"min":0.18,"rarity":6,"name":"Asiimov","collections":["set_community_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6V-Kf2cGFidxOp_pewnF3nhxEt0sGnSzN76dH3GOg9xC8FyEORftRe-x9PuYurq71bW3d8UnjK-0H0YSTpMGQ","stattrak":true,"normal_prices":[0,0,10948,8679,7260],"normal_volume":[0,0,2983,606,1582],"stattrak_prices":[0,0,22055,17513,14799],"stattrak_volume":[0,0,569,116,279]},"30":{"index":30,"max":0.8,"min":0.06,"rarity":3,"name":"Snake Camo","collections":["set_dust"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf7jJk_PyvY6FSLPmUBnPexb10sbk8HXixk09-smqEyIytci7GPwFxCZt0RLMLtBG4xNHuPr-3tRue1dy_ONei3w","normal_prices":[42000,9677,9449,10107,9710],"normal_volume":[8,30,42,5,17]},"344":{"index":344,"max":0.7,"min":0,"rarity":6,"name":"Dragon Lore","collections":["set_cobblestone"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk4veqYaF7IfysCnWRxuF4j-B-Xxa_nBovp3Pdwtj9cC_GaAd0DZdwQu9fuhS4kNy0NePntVTbjYpCyyT_3CgY5i9j_a9cBkcCWUKV","souvenir":true,"normal_prices":[1037753,860650,635415,566791,480085],"normal_volume":[255,115,137,4,25]},"395":{"index":395,"max":0.2,"min":0.1,"rarity":6,"name":"Man-o'-war","collections":["set_community_6"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k7uW-V6NhL-KKMWuZxuZi_uM5HXG3xhh_t2iBnI2ucn3EZwEjDpJ0Q-dY5EPrxNTiYevj7gXa2IhbjXKpQIFOiXU","stattrak":true,"normal_prices":[0,10088,10625,0,0],"normal_volume":[0,807,100,0,0],"stattrak_prices":[0,10865,12702,0,0],"stattrak_volume":[0,229,22,0,0]},"424":{"index":424,"max":0.45,"min":0,"rarity":4,"name":"Worm God","collections":["set_community_7"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_DNk7uW-V7B6Kf6WMWuZxuZi_uRoGH3iw0wh4j7cnt6ucSqSZwUkCMB5TLIPsES_kNbuYeOwtgXai4NbjXKpZ4kj0o0","stattrak":true,"normal_prices":[418,269,222,228,0],"normal_volume":[1822,1992,1752,146,0],"stattrak_prices":[834,583,541,585,0],"stattrak_volume":[489,446,451,52,0]},"446":{"index":446,"max":1,"min":0,"rarity":6,"name":"Medusa","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk4veqfbdsH_GEHlicyOl-pK85TC23wk12tWSGnNr6JXqRPVUnA5J5RLIKshS-l4HuYbji7lfajdgU02yg2bOcOBD3","normal_prices":[449777,275836,193090,181831,187508],"normal_volume":[42,60,64,45,37]},"451":{"index":451,"max":0.5,"min":0,"rarity":2,"name":"Sun in Leo","collections":["set_gods_and_monsters"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk9f2qYaVucs-fB2CY1aAnteVqHCzgkRsh4TnXyY2vIH-QaVcpA5F3TOdct0S_wNO0Zri05wbXlcsbmn9hB4gb","normal_prices":[8685,2664,2182,2414,2716],"normal_volume":[1107,1066,472,29,46]},"475":{"index":475,"max":1,"min":0,"rarity":6,"name":"Hyper Beast","collections":["set_community_8"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6x0MPWBMWWVwP1ij-1gSCGn20pxtm_WzNuoeHKeaFAnCZUiTe5bt0HqxofmZOrm5Q2IjoMQzS_5iShXrnE8NzWs__c","stattrak":true,"normal_prices":[17394,4864,3297,3336,3039],"normal_volume":[220,496,610,137,226],"stattrak_prices":[27951,13218,7190,6627,6837],"stattrak_volume":[89,90,122,36,42]},"51":{"index":51,"max":0.08,"min":0,"rarity":6,"name":"Lightning Strike","collections":["set_weapons_i"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k4_upYLBjKf6UMWaH0dF6ueZhW2frwU1_sW2EmNyvc32RZwMpCpcjQ-EJ4xbtmt3gYezk4wzb3tpAy3mrkGoXubsGIfVN","stattrak":true,"normal_prices":[50128,52018,0,0,0],"normal_volume":[864,28,0,0,0],"stattrak_prices":[89233,98212,0,0,0],"stattrak_volume":[179,5,0,0,0]},"525":{"index":525,"max":1,"min":0,"rarity":5,"name":"Elite Build","collections":["set_community_11"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6lsM-SWHH6vzedxuPUnSnHmk0Qh4G6HmN-scXmSaQRxXJpwRuZYsxTqxtTnM7nl4gTW2dlFyjK-0H0d8XeEBg","stattrak":true,"normal_prices":[9215,2089,1250,1249,1270],"normal_volume":[141,391,509,162,178],"stattrak_prices":[8481,4478,2655,3210,3088],"stattrak_volume":[86,89,102,16,72]},"584":{"index":584,"max":0.4,"min":0,"rarity":4,"name":"Phobos","collections":["set_community_13"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V7RlL_KcHVicyOl-pK84GXHmwk115D6GzdqudHyUbwRxW5R3ROZbtEG8wYDiY7-x5VOKgotB02yg2bdJjfAf","stattrak":true,"normal_prices":[509,229,211,423,0],"normal_volume":[1162,1337,971,24,0],"stattrak_prices":[786,548,523,1284,0],"stattrak_volume":[343,321,192,37,0]},"640":{"index":640,"max":0.55,"min":0,"rarity":5,"name":"Fever Dream","collections":["set_community_16"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7R-OfObAXeR1eZJvOhuRz39kE1w4jiAzNiod3qTOgcgXpAlQ-ML5hjqxtHjZOrrtlHWit9EyCj9iDQJsHhCZP-wUg","stattrak":true,"normal_prices":[2372,1392,1243,1326,1295],"normal_volume":[913,827,600,44,104],"stattrak_prices":[3255,2576,2204,2489,2546],"stattrak_volume":[259,193,129,20,22]},"662":{"index":662,"max":0.5,"min":0,"rarity":6,"name":"Oni Taiji","collections":["set_community_17"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6xsLv6KD1icyOl-pK9vGCqwkx524G_WnNmsInyXOAVyXJJ0TbNb5EOxxIflYbzj4gDdiNlC02yg2XaKgrAq","stattrak":true,"normal_prices":[68022,37355,26817,29477,36643],"normal_volume":[211,223,190,11,8],"stattrak_prices":[90192,63065,36214,58232,60471],"stattrak_volume":[73,35,45,3,4]},"691":{"index":691,"max":0.64,"min":0,"rarity":5,"name":"Mortis","collections":["set_community_19"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6BoIeSbMWuZxuZi_rNtHiuwwRwismWEnNn8JymSZgUiDpd3Ru9ZsxG-xNy2NLzn41DWg41bjXKp5oOAt0A","stattrak":true,"normal_prices":[1795,483,338,411,348],"normal_volume":[630,1313,2005,148,236],"stattrak_prices":[1806,909,699,865,753],"stattrak_volume":[214,301,462,29,74]},"718":{"index":718,"max":0.5,"min":0,"rarity":4,"name":"PAW","collections":["set_community_20"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_C9k7uW-V7RsN-CSGVicyOl-pK84Tn-3xkgltWWGnI39c3LDaA4lD5V0QO8It0LqktfuMOrq7gDajYJG02yg2bUm5WIV","stattrak":true,"normal_prices":[627,323,227,251,287],"normal_volume":[2337,1996,1503,140,177],"stattrak_prices":[1339,701,635,618,694],"stattrak_volume":[483,409,350,63,60]},"72":{"index":72,"max":0.8,"min":0.06,"rarity":2,"name":"Safari Mesh","collections":["set_lake"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf7jJk4ve9YJt5If6sAm6Xyfo45uU7HS_nzU914z_dzImtdXyQZlMjCJIkFOUI5ES9k9PkPriz71bdiJUFk3tlgygeXw","souvenir":true,"normal_prices":[1324,29,11,14,13],"normal_volume":[211,1335,2001,222,3037]},"736":{"index":736,"max":0.6,"min":0,"rarity":6,"name":"The Prince","collections":["set_canals"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6FjIf2WAlicyOl-pK9qHXHkw093sGvTw4uqJSnDPQAkCsNyEbZcshiwxtK0Yumz4gbX2o9C02yg2f5NtC8l","normal_prices":[266604,211653,185889,215787,186293],"normal_volume":[124,70,96,4,14]},"756":{"index":756,"max":0.6,"min":0,"rarity":6,"name":"Gungnir","collections":["set_norse"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6N4LvedB3WvzedxuPUnHnjnzUl0sWrdztitI3rDZgJzAsZ1QOFY4UPqldDgMO_l41HXit9AmTK-0H227dAsvQ","normal_prices":[1082881,892907,724155,734999,692448],"normal_volume":[228,79,116,4,17]},"788":{"index":788,"max":0.83,"min":0,"rarity":3,"name":"Acheron","collections":["set_nuke_2"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk4eetZKFsMs-ABXKczf1JouRtTSWmkCIrujqNjsH4eC-ROFMkDccjR7EDsBCxlN2xZu7jtlaNj4pMxSr8hiIc53tt67kHT-N7rafi4HxI","souvenir":true,"normal_prices":[2199,185,73,115,57],"normal_volume":[377,842,1537,35,1229]},"803":{"index":803,"max":0.5,"min":0,"rarity":6,"name":"Neo-Noir","collections":["set_community_21"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V6poL_6cB3WvzedxuPUnHirrxR4l423SyI39I3KXPwdxWZclQeNZ5EXskYfnNeyw71OMi9lNzDK-0H3r66pOTw","stattrak":true,"normal_prices":[5091,4048,3826,3850,4047],"normal_volume":[1120,1150,892,41,44],"stattrak_prices":[8620,6884,5263,5817,5829],"stattrak_volume":[325,175,180,13,17]},"819":{"index":819,"max":0.6,"min":0,"rarity":6,"name":"Desert Hydra","collections":["set_mirage_2021"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6x0JOKSMWuZxuZi_uA7Syu2w0Ry4mqGzYypeH3DaAEnCpt0FuAK4RjrkoDgMb7mtFfcit5bjXKpX4RFZcA","souvenir":true,"normal_prices":[186526,140092,107278,114912,115497],"normal_volume":[239,144,160,15,62]},"838":{"index":838,"max":1,"min":0,"rarity":4,"name":"Atheris","collections":["set_community_22"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7JkMPWBMWuZxuZi_rZsS3zgzU8isW3dnIr6eHKfPVAhDpojEe9YsUW4xta1Nuzm5FDci4NbjXKpmWVQppo","stattrak":true,"normal_prices":[5517,783,477,368,349],"normal_volume":[396,1579,2136,401,833],"stattrak_prices":[3825,1655,888,740,727],"stattrak_volume":[201,304,402,144,281]},"84":{"index":84,"max":0.8,"min":0.06,"rarity":4,"name":"Pink DDPAT","collections":["set_overpass"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Ttk6_a-abBSMPmdBVicyOl-pK9qHXC2zUpz5DiBn9arJCmXOFd0DZpxQOUDtBC6wNK0MOzl4wXWjYpG02yg2c9nQ1pb","souvenir":true,"normal_prices":[19251,6007,3038,3615,3664],"normal_volume":[41,272,192,24,65]},"887":{"index":887,"max":1,"min":0,"rarity":6,"name":"Containment Breach","collections":["set_community_23"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7JkMuWAMWuZxuZi_rQ6SXq1xURysj_Vw4uhJHOVPQ8oCZt4QrRbtRi6ldPlPu_g4FHaiYNbjXKpcPI_17A","stattrak":true,"normal_prices":[58574,16279,7973,5046,4930],"normal_volume":[102,263,484,117,106],"stattrak_prices":[82678,31724,16251,11485,12230],"stattrak_volume":[32,58,77,34,18]},"917":{"index":917,"max":0.7,"min":0.01,"rarity":6,"name":"Wildfire","collections":["set_community_24"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7NkLPSVB3WV_uJ_t-l9AX7rxhl-tmzSwomtdC6TPwQnW5UkR-YD5kK-ltCzP-Ox4FfXiNoQyyrgznQeu9L0PzQ","stattrak":true,"normal_prices":[18768,6574,4344,4861,4211],"normal_volume":[316,787,1069,43,123],"stattrak_prices":[27731,14579,9314,9176,9683],"stattrak_volume":[111,140,154,21,25]},"943":{"index":943,"max":0.7,"min":0.05,"rarity":3,"name":"Capillary","collections":["set_community_25"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf_jdk7uW-V7JoKf6sAm6Xyfo44bE5HSrmlx5z4GTUzt__I3yebQAgA8R3FuFfsBTqx9W2Y7vq5lbfjZUFk3ugIlCuqg","stattrak":true,"normal_prices":[987,100,60,85,58],"normal_volume":[197,1313,2201,169,232],"stattrak_prices":[1055,266,180,258,175],"stattrak_volume":[61,416,697,64,150]},"975":{"index":975,"max":1,"min":0,"rarity":4,"name":"Exoskeleton","collections":["set_community_27"],"image":"https://community.akamai.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf-jFk7uW-V6F1L-OYC2uV1eF4j-1gSCGn20km5zyEmd2qc3uWZwcnA5MiELIJtxa_w9OyN-nh5wKKj4kTyn78hyNXrnE83OTew2I","stattrak":true,"normal_prices":[6036,1188,509,428,434],"normal_volume":[308,464,608,142,357],"stattrak_prices":[3752,1401,1029,1074,1038],"stattrak_volume":[161,218,231,60,110]}}}}} diff --git a/BlueLaminate/listings.json b/BlueLaminate/listings.json new file mode 100644 index 0000000..e1e344b --- /dev/null +++ b/BlueLaminate/listings.json @@ -0,0 +1,852 @@ +[ + { + "ListingId": "980620581575721585", + "CreatedAt": "2026-05-29T23:56:05.697492+00:00", + "Type": "auction", + "Price": 0.13, + "MarketHashName": "M4A4 | Cyber Security (Factory New)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 36, + "FloatValue": 0.012077982537448406, + "WearName": "Factory New", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 5, + "SellerSteamId": "76561198246557064", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198246557064A46986755147D14033931285201373732" + }, + { + "ListingId": "977983687889126586", + "CreatedAt": "2026-05-22T17:18:01.251983+00:00", + "Type": "buy_now", + "Price": 20.64, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 196, + "FloatValue": 0.37027570605278015, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198445217245", + "InspectLink": null + }, + { + "ListingId": "980107904751372995", + "CreatedAt": "2026-05-28T13:58:54.017206+00:00", + "Type": "buy_now", + "Price": 21.12, + "MarketHashName": "M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 197, + "FloatValue": 0.3876524567604065, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 4, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010B1C1BAD054181020D9072805300438E2F499F60340C501620A08001082251D00000000620A08011082251D00000000620A080210CB251D00000000620A080310D3241D00000000439A82B3" + }, + { + "ListingId": "977475221521041770", + "CreatedAt": "2026-05-21T07:37:33.42261+00:00", + "Type": "buy_now", + "Price": 21.49, + "MarketHashName": "M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 462, + "FloatValue": 0.41430607438087463, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 4, + "SellerSteamId": "76561198849546787", + "InspectLink": null + }, + { + "ListingId": "944058434985265416", + "CreatedAt": "2026-02-18T02:31:10.65901+00:00", + "Type": "buy_now", + "Price": 21.69, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 458, + "FloatValue": 0.887004554271698, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198203007011", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198203007011A49346222089D9398114021129036864" + }, + { + "ListingId": "944058435647965449", + "CreatedAt": "2026-02-18T02:31:10.816658+00:00", + "Type": "buy_now", + "Price": 21.69, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 355, + "FloatValue": 0.8154000639915466, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198203007011", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198203007011A49346222080D9398114021129036864" + }, + { + "ListingId": "944058436260333836", + "CreatedAt": "2026-02-18T02:31:10.962109+00:00", + "Type": "buy_now", + "Price": 21.69, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 559, + "FloatValue": 0.861517071723938, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198203007011", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198203007011A49346222045D9398114021129036864" + }, + { + "ListingId": "978012477956687353", + "CreatedAt": "2026-05-22T19:12:25.338168+00:00", + "Type": "buy_now", + "Price": 21.7, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 26, + "FloatValue": 0.8027687668800354, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010E7F8AAF4B401181020D9072805300438C184B6FA03401A71625C02" + }, + { + "ListingId": "972014931006327206", + "CreatedAt": "2026-05-06T06:00:18.716109+00:00", + "Type": "buy_now", + "Price": 22.5, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 394, + "FloatValue": 0.7475578784942627, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 4, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010F7FBE79FBF01181020D9072805300438F4BFFDF903408A03620A080010E6241D00000000620A0801108D251D00000000620A080210E5241D00000000620A080310A1251D000000007E31A390" + }, + { + "ListingId": "977854395519732894", + "CreatedAt": "2026-05-22T08:44:15.548448+00:00", + "Type": "buy_now", + "Price": 22.99, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 956, + "FloatValue": 0.36133942008018494, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": "76561199211120731", + "InspectLink": null + }, + { + "ListingId": "972313009710042328", + "CreatedAt": "2026-05-07T01:44:46.21802+00:00", + "Type": "buy_now", + "Price": 23, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 496, + "FloatValue": 0.720237672328949, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010D0D6FD9A6E181020D9072805300438FFC2E1F90340F003D8FDC657" + }, + { + "ListingId": "975882545038232440", + "CreatedAt": "2026-05-16T22:08:49.758479+00:00", + "Type": "buy_now", + "Price": 23.01, + "MarketHashName": "M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 230, + "FloatValue": 0.4235461354255676, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010DDEBA089C001181020D90728053004388AB6E3F60340E6019F941BC8" + }, + { + "ListingId": "969844001735838920", + "CreatedAt": "2026-04-30T06:13:48.844979+00:00", + "Type": "buy_now", + "Price": 23.5, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 624, + "FloatValue": 0.8909536004066467, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010CDB2DBC1B701181020D907280530043889AB90FB0340F004D096EEF0" + }, + { + "ListingId": "978946860024727369", + "CreatedAt": "2026-05-25T09:05:19.384057+00:00", + "Type": "buy_now", + "Price": 23.85, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 7, + "FloatValue": 0.2825245261192322, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": "76561198117461653", + "InspectLink": null + }, + { + "ListingId": "978119890676353307", + "CreatedAt": "2026-05-23T02:19:14.52707+00:00", + "Type": "buy_now", + "Price": 23.94, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 412, + "FloatValue": 0.8696560859680176, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%2000108A8C84AC4B181020D9072805300438C8C3FAFA03409C03F7A3BA99" + }, + { + "ListingId": "958112366166413168", + "CreatedAt": "2026-03-28T21:16:28.961251+00:00", + "Type": "buy_now", + "Price": 24.26, + "MarketHashName": "M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 852, + "FloatValue": 0.39425063133239746, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010B395D9AAA001181020D9072805300438B8B6A7F60340D4069EC48C18" + }, + { + "ListingId": "958276292820730284", + "CreatedAt": "2026-03-29T08:07:52.121365+00:00", + "Type": "buy_now", + "Price": 24.51, + "MarketHashName": "M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 977, + "FloatValue": 0.41828399896621704, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010EBD4D59BBC01181020D9072805300438D2D2D8F60340D1078C025B18" + }, + { + "ListingId": "974716602790578480", + "CreatedAt": "2026-05-13T16:55:47.464117+00:00", + "Type": "buy_now", + "Price": 24.59, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 731, + "FloatValue": 0.3624654710292816, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198074263117", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198074263117A48837358290D10137251750820954148" + }, + { + "ListingId": "973840546919481846", + "CreatedAt": "2026-05-11T06:54:39.468871+00:00", + "Type": "buy_now", + "Price": 25, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 67, + "FloatValue": 0.3120187222957611, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 3, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010B29AC599BF01181020D9072805300438EB81FFF4034043620A0800108D251D00000000620A080210C2231D00000000620A080310D1241D00000000FB2978DD" + }, + { + "ListingId": "977676600889969709", + "CreatedAt": "2026-05-21T20:57:46.005071+00:00", + "Type": "buy_now", + "Price": 25, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 486, + "FloatValue": 0.29553860425949097, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561199700274343", + "InspectLink": null + }, + { + "ListingId": "979960519056296713", + "CreatedAt": "2026-05-28T04:13:14.529164+00:00", + "Type": "buy_now", + "Price": 25.2, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 859, + "FloatValue": 0.24595648050308228, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010F6BBDBF1C001181020D907280530043884B8EFF30340DB06F1B9C120" + }, + { + "ListingId": "975825575518275718", + "CreatedAt": "2026-05-16T18:22:27.166545+00:00", + "Type": "buy_now", + "Price": 25.41, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 989, + "FloatValue": 0.3423748314380646, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198348938457", + "InspectLink": null + }, + { + "ListingId": "920071737041882772", + "CreatedAt": "2025-12-13T21:56:36.217081+00:00", + "Type": "buy_now", + "Price": 25.43, + "MarketHashName": "M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 359, + "FloatValue": 0.4306662678718567, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010E196CCBAAA01181020D9072805300438CA80F2F60340E702E2EDB400" + }, + { + "ListingId": "975848389856067624", + "CreatedAt": "2026-05-16T19:53:06.528564+00:00", + "Type": "buy_now", + "Price": 25.92, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 325, + "FloatValue": 0.28776511549949646, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561199163369506", + "InspectLink": null + }, + { + "ListingId": "974864772635951769", + "CreatedAt": "2026-05-14T02:44:33.908679+00:00", + "Type": "buy_now", + "Price": 25.99, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 625, + "FloatValue": 0.9708523750305176, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561199225324148", + "InspectLink": null + }, + { + "ListingId": "973499186190355214", + "CreatedAt": "2026-05-10T08:18:12.728927+00:00", + "Type": "buy_now", + "Price": 26.22, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 423, + "FloatValue": 0.2560030221939087, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20001098FB99EE6D181020D9072805300438D4A58CF40340A70325312E85" + }, + { + "ListingId": "968055437461160578", + "CreatedAt": "2026-04-25T07:46:41.891409+00:00", + "Type": "buy_now", + "Price": 26.96, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 496, + "FloatValue": 0.48168882727622986, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010A0A1E581BB01181020D9072805300438EBBFDAF70340F003620A080210B4291D00000000620A080310A0291D00000000F40D9810" + }, + { + "ListingId": "973760484195043977", + "CreatedAt": "2026-05-11T01:36:31.027586+00:00", + "Type": "buy_now", + "Price": 27.35, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 416, + "FloatValue": 0.26007798314094543, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198333202197", + "InspectLink": null + }, + { + "ListingId": "957239800581194436", + "CreatedAt": "2026-03-26T11:29:13.114121+00:00", + "Type": "buy_now", + "Price": 27.67, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 453, + "FloatValue": 0.23538990318775177, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20001095B093F4BB01181020D90728053004388D94C4F30340C50375186720" + }, + { + "ListingId": "978296828510473917", + "CreatedAt": "2026-05-23T14:02:19.793484+00:00", + "Type": "buy_now", + "Price": 27.93, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 443, + "FloatValue": 0.19115914404392242, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": "76561198234288280", + "InspectLink": null + }, + { + "ListingId": "977992867920348649", + "CreatedAt": "2026-05-22T17:54:29.941117+00:00", + "Type": "buy_now", + "Price": 27.95, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 183, + "FloatValue": 0.23368020355701447, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": "76561198928748351", + "InspectLink": null + }, + { + "ListingId": "977992871292569138", + "CreatedAt": "2026-05-22T17:54:30.745285+00:00", + "Type": "buy_now", + "Price": 27.95, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 401, + "FloatValue": 0.23699642717838287, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 1, + "SellerSteamId": "76561198928748351", + "InspectLink": null + }, + { + "ListingId": "977992872978679410", + "CreatedAt": "2026-05-22T17:54:31.147159+00:00", + "Type": "buy_now", + "Price": 27.95, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 542, + "FloatValue": 0.23752112686634064, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198928748351", + "InspectLink": null + }, + { + "ListingId": "971827159691822159", + "CreatedAt": "2026-05-05T17:34:10.546539+00:00", + "Type": "buy_now", + "Price": 28, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 219, + "FloatValue": 0.3420577645301819, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20001094E4B895BF01181020D9072805300438B2C4BCF50340DB01620A080210C1011D00000000620A080310CE241D00000000F5543270" + }, + { + "ListingId": "970213268918503456", + "CreatedAt": "2026-05-01T06:41:09.001766+00:00", + "Type": "buy_now", + "Price": 28.19, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 574, + "FloatValue": 0.2504541277885437, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%2000109BF7BCF7BE01181020D907280530043886F780F40340BE041DB34318" + }, + { + "ListingId": "885871847005095070", + "CreatedAt": "2025-09-10T12:58:27.029977+00:00", + "Type": "buy_now", + "Price": 28.22, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 214, + "FloatValue": 0.48499584197998047, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010DED3FFC851181020D9072805300438E0A2E1F70340D6017672504A" + }, + { + "ListingId": "963337021257026727", + "CreatedAt": "2026-04-12T07:17:23.80413+00:00", + "Type": "buy_now", + "Price": 28.7, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 55, + "FloatValue": 0.3647545874118805, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 4, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010AAE3B1989001181020D90728053004389D82EBF50340376214080610D4331D000000003DCC084EBE45606D33BD6214080310E4331D000000003D32FC14BF458087E3BB6214080310E8331D000000003D0069E03C4500DA513B6214080510D4331D000000003DBA99393E450020D739A3A3A5B7" + }, + { + "ListingId": "949438677182975431", + "CreatedAt": "2026-03-04T22:50:20.358844+00:00", + "Type": "buy_now", + "Price": 29, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 67, + "FloatValue": 0.20387957990169525, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198203007011", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198203007011A49346221991D9578638446340935276" + }, + { + "ListingId": "956840395688513433", + "CreatedAt": "2026-03-25T09:02:07.567089+00:00", + "Type": "buy_now", + "Price": 29, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 923, + "FloatValue": 0.2994285821914673, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010FDB4D5DBBB01181020D9072805300438B49DE5F403409B076AE8C2F0" + }, + { + "ListingId": "979943982505265136", + "CreatedAt": "2026-05-28T03:07:31.908263+00:00", + "Type": "buy_now", + "Price": 29.03, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 636, + "FloatValue": 0.17294414341449738, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": "76561198869215251", + "InspectLink": null + }, + { + "ListingId": "978080948111413150", + "CreatedAt": "2026-05-22T23:44:29.895135+00:00", + "Type": "buy_now", + "Price": 29.25, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 810, + "FloatValue": 0.20900020003318787, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561199526200114", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561199526200114A47321956134D14909415746496227396" + }, + { + "ListingId": "977992866376844700", + "CreatedAt": "2026-05-22T17:54:29.574111+00:00", + "Type": "buy_now", + "Price": 29.43, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 70, + "FloatValue": 0.21028947830200195, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198928748351", + "InspectLink": null + }, + { + "ListingId": "925666576131296227", + "CreatedAt": "2025-12-29T08:28:29.803995+00:00", + "Type": "buy_now", + "Price": 29.99, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 517, + "FloatValue": 0.285702109336853, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 1, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010D6F8A0EAB401181020D90728053004388C8FC9F403408504620A080310A6251D00000000F047402C" + }, + { + "ListingId": "973396856010835170", + "CreatedAt": "2026-05-10T01:31:35.31225+00:00", + "Type": "buy_now", + "Price": 30, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 498, + "FloatValue": 0.20943382382392883, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010D0FFD1C7B201181020D9072805300438D2EBD9F20340F203BADA9120" + }, + { + "ListingId": "971602967448913895", + "CreatedAt": "2026-05-05T02:43:18.950863+00:00", + "Type": "buy_now", + "Price": 30.28, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 197, + "FloatValue": 0.22420163452625275, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010C7D1A79EA601181020D90728053004389DAA96F30340C50144C36048" + }, + { + "ListingId": "962983922025762562", + "CreatedAt": "2026-04-11T07:54:18.387897+00:00", + "Type": "buy_now", + "Price": 30.58, + "MarketHashName": "StatTrak\u2122 M4A4 | Cyber Security (Well-Worn)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 51, + "FloatValue": 0.4273785948753357, + "WearName": "Well-Worn", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 4, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010A5C2B7E9B501181020D9072805300938DEA2EBF6034033480050B90A620A080010F41A1D00000000620A080110D4241D00000000620A080210D6241D00000000620A080310CB241D0000000088F8E5FC" + }, + { + "ListingId": "980048914193450883", + "CreatedAt": "2026-05-28T10:04:29.57228+00:00", + "Type": "buy_now", + "Price": 30.58, + "MarketHashName": "StatTrak\u2122 M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 290, + "FloatValue": 0.6706797480583191, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 5, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%200010F0C1F8DFC001181020D9072805300938ABE3AEF90340A202480050B90A620A080010EA251D0000803F620A080110A12E1D0000803F620A0802108A251D00000000620A080310E41F1D000000006214080310E9331D000000003D067E43BE45EC8DBF3DF4698B16" + }, + { + "ListingId": "949751343617278099", + "CreatedAt": "2026-03-05T19:32:45.845412+00:00", + "Type": "buy_now", + "Price": 31.45, + "MarketHashName": "M4A4 | Cyber Security (Battle-Scarred)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 506, + "FloatValue": 0.8670915961265564, + "WearName": "Battle-Scarred", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 0, + "SellerSteamId": "76561198061656655", + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20S76561198061656655A31489990229D7812875425780713576" + }, + { + "ListingId": "980191300609511002", + "CreatedAt": "2026-05-28T19:30:17.139705+00:00", + "Type": "buy_now", + "Price": 31.45, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 708, + "FloatValue": 0.17284630239009857, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 4, + "SellerSteamId": "76561198967873407", + "InspectLink": null + }, + { + "ListingId": "977881196535089755", + "CreatedAt": "2026-05-22T10:30:45.40833+00:00", + "Type": "buy_now", + "Price": 32.5, + "MarketHashName": "M4A4 | Cyber Security (Field-Tested)", + "DefIndex": 16, + "PaintIndex": 985, + "PaintSeed": 240, + "FloatValue": 0.16542492806911469, + "WearName": "Field-Tested", + "IsStatTrak": false, + "IsSouvenir": false, + "StickerCount": 2, + "SellerSteamId": null, + "InspectLink": "steam://rungame/730/76561202255233023/\u002Bcsgo_econ_action_preview%20001084A3D5FABF01181020D9072805300438A7CAA5F10340F0016214080310FD341D000000003D9057D1BD45806C92BB621908061093461D0000803F2D00001C423D7F681C3E45400930BCC01DEC83" + } +] \ No newline at end of file