diff --git a/.env.example b/.env.example index 40479a1..b68204f 100755 --- a/.env.example +++ b/.env.example @@ -65,6 +65,8 @@ DEFAULT_THEME_DARK = true RANKS="Disabled" VIP="Disabled" SKINS="Disabled" +REPORTS="Disabled" +APPEALS="Disabled" #============MODULES DB=============== DB_HOST_VIP= DB_DATABASE_VIP= diff --git a/.env.vercel.example b/.env.vercel.example index 1df4616..130199e 100755 --- a/.env.vercel.example +++ b/.env.vercel.example @@ -13,7 +13,8 @@ RANKS="Disabled" VIP="Disabled" SKINS="Disabled" - +REPORTS="Disabled" +APPEALS="Disabled" #-------------------- MODULES DB ---------------------- DB_HOST_VIP= DB_DATABASE_VIP= diff --git a/app/Http/Controllers/Appeal/AppealController.php b/app/Http/Controllers/Appeal/AppealController.php index dbb51a0..66f40b4 100755 --- a/app/Http/Controllers/Appeal/AppealController.php +++ b/app/Http/Controllers/Appeal/AppealController.php @@ -32,6 +32,23 @@ public function store(Request $request) 'reason' => 'required|string', 'email' => 'required|email', ]); + + $existingAppeal = Appeal::where(function ($query) use ($validated) { + if (isset($validated['steamid'])) { + $query->where('steamid', $validated['steamid']); + } + + if (isset($validated['ip'])) { + $query->orWhere('ip', $validated['ip']); + } + }) + ->where('status', 'PENDING') + ->first(); + + if ($existingAppeal) { + return redirect()->route('appeals.create')->with('error', __('You have a pending Appeal request.')); + } + if(SaBan::where('player_steamid', $validated['steamid']) ->where('status', 'ACTIVE') ->exists()) { @@ -40,10 +57,10 @@ public function store(Request $request) // Save the appeal $appeal = Appeal::create($data); CommonHelper::sendActionLog('appeal', $appeal->id); - return redirect()->route('appeals.create')->with('success', 'Appeal submitted successfully.'); + return redirect()->route('appeals.create')->with('success', __('Appeal submitted successfully.')); } else { - return redirect()->route('appeals.create')->with('error', 'No active bans exists for this Steam ID or IP'); + return redirect()->route('appeals.create')->with('error', __('No active bans exists for this Steam ID or IP')); } } @@ -70,6 +87,6 @@ public function updateStatus(Request $request, $id) $appeal->save(); Mail::to($appeal->email)->send(new AppealApproved($appeal)); - return redirect()->route('appeals.list', $appeal->id)->with('success', 'Appeal status updated successfully.'); + return redirect()->route('appeals.list', $appeal->id)->with('success', __('Appeal status updated successfully.')); } } diff --git a/app/Http/Controllers/K4Ranks/RanksController.php b/app/Http/Controllers/K4Ranks/RanksController.php index fc8cdd0..2600cf3 100755 --- a/app/Http/Controllers/K4Ranks/RanksController.php +++ b/app/Http/Controllers/K4Ranks/RanksController.php @@ -56,17 +56,54 @@ public function getPlayersList(Request $request) } else { // New Logic $query = ZenithPlayerStorage::selectRaw('*, (SELECT COUNT(*) + 1 FROM zenith_player_storage AS zps WHERE CAST(JSON_EXTRACT(zps.`K4-Zenith-Ranks.storage`, "$.Points") AS UNSIGNED) > CAST(JSON_EXTRACT(zenith_player_storage.`K4-Zenith-Ranks.storage`, "$.Points") AS UNSIGNED)) AS `position`'); + if (!empty($searchValue)) { $query->where('steam_id', 'like', '%' . $searchValue . '%') ->orWhereRaw('JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Ranks.storage`, "$.Rank")) like ?', ['%' . $searchValue . '%']) ->orWhere('name', 'like', '%' . $searchValue . '%'); } + if ($orderColumn !== null) { $columnName = $request->input('columns.' . $orderColumn . '.data'); - if ($columnName == 'points') { - $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Ranks.storage`, "$.Points")) AS UNSIGNED) ' . $orderDirection); - } else { - $query->orderBy($columnName, $orderDirection); + + // Handle different column sorting cases + switch ($columnName) { + case 'points': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Ranks.storage`, "$.Points")) AS UNSIGNED) ' . $orderDirection); + break; + case 'kills': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.Kills")) AS UNSIGNED) ' . $orderDirection); + break; + case 'deaths': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.Deaths")) AS UNSIGNED) ' . $orderDirection); + break; + case 'assists': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.Assists")) AS UNSIGNED) ' . $orderDirection); + break; + case 'headshots': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.Headshots")) AS UNSIGNED) ' . $orderDirection); + break; + case 'rounds_ct': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.RoundsCT")) AS UNSIGNED) ' . $orderDirection); + break; + case 'rounds_t': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.RoundsT")) AS UNSIGNED) ' . $orderDirection); + break; + case 'rounds_overall': + $query->orderByRaw('(CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.RoundsCT")) AS UNSIGNED) + CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.RoundsT")) AS UNSIGNED)) ' . $orderDirection); + break; + case 'games_won': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.GameWin")) AS UNSIGNED) ' . $orderDirection); + break; + case 'games_lost': + $query->orderByRaw('CAST(JSON_UNQUOTE(JSON_EXTRACT(`K4-Zenith-Stats.storage`, "$.GameLose")) AS UNSIGNED) ' . $orderDirection); + break; + case 'position': + $query->orderBy('position', $orderDirection); + break; + default: + $query->orderBy($columnName, $orderDirection); + break; } } } @@ -132,7 +169,6 @@ public function getPlayersList(Request $request) "recordsFiltered" => !empty($searchValue) ? count($formattedData) : ($useOldLogic ? Ranks::count() : ZenithPlayerStorage::count()), "data" => $formattedData ]); - } public function viewProfile(Request $request, $steam_id, $server_id) { @@ -183,6 +219,50 @@ public function viewProfile(Request $request, $steam_id, $server_id) { ->limit(5) ->get() ->transform(function ($weapon) { + $weaponNameMap = [ + 'healthshot' => 'Healthshot', + 'inferno' => 'Molotov/Inc.', + 'knife' => 'Knife', + 'grenade' => 'Grenade', + 'deagle' => 'Desert Eagle', + 'elite' => 'Dual Berettas', + 'fiveseven' => 'Five-SeveN', + 'glock' => 'Glock-18', + 'ak47' => 'AK-47', + 'aug' => 'AUG', + 'awp' => 'AWP', + 'famas' => 'FAMAS', + 'g3sg1' => 'G3SG1', + 'galilar' => 'Galil AR', + 'm249' => 'M249', + 'm4a1' => 'M4A1', + 'mac10' => 'MAC-10', + 'p90' => 'P90', + 'mp5sd' => 'MP5-SD', + 'ump45' => 'UMP-45', + 'xm1014' => 'XM1014', + 'bizon' => 'PP-Bizon', + 'mag7' => 'MAG-7', + 'negev' => 'Negev', + 'sawedoff' => 'Sawed-Off', + 'tec9' => 'Tec-9', + 'taser' => 'Zeus x27', + 'hkp2000' => 'P2000', + 'mp7' => 'MP7', + 'mp9' => 'MP9', + 'nova' => 'Nova', + 'p250' => 'P250', + 'scar20' => 'SCAR-20', + 'sg556' => 'SG 553', + 'ssg08' => 'SSG 08', + 'm4a1_silencer' => 'M4A1-S', + 'usp-s' => 'USP-S', + 'cz75a' => 'CZ75-Auto', + 'revolver' => 'R8 Revolver' + ]; + + $weapon->weaponname = $weaponNameMap[$weapon->weapon] ?? $weapon->weapon; + // Define the image path based on weapon name $imagePath = 'images/weapons/weapon_' . strtolower($weapon->weapon) . '.png'; diff --git a/app/Http/Controllers/SettingsController.php b/app/Http/Controllers/SettingsController.php index adc2971..ac67c78 100755 --- a/app/Http/Controllers/SettingsController.php +++ b/app/Http/Controllers/SettingsController.php @@ -27,6 +27,8 @@ public function showSettings() 'RANKS' => env('RANKS'), 'VIP' => env('VIP'), 'SKINS' => env('SKINS'), + 'REPORTS' => env('REPORTS'), + 'APPEALS' => env('APPEALS'), 'K4LegacySupport' => env('K4LegacySupport') ], 'VIP Module' => [ @@ -57,13 +59,16 @@ public function showSettings() public function updateSettings(Request $request) { - $data = $request->all(); + $data = $request->except(['_token']); // Update the .env file or settings storage foreach ($data as $key => $value) { $this->setEnvironmentValue($key, $value); } + \Artisan::call('config:clear'); + \Artisan::call('cache:clear'); + return redirect()->back()->with('success', 'Settings updated successfully.'); } diff --git a/app/Http/Controllers/WeaponSkinController.php b/app/Http/Controllers/WeaponSkinController.php index b73e74a..d678d39 100755 --- a/app/Http/Controllers/WeaponSkinController.php +++ b/app/Http/Controllers/WeaponSkinController.php @@ -73,54 +73,85 @@ public function index() public function load($type) { $skins = json_decode(File::get(resource_path('json/skins.json')), true); - $appliedSkins = DB::connection('mysqlskins')->table('wp_player_skins')->where('steamid', Auth::user()?->steam_id)->get(); - $appliedKnife = DB::connection('mysqlskins')->table('wp_player_knife')->where('steamid', Auth::user()?->steam_id)->first()?->knife; + // Modified query to include weapon_nametag + $appliedSkins = DB::connection('mysqlskins') + ->table('wp_player_skins') + ->select('weapon_defindex', 'weapon_paint_id', 'weapon_wear', 'weapon_seed', 'weapon_nametag', 'weapon_stattrak', 'weapon_keychain', 'weapon_sticker_0', 'weapon_sticker_1', 'weapon_sticker_2', 'weapon_sticker_3', 'weapon_sticker_4', 'weapon_team') + ->where('steamid', Auth::user()?->steam_id) + ->get(); + $appliedKnife = DB::connection('mysqlskins') + ->table('wp_player_knife') + ->where('steamid', Auth::user()?->steam_id) + ->first()?->knife; $filteredSkins = array_filter($skins, function($skin) use ($type) { if($type == 'knife' && in_array($skin['weapon_defindex'], [ - 500, - 503, - 505, - 506, - 507, - 508, - 509, - 512, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 525, - 526 - ])){ - return true; + 500, 503, 505, 506, 507, 508, 509, 512, 514, 515, + 516, 517, 518, 519, 520, 521, 522, 523, 525, 526 + ])) { + return true; } return str_contains(strtolower($skin['weapon_name']), strtolower($type)); }); - // Mark skin as applied if it exists in appliedSkins foreach ($filteredSkins as &$skin) { - $skin['is_applied'] = $appliedSkins->contains(function ($value) use ($skin, $type, $appliedKnife){ - if($type == 'knife'){ - return $value->weapon_defindex == $skin['weapon_defindex'] && $value->weapon_paint_id == $skin['paint'] && $appliedKnife == $skin['weapon_name'] ; + // Check for team-specific applications + $skin['is_applied_t'] = $appliedSkins->contains(function ($value) use ($skin, $type, $appliedKnife) { + if ($type == 'knife') { + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $appliedKnife == $skin['weapon_name'] + && $value->weapon_team == 2; // T team } - return $value->weapon_defindex == $skin['weapon_defindex'] && $value->weapon_paint_id == $skin['paint'] ; + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $value->weapon_team == 2; // T team }); + + $skin['is_applied_ct'] = $appliedSkins->contains(function ($value) use ($skin, $type, $appliedKnife) { + if ($type == 'knife') { + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $appliedKnife == $skin['weapon_name'] + && $value->weapon_team == 3; // CT team + } + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $value->weapon_team == 3; // CT team + }); + + // Retain weapon nametag logic for applied skins + $appliedSkin = $appliedSkins->first(function ($value) use ($skin, $type, $appliedKnife) { + if ($type == 'knife') { + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $appliedKnife == $skin['weapon_name']; + } + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint']; + }); + + $skin['wear'] = $appliedSkin ? $appliedSkin->weapon_wear : ''; + $skin['seed'] = $appliedSkin ? $appliedSkin->weapon_seed : ''; + $skin['weapon_nametag'] = $appliedSkin ? $appliedSkin->weapon_nametag : ''; + $skin['weapon_stattrak'] = $appliedSkin ? $appliedSkin->weapon_stattrak : ''; + $skin['weapon_team'] = $appliedSkin ? $appliedSkin->weapon_team : ''; + $skin['weapon_keychain'] = $appliedSkin ? $appliedSkin->weapon_keychain : ''; + $skin['weapon_sticker_0'] = $appliedSkin ? $appliedSkin->weapon_sticker_0 : ''; + $skin['weapon_sticker_1'] = $appliedSkin ? $appliedSkin->weapon_sticker_1 : ''; + $skin['weapon_sticker_2'] = $appliedSkin ? $appliedSkin->weapon_sticker_2 : ''; + $skin['weapon_sticker_3'] = $appliedSkin ? $appliedSkin->weapon_sticker_3 : ''; + $skin['weapon_sticker_4'] = $appliedSkin ? $appliedSkin->weapon_sticker_4 : ''; } - - // Sort applied skins to be first + + // Sort applied skins to be first (based on either team application) usort($filteredSkins, function($a, $b) { - return $b['is_applied'] - $a['is_applied']; - }); + return ($b['is_applied_t'] || $b['is_applied_ct']) - ($a['is_applied_t'] || $a['is_applied_ct']); + }); return view('weapons.partials.weapon-types', ['skins' => $filteredSkins]); } + public function applySkin(Request $request) { $validator = Validator::make($request->all(), [ @@ -130,6 +161,19 @@ public function applySkin(Request $request) 'wearSelect' => 'required_without:wear|numeric', 'wear' => 'nullable|numeric', 'seed' => 'nullable|integer', + 'weapon_team' => 'required|integer', + 'weapon_nametag' => 'nullable|string', + 'weapon_stattrak' => 'nullable|integer', + 'weapon_stattrak_count' => 'nullable|integer', + 'weapon_sticker_0' => 'nullable|string', + 'weapon_sticker_1' => 'nullable|string', + 'weapon_sticker_2' => 'nullable|string', + 'weapon_sticker_3' => 'nullable|string', + 'weapon_sticker_4' => 'nullable|string', + 'weapon_keychain' => 'nullable|string', + 'weapon_keychainX' => 'nullable|string', + 'weapon_keychainY' => 'nullable|string', + 'weapon_keychainZ' => 'nullable|string' ]); if ($validator->fails()) { return response()->json(['errors' => $validator->errors()], 422); @@ -160,6 +204,7 @@ public function applySkin(Request $request) DB::connection('mysqlskins')->table('wp_player_knife')->updateOrInsert( [ 'steamid' => $validated['steamid'], + 'weapon_team' => $validated['weapon_team'], ], [ 'knife' => $request->input('weapon_name'), @@ -168,42 +213,67 @@ public function applySkin(Request $request) } $wear = $validated['wear'] ?? $validated['wearSelect']; + + $id = $validated['weapon_keychain'] ?? '0'; + $idX = $validated['weapon_keychainX'] ?? '0'; + $idY = $validated['weapon_keychainY'] ?? '0'; + $idZ = $validated['weapon_keychainZ'] ?? '0'; + $weaponKeychain = implode(';', [$id, $idX, $idY, $idZ, '0']); + $data['weapon_keychain'] = $weaponKeychain; + + for ($i = 0; $i < 5; $i++) { + $stickerKey = "weapon_sticker_{$i}"; + $stickerid = $validated[$stickerKey] ?? '0'; + // Append ;0;0;0;0;0;0 to each sticker ID + $data[$stickerKey] = "{$stickerid};0;0;0;0;0;0"; + } DB::connection('mysqlskins')->table('wp_player_skins')->updateOrInsert( [ 'steamid' => $validated['steamid'], 'weapon_defindex' => $validated['weapon_defindex'], + 'weapon_team' => $validated['weapon_team'], ], [ 'weapon_paint_id' => $validated['weapon_paint_id'], 'weapon_wear' => $wear, 'weapon_seed' => $validated['seed'] ?? 0, + 'weapon_nametag' => $validated['weapon_nametag'] ?? '', + 'weapon_stattrak' => $validated['weapon_stattrak'] ?? 0, + 'weapon_stattrak_count' => $validated['weapon_stattrak_count'] ?? 0, + 'weapon_sticker_0' => $data['weapon_sticker_0'], + 'weapon_sticker_1' => $data['weapon_sticker_1'], + 'weapon_sticker_2' => $data['weapon_sticker_2'], + 'weapon_sticker_3' => $data['weapon_sticker_3'], + 'weapon_sticker_4' => $data['weapon_sticker_4'], + 'weapon_keychain' => $data['weapon_keychain'], ] ); return response()->json(['success' => 'Skin applied successfully!']); } - public function agents() { $agents = json_decode(File::get(resource_path('json/agents.json')), true); // Fetch applied agents from the database - $appliedAgents = DB::connection('mysqlskins')->table('wp_player_agents')->where('steamid', Auth::user()?->steam_id)->first(); + $appliedAgents = DB::connection('mysqlskins')->table('wp_player_agents')->where('steamid', Auth::user()?->steam_id)->first(); foreach ($agents as &$agent) { if ($appliedAgents) { - $agent['is_applied'] = ($agent['team'] == 2 && $agent['model'] == $appliedAgents->agent_t) || ($agent['team'] == 3 && $agent['model'] == $appliedAgents->agent_ct); + $agent['is_applied_t'] = $agent['team'] == 2 && $agent['model'] == $appliedAgents->agent_t; + $agent['is_applied_ct'] = $agent['team'] == 3 && $agent['model'] == $appliedAgents->agent_ct; } else { - $agent['is_applied'] = false; + $agent['is_applied_t'] = false; + $agent['is_applied_ct'] = false; } } - // Sort applied agents to be first - usort($agents, function($a, $b) { - return $b['is_applied'] - $a['is_applied']; + // Sort applied agents to be first (T or CT applied) + usort($agents, function ($a, $b) { + return ($b['is_applied_t'] || $b['is_applied_ct']) - ($a['is_applied_t'] || $a['is_applied_ct']); }); return view('weapons.agents', ['agents' => $agents]); @@ -247,24 +317,57 @@ public function gloves() public function loadGloves($type) { $gloves = json_decode(File::get(resource_path('json/gloves.json')), true); - $appliedGloves = DB::connection('mysqlskins')->table('wp_player_skins') - ->where('steamid', Auth::user()?->steam_id) - ->pluck('weapon_paint_id') - ->toArray(); - $appliedGloveIndex = DB::connection('mysqlskins')->table('wp_player_gloves')->where('steamid', Auth::user()?->steam_id)->first()?->weapon_defindex; + $user = Auth::user(); + + if (!$user) { + return view('weapons.partials.gloves-types', ['gloves' => []]); + } + + // Get applied skins for gloves + $appliedSkins = DB::connection('mysqlskins')->table('wp_player_skins')->where('steamid', $user->steam_id)->get(); + $appliedGloveIndex = DB::connection('mysqlskins')->table('wp_player_gloves')->where('steamid', $user->steam_id)->first()?->weapon_defindex; $filteredGloves = array_filter($gloves, function($glove) use ($type) { return str_contains(strtolower($glove['paint_name']), strtolower($type)); }); - // Mark glove as applied if it exists in appliedGloves + // Mark glove as applied for T and CT teams and add additional properties foreach ($filteredGloves as &$glove) { - $glove['is_applied'] = in_array($glove['paint'], $appliedGloves) && $glove['weapon_defindex'] == $appliedGloveIndex;; + // Check for T team + $glove['is_applied_t'] = $appliedSkins->contains(function ($value) use ($glove) { + return $value->weapon_defindex == $glove['weapon_defindex'] + && $value->weapon_paint_id == $glove['paint'] + && $value->weapon_team == 2; // T team + }); + + // Check for CT team + $glove['is_applied_ct'] = $appliedSkins->contains(function ($value) use ($glove) { + return $value->weapon_defindex == $glove['weapon_defindex'] + && $value->weapon_paint_id == $glove['paint'] + && $value->weapon_team == 3; // CT team + }); + + // Find the applied skin for additional properties (wear, seed, team) + $appliedSkin = $appliedSkins->first(function ($value) use ($glove) { + return $value->weapon_defindex == $glove['weapon_defindex'] + && $value->weapon_paint_id == $glove['paint']; + }); + + // Set additional properties for wear, seed, and team + if ($appliedSkin) { + $glove['wear'] = $appliedSkin->weapon_wear ?? ''; // Wear + $glove['seed'] = $appliedSkin->weapon_seed ?? ''; // Seed + $glove['weapon_team'] = $appliedSkin->weapon_team ?? ''; // Team + } else { + $glove['wear'] = ''; + $glove['seed'] = ''; + $glove['weapon_team'] = ''; + } } - // Sort applied gloves to be first + // Sort applied gloves to be first for T and CT teams usort($filteredGloves, function($a, $b) { - return $b['is_applied'] - $a['is_applied']; + return ($b['is_applied_t'] || $b['is_applied_ct']) <=> ($a['is_applied_t'] || $a['is_applied_ct']); }); return view('weapons.partials.gloves-types', ['gloves' => $filteredGloves]); @@ -276,22 +379,52 @@ public function music() $music = json_decode(File::get(resource_path('json/music.json')), true); // Fetch applied music from the database - $appliedMusic = DB::connection('mysqlskins')->table('wp_player_music')->where('steamid', Auth::user()?->steam_id)->get(); + $appliedMusic = DB::connection('mysqlskins')->table('wp_player_music')->where('steamid', Auth::user()?->steam_id)->get(); foreach ($music as &$track) { - $track['is_applied'] = $appliedMusic->contains(function ($value) use ($track) { - return $value->music_id == $track['id']; + // Check for team-specific applications using numeric values + $track['is_applied_t'] = $appliedMusic->contains(function ($value) use ($track) { + return $value->music_id == $track['id'] && $value->weapon_team == 2; // T team + }); + + $track['is_applied_ct'] = $appliedMusic->contains(function ($value) use ($track) { + return $value->music_id == $track['id'] && $value->weapon_team == 3; // CT team }); } - // Sort applied music to be first + // Sort applied music to be first (based on either team application) usort($music, function($a, $b) { - return $b['is_applied'] - $a['is_applied']; + return ($b['is_applied_t'] || $b['is_applied_ct']) - ($a['is_applied_t'] || $a['is_applied_ct']); }); return view('weapons.music', ['music' => $music]); } + public function pin() + { + $pins = json_decode(File::get(resource_path('json/collectibles.json')), true); + + // Fetch applied pins from the database + $appliedPin = DB::connection('mysqlskins')->table('wp_player_pins')->where('steamid', Auth::user()?->steam_id)->get(); + + foreach ($pins as &$pin) { + // Check for team-specific applications using numeric values + $pin['is_applied_t'] = $appliedPin->contains(function ($value) use ($pin) { + return $value->id == $pin['id'] && $value->weapon_team == 2; // T team + }); + + $pin['is_applied_ct'] = $appliedPin->contains(function ($value) use ($pin) { + return $value->id == $pin['id'] && $value->weapon_team == 3; // CT team + }); + } + + // Sort applied pins to be first (based on either team application) + usort($pins, function($a, $b) { + return ($b['is_applied_t'] || $b['is_applied_ct']) - ($a['is_applied_t'] || $a['is_applied_ct']); + }); + + return view('weapons.pins', ['pins' => $pins]); + } public function applyAgent(Request $request) { @@ -332,6 +465,7 @@ public function applyGlove(Request $request) 'wearSelect' => 'required|numeric', 'wear' => 'nullable|numeric', 'seed' => 'nullable|integer', + 'weapon_team' => 'required|integer', ]); if ($validator->fails()) { @@ -341,10 +475,25 @@ public function applyGlove(Request $request) $validated = $validator->validated(); try { + // Delete any existing glove data for the same weapon_team and weapon_defindex + DB::connection('mysqlskins')->table('wp_player_gloves') + ->where('steamid', $validated['steamid']) + ->where('weapon_team', $validated['weapon_team']) + ->whereBetween('weapon_defindex', [4725, 5035]) + ->delete(); + + // Delete any existing skin data for the same weapon_team and weapon_defindex + DB::connection('mysqlskins')->table('wp_player_skins') + ->where('steamid', $validated['steamid']) + ->where('weapon_team', $validated['weapon_team']) + ->whereBetween('weapon_defindex', [4725, 5035]) + ->delete(); + // Update or insert in wp_player_gloves table - DB::connection('mysqlskins')->table('wp_player_gloves')->updateOrInsert( + DB::connection('mysqlskins')->table('wp_player_gloves')->updateOrInsert( [ 'steamid' => $validated['steamid'], + 'weapon_team' => $validated['weapon_team'], ], [ 'weapon_defindex' => $validated['weapon_defindex'], @@ -352,15 +501,25 @@ public function applyGlove(Request $request) ); // Update or insert in wp_player_skins table - DB::connection('mysqlskins')->table('wp_player_skins')->updateOrInsert( + DB::connection('mysqlskins')->table('wp_player_skins')->updateOrInsert( [ 'steamid' => $validated['steamid'], 'weapon_defindex' => $validated['weapon_defindex'], + 'weapon_team' => $validated['weapon_team'], ], [ 'weapon_paint_id' => $validated['weapon_paint_id'], 'weapon_wear' => $validated['wearSelect'], 'weapon_seed' => $validated['seed'] ?? 0, + 'weapon_nametag' => '', + 'weapon_stattrak' => 0, + 'weapon_stattrak_count' => 0, + 'weapon_sticker_0' => '0;0;0;0;0;0;0', + 'weapon_sticker_1' => '0;0;0;0;0;0;0', + 'weapon_sticker_2' => '0;0;0;0;0;0;0', + 'weapon_sticker_3' => '0;0;0;0;0;0;0', + 'weapon_sticker_4' => '0;0;0;0;0;0;0', + 'weapon_keychain' => '0;0;0;0;0', ] ); @@ -375,11 +534,13 @@ public function applyMusic(Request $request) $validated = $request->validate([ 'steamid' => 'required|string', 'music_id' => 'required|integer', + 'weapon_team' => 'required|integer', ]); DB::connection('mysqlskins')->table('wp_player_music')->updateOrInsert( [ 'steamid' => $validated['steamid'], + 'weapon_team' => $validated['weapon_team'], ], [ 'music_id' => $validated['music_id'], @@ -388,6 +549,28 @@ public function applyMusic(Request $request) return response()->json(['success' => 'Music applied successfully!']); } + + public function applyPin(Request $request) + { + $validated = $request->validate([ + 'steamid' => 'required|string', + 'id' => 'required|integer', + 'weapon_team' => 'required|integer', + ]); + + DB::connection('mysqlskins')->table('wp_player_pins')->updateOrInsert( + [ + 'steamid' => $validated['steamid'], + 'weapon_team' => $validated['weapon_team'], + ], + [ + 'id' => $validated['id'], + ] + ); + + return response()->json(['success' => 'Pin applied successfully!']); + } + public function knives() { $skins = json_decode(File::get(resource_path('json/skins.json')), true); @@ -427,30 +610,76 @@ public function knives() public function loadKnives($category) { $skins = json_decode(File::get(resource_path('json/skins.json')), true); - $appliedSkins = DB::connection('mysqlskins')->table('wp_player_skins')->where('steamid', Auth::user()?->steam_id)->get(); - $appliedKnife = DB::connection('mysqlskins')->table('wp_player_knife')->where('steamid', Auth::user()?->steam_id)->first()?->knife; - - $filteredKnives = array_filter($skins, function ($skin) use ($category) { - return in_array($skin['weapon_defindex'], [ - 500, 503, 505, 506, 507, 508, 509, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 525, 526 - ]) && $skin['weapon_defindex'] == $category; + $user = Auth::user(); + + if (!$user) { + return view('weapons.partials.knife-types', ['skins' => []]); + } + + $appliedSkins = DB::connection('mysqlskins')->table('wp_player_skins')->where('steamid', $user->steam_id)->get(); + + $appliedKnife = DB::connection('mysqlskins')->table('wp_player_knife')->where('steamid', $user->steam_id)->first(); + + $kniveDefindexes = [ + 500, 503, 505, 506, 507, 508, 509, 512, 514, + 515, 516, 517, 518, 519, 520, 521, 522, 523, + 525, 526 + ]; + + $filteredKnives = array_filter($skins, function ($skin) use ($category, $kniveDefindexes) { + return in_array($skin['weapon_defindex'], $kniveDefindexes) && + $skin['weapon_defindex'] == $category; }); - // Mark skin as applied if it exists in appliedKnives + $type = 'knife'; // Since this is loadKnives function, we set type to knife + + // Mark skin as applied for T and CT teams foreach ($filteredKnives as &$skin) { - $skin['is_applied'] = $appliedSkins->contains(function ($value) use ($skin, $appliedKnife) { - return $value->weapon_defindex == $skin['weapon_defindex'] && $value->weapon_paint_id == $skin['paint'] && $skin['weapon_name'] == $appliedKnife; ; + // Check for T team + $skin['is_applied_t'] = $appliedSkins->contains(function ($value) use ($skin) { + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $value->weapon_team == 2; // T team + }); + + // Check for CT team + $skin['is_applied_ct'] = $appliedSkins->contains(function ($value) use ($skin) { + return $value->weapon_defindex == $skin['weapon_defindex'] + && $value->weapon_paint_id == $skin['paint'] + && $value->weapon_team == 3; // CT team + }); + + // Find the applied skin for additional properties + $appliedSkin = $appliedSkins->first(function ($value) use ($skin, $appliedKnife) { + return $value->weapon_defindex == $skin['weapon_defindex'] && + $value->weapon_paint_id == $skin['paint'] && + $skin['weapon_name'] == optional($appliedKnife)->knife; }); + + // Set additional properties + if ($appliedSkin) { + $skin['wear'] = $appliedSkin->weapon_wear ?? ''; + $skin['seed'] = $appliedSkin->weapon_seed ?? ''; + $skin['weapon_nametag'] = $appliedSkin->weapon_nametag ?? ''; + $skin['weapon_stattrak'] = $appliedSkin->weapon_stattrak ?? ''; + $skin['weapon_team'] = $appliedSkin->weapon_team ?? ''; + } else { + $skin['wear'] = ''; + $skin['seed'] = ''; + $skin['weapon_nametag'] = ''; + $skin['weapon_stattrak'] = ''; + $skin['weapon_team'] = ''; + } } - // Sort applied knives to be first + // Sort applied knives to be first for T and CT teams usort($filteredKnives, function ($a, $b) { - return $b['is_applied'] - $a['is_applied']; + return ($b['is_applied_t'] || $b['is_applied_ct']) <=> ($a['is_applied_t'] || $a['is_applied_ct']); }); return view('weapons.partials.knife-types', ['skins' => $filteredKnives]); } - + public function applyKnife(Request $request) { $validator = Validator::make($request->all(), [ @@ -460,6 +689,10 @@ public function applyKnife(Request $request) 'wearSelect' => 'required|numeric', 'wear' => 'nullable|numeric', 'seed' => 'nullable|integer', + 'weapon_team' => 'required|integer', + 'weapon_nametag' => 'nullable|string', + 'weapon_stattrak' => 'nullable|integer', + 'weapon_stattrak_count' => 'nullable|integer', ]); if ($validator->fails()) { @@ -468,10 +701,18 @@ public function applyKnife(Request $request) $validated = $validator->validated(); + // Delete any existing skin data for the same weapon_team and weapon_defindex + DB::connection('mysqlskins')->table('wp_player_skins') + ->where('steamid', $validated['steamid']) + ->where('weapon_team', $validated['weapon_team']) + ->whereBetween('weapon_defindex', [500, 526]) + ->delete(); + try { DB::connection('mysqlskins')->table('wp_player_knife')->updateOrInsert( [ 'steamid' => $validated['steamid'], + 'weapon_team' => $validated['weapon_team'], ], [ 'knife' => $request->input('weapon_name'), @@ -482,11 +723,21 @@ public function applyKnife(Request $request) [ 'steamid' => $validated['steamid'], 'weapon_defindex' => $validated['weapon_defindex'], + 'weapon_team' => $validated['weapon_team'], ], [ 'weapon_paint_id' => $validated['weapon_paint_id'], 'weapon_wear' => $validated['wearSelect'], 'weapon_seed' => $validated['seed'] ?? 0, + 'weapon_nametag' => $validated['weapon_nametag'] ?? '', + 'weapon_stattrak' => $validated['weapon_stattrak'] ?? 0, + 'weapon_stattrak_count' => $validated['weapon_stattrak_count'] ?? 0, + 'weapon_sticker_0' => $validated['weapon_sticker_0'] ?? '0;0;0;0;0;0;0', + 'weapon_sticker_1' => $validated['weapon_sticker_1'] ?? '0;0;0;0;0;0;0', + 'weapon_sticker_2' => $validated['weapon_sticker_2'] ?? '0;0;0;0;0;0;0', + 'weapon_sticker_3' => $validated['weapon_sticker_3'] ?? '0;0;0;0;0;0;0', + 'weapon_sticker_4' => $validated['weapon_sticker_4'] ?? '0;0;0;0;0;0;0', + 'weapon_keychain' => $validated['weapon_keychain'] ?? '0;0;0;0;0', ] ); @@ -495,6 +746,4 @@ public function applyKnife(Request $request) return response()->json(['error' => $e->getMessage()], 500); } } -} - - +} \ No newline at end of file diff --git a/app/Models/ServerStats.php b/app/Models/ServerStats.php index 12d7ef1..d8ba0a7 100644 --- a/app/Models/ServerStats.php +++ b/app/Models/ServerStats.php @@ -19,4 +19,10 @@ public function server() { return $this->belongsTo(SaServer::class, 'server_id'); } + + public function __construct(array $attributes = []) + { + parent::__construct($attributes); + $this->setConnection('mysql'); + } } diff --git a/lang/bg.json b/lang/bg.json index 6deb227..a57e404 100644 --- a/lang/bg.json +++ b/lang/bg.json @@ -3,9 +3,12 @@ "Add": "Добави", "Add New Server Setting": "Добави нови настройки на сървър", "Address": "Адрес", + "Agents": "Агенти", "Appeal Ban": "Обжалвай забраната", "Appeal Details": "Детайли за обжалване", "Appeal a Ban": "Обжалване на забрана", + "Appeal status updated successfully.": "Статусът на обжалването е успешно актуализиран.", + "Appeal submitted successfully.": "Обжалването е успешно изпратено.", "Appeals": "Обжалвания", "Appeals List": "Списък с обжалвания", "Apply Knife Skin": "Приложи кожа на нож", @@ -17,6 +20,7 @@ "Chest": "Гръден кош", "Close": "Затвори", "Comments": "Коментари", + "Counter-Terrorist": "Антитерористи", "Created At": "Създаден на", "DB Host": "DB Хост", "DB Name": "DB Име", @@ -29,9 +33,12 @@ "Email": "Имейл", "Enabled": "Активиран", "First Bloods": "Първи убити", + "Gloves": "Ръкавици", "Hostname": "Име на хоста", "Identifier": "Идентификатор", "If your report is approved you will find the player banned status in ban list": "Ако докладът ви бъде одобрен, ще намерите статуса на забраната на играча в списъка със забрани", + "Keychains": "Ключодържатели", + "Knife Skins": "Облицовки за ножове", "Last 1 Hour": "Последен 1 час", "Last 1 Week": "Последна 1 седмица", "Last 12 Hours": "Последни 12 часа", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Линк към медия (Доказателство)", "Module Name": "Име на модула", + "Music": "Музика", "Mute List": "Списък на мълчания", "Name": "Име", "Nametag": "Етикет с име", "Never Expires": "Никога не изтича", "Nickname": "Псевдоним", "No": "Не", + "No active bans exists for this Steam ID or IP": "Няма активни забрани за този Steam ID или IP.", + "No keychain selected": "Не е избран ключодържател", "No sticker selected": "Няма избран стикер", "Pins": "Значки", "Play Time": "Време на игра", @@ -58,6 +68,7 @@ "Rounds": "Рундове", "Search Stickers": "Търсене на стикери", "Select Knife Category": "Избери категория на нож", + "Select Team": "Изберете отбор", "Select Time Range": "Изберете времеви диапазон", "Server Map Stats": "Статистики на картата на сървъра", "Server Player Stats": "Статистики на играчите на сървъра", @@ -73,6 +84,7 @@ "Sync New Servers": "Синхронизирай нови сървъри", "Target Nickname": "Целеви псевдоним", "Target SteamID": "Целеви SteamID", + "Terrorist": "Терористи", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Екипът ще бъде уведомен за вашето обжалване. Те ще прегледат дали забраната е обоснована. След преглед ще получите отговор, обикновено в рамките на 24 часа.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Екипът ще бъде уведомен за вашия доклад. Те ще прегледат дали докладът е обоснован.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Тази функция въвежда поддръжка на множество сървъри за модула Рангове. Тя позволява на администраторите динамично да превключват между различни бази данни на сървъри за показване на ранговете на играчите. Това е особено полезно за управление на множество игрални сървъри от един интерфейс.", @@ -86,9 +98,11 @@ "View Proof": "Виж доказателството", "Visibility": "Видимост", "Weapon": "Оръжие", + "Weapon Skins": "Облицовки за оръжия", "What happens after I post my appeal?": "Какво се случва след като публикувам обжалването си?", "Win": "Победа", "Yes": "Да", + "You have a pending Appeal request.": "Имате чакаща молба за обжалване.", "Your Email": "Вашият имейл", "Your Name": "Вашето име", "Your SteamID": "Вашият SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Нови сървъри синхронизирани за настройки на видимостта.", "settings.noNewServers": "Няма нови сървъри за синхронизиране.", "settings.update": "Актуализирай настройки", - "skins.active": "Активен", + "skins.active_both": "Активни (И двете)", + "skins.active_ct": "Активни (CT)", + "skins.active_t": "Активни (T)", "skins.applied": "Кожата е приложена успешно.", "skins.apply": "Приложи", "skins.applySkin": "Приложи кожа", diff --git a/lang/cz.json b/lang/cz.json index b18c101..fead293 100755 --- a/lang/cz.json +++ b/lang/cz.json @@ -2,9 +2,12 @@ "-- Select Server --": "-- Vyberte server --", "Actions": "Akce", "Address": "Adresa", + "Agents": "Agenti", "Appeal Ban": "Podat odvolání", "Appeal Details": "Detaily odvolání", "Appeal a Ban": "Odvolat zákaz", + "Appeal status updated successfully.": "Stav odvolání byl úspěšně aktualizován.", + "Appeal submitted successfully.": "Odvolání bylo úspěšně odesláno.", "Appeals": "Odvolání", "Appeals List": "Seznam odvolání", "Apply Knife Skin": "Nastavit skin pro nůž", @@ -16,6 +19,7 @@ "Chest": "Hrudník", "Close": "Zavřít", "Comments": "Komentáře", + "Counter-Terrorist": "Protiteroristé", "Created At": "Vytvořeno", "Delete": "Smazat", "Delete Report": "Smazat hlášení", @@ -23,9 +27,12 @@ "Email": "Email", "Enabled": "Povoleno", "First Bloods": "První krev", + "Gloves": "Rukavice", "Hostname": "Název serveru", "Identifier": "Identifikátor", "If your report is approved you will find the player banned status in ban list": "Pokud je vaše hlášení schváleno, najdete stav zákazu hráče v seznamu zákazů", + "Keychains": "Klíčenky", + "Knife Skins": "Nože Skins", "Last 1 Hour": "Poslední 1 hodina", "Last 1 Week": "Poslední 1 týden", "Last 12 Hours": "Posledních 12 hodin", @@ -34,10 +41,13 @@ "MVP": "MVP", "Media Link": "Odkaz na médium", "Media Link (Proof)": "Odkaz na médium (důkaz)", + "Music": "Hudba", "Mute List": "Mute List", "Name": "Jméno", "Nametag": "Štítek se jménem", "Nickname": "Přezdívka", + "No active bans exists for this Steam ID or IP": "Pro tento Steam ID nebo IP neexistují žádné aktivní zákazy.", + "No keychain selected": "Není vybrána žádná klíčenka", "No sticker selected": "Žádná samolepka nebyla vybrána", "Pins": "Odznaky", "Play Time": "Doba hry", @@ -53,6 +63,7 @@ "Rounds": "Kola", "Search Stickers": "Hledat samolepky", "Select Knife Category": "Vyber kategorii nožů", + "Select Team": "Vyberte tým", "Select Time Range": "Vyberte časový rozsah", "Server Map Stats": "Statistiky map serveru", "Server Player Stats": "Statistiky hráčů serveru", @@ -69,6 +80,7 @@ "Sync New Servers": "Synchronizovat nové servery", "Target Nickname": "Jméno hráče", "Target SteamID": "SteamID Hráče", + "Terrorist": "Teroristé", "Test SMTP Settings": "Otestovat SMTP nastavení", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Tým administrátorů bude informován o vašem odvolání. Poté přezkoumají, zda je zákaz oprávněný. Po přezkoumání obdržíte odpověď, obvykle do 24 hodin.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Tým administrátorů bude informován o vašem hlášení. Poté přezkoumají, zda je hlášení oprávněné.", @@ -82,8 +94,10 @@ "Visibility": "Viditelnost serveru", "Warning": "Varování", "Weapon": "Zbraň", + "Weapon Skins": "Skiny na zbraně", "What happens after I post my appeal?": "Co se stane po odeslání mého odvolání?", "Win": "Výhra", + "You have a pending Appeal request.": "Máte čekající žádost o odvolání.", "Your Email": "Vaše emailová adresa", "Your Name": "Vaše jméno", "Your SteamID": "Vaše SteamID", @@ -278,7 +292,9 @@ "settings.sendTestEmail": "Odeslat testovací email", "settings.testEmailAddress": "Testovací emailová adresa", "settings.update": "Aktualizovat nastavení", - "skins.active": "Aktivní", + "skins.active_both": "Aktivní (Obojí)", + "skins.active_ct": "Aktivní (CT)", + "skins.active_t": "Aktivní (T)", "skins.applied": "Skin byl úspěšně použit.", "skins.apply": "Použít", "skins.applySkin": "Použít skin", diff --git a/lang/de.json b/lang/de.json index 0bb05d4..3736b02 100755 --- a/lang/de.json +++ b/lang/de.json @@ -3,9 +3,12 @@ "Add": "Hinzufügen", "Add New Server Setting": "Neue Servereinstellung hinzufügen", "Address": "Adresse", + "Agents": "Agenten", "Appeal Ban": "Sperre anfechten", "Appeal Details": "Details der Berufung", "Appeal a Ban": "Einspruch gegen eine Sperre einlegen", + "Appeal status updated successfully.": "Berufungsstatus erfolgreich aktualisiert.", + "Appeal submitted successfully.": "Berufung erfolgreich eingereicht.", "Appeals": "Einsprüche", "Appeals List": "Berufungsliste", "Apply Knife Skin": "Messer-Skin anwenden", @@ -15,6 +18,7 @@ "Ban Type": "Ban-Typ", "Close": "Schließen", "Comments": "Kommentare", + "Counter-Terrorist": "Anti-Terror-Einheit", "Created At": "Erstellt am", "DB Host": "DB-Host", "DB Name": "DB-Name", @@ -26,21 +30,27 @@ "Edit": "Bearbeiten", "Email": "E-Mail", "Enabled": "Aktiviert", + "Gloves": "Handschuhe", "Hostname": "Hostname", "Identifier": "Identifikator", "If your report is approved you will find the player banned status in ban list": "Wenn Ihr Bericht genehmigt wird, finden Sie den gesperrten Status des Spielers in der Sperrliste", + "Keychains": "Schlüsselanhänger", + "Knife Skins": "Messer-Skins", "Last 1 Hour": "Letzte 1 Stunde", "Last 1 Week": "Letzte 1 Woche", "Last 12 Hours": "Letzte 12 Stunden", "Last 12 Months": "Letzte 12 Monate", "Media Link (Proof)": "Medienlink (Beweis)", "Module Name": "Modulname", + "Music": "Musik", "Mute List": "Stummschaltungsliste", "Name": "Name", "Nametag": "Namensschild", "Never Expires": "Läuft nie ab", "Nickname": "Spitzname", "No": "Nein", + "No active bans exists for this Steam ID or IP": "Keine aktiven Sperren für diese Steam-ID oder IP vorhanden.", + "No keychain selected": "Kein Schlüsselanhänger ausgewählt", "No sticker selected": "Kein Aufkleber ausgewählt", "Pins": "Pins", "Reason why you should be unbanned": "Grund, warum Sie entsperrt werden sollten", @@ -51,6 +61,7 @@ "Reports List": "Berichtsliste", "Search Stickers": "Aufkleber suchen", "Select Knife Category": "Messerkategorie auswählen", + "Select Team": "Team auswählen", "Select Time Range": "Zeitraum auswählen", "Server Map Stats": "Server-Kartenstatistiken", "Server Player Stats": "Server-Spielerstatistiken", @@ -65,6 +76,7 @@ "Sync New Servers": "Neue Server synchronisieren", "Target Nickname": "Ziel Spitzname", "Target SteamID": "Ziel SteamID", + "Terrorist": "Terroristen", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Das Team wird über Ihren Einspruch informiert. Sie werden dann prüfen, ob die Sperre gerechtfertigt ist. Nach der Überprüfung erhalten Sie eine Antwort, normalerweise innerhalb von 24 Stunden.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Das Team wird über Ihren Bericht informiert. Sie werden dann prüfen, ob der Bericht schlüssig ist.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Diese Funktion führt die Unterstützung für mehrere Server im Ränge-Modul ein. Sie ermöglicht Administratoren, dynamisch zwischen verschiedenen Serverdatenbanken zu wechseln, um die Spielerränge anzuzeigen. Dies ist besonders nützlich für die Verwaltung mehrerer Spieleserver von einer einzigen Schnittstelle aus.", @@ -73,8 +85,10 @@ "View": "Ansehen", "View Proof": "Beweis ansehen", "Visibility": "Sichtbarkeit", + "Weapon Skins": "Waffen-Skins", "What happens after I post my appeal?": "Was passiert, nachdem ich meinen Einspruch eingereicht habe?", "Yes": "Ja", + "You have a pending Appeal request.": "Sie haben eine ausstehende Berufungsanfrage.", "Your Email": "Ihre E-Mail", "Your Name": "Ihr Name", "Your SteamID": "Ihre SteamID", @@ -263,7 +277,9 @@ "settings.newServers": "Neue Server für Sichtbarkeitseinstellungen synchronisiert.", "settings.noNewServers": "Keine neuen Server zum Synchronisieren gefunden.", "settings.update": "Einstellungen aktualisieren", - "skins.active": "Aktiv", + "skins.active_both": "Aktiv (Beide)", + "skins.active_ct": "Aktiv (CT)", + "skins.active_t": "Aktiv (T)", "skins.applied": "Skin erfolgreich angewendet.", "skins.apply": "Anwenden", "skins.applySkin": "Skin anwenden", diff --git a/lang/en.json b/lang/en.json index 6d863f6..5c7e283 100755 --- a/lang/en.json +++ b/lang/en.json @@ -3,9 +3,12 @@ "Add": "Add", "Add New Server Setting": "Add New Server Setting", "Address": "Address", + "Agents": "Agents", "Appeal Ban": "Appeal Ban", "Appeal Details": "Appeal Details", "Appeal a Ban": "Appeal a Ban", + "Appeal status updated successfully.": "Appeal status updated successfully.", + "Appeal submitted successfully.": "Appeal submitted successfully.", "Appeals": "Appeals", "Appeals List": "Appeals List", "Apply Knife Skin": "Apply Knife Skin", @@ -17,6 +20,7 @@ "Chest": "Chest", "Close": "Close", "Comments": "Comments", + "Counter-Terrorist": "Counter-Terrorist", "Created At": "Created At", "DB Host": "DB Host", "DB Name": "DB Name", @@ -29,9 +33,12 @@ "Email": "Email", "Enabled": "Enabled", "First Bloods": "First Bloods", + "Gloves": "Gloves", "Hostname": "Hostname", "Identifier": "Identifier", "If your report is approved you will find the player banned status in ban list": "If your report is approved you will find the player banned status in ban list", + "Keychains": "Keychains", + "Knife Skins": "Knife Skins", "Last 1 Hour": "Last 1 Hour", "Last 1 Week": "Last 1 Week", "Last 12 Hours": "Last 12 Hours", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Media Link (Proof)", "Module Name": "Module Name", + "Music": "Music", "Mute List": "Mute List", "Name": "Name", "Nametag": "Nametag", "Never Expires": "Never Expires", "Nickname": "Nickname", "No": "No", + "No active bans exists for this Steam ID or IP": "No active bans exists for this Steam ID or IP", + "No keychain selected": "No keychain selected", "No sticker selected": "No sticker selected", "Pins": "Pins", "Play Time": "Play time", @@ -58,6 +68,7 @@ "Rounds": "Rounds", "Search Stickers": "Search Stickers", "Select Knife Category": "Select Knife Category", + "Select Team": "Select Team", "Select Time Range": "Select Time Range", "Server Map Stats": "Server Map Stats", "Server Player Stats": "Server Player Stats", @@ -73,6 +84,7 @@ "Sync New Servers": "Sync New Servers", "Target Nickname": "Target Nickname", "Target SteamID": "Target SteamID", + "Terrorist": "Terrorist", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "The staff team will be notified of your report. They will then review if the report is conclusive.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.", @@ -86,9 +98,11 @@ "View Proof": "View Proof", "Visibility": "Visibility", "Weapon": "Weapon", + "Weapon Skins": "Weapon Skins", "What happens after I post my appeal?": "What happens after I post my appeal?", "Win": "Win", "Yes": "Yes", + "You have a pending Appeal request.": "You have a pending Appeal request.", "Your Email": "Your Email", "Your Name": "Your Name", "Your SteamID": "Your SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "New Servers Synced for visibility settings.", "settings.noNewServers": "No New Servers Found to sync.", "settings.update": "Update Settings", - "skins.active": "Active", + "skins.active_both": "Active (Both)", + "skins.active_ct": "Active (CT)", + "skins.active_t": "Active (T)", "skins.applied": "Skin Applied Successfully.", "skins.apply": "Apply", "skins.applySkin": "Apply Skin", diff --git a/lang/es.json b/lang/es.json index 2a69ca4..2df03cb 100755 --- a/lang/es.json +++ b/lang/es.json @@ -3,9 +3,12 @@ "Add": "Agregar", "Add New Server Setting": "Agregar nueva configuración de servidor", "Address": "Dirección", + "Agents": "Agentes", "Appeal Ban": "Apelar un Baneo", "Appeal Details": "Detalles de la Apelación", "Appeal a Ban": "Apelar un Baneo", + "Appeal status updated successfully.": "Estado de apelación actualizado con éxito.", + "Appeal submitted successfully.": "Apelación enviada con éxito.", "Appeals": "Apelaciones", "Appeals List": "Lista de Apelaciones", "Apply Knife Skin": "Aplicar skin de cuchillo", @@ -17,6 +20,7 @@ "Chest": "Pecho", "Close": "Cerrar", "Comments": "Comentarios", + "Counter-Terrorist": "Antiterrorista", "Created At": "Creado el", "DB Host": "Host de BD", "DB Name": "Nombre de BD", @@ -29,9 +33,12 @@ "Email": "Correo Electrónico", "Enabled": "Habilitado", "First Bloods": "Primeras muertes", + "Gloves": "Guantes", "Hostname": "Nombre de host", "Identifier": "Identificador", "If your report is approved you will find the player banned status in ban list": "Si tu reporte es aprobado, encontrarás el estado de baneo del jugador en la lista de baneados", + "Keychains": "Llavero", + "Knife Skins": "Aspectos de cuchillos", "Last 1 Hour": "Última 1 hora", "Last 1 Week": "Última 1 semana", "Last 12 Hours": "Últimas 12 horas", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Enlace Multimedia (Prueba)", "Module Name": "Nombre del Módulo", + "Music": "Música", "Mute List": "Lista de silenciados", "Name": "Nombre", "Nametag": "Etiqueta con nombre", "Never Expires": "Nunca expira", "Nickname": "Apodo", "No": "No", + "No active bans exists for this Steam ID or IP": "No existen prohibiciones activas para este Steam ID o IP.", + "No keychain selected": "No se seleccionó llavero", "No sticker selected": "No se ha seleccionado ninguna pegatina", "Pins": "Pins", "Play Time": "Tiempo de juego", @@ -58,6 +68,7 @@ "Rounds": "Rondas", "Search Stickers": "Buscar pegatinas", "Select Knife Category": "Seleccionar categoría de cuchillo", + "Select Team": "Seleccionar equipo", "Select Time Range": "Seleccionar rango de tiempo", "Server Map Stats": "Estadísticas de mapas del servidor", "Server Player Stats": "Estadísticas de jugadores del servidor", @@ -73,6 +84,7 @@ "Sync New Servers": "Sincronizar nuevos servidores", "Target Nickname": "Apodo del Objetivo", "Target SteamID": "SteamID del Objetivo", + "Terrorist": "Terrorista", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "El equipo será notificado de tu apelación. Luego revisarán si el baneo es concluyente. Después de la revisión, recibirás una respuesta, generalmente en un plazo de 24 horas.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "El equipo será notificado de tu reporte. Luego revisarán si el reporte es concluyente.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Esta función introduce soporte para múltiples servidores en el módulo de Rangos. Permite a los administradores cambiar dinámicamente entre diferentes bases de datos de servidores para mostrar los rangos de los jugadores. Esto es especialmente útil para gestionar varios servidores de juegos desde una única interfaz.", @@ -86,9 +98,11 @@ "View Proof": "Ver Prueba", "Visibility": "Visibilidad", "Weapon": "Arma", + "Weapon Skins": "Aspectos de armas", "What happens after I post my appeal?": "¿Qué pasa después de enviar mi apelación?", "Win": "Victoria", "Yes": "Sí", + "You have a pending Appeal request.": "Tienes una solicitud de apelación pendiente.", "Your Email": "Tu Correo Electrónico", "Your Name": "Tu Nombre", "Your SteamID": "Tu SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Nuevos servidores sincronizados para los servidores visibles.", "settings.noNewServers": "No hay nuevos servidores", "settings.update": "Aplicar Configuracion", - "skins.active": "En uso", + "skins.active_both": "Activo (Ambos)", + "skins.active_ct": "Activo (CT)", + "skins.active_t": "Activo (T)", "skins.applied": "Skin aplicada con éxito.", "skins.apply": "Seleccionar", "skins.applySkin": "Seleccionar Skin", diff --git a/lang/fr.json b/lang/fr.json index c518769..838d8bd 100755 --- a/lang/fr.json +++ b/lang/fr.json @@ -3,9 +3,12 @@ "Add": "Ajouter", "Add New Server Setting": "Ajouter un nouveau paramètre de serveur", "Address": "Adresse", + "Agents": "Agents", "Appeal Ban": "Contester la sanction", "Appeal Details": "Détails de l'Appel", "Appeal a Ban": "Faire Appel d'un Bannissement", + "Appeal status updated successfully.": "Statut de l'appel mis à jour avec succès.", + "Appeal submitted successfully.": "Appel soumis avec succès.", "Appeals": "Appels", "Appeals List": "Liste des Appels", "Apply Knife Skin": "Appliquer un skin de couteau", @@ -17,6 +20,7 @@ "Chest": "Poitrine", "Close": "Fermer", "Comments": "Commentaires", + "Counter-Terrorist": "Contre-terroriste", "Created At": "Créé le", "DB Host": "Hôte BD", "DB Name": "Nom de la BD", @@ -29,9 +33,12 @@ "Email": "E-mail", "Enabled": "Activé", "First Bloods": "Premières éliminations", + "Gloves": "Gants", "Hostname": "Nom d'hôte", "Identifier": "Identifiant", "If your report is approved you will find the player banned status in ban list": "Si votre rapport est approuvé, vous trouverez le statut de bannissement du joueur dans la liste des bannis", + "Keychains": "Porte-clés", + "Knife Skins": "Skins de couteaux", "Last 1 Hour": "Dernière 1 heure", "Last 1 Week": "Dernière 1 semaine", "Last 12 Hours": "Dernières 12 heures", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Lien Média (Preuve)", "Module Name": "Nom du Module", + "Music": "Musique", "Mute List": "Liste des silences", "Name": "Nom", "Nametag": "Étiquette", "Never Expires": "N'expire jamais", "Nickname": "Pseudo", "No": "Non", + "No active bans exists for this Steam ID or IP": "Aucune interdiction active n'existe pour cet ID Steam ou cette IP.", + "No keychain selected": "Aucun porte-clés sélectionné", "No sticker selected": "Aucun autocollant sélectionné", "Pins": "Épingles", "Play Time": "Temps de jeu", @@ -58,6 +68,7 @@ "Rounds": "Tours", "Search Stickers": "Rechercher des autocollants", "Select Knife Category": "Sélectionner la catégorie de couteau", + "Select Team": "Sélectionner une équipe", "Select Time Range": "Sélectionner une plage de temps", "Server Map Stats": "Statistiques des cartes du serveur", "Server Player Stats": "Statistiques des joueurs du serveur", @@ -73,6 +84,7 @@ "Sync New Servers": "Synchroniser les nouveaux serveurs", "Target Nickname": "Pseudo de la Cible", "Target SteamID": "SteamID de la Cible", + "Terrorist": "Terroriste", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "L'équipe sera informée de votre appel. Elle examinera alors si le bannissement est concluant. Après examen, vous recevrez une réponse, généralement sous 24 heures.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "L'équipe sera informée de votre rapport. Elle examinera alors si le rapport est concluant.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Cette fonctionnalité introduit la prise en charge multi-serveurs pour le module de Classements. Elle permet aux administrateurs de basculer dynamiquement entre différentes bases de données de serveurs pour afficher les classements des joueurs. Cela est particulièrement utile pour gérer plusieurs serveurs de jeux à partir d'une seule interface.", @@ -86,9 +98,11 @@ "View Proof": "Voir la Preuve", "Visibility": "Visibilité", "Weapon": "Arme", + "Weapon Skins": "Skins d'armes", "What happens after I post my appeal?": "Que se passe-t-il après avoir posté mon appel ?", "Win": "Victoire", "Yes": "Oui", + "You have a pending Appeal request.": "Vous avez une demande d'appel en attente.", "Your Email": "Votre E-mail", "Your Name": "Votre Nom", "Your SteamID": "Votre SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Nouveaux serveurs synchronisés pour les paramètres de visibilité.", "settings.noNewServers": "Aucun nouveau serveur trouvé à synchroniser.", "settings.update": "Mettre à jour les paramètres", - "skins.active": "Actif", + "skins.active_both": "Actif (Les deux)", + "skins.active_ct": "Actif (CT)", + "skins.active_t": "Actif (T)", "skins.applied": "Skin appliqué avec succès.", "skins.apply": "Appliquer", "skins.applySkin": "Appliquer le skin", diff --git a/lang/hu.json b/lang/hu.json index 6b1bbe8..3953300 100755 --- a/lang/hu.json +++ b/lang/hu.json @@ -3,9 +3,12 @@ "Add": "Hozzáadás", "Add New Server Setting": "Új szerverbeállítás hozzáadása", "Address": "Cím", + "Agents": "Ügynökök", "Appeal Ban": "Feloldási kérelem", "Appeal Details": "Fellebbezés részletei", "Appeal a Ban": "Tiltás fellebbezése", + "Appeal status updated successfully.": "Feloldási kérelem státusza megváltoztatva.", + "Appeal submitted successfully.": "Elküldted a feloldási kérelmed.", "Appeals": "Feloldási kérelmek", "Appeals List": "Fellebbezések Listája", "Apply Knife Skin": "Kés skin beállítása", @@ -17,6 +20,7 @@ "Chest": "Mellkas", "Close": "Bezárás", "Comments": "Megjegyzések", + "Counter-Terrorist": "Terrorelhárító", "Created At": "Létrehozva", "DB Host": "Adatbázis IP-cím", "DB Name": "Adatbázis neve", @@ -29,9 +33,12 @@ "Email": "E-mail", "Enabled": "Bekapcsolva", "First Bloods": "Első sebzés", + "Gloves": "Kesztyűk", "Hostname": "Szervernév", "Identifier": "Azonosító", "If your report is approved you will find the player banned status in ban list": "Ha a jelentése jóváhagyásra kerül, meg fogod találni a játékost a kitiltási listánkon", + "Keychains": "Talizmánok", + "Knife Skins": "Kés skinek", "Last 1 Hour": "Elmúlt 1 óra", "Last 1 Week": "Elmúlt 1 hét", "Last 12 Hours": "Elmúlt 12 óra", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Média Link (Bizonyíték)", "Module Name": "Modul neve", + "Music": "Zenekészletek", "Mute List": "Némítási lista", "Name": "Név", "Nametag": "Névcédula", "Never Expires": "Soha nem jár le", "Nickname": "Becenév", "No": "Nem", + "No active bans exists for this Steam ID or IP": "Nincsen aktív kitiltás a megadott SteamID-ra vagy IP-címre.", + "No keychain selected": "Nincs talizmán kiválasztva", "No sticker selected": "Nincs matrica kiválasztva", "Pins": "Kitűzők", "Play Time": "Játékidő", @@ -58,6 +68,7 @@ "Rounds": "Körök", "Search Stickers": "Matricák keresése", "Select Knife Category": "Kés kategória kiválasztása", + "Select Team": "Csapat kiválasztása", "Select Time Range": "Időintervallum kiválasztása", "Server Map Stats": "Pálya statisztika", "Server Player Stats": "Játékosszám statisztika", @@ -73,6 +84,7 @@ "Sync New Servers": "Új szerverek szinkronizálása", "Target Nickname": "Jelenteni kívánt játékos neve", "Target SteamID": "Jelenteni kívánt játékos SteamID-ja", + "Terrorist": "Terrorista", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Az adminisztrátorok értesítést kapnak a fellebbezésedről. Ezt követően megvizsgálják, hogy a tiltás megalapozott-e. Az átvizsgálás után választ kapsz, ez általában 24 órán belül történik meg.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Az adminisztrátorok értesítést kapnak a jelentésedről. Ezt követően megvizsgálják, hogy a jelentés megalapozott-e.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Ez a funkció több szerver támogatását vezeti be a Rangok modulhoz. Lehetővé teszi azt, hogy dinamikusan váltsanak a különböző szerveradatbázisok között a játékosok rangsorának megjelenítése érdekében. Ez különösen hasznos több játékszerver egyetlen felületről történő kezeléséhez.", @@ -86,9 +98,11 @@ "View Proof": "Bizonyíték megtekintése", "Visibility": "Láthatóság", "Weapon": "Fegyver", + "Weapon Skins": "Fegyver skinek", "What happens after I post my appeal?": "Mi történik a fellebbezésem közzététele után?", "Win": "Nyert", "Yes": "Igen", + "You have a pending Appeal request.": "Már van aktív feloldási kérelmed.", "Your Email": "E-mail címed", "Your Name": "Neved", "Your SteamID": "SteamID-d", @@ -279,7 +293,9 @@ "settings.newServers": "Új szerverek szinkronizálva a láthatósági beállításokhoz.", "settings.noNewServers": "Nincsenek új szerverek a szinkronizáláshoz.", "settings.update": "Beállítások Frissítése", - "skins.active": "Aktív", + "skins.active_both": "Aktív (Mindkettő)", + "skins.active_ct": "Aktív (CT)", + "skins.active_t": "Aktív (T)", "skins.applied": "Skin sikeresen alkalmazva.", "skins.apply": "Mentés", "skins.applySkin": "Skin beállítása", @@ -287,10 +303,10 @@ "skins.close": "Bezárás", "skins.error": "Hiba történt a skin elmentése közben.", "skins.factoryNew": "Gyári új", - "skins.fieldTested": "Harctéren T", + "skins.fieldTested": "Harctéren tesztelt", "skins.loginRequired": "Bejelentkezés szükséges!", "skins.loginWithSteam": "Bejelentkezés", - "skins.minimalWear": "Kevéssé Használt", + "skins.minimalWear": "Kevéssé használt", "skins.needToLogin": "A tartalom eléréséhez be kell jelentkezned Steam fiókkoddal.", "skins.seed": "Seed", "skins.select": "Fegyvertípus kiválasztása", diff --git a/lang/it.json b/lang/it.json index 4bbb894..a12dd87 100755 --- a/lang/it.json +++ b/lang/it.json @@ -3,9 +3,12 @@ "Add": "Aggiungi", "Add New Server Setting": "Aggiungi nuova impostazione del server", "Address": "Indirizzo", + "Agents": "Agenti", "Appeal Ban": "Ricorso per il ban", "Appeal Details": "Dettagli del Ricorso", "Appeal a Ban": "Fare Ricorso contro un Ban", + "Appeal status updated successfully.": "Stato dell'appello aggiornato con successo.", + "Appeal submitted successfully.": "Appello inviato con successo.", "Appeals": "Ricorsi", "Appeals List": "Elenco dei Ricorsi", "Apply Knife Skin": "Applica skin del coltello", @@ -17,6 +20,7 @@ "Chest": "Torace", "Close": "Chiudi", "Comments": "Commenti", + "Counter-Terrorist": "Antiterrorista", "Created At": "Creato il", "DB Host": "Host DB", "DB Name": "Nome DB", @@ -29,9 +33,12 @@ "Email": "Email", "Enabled": "Abilitato", "First Bloods": "Prime uccisioni", + "Gloves": "Guanti", "Hostname": "Nome host", "Identifier": "Identificatore", "If your report is approved you will find the player banned status in ban list": "Se la tua segnalazione viene approvata, troverai lo stato del ban del giocatore nella lista dei bannati", + "Keychains": "Portachiavi", + "Knife Skins": "Skin di coltelli", "Last 1 Hour": "Ultima 1 ora", "Last 1 Week": "Ultima 1 settimana", "Last 12 Hours": "Ultime 12 ore", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Link Media (Prova)", "Module Name": "Nome del Modulo", + "Music": "Musica", "Mute List": "Lista dei silenzi", "Name": "Nome", "Nametag": "Etichetta", "Never Expires": "Non scade mai", "Nickname": "Nickname", "No": "No", + "No active bans exists for this Steam ID or IP": "Non ci sono ban attivi per questo Steam ID o IP.", + "No keychain selected": "Nessun portachiavi selezionato", "No sticker selected": "Nessun adesivo selezionato", "Pins": "Spille", "Play Time": "Tempo di gioco", @@ -58,6 +68,7 @@ "Rounds": "Round", "Search Stickers": "Cerca adesivi", "Select Knife Category": "Seleziona categoria del coltello", + "Select Team": "Seleziona squadra", "Select Time Range": "Seleziona intervallo di tempo", "Server Map Stats": "Statistiche mappe del server", "Server Player Stats": "Statistiche giocatori del server", @@ -73,6 +84,7 @@ "Sync New Servers": "Sincronizza nuovi server", "Target Nickname": "Nickname del Bersaglio", "Target SteamID": "SteamID del Bersaglio", + "Terrorist": "Terrorista", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Il team sarà notificato del tuo ricorso. Quindi valuteranno se il ban è conclusivo. Dopo la revisione, riceverai una risposta, di solito entro 24 ore.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Il team sarà notificato della tua segnalazione. Quindi valuteranno se la segnalazione è conclusiva.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Questa funzione introduce il supporto multi-server per il modulo Classifiche. Consente agli amministratori di passare dinamicamente tra diverse basi di dati dei server per visualizzare le classifiche dei giocatori. Questo è particolarmente utile per gestire più server di gioco da un'unica interfaccia.", @@ -86,9 +98,11 @@ "View Proof": "Visualizza Prova", "Visibility": "Visibilità", "Weapon": "Arma", + "Weapon Skins": "Skin di armi", "What happens after I post my appeal?": "Cosa succede dopo aver inviato il mio ricorso?", "Win": "Vittoria", "Yes": "Sì", + "You have a pending Appeal request.": "Hai una richiesta di appello in sospeso.", "Your Email": "La tua Email", "Your Name": "Il tuo Nome", "Your SteamID": "Il tuo SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Nuovi server sincronizzati per le impostazioni di visibilità.", "settings.noNewServers": "Nessun nuovo server trovato per la sincronizzazione.", "settings.update": "Aggiorna impostazioni", - "skins.active": "Attivo", + "skins.active_both": "Attivo (Entrambi)", + "skins.active_ct": "Attivo (CT)", + "skins.active_t": "Attivo (T)", "skins.applied": "Skin applicata con successo.", "skins.apply": "Applica", "skins.applySkin": "Applica skin", diff --git a/lang/ja.json b/lang/ja.json index b70d3f6..8721ac0 100755 --- a/lang/ja.json +++ b/lang/ja.json @@ -3,9 +3,12 @@ "Add": "追加", "Add New Server Setting": "新しいサーバー設定を追加", "Address": "住所", + "Agents": "エージェント", "Appeal Ban": "BANに異議申し立て", "Appeal Details": "アピールの詳細", "Appeal a Ban": "禁止のアピール", + "Appeal status updated successfully.": "異議申し立てのステータスが正常に更新されました。", + "Appeal submitted successfully.": "異議申し立てが正常に送信されました。", "Appeals": "異議申し立て", "Appeals List": "アピールリスト", "Apply Knife Skin": "ナイフスキンを適用", @@ -17,6 +20,7 @@ "Chest": "胸", "Close": "閉じる", "Comments": "コメント", + "Counter-Terrorist": "対テロリスト", "Created At": "作成日", "DB Host": "DBホスト", "DB Name": "DB名", @@ -29,9 +33,12 @@ "Email": "メールアドレス", "Enabled": "有効", "First Bloods": "ファーストブラッド", + "Gloves": "手袋", "Hostname": "ホスト名", "Identifier": "識別子", "If your report is approved you will find the player banned status in ban list": "あなたのレポートが承認された場合、禁止リストにプレイヤーの禁止状態が表示されます", + "Keychains": "キーチェーン", + "Knife Skins": "ナイフスキン", "Last 1 Hour": "過去1時間", "Last 1 Week": "過去1週間", "Last 12 Hours": "過去12時間", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "メディアリンク(証拠)", "Module Name": "モジュール名", + "Music": "音楽", "Mute List": "ミュートリスト", "Name": "名前", "Nametag": "ネームタグ", "Never Expires": "有効期限なし", "Nickname": "ニックネーム", "No": "いいえ", + "No active bans exists for this Steam ID or IP": "このSteam IDまたはIPに有効な禁止はありません。", + "No keychain selected": "キーチェーンが選択されていません", "No sticker selected": "ステッカーが選択されていません", "Pins": "ピンバッジ", "Play Time": "プレイ時間", @@ -58,6 +68,7 @@ "Rounds": "ラウンド", "Search Stickers": "ステッカーを検索", "Select Knife Category": "ナイフのカテゴリを選択", + "Select Team": "チームを選択", "Select Time Range": "時間範囲を選択", "Server Map Stats": "サーバーのマップ統計", "Server Player Stats": "サーバーのプレイヤー統計", @@ -73,6 +84,7 @@ "Sync New Servers": "新しいサーバーを同期", "Target Nickname": "ターゲットのニックネーム", "Target SteamID": "ターゲットのSteamID", + "Terrorist": "テロリスト", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "スタッフチームにアピールが通知されます。その後、禁止が決定的かどうかを確認します。確認後、通常24時間以内に返信があります。", "The staff team will be notified of your report. They will then review if the report is conclusive.": "スタッフチームにあなたのレポートが通知されます。その後、レポートが決定的かどうかを確認します。", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "この機能により、ランクモジュールにマルチサーバーサポートが導入されます。管理者は、異なるサーバーデータベース間で動的に切り替え、プレイヤーのランクを表示することができます。これは、複数のゲームサーバーを単一のインターフェイスから管理するのに特に便利です。", @@ -86,9 +98,11 @@ "View Proof": "証拠を見る", "Visibility": "可視性", "Weapon": "武器", + "Weapon Skins": "武器スキン", "What happens after I post my appeal?": "アピールを投稿した後、どうなりますか?", "Win": "勝利", "Yes": "はい", + "You have a pending Appeal request.": "保留中の異議申し立てがあります。", "Your Email": "あなたのメールアドレス", "Your Name": "あなたの名前", "Your SteamID": "あなたのSteamID", @@ -279,7 +293,9 @@ "settings.newServers": "表示設定用に新しいサーバーが同期されました。", "settings.noNewServers": "同期する新しいサーバーが見つかりませんでした。", "settings.update": "設定を更新", - "skins.active": "アクティブ", + "skins.active_both": "アクティブ(両方)", + "skins.active_ct": "アクティブ(CT)", + "skins.active_t": "アクティブ(T)", "skins.applied": "スキンが正常に適用されました。", "skins.apply": "適用", "skins.applySkin": "スキンを適用", diff --git a/lang/ko.json b/lang/ko.json index 770dcd0..23933e4 100755 --- a/lang/ko.json +++ b/lang/ko.json @@ -3,9 +3,12 @@ "Add": "추가", "Add New Server Setting": "새 서버 설정 추가", "Address": "주소", + "Agents": "에이전트", "Appeal Ban": "밴 이의 제기", "Appeal Details": "이의 신청 세부 사항", "Appeal a Ban": "차단 이의 제기", + "Appeal status updated successfully.": "항소 상태가 성공적으로 업데이트되었습니다.", + "Appeal submitted successfully.": "항소가 성공적으로 제출되었습니다.", "Appeals": "이의 제기", "Appeals List": "이의 신청 목록", "Apply Knife Skin": "나이프 스킨 적용", @@ -17,6 +20,7 @@ "Chest": "가슴", "Close": "닫기", "Comments": "코멘트", + "Counter-Terrorist": "대테러리스트", "Created At": "생성일", "DB Host": "DB 호스트", "DB Name": "DB 이름", @@ -29,9 +33,12 @@ "Email": "이메일", "Enabled": "활성화됨", "First Bloods": "퍼스트 블러드", + "Gloves": "장갑", "Hostname": "호스트 이름", "Identifier": "식별자", "If your report is approved you will find the player banned status in ban list": "신고가 승인되면 금지 목록에서 플레이어의 금지 상태를 확인할 수 있습니다", + "Keychains": "키체인", + "Knife Skins": "나이프 스킨", "Last 1 Hour": "지난 1시간", "Last 1 Week": "지난 1주", "Last 12 Hours": "지난 12시간", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "미디어 링크 (증거)", "Module Name": "모듈 이름", + "Music": "음악", "Mute List": "뮤트 목록", "Name": "이름", "Nametag": "네임태그", "Never Expires": "만료되지 않음", "Nickname": "닉네임", "No": "아니오", + "No active bans exists for this Steam ID or IP": "이 Steam ID 또는 IP에 대한 활성 차단이 없습니다.", + "No keychain selected": "선택된 키체인이 없습니다", "No sticker selected": "선택된 스티커가 없습니다", "Pins": "핀", "Play Time": "플레이 시간", @@ -58,6 +68,7 @@ "Rounds": "라운드", "Search Stickers": "스티커 검색", "Select Knife Category": "나이프 카테고리 선택", + "Select Team": "팀 선택", "Select Time Range": "시간 범위 선택", "Server Map Stats": "서버 지도 통계", "Server Player Stats": "서버 플레이어 통계", @@ -73,6 +84,7 @@ "Sync New Servers": "새 서버 동기화", "Target Nickname": "대상 닉네임", "Target SteamID": "대상 SteamID", + "Terrorist": "테러리스트", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "이의 신청이 접수되면 운영진에게 통보됩니다. 차단이 타당한지 검토 후, 24시간 이내에 답변을 드릴 것입니다.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "신고가 접수되면 운영진에게 통보됩니다. 신고가 타당한지 검토할 것입니다.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "이 기능은 랭크 모듈에 대한 멀티 서버 지원을 도입합니다. 관리자는 다양한 서버 데이터베이스 간에 동적으로 전환하여 플레이어 랭크를 표시할 수 있습니다. 이는 단일 인터페이스에서 여러 게임 서버를 관리하는 데 특히 유용합니다.", @@ -86,9 +98,11 @@ "View Proof": "증거 보기", "Visibility": "가시성", "Weapon": "무기", + "Weapon Skins": "무기 스킨", "What happens after I post my appeal?": "이의 신청을 제출한 후에는 어떻게 되나요?", "Win": "승리", "Yes": "예", + "You have a pending Appeal request.": "보류 중인 항소 요청이 있습니다.", "Your Email": "당신의 이메일", "Your Name": "당신의 이름", "Your SteamID": "당신의 SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "표시 설정을 위해 새 서버가 동기화되었습니다.", "settings.noNewServers": "동기화할 새 서버를 찾을 수 없습니다.", "settings.update": "설정 업데이트", - "skins.active": "활성화됨", + "skins.active_both": "활성화됨 (양쪽)", + "skins.active_ct": "활성화됨 (CT)", + "skins.active_t": "활성화됨 (T)", "skins.applied": "스킨이 성공적으로 적용되었습니다.", "skins.apply": "적용", "skins.applySkin": "스킨 적용", diff --git a/lang/pt_BR.json b/lang/pt_BR.json index 6cdb37d..ed50f9c 100755 --- a/lang/pt_BR.json +++ b/lang/pt_BR.json @@ -3,9 +3,12 @@ "Add": "Adicionar", "Add New Server Setting": "Adicionar nova configuração de servidor", "Address": "Endereço", + "Agents": "Agentes", "Appeal Ban": "Apelar Banimento", "Appeal Details": "Detalhes do Apelo", "Appeal a Ban": "Apelar um Banimento", + "Appeal status updated successfully.": "Status da apelação atualizado com sucesso.", + "Appeal submitted successfully.": "Apelação enviada com sucesso.", "Appeals": "Apelos", "Appeals List": "Lista de Apelos", "Apply Knife Skin": "Aplicar Faca", @@ -17,6 +20,7 @@ "Chest": "Peito", "Close": "Fechar", "Comments": "Comentários", + "Counter-Terrorist": "Contraterrorista", "Created At": "Criado em", "DB Host": "Host do BD", "DB Name": "Nome do BD", @@ -29,9 +33,12 @@ "Email": "E-mail", "Enabled": "Ativado", "First Bloods": "Primeiros Kills", + "Gloves": "Luvas", "Hostname": "Nome do servidor", "Identifier": "Identificador", "If your report is approved you will find the player banned status in ban list": "Se o seu relatório for aprovado, você encontrará o status de banimento do jogador na lista de banidos", + "Keychains": "Chaveiros", + "Knife Skins": "Peles de faca", "Last 1 Hour": "Última 1 hora", "Last 1 Week": "Última 1 semana", "Last 12 Hours": "Últimas 12 horas", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Link de Mídia (Prova)", "Module Name": "Nome do Módulo", + "Music": "Música", "Mute List": "Lista de mutes", "Name": "Nome", "Nametag": "Nome", "Never Expires": "Nunca expira", "Nickname": "Apelido", "No": "Não", + "No active bans exists for this Steam ID or IP": "Não existem banimentos ativos para este Steam ID ou IP.", + "No keychain selected": "Nenhum chaveiro selecionado", "No sticker selected": "Nenhum adesivo selecionado", "Pins": "Pins", "Play Time": "Tempo de Jogo", @@ -58,6 +68,7 @@ "Rounds": "Rodadas", "Search Stickers": "Buscar adesivos", "Select Knife Category": "Selecione a categoria de faca", + "Select Team": "Selecionar equipe", "Select Time Range": "Selecionar intervalo de tempo", "Server Map Stats": "Estatísticas dos mapas do servidor", "Server Player Stats": "Estatísticas dos jogadores do servidor", @@ -73,6 +84,7 @@ "Sync New Servers": "Sincronizar novos servidores", "Target Nickname": "Apelido do Alvo", "Target SteamID": "SteamID do Alvo", + "Terrorist": "Terrorista", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "A equipe será notificada do seu apelo. Eles então revisarão se o banimento é conclusivo. Após a revisão, você receberá uma resposta, geralmente dentro de 24 horas.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "A equipe será notificada do seu relatório. Eles então revisarão se o relatório é conclusivo.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Este recurso introduz o suporte a múltiplos servidores para o módulo de Ranks. Ele permite que os administradores alternem dinamicamente entre diferentes bancos de dados de servidores para exibir as classificações dos jogadores. Isso é especialmente útil para gerenciar vários servidores de jogos a partir de uma única interface.", @@ -86,9 +98,11 @@ "View Proof": "Ver Prova", "Visibility": "Visibilidade", "Weapon": "Arma", + "Weapon Skins": "Peles de armas", "What happens after I post my appeal?": "O que acontece depois que eu enviar meu apelo?", "Win": "Vitória", "Yes": "Sim", + "You have a pending Appeal request.": "Você tem uma solicitação de apelação pendente.", "Your Email": "Seu E-mail", "Your Name": "Seu Nome", "Your SteamID": "Seu SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Os novos servidores foram sincronizados de acordo com a configuração de visibilidade", "settings.noNewServers": "Nenhum servidor novo encontrado para sincronizar.", "settings.update": "Atualizar configurações", - "skins.active": "Ativo", + "skins.active_both": "Ativo (Ambos)", + "skins.active_ct": "Ativo (CT)", + "skins.active_t": "Ativo (T)", "skins.applied": "Skin aplicada con êxito.", "skins.apply": "Aplicar", "skins.applySkin": "Aplicar Skin", diff --git a/lang/pt_PT.json b/lang/pt_PT.json index f6f876c..4628214 100755 --- a/lang/pt_PT.json +++ b/lang/pt_PT.json @@ -3,9 +3,12 @@ "Add": "Adicionar", "Add New Server Setting": "Adicionar nova configuração de servidor", "Address": "Endereço", + "Agents": "Agentes", "Appeal Ban": "Apelar Banimento", "Appeal Details": "Detalhes da Apelação", "Appeal a Ban": "Apelar um Banimento", + "Appeal status updated successfully.": "Estado da apelação atualizado com sucesso.", + "Appeal submitted successfully.": "Apelação enviada com sucesso.", "Appeals": "Apelações", "Appeals List": "Lista de Apelações", "Apply Knife Skin": "Aplicar Pele da Faca", @@ -17,6 +20,7 @@ "Chest": "Peito", "Close": "Fechar", "Comments": "Comentários", + "Counter-Terrorist": "Contra-terrorista", "Created At": "Criado em", "DB Host": "Host da BD", "DB Name": "Nome da BD", @@ -29,9 +33,12 @@ "Email": "Email", "Enabled": "Ativado", "First Bloods": "Primeiros Kills", + "Gloves": "Luvas", "Hostname": "Nome do Host", "Identifier": "Identificador", "If your report is approved you will find the player banned status in ban list": "Se o teu relatório for aprovado, encontrarás o estado de banimento do jogador na lista de banidos", + "Keychains": "Porta-chaves", + "Knife Skins": "Aparências de facas", "Last 1 Hour": "Última 1 hora", "Last 1 Week": "Última 1 semana", "Last 12 Hours": "Últimas 12 horas", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Link de Mídia (Prova)", "Module Name": "Nome do Módulo", + "Music": "Música", "Mute List": "Lista de Silenciamentos", "Name": "Nome", "Nametag": "Etiqueta de nome", "Never Expires": "Nunca expira", "Nickname": "Apelido", "No": "Não", + "No active bans exists for this Steam ID or IP": "Não existem banimentos ativos para este Steam ID ou IP.", + "No keychain selected": "Nenhum porta-chaves selecionado", "No sticker selected": "Nenhum autocolante selecionado", "Pins": "Pins", "Play Time": "Tempo de Jogo", @@ -58,6 +68,7 @@ "Rounds": "Rondas", "Search Stickers": "Procurar autocolantes", "Select Knife Category": "Selecionar Categoria de Faca", + "Select Team": "Selecionar equipa", "Select Time Range": "Selecionar intervalo de tempo", "Server Map Stats": "Estatísticas dos mapas do servidor", "Server Player Stats": "Estatísticas dos jogadores do servidor", @@ -73,6 +84,7 @@ "Sync New Servers": "Sincronizar Novos Servidores", "Target Nickname": "Apelido do Alvo", "Target SteamID": "SteamID do Alvo", + "Terrorist": "Terrorista", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "A equipa será notificada da tua apelação. Eles irão então rever se o banimento é conclusivo. Depois de rever, receberás uma resposta, geralmente dentro de 24 horas.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "A equipa será notificada do teu relatório. Eles irão então rever se o relatório é conclusivo.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Esta funcionalidade introduz o suporte a múltiplos servidores para o módulo de Ranks. Permite que os administradores alternem dinamicamente entre diferentes bases de dados de servidores para exibir as classificações dos jogadores. Isto é especialmente útil para gerir vários servidores de jogos a partir de uma única interface.", @@ -86,9 +98,11 @@ "View Proof": "Ver Prova", "Visibility": "Visibilidade", "Weapon": "Arma", + "Weapon Skins": "Aparências de armas", "What happens after I post my appeal?": "O que acontece depois de enviar a minha apelação?", "Win": "Vitória", "Yes": "Sim", + "You have a pending Appeal request.": "Tem um pedido de apelação pendente.", "Your Email": "O teu Email", "Your Name": "O teu Nome", "Your SteamID": "O teu SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Novos Servidores Sincronizados para definições de visibilidade.", "settings.noNewServers": "Não foram encontrados novos servidores para sincronizar.", "settings.update": "Atualizar Definições", - "skins.active": "Ativo", + "skins.active_both": "Ativo (Ambos)", + "skins.active_ct": "Ativo (CT)", + "skins.active_t": "Ativo (T)", "skins.applied": "Skin aplicada com sucesso!", "skins.apply": "Aplicar", "skins.applySkin": "Aplicar Skin", diff --git a/lang/ro.json b/lang/ro.json index fe2d406..ba67ccd 100755 --- a/lang/ro.json +++ b/lang/ro.json @@ -3,9 +3,12 @@ "Add": "Adăugați", "Add New Server Setting": "Adăugați o nouă setare de server", "Address": "Adresă", + "Agents": "Agenți", "Appeal Ban": "Contestație Interdicție", "Appeal Details": "Detalii Apel", "Appeal a Ban": "Faceți Apel la o Interdicție", + "Appeal status updated successfully.": "Starea apelului a fost actualizată cu succes.", + "Appeal submitted successfully.": "Apel trimis cu succes.", "Appeals": "Contestații", "Appeals List": "Lista de Apeluri", "Apply Knife Skin": "Aplică Skin-ul de Cuțit", @@ -17,6 +20,7 @@ "Chest": "Piept", "Close": "Închide", "Comments": "Comentarii", + "Counter-Terrorist": "Antiterorist", "Created At": "Creat La", "DB Host": "Host BD", "DB Name": "Nume BD", @@ -29,9 +33,12 @@ "Email": "Email", "Enabled": "Activat", "First Bloods": "Primele ucideri", + "Gloves": "Mănuși", "Hostname": "Nume Server", "Identifier": "Identificator", "If your report is approved you will find the player banned status in ban list": "Dacă raportul dumneavoastră este aprobat, veți găsi statusul interdicției jucătorului în lista de interdicții.", + "Keychains": "Brelocuri", + "Knife Skins": "Aspecte de cuțite", "Last 1 Hour": "Ultima 1 oră", "Last 1 Week": "Ultima 1 săptămână", "Last 12 Hours": "Ultimele 12 ore", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Link Media (Dovadă)", "Module Name": "Numele Modulului", + "Music": "Muzică", "Mute List": "Lista de Muțiri", "Name": "Nume", "Nametag": "Etichetă", "Never Expires": "Nu expiră niciodată", "Nickname": "Poreclă", "No": "Nu", + "No active bans exists for this Steam ID or IP": "Nu există interdicții active pentru acest Steam ID sau IP.", + "No keychain selected": "Niciun breloc selectat", "No sticker selected": "Niciun autocolant selectat", "Pins": "Insigne", "Play Time": "Timp de joc", @@ -58,6 +68,7 @@ "Rounds": "Runde", "Search Stickers": "Căutați autocolante", "Select Knife Category": "Selectează Categoria de Cuțit", + "Select Team": "Selectați echipa", "Select Time Range": "Selectați intervalul de timp", "Server Map Stats": "Statistici hărți server", "Server Player Stats": "Statistici jucători server", @@ -73,6 +84,7 @@ "Sync New Servers": "Sincronizează Serverele Noi", "Target Nickname": "Porecla Țintă", "Target SteamID": "SteamID Țintă", + "Terrorist": "Terorist", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Echipa va fi notificată despre apelul dumneavoastră. Aceștia vor verifica dacă interdicția este concludentă. După revizuire, veți primi un răspuns, de obicei în termen de 24 de ore.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Echipa va fi notificată despre raportul dumneavoastră. Aceștia vor verifica dacă raportul este concludent.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Această funcție introduce suport pentru mai multe servere pentru modulul Clasamente. Permite administratorilor să comute dinamic între diferite baze de date ale serverelor pentru a afișa clasamentele jucătorilor. Acest lucru este deosebit de util pentru gestionarea mai multor servere de jocuri dintr-o singură interfață.", @@ -86,9 +98,11 @@ "View Proof": "Vizualizați Dovada", "Visibility": "Vizibilitate", "Weapon": "Armă", + "Weapon Skins": "Aspecte de arme", "What happens after I post my appeal?": "Ce se întâmplă după ce îmi postez apelul?", "Win": "Victorie", "Yes": "Da", + "You have a pending Appeal request.": "Aveți o solicitare de apel în așteptare.", "Your Email": "Emailul tău", "Your Name": "Numele tău", "Your SteamID": "SteamID-ul tău", @@ -279,7 +293,9 @@ "settings.newServers": "Servere noi sincronizate pentru setările de vizibilitate.", "settings.noNewServers": "Nu au fost găsite servere noi pentru sincronizare.", "settings.update": "Actualizează Setările", - "skins.active": "Activ", + "skins.active_both": "Activ (Ambele)", + "skins.active_ct": "Activ (CT)", + "skins.active_t": "Activ (T)", "skins.applied": "Skin Aplicat cu Succes.", "skins.apply": "Aplică", "skins.applySkin": "Aplică Skin", diff --git a/lang/ru.json b/lang/ru.json index 0402eb0..bc6b023 100755 --- a/lang/ru.json +++ b/lang/ru.json @@ -3,9 +3,12 @@ "Add": "Добавить", "Add New Server Setting": "Добавить новую настройку сервера", "Address": "Адрес", + "Agents": "Агенты", "Appeal Ban": "Обжаловать бан", "Appeal Details": "Детали апелляции", "Appeal a Ban": "Апелляция на бан", + "Appeal status updated successfully.": "Статус обжалования успешно обновлен.", + "Appeal submitted successfully.": "Жалоба успешно подана.", "Appeals": "Апелляции", "Appeals List": "Список апелляций", "Apply Knife Skin": "Применить скин ножа", @@ -17,6 +20,7 @@ "Chest": "Грудь", "Close": "Закрыть", "Comments": "Комментарии", + "Counter-Terrorist": "Антитеррорист", "Created At": "Создано", "DB Host": "Хост базы данных", "DB Name": "Имя базы данных", @@ -29,9 +33,12 @@ "Email": "Электронная почта", "Enabled": "Включено", "First Bloods": "Первые убийства", + "Gloves": "Перчатки", "Hostname": "Имя хоста", "Identifier": "Идентификатор", "If your report is approved you will find the player banned status in ban list": "Если ваш отчет будет одобрен, вы найдете статус бана игрока в списке банов", + "Keychains": "Брелки", + "Knife Skins": "Скины ножей", "Last 1 Hour": "Последний 1 час", "Last 1 Week": "Последняя 1 неделя", "Last 12 Hours": "Последние 12 часов", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Ссылка на медиа (доказательство)", "Module Name": "Название модуля", + "Music": "Музыка", "Mute List": "Список мьютов", "Name": "Имя", "Nametag": "Имя", "Never Expires": "Никогда не истекает", "Nickname": "Никнейм", "No": "Нет", + "No active bans exists for this Steam ID or IP": "Для этого Steam ID или IP нет активных банов.", + "No keychain selected": "Брелок не выбран", "No sticker selected": "Наклейка не выбрана", "Pins": "Значки", "Play Time": "Время игры", @@ -58,6 +68,7 @@ "Rounds": "Раунды", "Search Stickers": "Поиск наклеек", "Select Knife Category": "Выберите категорию ножа", + "Select Team": "Выберите команду", "Select Time Range": "Выбрать диапазон времени", "Server Map Stats": "Статистика карт сервера", "Server Player Stats": "Статистика игроков сервера", @@ -73,6 +84,7 @@ "Sync New Servers": "Синхронизировать новые серверы", "Target Nickname": "Целевой никнейм", "Target SteamID": "Целевой SteamID", + "Terrorist": "Террорист", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Команда будет уведомлена о вашей апелляции. Затем они рассмотрят, является ли бан окончательным. После рассмотрения вы получите ответ, обычно в течение 24 часов.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Команда будет уведомлена о вашем отчете. Затем они рассмотрят, является ли отчет окончательным.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Эта функция вводит поддержку нескольких серверов для модуля Рейтингов. Она позволяет администраторам динамически переключаться между различными базами данных серверов для отображения рейтингов игроков. Это особенно полезно для управления несколькими игровыми серверами из одного интерфейса.", @@ -86,9 +98,11 @@ "View Proof": "Просмотреть доказательство", "Visibility": "Видимость", "Weapon": "Оружие", + "Weapon Skins": "Скины оружия", "What happens after I post my appeal?": "Что происходит после подачи моей апелляции?", "Win": "Победа", "Yes": "Да", + "You have a pending Appeal request.": "У вас есть запрос на обжалование.", "Your Email": "Ваша электронная почта", "Your Name": "Ваше имя", "Your SteamID": "Ваш SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Новые серверы синхронизированы для настроек видимости.", "settings.noNewServers": "Не найдено новых серверов для синхронизации.", "settings.update": "Обновить настройки", - "skins.active": "Активен", + "skins.active_both": "Активно (Оба)", + "skins.active_ct": "Активно (CT)", + "skins.active_t": "Активно (T)", "skins.applied": "Скин успешно применен.", "skins.apply": "Применить", "skins.applySkin": "Применить скин", diff --git a/lang/se.json b/lang/se.json index 2defbff..f5d26c0 100644 --- a/lang/se.json +++ b/lang/se.json @@ -3,9 +3,12 @@ "Add": "Lägg till", "Add New Server Setting": "Lägg till ny serverinställning", "Address": "Adress", + "Agents": "Agent", "Appeal Ban": "Överklaga avstängning", "Appeal Details": "Överklagningsdetaljer", "Appeal a Ban": "Överklaga en Ban", + "Appeal status updated successfully.": "Överklagans status uppdaterades framgångsrikt.", + "Appeal submitted successfully.": "Överklagan skickades in framgångsrikt.", "Appeals": "Överklaganden", "Appeals List": "Lista över överklaganden", "Apply Knife Skin": "Tillämpa Knife Skin", @@ -17,6 +20,7 @@ "Chest": "Bröst", "Close": "Stäng", "Comments": "Kommentarer", + "Counter-Terrorist": "Antiterrorister", "Created At": "Skapad vid", "DB Host": "DB-värd", "DB Name": "DB-namn", @@ -29,9 +33,12 @@ "Email": "E-post", "Enabled": "Aktiverad", "First Bloods": "Första dödanden", + "Gloves": "Handskar", "Hostname": "Hostname", "Identifier": "Identifierare", "If your report is approved you will find the player banned status in ban list": "Om din rapport godkänns kommer du att hitta spelarens bannstatus i banlistan", + "Keychains": "Nyckelringar", + "Knife Skins": "Knivskins", "Last 1 Hour": "Senaste 1 timmen", "Last 1 Week": "Senaste 1 veckan", "Last 12 Hours": "Senaste 12 timmarna", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Media-länk (Bevis)", "Module Name": "Modulnamn", + "Music": "Musik", "Mute List": "Mute Lista", "Name": "Namn", "Nametag": "Namnskylt", "Never Expires": "Upphör aldrig", "Nickname": "Smeknamn", "No": "Nej", + "No active bans exists for this Steam ID or IP": "Inga aktiva avstängningar finns för denna Steam-ID eller IP.", + "No keychain selected": "Ingen nyckelring vald", "No sticker selected": "Ingen klistermärke vald", "Pins": "Pins", "Play Time": "Speltid", @@ -58,6 +68,7 @@ "Rounds": "Rundor", "Search Stickers": "Sök klistermärken", "Select Knife Category": "Välj Knife Kategori", + "Select Team": "Välj lag", "Select Time Range": "Välj tidsintervall", "Server Map Stats": "Serverns kartstatistik", "Server Player Stats": "Serverns spelstatistik", @@ -73,6 +84,7 @@ "Sync New Servers": "Synkronisera nya servrar", "Target Nickname": "Målets Smeknamn", "Target SteamID": "Målets SteamID", + "Terrorist": "Terrorister", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Personalen kommer att meddelas om ditt överklagande. De kommer sedan att granska om bannen är slutgiltig. Efter granskning får du ett svar, vilket vanligtvis betyder inom 24 timmar.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Personalen kommer att meddelas om din rapport. De kommer sedan att granska om rapporten är slutgiltig.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Denna funktion introducerar stöd för flera servrar för Rankningsmodulen. Det gör det möjligt för administratörer att dynamiskt växla mellan olika serverdatabaser för att visa spelarrankningar. Detta är särskilt användbart för att hantera flera spelservrar från ett enda gränssnitt.", @@ -86,9 +98,11 @@ "View Proof": "Visa Bevis", "Visibility": "Synlighet", "Weapon": "Vapen", + "Weapon Skins": "Vapenskins", "What happens after I post my appeal?": "Vad händer efter att jag skickar in mitt överklagande?", "Win": "Vinst", "Yes": "Ja", + "You have a pending Appeal request.": "Du har en väntande överklagan.", "Your Email": "Din E-post", "Your Name": "Ditt namn", "Your SteamID": "Ditt SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Nya servrar synkroniserade för synlighetsinställningar.", "settings.noNewServers": "Inga nya servrar hittades att synkronisera.", "settings.update": "Uppdatera inställningarna", - "skins.active": "Aktivera", + "skins.active_both": "Aktiv (Båda)", + "skins.active_ct": "Aktiv (CT)", + "skins.active_t": "Aktiv (T)", "skins.applied": "Skin Tillämpat.", "skins.apply": "Tillämpa", "skins.applySkin": "Tillämpa Skin", diff --git a/lang/sk.json b/lang/sk.json index 502f8f8..4d5929e 100755 --- a/lang/sk.json +++ b/lang/sk.json @@ -3,9 +3,12 @@ "Add": "Pridať", "Add New Server Setting": "Pridať nové nastavenie servera", "Address": "Adresa", + "Agents": "Agenti", "Appeal Ban": "Odvolanie zákazu", "Appeal Details": "Detaily odvolania", "Appeal a Ban": "Odvolať zákaz", + "Appeal status updated successfully.": "Stav odvolania bol úspešne aktualizovaný.", + "Appeal submitted successfully.": "Odvolanie bolo úspešne podané.", "Appeals": "Odvolania", "Appeals List": "Zoznam odvolaní", "Apply Knife Skin": "Aplikovať skin nožíka", @@ -17,6 +20,7 @@ "Chest": "Hrudník", "Close": "Zatvoriť", "Comments": "Komentáre", + "Counter-Terrorist": "Protiteroristi", "Created At": "Vytvorené", "DB Host": "DB Hostiteľ", "DB Name": "Názov DB", @@ -29,9 +33,12 @@ "Email": "Email", "Enabled": "Povolené", "First Bloods": "Prvé zabitia", + "Gloves": "Rukavice", "Hostname": "Meno", "Identifier": "Identifikátor", "If your report is approved you will find the player banned status in ban list": "Ak bude vaša správa schválená, nájdete stav zákazu hráča v zozname zákazu.", + "Keychains": "Kľúčenky", + "Knife Skins": "Skíny nožov", "Last 1 Hour": "Posledná 1 hodina", "Last 1 Week": "Posledný 1 týždeň", "Last 12 Hours": "Posledných 12 hodín", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Odkaz na médiá (dôkaz)", "Module Name": "Názov modulu", + "Music": "Hudba", "Mute List": "Zoznam stlmení", "Name": "Meno", "Nametag": "Menovka", "Never Expires": "Nikdy nevyprší", "Nickname": "Prezývka", "No": "Nie", + "No active bans exists for this Steam ID or IP": "Pre tento Steam ID alebo IP neexistujú žiadne aktívne zákazy.", + "No keychain selected": "Nie je vybraná žiadna kľúčenka", "No sticker selected": "Žiadna nálepka nebola vybraná", "Pins": "Odznaky", "Play Time": "Čas hrania", @@ -58,6 +68,7 @@ "Rounds": "Kolá", "Search Stickers": "Hľadať nálepky", "Select Knife Category": "Vyberte kategóriu nožov", + "Select Team": "Vyberte tím", "Select Time Range": "Vyberte časový rozsah", "Server Map Stats": "Štatistiky máp servera", "Server Player Stats": "Štatistiky hráčov servera", @@ -73,6 +84,7 @@ "Sync New Servers": "Synchronizovať nové servery", "Target Nickname": "Cieľová prezývka", "Target SteamID": "Cieľové SteamID", + "Terrorist": "Teroristi", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Tím zamestnancov bude informovaný o vašom odvolaní. Následne preskúmajú, či je zákaz opodstatnený. Po preskúmaní dostanete odpoveď, ktorá zvyčajne príde do 24 hodín.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Tím zamestnancov bude informovaný o vašej správe. Následne preskúmajú, či je správa opodstatnená.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Táto funkcia zavádza podporu viacerých serverov pre modul Rebríčky. Umožňuje administrátorom dynamicky prepínať medzi rôznymi databázami serverov na zobrazenie rebríčkov hráčov. To je obzvlášť užitočné pri správe viacerých herných serverov z jedného rozhrania.", @@ -86,9 +98,11 @@ "View Proof": "Zobraziť dôkaz", "Visibility": "Viditeľnosť", "Weapon": "Zbraň", + "Weapon Skins": "Skíny zbraní", "What happens after I post my appeal?": "Čo sa stane po odoslaní môjho odvolania?", "Win": "Výhra", "Yes": "Áno", + "You have a pending Appeal request.": "Máte čakajúcu žiadosť o odvolanie.", "Your Email": "Váš Email", "Your Name": "Vaše meno", "Your SteamID": "Vaše SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Nové servery synchronizované pre nastavenia viditeľnosti.", "settings.noNewServers": "Nenašli sa žiadne nové servery na synchronizáciu.", "settings.update": "Aktualizovať nastavenia", - "skins.active": "Aktívne", + "skins.active_both": "Aktívne (Oboje)", + "skins.active_ct": "Aktívne (CT)", + "skins.active_t": "Aktívne (T)", "skins.applied": "Skin bol úspešne použitý.", "skins.apply": "Použiť", "skins.applySkin": "Použiť skin", diff --git a/lang/tr.json b/lang/tr.json index c3d3412..78f4ac0 100755 --- a/lang/tr.json +++ b/lang/tr.json @@ -3,9 +3,12 @@ "Add": "Ekle", "Add New Server Setting": "Yeni Sunucu Ayarı Ekle", "Address": "Adres", + "Agents": "Ajanlar", "Appeal Ban": "İtiraz Et", "Appeal Details": "İtiraz Detayları", "Appeal a Ban": "Yasağa İtiraz Et", + "Appeal status updated successfully.": "İtiraz durumu başarıyla güncellendi.", + "Appeal submitted successfully.": "İtiraz başarıyla gönderildi.", "Appeals": "İtirazlar", "Appeals List": "İtiraz Listesi", "Apply Knife Skin": "Bıçak görünümü/skin seç", @@ -17,6 +20,7 @@ "Chest": "Göğüs", "Close": "Kapat", "Comments": "Yorumlar", + "Counter-Terrorist": "Karşı-Terörist", "Created At": "Oluşturma Zamanı", "DB Host": "DB Sunucusu", "DB Name": "DB Adı", @@ -29,9 +33,12 @@ "Email": "E-posta", "Enabled": "Etkin", "First Bloods": "İlk Öldürmeler", + "Gloves": "Eldivenler", "Hostname": "Host adı", "Identifier": "Tanımlayıcı", "If your report is approved you will find the player banned status in ban list": "Raporunuz onaylanırsa, oyuncunun yasaklanma durumunu yasak listesinde bulacaksınız.", + "Keychains": "Anahtarlıklar", + "Knife Skins": "Bıçak Kaplamaları", "Last 1 Hour": "Son 1 saat", "Last 1 Week": "Son 1 hafta", "Last 12 Hours": "Son 12 saat", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Medya Bağlantısı (Kanıt)", "Module Name": "Modül Adı", + "Music": "Müzik", "Mute List": "Susturma listesi", "Name": "İsim", "Nametag": "İsim etiketi", "Never Expires": "Asla sona ermez", "Nickname": "Takma Ad", "No": "Hayır", + "No active bans exists for this Steam ID or IP": "Bu Steam ID veya IP için aktif bir yasaklama yok.", + "No keychain selected": "Seçilen anahtarlık yok", "No sticker selected": "Hiçbir çıkartma seçilmedi", "Pins": "Rozetler", "Play Time": "Oyun Süresi", @@ -58,6 +68,7 @@ "Rounds": "Rauntlar", "Search Stickers": "Çıkartma ara", "Select Knife Category": "Bıçak kategorisini Seç", + "Select Team": "Takım Seç", "Select Time Range": "Zaman aralığı seçin", "Server Map Stats": "Sunucu Harita İstatistikleri", "Server Player Stats": "Sunucu Oyuncu İstatistikleri", @@ -73,6 +84,7 @@ "Sync New Servers": "Yeni sunucuları senkronize et", "Target Nickname": "Hedef Takma Adı", "Target SteamID": "Hedef SteamID", + "Terrorist": "Terörist", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Personel ekibi itirazınızdan haberdar edilecektir. Ardından yasağın kesin olup olmadığını inceleyeceklerdir. İnceleme sonrası genellikle 24 saat içinde bir yanıt alırsınız.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Personel ekibi raporunuzdan haberdar edilecektir. Ardından raporun kesin olup olmadığını inceleyeceklerdir.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Bu özellik, Ranks modülü için çoklu sunucu desteğini tanıtır. Yöneticilerin oyuncu sıralamalarını görüntülemek için farklı sunucu veritabanları arasında dinamik olarak geçiş yapmalarını sağlar. Bu, birden fazla oyun sunucusunu tek bir arayüzden yönetmek için özellikle yararlıdır.", @@ -86,9 +98,11 @@ "View Proof": "Kanıtı Görüntüle", "Visibility": "Görünürlük", "Weapon": "Silah", + "Weapon Skins": "Silah Kaplamaları", "What happens after I post my appeal?": "İtirazımı gönderdikten sonra ne olur?", "Win": "Kazan", "Yes": "Evet", + "You have a pending Appeal request.": "Bekleyen bir itiraz talebiniz var.", "Your Email": "E-posta Adresiniz", "Your Name": "Adınız", "Your SteamID": "SteamID'niz", @@ -279,7 +293,9 @@ "settings.newServers": "Görünürlük ayarları için yeni sunucular senkronize edildi.", "settings.noNewServers": "Senkronize edilecek yeni sunucu bulunamadı.", "settings.update": "Ayarları güncelle", - "skins.active": "Aktif", + "skins.active_both": "Aktif (Her İkisi)", + "skins.active_ct": "Aktif (CT)", + "skins.active_t": "Aktif (T)", "skins.applied": "Kostüm/Skin başarıyla uygulandı.", "skins.apply": "Uygula", "skins.applySkin": "Kostüm/Skin uygula", diff --git a/lang/uk.json b/lang/uk.json index a8a8c5d..46131b7 100755 --- a/lang/uk.json +++ b/lang/uk.json @@ -3,9 +3,12 @@ "Add": "Додати", "Add New Server Setting": "Додати нове налаштування сервера", "Address": "Адреса", + "Agents": "Агенти", "Appeal Ban": "Оскарження заборони", "Appeal Details": "Деталі апеляції", "Appeal a Ban": "Оскаржити заборону", + "Appeal status updated successfully.": "Статус апеляції успішно оновлено.", + "Appeal submitted successfully.": "Апеляція успішно подана.", "Appeals": "Оскарження", "Appeals List": "Список апеляцій", "Apply Knife Skin": "Застосувати скин ножа", @@ -17,6 +20,7 @@ "Chest": "Груди", "Close": "Закрити", "Comments": "Коментарі", + "Counter-Terrorist": "Антитерорист", "Created At": "Створено", "DB Host": "Хост бази даних", "DB Name": "Назва бази даних", @@ -29,9 +33,12 @@ "Email": "Електронна пошта", "Enabled": "Увімкнено", "First Bloods": "Перші вбивства", + "Gloves": "Рукавички", "Hostname": "Назва хоста", "Identifier": "Ідентифікатор", "If your report is approved you will find the player banned status in ban list": "Якщо ваш звіт буде схвалено, ви знайдете статус заборони гравця у списку заборон.", + "Keychains": "Брелоки", + "Knife Skins": "Скіни ножів", "Last 1 Hour": "Остання 1 година", "Last 1 Week": "Останній 1 тиждень", "Last 12 Hours": "Останні 12 годин", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "Посилання на медіа (Доказ)", "Module Name": "Назва модуля", + "Music": "Музика", "Mute List": "Список мовчання", "Name": "Ім'я", "Nametag": "Ім'я", "Never Expires": "Ніколи не закінчується", "Nickname": "Нік", "No": "Ні", + "No active bans exists for this Steam ID or IP": "Немає активних заборон для цього Steam ID або IP.", + "No keychain selected": "Брелок не вибрано", "No sticker selected": "Наліпка не вибрана", "Pins": "Значки", "Play Time": "Час гри", @@ -58,6 +68,7 @@ "Rounds": "Раунди", "Search Stickers": "Шукати наліпки", "Select Knife Category": "Вибрати категорію ножа", + "Select Team": "Виберіть команду", "Select Time Range": "Виберіть часовий діапазон", "Server Map Stats": "Статистика карт сервера", "Server Player Stats": "Статистика гравців сервера", @@ -73,6 +84,7 @@ "Sync New Servers": "Синхронізувати нові сервери", "Target Nickname": "Цільовий нік", "Target SteamID": "Цільове SteamID", + "Terrorist": "Терорист", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "Команда співробітників буде повідомлена про вашу апеляцію. Потім вони перевірять, чи є заборона остаточною. Після перевірки ви отримаєте відповідь, яка зазвичай надходить протягом 24 годин.", "The staff team will be notified of your report. They will then review if the report is conclusive.": "Команда співробітників буде повідомлена про ваш звіт. Потім вони перевірять, чи є звіт остаточним.", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "Ця функція вводить підтримку кількох серверів для модуля Рейтингів. Вона дозволяє адміністраторам динамічно переключатися між різними базами даних серверів для відображення рейтингів гравців. Це особливо корисно для управління кількома ігровими серверами з одного інтерфейсу.", @@ -86,9 +98,11 @@ "View Proof": "Переглянути доказ", "Visibility": "Видимість", "Weapon": "Зброя", + "Weapon Skins": "Скіни зброї", "What happens after I post my appeal?": "Що відбудеться після того, як я подам свою апеляцію?", "Win": "Перемога", "Yes": "Так", + "You have a pending Appeal request.": "У вас є запит на апеляцію, що очікує розгляду.", "Your Email": "Ваша електронна пошта", "Your Name": "Ваше ім'я", "Your SteamID": "Ваш SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "Нові сервери синхронізовані для налаштувань видимості.", "settings.noNewServers": "Не знайдено нових серверів для синхронізації.", "settings.update": "Оновити налаштування", - "skins.active": "Активний", + "skins.active_both": "Активно (Обидва)", + "skins.active_ct": "Активно (CT)", + "skins.active_t": "Активно (T)", "skins.applied": "Скін успішно застосовано.", "skins.apply": "Застосувати", "skins.applySkin": "Застосувати скін", diff --git a/lang/zh_CN.json b/lang/zh_CN.json index 9d991b7..bcbfdb4 100755 --- a/lang/zh_CN.json +++ b/lang/zh_CN.json @@ -3,9 +3,12 @@ "Add": "添加", "Add New Server Setting": "添加新服务器设置", "Address": "地址", + "Agents": "特工", "Appeal Ban": "申诉禁令", "Appeal Details": "申诉详情", "Appeal a Ban": "申诉禁令", + "Appeal status updated successfully.": "申诉状态更新成功。", + "Appeal submitted successfully.": "申诉提交成功。", "Appeals": "申诉", "Appeals List": "申诉列表", "Apply Knife Skin": "应用刀具皮肤", @@ -17,6 +20,7 @@ "Chest": "胸部", "Close": "关闭", "Comments": "评论", + "Counter-Terrorist": "反恐精英", "Created At": "创建时间", "DB Host": "数据库主机", "DB Name": "数据库名称", @@ -29,9 +33,12 @@ "Email": "电子邮件", "Enabled": "启用", "First Bloods": "首杀", + "Gloves": "手套", "Hostname": "主机名", "Identifier": "标识符", "If your report is approved you will find the player banned status in ban list": "如果你的报告被批准,你将会在禁令列表中找到玩家的禁令状态。", + "Keychains": "钥匙扣", + "Knife Skins": "刀具皮肤", "Last 1 Hour": "过去1小时", "Last 1 Week": "过去1周", "Last 12 Hours": "过去12小时", @@ -40,12 +47,15 @@ "MVP": "MVP", "Media Link (Proof)": "媒体链接(证明)", "Module Name": "模块名称", + "Music": "音乐", "Mute List": "静音列表", "Name": "姓名", "Nametag": "铭牌", "Never Expires": "永不过期", "Nickname": "昵称", "No": "否", + "No active bans exists for this Steam ID or IP": "此Steam ID或IP没有任何活动禁令。", + "No keychain selected": "未选择钥匙扣", "No sticker selected": "未选择贴纸", "Pins": "徽章", "Play Time": "游戏时间", @@ -58,6 +68,7 @@ "Rounds": "回合数", "Search Stickers": "搜索贴纸", "Select Knife Category": "选择刀具类别", + "Select Team": "选择队伍", "Select Time Range": "选择时间范围", "Server Map Stats": "服务器地图统计", "Server Player Stats": "服务器玩家统计", @@ -73,6 +84,7 @@ "Sync New Servers": "同步新服务器", "Target Nickname": "目标昵称", "Target SteamID": "目标 SteamID", + "Terrorist": "恐怖分子", "The staff team will be notified of your appeal. They will then review if the ban is conclusive. After reviewing you will get a reply, which usually means within 24 hours.": "工作人员将收到你的申诉通知。然后,他们将审查禁令是否具有决定性。审查后,你会收到回复,通常在24小时内。", "The staff team will be notified of your report. They will then review if the report is conclusive.": "工作人员将收到你的报告通知。他们将审查报告是否具有决定性。", "This feature introduces multi-server support for the Ranks module. It allows administrators to dynamically switch between different server databases for displaying player ranks. This is especially useful for managing multiple game servers from a single interface.": "此功能引入了对排名模块的多服务器支持。 它允许管理员在不同的服务器数据库之间动态切换以显示玩家排名。 这对于从单个界面管理多个游戏服务器特别有用。", @@ -86,9 +98,11 @@ "View Proof": "查看证据", "Visibility": "可见性", "Weapon": "武器", + "Weapon Skins": "武器皮肤", "What happens after I post my appeal?": "提交申诉后会发生什么?", "Win": "胜利", "Yes": "是", + "You have a pending Appeal request.": "您有一个待处理的申诉请求。", "Your Email": "你的电子邮件", "Your Name": "你的姓名", "Your SteamID": "你的 SteamID", @@ -279,7 +293,9 @@ "settings.newServers": "新服务器已同步到可见性设置中。", "settings.noNewServers": "未找到需要同步的新服务器。", "settings.update": "更新设置", - "skins.active": "激活", + "skins.active_both": "激活(两者", + "skins.active_ct": "激活(CT", + "skins.active_t": "激活(T", "skins.applied": "皮肤已成功应用。", "skins.apply": "应用", "skins.applySkin": "应用皮肤", diff --git a/public/images/weapons/weapon_healthshot.png b/public/images/weapons/weapon_healthshot.png new file mode 100644 index 0000000..2e7d250 Binary files /dev/null and b/public/images/weapons/weapon_healthshot.png differ diff --git a/public/images/weapons/weapon_hegrenade.png b/public/images/weapons/weapon_hegrenade.png new file mode 100644 index 0000000..e71a9af Binary files /dev/null and b/public/images/weapons/weapon_hegrenade.png differ diff --git a/public/images/weapons/weapon_inferno.png b/public/images/weapons/weapon_inferno.png new file mode 100644 index 0000000..ccc5273 Binary files /dev/null and b/public/images/weapons/weapon_inferno.png differ diff --git a/public/images/weapons/weapon_usp_silencer.png b/public/images/weapons/weapon_usp-s.png similarity index 100% rename from public/images/weapons/weapon_usp_silencer.png rename to public/images/weapons/weapon_usp-s.png diff --git a/resources/js/skins/pin.ts b/resources/js/skins/pin.ts new file mode 100644 index 0000000..ca21ca7 --- /dev/null +++ b/resources/js/skins/pin.ts @@ -0,0 +1,36 @@ +document.addEventListener('DOMContentLoaded', function () { + const colorThief = new ColorThief(); + + document.querySelectorAll('.card.style-6 img').forEach(function (img) { + img.setAttribute('crossorigin', 'anonymous'); + if (img.complete) { + applyGlow(img); + } else { + img.addEventListener('load', function () { + applyGlow(img); + }); + } + }); + + function applyGlow(img) { + const color = colorThief.getColor(img); + const rgbColor = `rgb(${color[0]}, ${color[1]}, ${color[2]})`; + img.closest('.card').style.setProperty('--glow-color', rgbColor); + img.closest('.card').classList.add('glow'); + img.previousElementSibling.classList.add('d-none'); + } + + const skinPreviewModal = document.getElementById('skinPreviewModal'); + skinPreviewModal.addEventListener('show.bs.modal', function (event) { + const button = event.relatedTarget; + const skinImage = button.getAttribute('data-skin-image'); + const skinName = button.getAttribute('data-skin-name'); + + const modalImage = skinPreviewModal.querySelector('#skinPreviewImage'); + const modalName = skinPreviewModal.querySelector('#skinPreviewName'); + + modalImage.src = skinImage; + modalName.textContent = skinName; + }); + +}); diff --git a/resources/json/agents.json b/resources/json/agents.json index b6b7e2f..c166579 100755 --- a/resources/json/agents.json +++ b/resources/json/agents.json @@ -1,386 +1,392 @@ [ { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5205.png", + "image": "", "model": "null", "agent_name": "Agent | Default" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4619.png", + "image": "", "model": "null", "agent_name": "Agent | Default" }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png", + "model": "tm_professional/tm_professional_varf5", + "agent_name": "Bloody Darryl The Strapped | The Professionals" + }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4619.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png", "model": "ctm_st6/ctm_st6_variantj", "agent_name": "'Blueberries' Buckshot | NSWC SEAL" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4680.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png", "model": "ctm_st6/ctm_st6_variantl", "agent_name": "'Two Times' McCoy | TACP Cavalry" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4711.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png", "model": "ctm_swat/ctm_swat_variante", "agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4712.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png", "model": "ctm_swat/ctm_swat_variantf", "agent_name": "1st Lieutenant Farlow | SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4713.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png", "model": "ctm_swat/ctm_swat_variantg", "agent_name": "John 'Van Healen' Kask | SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4714.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png", "model": "ctm_swat/ctm_swat_varianth", "agent_name": "Bio-Haz Specialist | SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4715.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png", "model": "ctm_swat/ctm_swat_varianti", "agent_name": "Sergeant Bombson | SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4716.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png", "model": "ctm_swat/ctm_swat_variantj", "agent_name": "Chem-Haz Specialist | SWAT" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4718.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png", "model": "tm_balkan/tm_balkan_variantk", "agent_name": "Rezan the Redshirt | Sabre" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4726.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png", "model": "tm_professional/tm_professional_varf", "agent_name": "Sir Bloody Miami Darryl | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4727.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png", "model": "tm_professional/tm_professional_varg", "agent_name": "Safecracker Voltzmann | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4728.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png", "model": "tm_professional/tm_professional_varh", "agent_name": "Little Kev | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4730.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png", "model": "tm_professional/tm_professional_varj", "agent_name": "Getaway Sally | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4732.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png", "model": "tm_professional/tm_professional_vari", "agent_name": "Number K | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4733.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png", "model": "tm_professional/tm_professional_varf1", "agent_name": "Sir Bloody Silent Darryl | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4734.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png", "model": "tm_professional/tm_professional_varf2", "agent_name": "Sir Bloody Skullhead Darryl | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4735.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png", "model": "tm_professional/tm_professional_varf3", "agent_name": "Sir Bloody Darryl Royale | The Professionals" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4736.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png", "model": "tm_professional/tm_professional_varf4", "agent_name": "Sir Bloody Loudmouth Darryl | The Professionals" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4749.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png", "model": "ctm_gendarmerie/ctm_gendarmerie_varianta", "agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4750.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png", "model": "ctm_gendarmerie/ctm_gendarmerie_variantb", "agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4751.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png", "model": "ctm_gendarmerie/ctm_gendarmerie_variantc", "agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4752.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png", "model": "ctm_gendarmerie/ctm_gendarmerie_variantd", "agent_name": "Aspirant | Gendarmerie Nationale" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4753.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png", "model": "ctm_gendarmerie/ctm_gendarmerie_variante", "agent_name": "Officer Jacques Beltram | Gendarmerie Nationale" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4756.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png", "model": "ctm_swat/ctm_swat_variantk", "agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4757.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png", "model": "ctm_diver/ctm_diver_varianta", "agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4771.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png", "model": "ctm_diver/ctm_diver_variantb", "agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4772.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png", "model": "ctm_diver/ctm_diver_variantc", "agent_name": "Lieutenant Rex Krikey | SEAL Frogman" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4773.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png", "model": "tm_jungle_raider/tm_jungle_raider_varianta", "agent_name": "Elite Trapper Solman | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4774.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png", "model": "tm_jungle_raider/tm_jungle_raider_variantb", "agent_name": "Crasswater The Forgotten | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4775.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png", "model": "tm_jungle_raider/tm_jungle_raider_variantc", "agent_name": "Arno The Overgrown | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4776.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png", "model": "tm_jungle_raider/tm_jungle_raider_variantd", "agent_name": "Col. Mangos Dabisi | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4777.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png", "model": "tm_jungle_raider/tm_jungle_raider_variante", "agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4778.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png", "model": "tm_jungle_raider/tm_jungle_raider_variantf", "agent_name": "Trapper Aggressor | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4780.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png", "model": "tm_jungle_raider/tm_jungle_raider_variantb2", "agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4781.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png", "model": "tm_jungle_raider/tm_jungle_raider_variantf2", "agent_name": "Trapper | Guerrilla Warfare" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5105.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png", "model": "tm_leet/tm_leet_variantg", "agent_name": "Ground Rebel | Elite Crew" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5106.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png", "model": "tm_leet/tm_leet_varianth", "agent_name": "Osiris | Elite Crew" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5107.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png", "model": "tm_leet/tm_leet_varianti", "agent_name": "Prof. Shahmat | Elite Crew" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5108.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png", "model": "tm_leet/tm_leet_variantf", "agent_name": "The Elite Mr. Muhlik | Elite Crew" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5109.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png", "model": "tm_leet/tm_leet_variantj", "agent_name": "Jungle Rebel | Elite Crew" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5205.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png", "model": "tm_phoenix/tm_phoenix_varianth", "agent_name": "Soldier | Phoenix" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5206.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png", "model": "tm_phoenix/tm_phoenix_variantf", "agent_name": "Enforcer | Phoenix" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5207.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png", "model": "tm_phoenix/tm_phoenix_variantg", "agent_name": "Slingshot | Phoenix" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5208.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png", "model": "tm_phoenix/tm_phoenix_varianti", "agent_name": "Street Soldier | Phoenix" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5305.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png", "model": "ctm_fbi/ctm_fbi_variantf", "agent_name": "Operator | FBI SWAT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5306.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png", "model": "ctm_fbi/ctm_fbi_variantg", "agent_name": "Markus Delrow | FBI HRT" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5307.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png", "model": "ctm_fbi/ctm_fbi_varianth", "agent_name": "Michael Syfers | FBI Sniper" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5308.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png", "model": "ctm_fbi/ctm_fbi_variantb", "agent_name": "Special Agent Ava | FBI" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5400.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png", "model": "ctm_st6/ctm_st6_variantk", "agent_name": "3rd Commando Company | KSK" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5401.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png", "model": "ctm_st6/ctm_st6_variante", "agent_name": "Seal Team 6 Soldier | NSWC SEAL" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5402.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png", "model": "ctm_st6/ctm_st6_variantg", "agent_name": "Buckshot | NSWC SEAL" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5403.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png", "model": "ctm_st6/ctm_st6_variantm", "agent_name": "'Two Times' McCoy | USAF TACP" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5404.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png", "model": "ctm_st6/ctm_st6_varianti", "agent_name": "Lt. Commander Ricksaw | NSWC SEAL" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5405.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png", "model": "ctm_st6/ctm_st6_variantn", "agent_name": "Primeiro Tenente | Brazilian 1st Battalion" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5500.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png", "model": "tm_balkan/tm_balkan_variantf", "agent_name": "Dragomir | Sabre" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5501.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png", "model": "tm_balkan/tm_balkan_varianti", "agent_name": "Maximus | Sabre" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5502.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png", "model": "tm_balkan/tm_balkan_variantg", "agent_name": "Rezan The Ready | Sabre" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5503.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png", "model": "tm_balkan/tm_balkan_variantj", "agent_name": "Blackwolf | Sabre" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5504.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png", "model": "tm_balkan/tm_balkan_varianth", "agent_name": "'The Doctor' Romanov | Sabre" }, { "team": 2, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5505.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png", "model": "tm_balkan/tm_balkan_variantl", "agent_name": "Dragomir | Sabre Footsoldier" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5601.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png", "model": "ctm_sas/ctm_sas_variantf", "agent_name": "B Squadron Officer | SAS" }, { "team": 3, - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5602.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png", "model": "ctm_sas/ctm_sas_variantg", "agent_name": "D Squadron Officer | NZSAS" } -] +] \ No newline at end of file diff --git a/resources/json/collectibles.json b/resources/json/collectibles.json new file mode 100644 index 0000000..1069988 --- /dev/null +++ b/resources/json/collectibles.json @@ -0,0 +1,1447 @@ +[ + { + "id": "875", + "name": "Champion at DreamHack 2013", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-875.png" + }, + { + "id": "876", + "name": "Finalist at DreamHack 2013", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-876.png" + }, + { + "id": "877", + "name": "Semifinalist at DreamHack 2013", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-877.png" + }, + { + "id": "878", + "name": "Quarterfinalist at DreamHack 2013", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-878.png" + }, + { + "id": "879", + "name": "Champion at EMS One Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-879.png" + }, + { + "id": "880", + "name": "Finalist at EMS One Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-880.png" + }, + { + "id": "881", + "name": "Semifinalist at EMS One Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-881.png" + }, + { + "id": "882", + "name": "Quarterfinalist at EMS One Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-882.png" + }, + { + "id": "883", + "name": "Champion at ESL One Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-883.png" + }, + { + "id": "884", + "name": "Finalist at ESL One Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-884.png" + }, + { + "id": "885", + "name": "Semifinalist at ESL One Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-885.png" + }, + { + "id": "886", + "name": "Quarterfinalist at ESL One Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-886.png" + }, + { + "id": "887", + "name": "Bronze Cologne 2014 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-887.png" + }, + { + "id": "888", + "name": "Silver Cologne 2014 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-888.png" + }, + { + "id": "889", + "name": "Gold Cologne 2014 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-889.png" + }, + { + "id": "890", + "name": "Champion at DreamHack Winter 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-890.png" + }, + { + "id": "891", + "name": "Finalist at DreamHack Winter 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-891.png" + }, + { + "id": "892", + "name": "Semifinalist at DreamHack Winter 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-892.png" + }, + { + "id": "893", + "name": "Quarterfinalist at DreamHack Winter 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-893.png" + }, + { + "id": "894", + "name": "Bronze DreamHack 2014 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-894.png" + }, + { + "id": "895", + "name": "Silver DreamHack 2014 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-895.png" + }, + { + "id": "896", + "name": "Gold DreamHack 2014 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-896.png" + }, + { + "id": "897", + "name": "Champion at ESL One Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-897.png" + }, + { + "id": "898", + "name": "Finalist at ESL One Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-898.png" + }, + { + "id": "899", + "name": "Semifinalist at ESL One Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-899.png" + }, + { + "id": "900", + "name": "Quarterfinalist at ESL One Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-900.png" + }, + { + "id": "901", + "name": "Bronze Katowice 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-901.png" + }, + { + "id": "902", + "name": "Silver Katowice 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-902.png" + }, + { + "id": "903", + "name": "Gold Katowice 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-903.png" + }, + { + "id": "904", + "name": "Champion at ESL One Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-904.png" + }, + { + "id": "905", + "name": "Finalist at ESL One Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-905.png" + }, + { + "id": "906", + "name": "Semifinalist at ESL One Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-906.png" + }, + { + "id": "907", + "name": "Quarterfinalist at ESL One Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-907.png" + }, + { + "id": "908", + "name": "Bronze Cologne 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-908.png" + }, + { + "id": "909", + "name": "Silver Cologne 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-909.png" + }, + { + "id": "910", + "name": "Gold Cologne 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-910.png" + }, + { + "id": "911", + "name": "Bronze Cluj-Napoca 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-911.png" + }, + { + "id": "912", + "name": "Silver Cluj-Napoca 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-912.png" + }, + { + "id": "913", + "name": "Gold Cluj-Napoca 2015 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-913.png" + }, + { + "id": "914", + "name": "Bronze Cluj-Napoca 2015 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-914.png" + }, + { + "id": "915", + "name": "Silver Cluj-Napoca 2015 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-915.png" + }, + { + "id": "916", + "name": "Gold Cluj-Napoca 2015 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-916.png" + }, + { + "id": "917", + "name": "Champion at DreamHack Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-917.png" + }, + { + "id": "918", + "name": "Finalist at DreamHack Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-918.png" + }, + { + "id": "919", + "name": "Semifinalist at DreamHack Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-919.png" + }, + { + "id": "920", + "name": "Quarterfinalist at DreamHack Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-920.png" + }, + { + "id": "921", + "name": "Bronze Columbus 2016 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-921.png" + }, + { + "id": "922", + "name": "Silver Columbus 2016 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-922.png" + }, + { + "id": "923", + "name": "Gold Columbus 2016 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-923.png" + }, + { + "id": "924", + "name": "Bronze Columbus 2016 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-924.png" + }, + { + "id": "925", + "name": "Silver Columbus 2016 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-925.png" + }, + { + "id": "926", + "name": "Gold Columbus 2016 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-926.png" + }, + { + "id": "927", + "name": "Champion at MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-927.png" + }, + { + "id": "928", + "name": "Finalist at MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-928.png" + }, + { + "id": "929", + "name": "Semifinalist at MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-929.png" + }, + { + "id": "930", + "name": "Quarterfinalist at MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-930.png" + }, + { + "id": "931", + "name": "Champion at ESL One Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-931.png" + }, + { + "id": "932", + "name": "Finalist at ESL One Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-932.png" + }, + { + "id": "933", + "name": "Semifinalist at ESL One Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-933.png" + }, + { + "id": "934", + "name": "Quarterfinalist at ESL One Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-934.png" + }, + { + "id": "935", + "name": "Bronze Cologne 2016 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-935.png" + }, + { + "id": "936", + "name": "Silver Cologne 2016 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-936.png" + }, + { + "id": "937", + "name": "Gold Cologne 2016 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-937.png" + }, + { + "id": "938", + "name": "Bronze Cologne 2016 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-938.png" + }, + { + "id": "939", + "name": "Silver Cologne 2016 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-939.png" + }, + { + "id": "940", + "name": "Gold Cologne 2016 Fantasy Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-940.png" + }, + { + "id": "941", + "name": "Champion at ELEAGUE Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-941.png" + }, + { + "id": "942", + "name": "Finalist at ELEAGUE Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-942.png" + }, + { + "id": "943", + "name": "Semifinalist at ELEAGUE Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-943.png" + }, + { + "id": "944", + "name": "Quarterfinalist at ELEAGUE Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-944.png" + }, + { + "id": "945", + "name": "Bronze Atlanta 2017 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-945.png" + }, + { + "id": "946", + "name": "Silver Atlanta 2017 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-946.png" + }, + { + "id": "947", + "name": "Gold Atlanta 2017 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-947.png" + }, + { + "id": "948", + "name": "Champion at PGL Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-948.png" + }, + { + "id": "949", + "name": "Finalist at PGL Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-949.png" + }, + { + "id": "950", + "name": "Semifinalist at PGL Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-950.png" + }, + { + "id": "951", + "name": "Quarterfinalist at PGL Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-951.png" + }, + { + "id": "952", + "name": "Bronze Krakow 2017 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-952.png" + }, + { + "id": "953", + "name": "Silver Krakow 2017 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-953.png" + }, + { + "id": "954", + "name": "Gold Krakow 2017 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-954.png" + }, + { + "id": "955", + "name": "Champion at ELEAGUE Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-955.png" + }, + { + "id": "956", + "name": "Finalist at ELEAGUE Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-956.png" + }, + { + "id": "957", + "name": "Semifinalist at ELEAGUE Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-957.png" + }, + { + "id": "958", + "name": "Quarterfinalist at ELEAGUE Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-958.png" + }, + { + "id": "959", + "name": "Bronze Boston 2018 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-959.png" + }, + { + "id": "960", + "name": "Silver Boston 2018 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-960.png" + }, + { + "id": "961", + "name": "Gold Boston 2018 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-961.png" + }, + { + "id": "962", + "name": "Champion at FACEIT London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-962.png" + }, + { + "id": "963", + "name": "Finalist at FACEIT London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-963.png" + }, + { + "id": "964", + "name": "Semifinalist at FACEIT London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-964.png" + }, + { + "id": "965", + "name": "Quarterfinalist at FACEIT London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-965.png" + }, + { + "id": "966", + "name": "Bronze London 2018 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-966.png" + }, + { + "id": "967", + "name": "Silver London 2018 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-967.png" + }, + { + "id": "968", + "name": "Gold London 2018 Pick'Em Trophy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-968.png" + }, + { + "id": "971", + "name": "Champion at IEM Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-971.png" + }, + { + "id": "972", + "name": "Finalist at IEM Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-972.png" + }, + { + "id": "973", + "name": "Semifinalist at IEM Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-973.png" + }, + { + "id": "974", + "name": "Quarterfinalist at IEM Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-974.png" + }, + { + "id": "975", + "name": "Champion at StarLadder Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-975.png" + }, + { + "id": "976", + "name": "Finalist at StarLadder Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-976.png" + }, + { + "id": "977", + "name": "Semifinalist at StarLadder Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-977.png" + }, + { + "id": "978", + "name": "Quarterfinalist at StarLadder Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-978.png" + }, + { + "id": "979", + "name": "Champion at PGL Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-979.png" + }, + { + "id": "980", + "name": "Finalist at PGL Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-980.png" + }, + { + "id": "981", + "name": "Semifinalist at PGL Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-981.png" + }, + { + "id": "982", + "name": "Quarterfinalist at PGL Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-982.png" + }, + { + "id": "983", + "name": "Champion at PGL Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-983.png" + }, + { + "id": "984", + "name": "Finalist at PGL Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-984.png" + }, + { + "id": "985", + "name": "Semifinalist at PGL Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-985.png" + }, + { + "id": "986", + "name": "Quarterfinalist at PGL Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-986.png" + }, + { + "id": "988", + "name": "Champion at IEM Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-988.png" + }, + { + "id": "989", + "name": "Finalist at IEM Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-989.png" + }, + { + "id": "990", + "name": "Semifinalist at IEM Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-990.png" + }, + { + "id": "991", + "name": "Quarterfinalist at IEM Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-991.png" + }, + { + "id": "992", + "name": "Champion at BLAST.tv Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-992.png" + }, + { + "id": "993", + "name": "Finalist at BLAST.tv Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-993.png" + }, + { + "id": "994", + "name": "Semifinalist at BLAST.tv Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-994.png" + }, + { + "id": "995", + "name": "Quarterfinalist at BLAST.tv Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png" + }, + { + "id": "1001", + "name": "Operation Payback Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1001.png" + }, + { + "id": "1002", + "name": "Silver Operation Payback Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1002.png" + }, + { + "id": "1003", + "name": "Gold Operation Payback Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1003.png" + }, + { + "id": "1013", + "name": "Operation Bravo Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1013.png" + }, + { + "id": "1014", + "name": "Silver Operation Bravo Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1014.png" + }, + { + "id": "1015", + "name": "Gold Operation Bravo Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1015.png" + }, + { + "id": "1024", + "name": "Operation Phoenix Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1024.png" + }, + { + "id": "1025", + "name": "Silver Operation Phoenix Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1025.png" + }, + { + "id": "1026", + "name": "Gold Operation Phoenix Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png" + }, + { + "id": "1028", + "name": "Operation Breakout Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1028.png" + }, + { + "id": "1029", + "name": "Silver Operation Breakout Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1029.png" + }, + { + "id": "1030", + "name": "Gold Operation Breakout Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1030.png" + }, + { + "id": "1316", + "name": "Operation Vanguard Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1316.png" + }, + { + "id": "1317", + "name": "Silver Operation Vanguard Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1317.png" + }, + { + "id": "1318", + "name": "Gold Operation Vanguard Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png" + }, + { + "id": "1327", + "name": "Operation Bloodhound Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1327.png" + }, + { + "id": "1328", + "name": "Silver Operation Bloodhound Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1328.png" + }, + { + "id": "1329", + "name": "Gold Operation Bloodhound Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1329.png" + }, + { + "id": "1331", + "name": "2015 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1331.png" + }, + { + "id": "1332", + "name": "2015 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png" + }, + { + "id": "1336", + "name": "Operation Wildfire Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1336.png" + }, + { + "id": "1337", + "name": "Silver Operation Wildfire Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1337.png" + }, + { + "id": "1338", + "name": "Gold Operation Wildfire Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1338.png" + }, + { + "id": "1339", + "name": "2016 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1339.png" + }, + { + "id": "1340", + "name": "2016 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1340.png" + }, + { + "id": "1341", + "name": "2016 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1341.png" + }, + { + "id": "1342", + "name": "2016 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1342.png" + }, + { + "id": "1343", + "name": "2016 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1343.png" + }, + { + "id": "1344", + "name": "2016 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png" + }, + { + "id": "1357", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1357.png" + }, + { + "id": "1358", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1358.png" + }, + { + "id": "1359", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1359.png" + }, + { + "id": "1360", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1360.png" + }, + { + "id": "1361", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1361.png" + }, + { + "id": "1362", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1362.png" + }, + { + "id": "1363", + "name": "2017 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1363.png" + }, + { + "id": "1367", + "name": "2018 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1367.png" + }, + { + "id": "1368", + "name": "2018 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1368.png" + }, + { + "id": "1369", + "name": "2018 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1369.png" + }, + { + "id": "1370", + "name": "2018 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1370.png" + }, + { + "id": "1371", + "name": "2018 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1371.png" + }, + { + "id": "1372", + "name": "2018 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1372.png" + }, + { + "id": "1376", + "name": "2019 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1376.png" + }, + { + "id": "1377", + "name": "2019 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1377.png" + }, + { + "id": "1378", + "name": "2019 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1378.png" + }, + { + "id": "1379", + "name": "2019 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1379.png" + }, + { + "id": "1380", + "name": "2019 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1380.png" + }, + { + "id": "1381", + "name": "2019 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1381.png" + }, + { + "id": "4353", + "name": "Operation Hydra Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4353.png" + }, + { + "id": "4354", + "name": "Silver Operation Hydra Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4354.png" + }, + { + "id": "4355", + "name": "Gold Operation Hydra Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4355.png" + }, + { + "id": "4356", + "name": "Diamond Operation Hydra Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png" + }, + { + "id": "4550", + "name": "Operation Shattered Web Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4550.png" + }, + { + "id": "4551", + "name": "Silver Operation Shattered Web Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4551.png" + }, + { + "id": "4552", + "name": "Gold Operation Shattered Web Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4552.png" + }, + { + "id": "4553", + "name": "Diamond Operation Shattered Web Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png" + }, + { + "id": "4555", + "name": "Katowice 2019 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4555.png" + }, + { + "id": "4556", + "name": "Katowice 2019 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4556.png" + }, + { + "id": "4557", + "name": "Katowice 2019 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4557.png" + }, + { + "id": "4558", + "name": "Katowice 2019 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png" + }, + { + "id": "4623", + "name": "Berlin 2019 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4623.png" + }, + { + "id": "4624", + "name": "Berlin 2019 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4624.png" + }, + { + "id": "4625", + "name": "Berlin 2019 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4625.png" + }, + { + "id": "4626", + "name": "Berlin 2019 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png" + }, + { + "id": "4674", + "name": "2020 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4674.png" + }, + { + "id": "4675", + "name": "2020 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4675.png" + }, + { + "id": "4676", + "name": "2020 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4676.png" + }, + { + "id": "4677", + "name": "2020 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4677.png" + }, + { + "id": "4678", + "name": "2020 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4678.png" + }, + { + "id": "4679", + "name": "2020 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4679.png" + }, + { + "id": "4682", + "name": "Civil Protection Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4682.png" + }, + { + "id": "4683", + "name": "Sustenance! Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4683.png" + }, + { + "id": "4684", + "name": "Vortigaunt Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4684.png" + }, + { + "id": "4685", + "name": "Headcrab Glyph Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4685.png" + }, + { + "id": "4686", + "name": "Health Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4686.png" + }, + { + "id": "4687", + "name": "Lambda Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4687.png" + }, + { + "id": "4688", + "name": "Copper Lambda Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4688.png" + }, + { + "id": "4689", + "name": "CMB Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4689.png" + }, + { + "id": "4690", + "name": "Black Mesa Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4690.png" + }, + { + "id": "4691", + "name": "Combine Helmet Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4691.png" + }, + { + "id": "4692", + "name": "City 17 Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png" + }, + { + "id": "4700", + "name": "Operation Broken Fang Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4700.png" + }, + { + "id": "4701", + "name": "Silver Operation Broken Fang Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4701.png" + }, + { + "id": "4702", + "name": "Gold Operation Broken Fang Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4702.png" + }, + { + "id": "4703", + "name": "Diamond Operation Broken Fang Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png" + }, + { + "id": "4737", + "name": "2021 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4737.png" + }, + { + "id": "4738", + "name": "2021 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4738.png" + }, + { + "id": "4739", + "name": "2021 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4739.png" + }, + { + "id": "4740", + "name": "2021 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4740.png" + }, + { + "id": "4741", + "name": "2021 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4741.png" + }, + { + "id": "4742", + "name": "2021 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png" + }, + { + "id": "4759", + "name": "Operation Riptide Challenge Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4759.png" + }, + { + "id": "4760", + "name": "Silver Operation Riptide Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4760.png" + }, + { + "id": "4761", + "name": "Gold Operation Riptide Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4761.png" + }, + { + "id": "4762", + "name": "Diamond Operation Riptide Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png" + }, + { + "id": "4797", + "name": "Stockholm 2021 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4797.png" + }, + { + "id": "4798", + "name": "Stockholm 2021 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4798.png" + }, + { + "id": "4799", + "name": "Stockholm 2021 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4799.png" + }, + { + "id": "4800", + "name": "Stockholm 2021 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png" + }, + { + "id": "4819", + "name": "2022 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4819.png" + }, + { + "id": "4820", + "name": "2022 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4820.png" + }, + { + "id": "4821", + "name": "2022 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4821.png" + }, + { + "id": "4822", + "name": "2022 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4822.png" + }, + { + "id": "4823", + "name": "2022 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4823.png" + }, + { + "id": "4824", + "name": "2022 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png" + }, + { + "id": "4826", + "name": "Antwerp 2022 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4826.png" + }, + { + "id": "4827", + "name": "Antwerp 2022 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4827.png" + }, + { + "id": "4828", + "name": "Antwerp 2022 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4828.png" + }, + { + "id": "4829", + "name": "Antwerp 2022 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png" + }, + { + "id": "4851", + "name": "Rio 2022 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4851.png" + }, + { + "id": "4852", + "name": "Rio 2022 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4852.png" + }, + { + "id": "4853", + "name": "Rio 2022 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4853.png" + }, + { + "id": "4854", + "name": "Rio 2022 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png" + }, + { + "id": "4873", + "name": "2023 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4873.png" + }, + { + "id": "4874", + "name": "2023 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4874.png" + }, + { + "id": "4875", + "name": "2023 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4875.png" + }, + { + "id": "4876", + "name": "2023 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4876.png" + }, + { + "id": "4877", + "name": "2023 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4877.png" + }, + { + "id": "4878", + "name": "2023 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png" + }, + { + "id": "4884", + "name": "Paris 2023 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4884.png" + }, + { + "id": "4885", + "name": "Paris 2023 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4885.png" + }, + { + "id": "4886", + "name": "Paris 2023 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4886.png" + }, + { + "id": "4887", + "name": "Paris 2023 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png" + }, + { + "id": "4906", + "name": "2024 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4906.png" + }, + { + "id": "4907", + "name": "2024 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4907.png" + }, + { + "id": "4908", + "name": "2024 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4908.png" + }, + { + "id": "4909", + "name": "2024 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4909.png" + }, + { + "id": "4910", + "name": "2024 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4910.png" + }, + { + "id": "4911", + "name": "2024 Service Medal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png" + }, + { + "id": "4917", + "name": "Copenhagen 2024 Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4917.png" + }, + { + "id": "4918", + "name": "Copenhagen 2024 Silver Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4918.png" + }, + { + "id": "4919", + "name": "Copenhagen 2024 Gold Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4919.png" + }, + { + "id": "4920", + "name": "Copenhagen 2024 Diamond Coin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png" + }, + { + "id": "4933", + "name": "Champion at PGL Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4933.png" + }, + { + "id": "4934", + "name": "Finalist at PGL Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4934.png" + }, + { + "id": "4935", + "name": "Semifinalist at PGL Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4935.png" + }, + { + "id": "4936", + "name": "Quarterfinalist at PGL Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4936.png" + }, + { + "id": "6101", + "name": "Dust II Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6101.png" + }, + { + "id": "6102", + "name": "Guardian Elite Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6102.png" + }, + { + "id": "6103", + "name": "Mirage Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6103.png" + }, + { + "id": "6104", + "name": "Inferno Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6104.png" + }, + { + "id": "6105", + "name": "Italy Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6105.png" + }, + { + "id": "6106", + "name": "Victory Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6106.png" + }, + { + "id": "6107", + "name": "Militia Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6107.png" + }, + { + "id": "6108", + "name": "Nuke Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6108.png" + }, + { + "id": "6109", + "name": "Train Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6109.png" + }, + { + "id": "6110", + "name": "Guardian Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6110.png" + }, + { + "id": "6111", + "name": "Tactics Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6111.png" + }, + { + "id": "6112", + "name": "Guardian 2 Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6112.png" + }, + { + "id": "6113", + "name": "Bravo Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6113.png" + }, + { + "id": "6114", + "name": "Baggage Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6114.png" + }, + { + "id": "6115", + "name": "Phoenix Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6115.png" + }, + { + "id": "6116", + "name": "Office Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6116.png" + }, + { + "id": "6117", + "name": "Cobblestone Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6117.png" + }, + { + "id": "6118", + "name": "Overpass Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6118.png" + }, + { + "id": "6119", + "name": "Bloodhound Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6119.png" + }, + { + "id": "6120", + "name": "Cache Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6120.png" + }, + { + "id": "6121", + "name": "Valeria Phoenix Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6121.png" + }, + { + "id": "6122", + "name": "Chroma Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6122.png" + }, + { + "id": "6123", + "name": "Guardian 3 Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6123.png" + }, + { + "id": "6124", + "name": "Canals Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6124.png" + }, + { + "id": "6125", + "name": "Welcome to the Clutch Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6125.png" + }, + { + "id": "6126", + "name": "Death Sentence Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6126.png" + }, + { + "id": "6127", + "name": "Inferno 2 Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6127.png" + }, + { + "id": "6128", + "name": "Wildfire Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6128.png" + }, + { + "id": "6129", + "name": "Easy Peasy Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6129.png" + }, + { + "id": "6130", + "name": "Aces High Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6130.png" + }, + { + "id": "6131", + "name": "Hydra Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6131.png" + }, + { + "id": "6132", + "name": "Howl Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6132.png" + }, + { + "id": "6133", + "name": "Brigadier General Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6133.png" + }, + { + "id": "6134", + "name": "Alyx Pin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6134.png" + } +] \ No newline at end of file diff --git a/resources/json/gloves.json b/resources/json/gloves.json index 05b0442..bff37ea 100755 --- a/resources/json/gloves.json +++ b/resources/json/gloves.json @@ -1,440 +1,440 @@ [ { "weapon_defindex": 0, - "paint": "0", - "image": "https://static.wikia.nocookie.net/cswikia/images/0/06/Csgo_Ct_gloves.png", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/default_gloves.png", "paint_name": "Gloves | Default" }, { "weapon_defindex": 4725, "paint": "10085", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png", "paint_name": "★ Broken Fang Gloves | Jade" }, { "weapon_defindex": 4725, "paint": "10086", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png", "paint_name": "★ Broken Fang Gloves | Yellow-banded" }, { "weapon_defindex": 4725, "paint": "10087", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png", "paint_name": "★ Broken Fang Gloves | Needle Point" }, { "weapon_defindex": 4725, "paint": "10088", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png", "paint_name": "★ Broken Fang Gloves | Unhinged" }, { "weapon_defindex": 5027, "paint": "10006", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png", "paint_name": "★ Bloodhound Gloves | Charred" }, { "weapon_defindex": 5027, "paint": "10007", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png", "paint_name": "★ Bloodhound Gloves | Snakebite" }, { "weapon_defindex": 5027, "paint": "10008", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png", "paint_name": "★ Bloodhound Gloves | Bronzed" }, { "weapon_defindex": 5027, "paint": "10039", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png", "paint_name": "★ Bloodhound Gloves | Guerrilla" }, { "weapon_defindex": 5030, "paint": "10018", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png", "paint_name": "★ Sport Gloves | Superconductor" }, { "weapon_defindex": 5030, "paint": "10019", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png", "paint_name": "★ Sport Gloves | Arid" }, { "weapon_defindex": 5030, "paint": "10037", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png", "paint_name": "★ Sport Gloves | Pandora's Box" }, { "weapon_defindex": 5030, "paint": "10038", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png", "paint_name": "★ Sport Gloves | Hedge Maze" }, { "weapon_defindex": 5030, "paint": "10045", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png", "paint_name": "★ Sport Gloves | Amphibious" }, { "weapon_defindex": 5030, "paint": "10046", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png", "paint_name": "★ Sport Gloves | Bronze Morph" }, { "weapon_defindex": 5030, "paint": "10047", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png", "paint_name": "★ Sport Gloves | Omega" }, { "weapon_defindex": 5030, "paint": "10048", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png", "paint_name": "★ Sport Gloves | Vice" }, { "weapon_defindex": 5030, "paint": "10073", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png", "paint_name": "★ Sport Gloves | Slingshot" }, { "weapon_defindex": 5030, "paint": "10074", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png", "paint_name": "★ Sport Gloves | Big Game" }, { "weapon_defindex": 5030, "paint": "10075", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png", "paint_name": "★ Sport Gloves | Scarlet Shamagh" }, { "weapon_defindex": 5030, "paint": "10076", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png", "paint_name": "★ Sport Gloves | Nocts" }, { "weapon_defindex": 5031, "paint": "10013", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png", "paint_name": "★ Driver Gloves | Lunar Weave" }, { "weapon_defindex": 5031, "paint": "10015", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png", "paint_name": "★ Driver Gloves | Convoy" }, { "weapon_defindex": 5031, "paint": "10016", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png", "paint_name": "★ Driver Gloves | Crimson Weave" }, { "weapon_defindex": 5031, "paint": "10040", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png", "paint_name": "★ Driver Gloves | Diamondback" }, { "weapon_defindex": 5031, "paint": "10041", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png", "paint_name": "★ Driver Gloves | King Snake" }, { "weapon_defindex": 5031, "paint": "10042", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png", "paint_name": "★ Driver Gloves | Imperial Plaid" }, { "weapon_defindex": 5031, "paint": "10043", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png", "paint_name": "★ Driver Gloves | Overtake" }, { "weapon_defindex": 5031, "paint": "10044", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png", "paint_name": "★ Driver Gloves | Racing Green" }, { "weapon_defindex": 5031, "paint": "10069", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png", "paint_name": "★ Driver Gloves | Rezan the Red" }, { "weapon_defindex": 5031, "paint": "10070", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png", "paint_name": "★ Driver Gloves | Snow Leopard" }, { "weapon_defindex": 5031, "paint": "10071", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png", "paint_name": "★ Driver Gloves | Queen Jaguar" }, { "weapon_defindex": 5031, "paint": "10072", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png", "paint_name": "★ Driver Gloves | Black Tie" }, { "weapon_defindex": 5032, "paint": "10009", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png", "paint_name": "★ Hand Wraps | Leather" }, { "weapon_defindex": 5032, "paint": "10010", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png", "paint_name": "★ Hand Wraps | Spruce DDPAT" }, { "weapon_defindex": 5032, "paint": "10021", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png", "paint_name": "★ Hand Wraps | Slaughter" }, { "weapon_defindex": 5032, "paint": "10036", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png", "paint_name": "★ Hand Wraps | Badlands" }, { "weapon_defindex": 5032, "paint": "10053", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png", "paint_name": "★ Hand Wraps | Cobalt Skulls" }, { "weapon_defindex": 5032, "paint": "10054", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png", "paint_name": "★ Hand Wraps | Overprint" }, { "weapon_defindex": 5032, "paint": "10055", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png", "paint_name": "★ Hand Wraps | Duct Tape" }, { "weapon_defindex": 5032, "paint": "10056", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png", "paint_name": "★ Hand Wraps | Arboreal" }, { "weapon_defindex": 5032, "paint": "10081", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png", "paint_name": "★ Hand Wraps | Desert Shamagh" }, { "weapon_defindex": 5032, "paint": "10082", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png", "paint_name": "★ Hand Wraps | Giraffe" }, { "weapon_defindex": 5032, "paint": "10083", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png", "paint_name": "★ Hand Wraps | Constrictor" }, { "weapon_defindex": 5032, "paint": "10084", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png", "paint_name": "★ Hand Wraps | CAUTION!" }, { "weapon_defindex": 5033, "paint": "10024", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png", "paint_name": "★ Moto Gloves | Eclipse" }, { "weapon_defindex": 5033, "paint": "10026", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png", "paint_name": "★ Moto Gloves | Spearmint" }, { "weapon_defindex": 5033, "paint": "10027", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png", "paint_name": "★ Moto Gloves | Boom!" }, { "weapon_defindex": 5033, "paint": "10028", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png", "paint_name": "★ Moto Gloves | Cool Mint" }, { "weapon_defindex": 5033, "paint": "10049", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png", "paint_name": "★ Moto Gloves | POW!" }, { "weapon_defindex": 5033, "paint": "10050", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png", "paint_name": "★ Moto Gloves | Turtle" }, { "weapon_defindex": 5033, "paint": "10051", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png", "paint_name": "★ Moto Gloves | Transport" }, { "weapon_defindex": 5033, "paint": "10052", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png", "paint_name": "★ Moto Gloves | Polygon" }, { "weapon_defindex": 5033, "paint": "10077", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png", "paint_name": "★ Moto Gloves | Finish Line" }, { "weapon_defindex": 5033, "paint": "10078", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png", "paint_name": "★ Moto Gloves | Smoke Out" }, { "weapon_defindex": 5033, "paint": "10079", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png", "paint_name": "★ Moto Gloves | Blood Pressure" }, { "weapon_defindex": 5033, "paint": "10080", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png", "paint_name": "★ Moto Gloves | 3rd Commando Company" }, { "weapon_defindex": 5034, "paint": "10030", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png", "paint_name": "★ Specialist Gloves | Forest DDPAT" }, { "weapon_defindex": 5034, "paint": "10033", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png", "paint_name": "★ Specialist Gloves | Crimson Kimono" }, { "weapon_defindex": 5034, "paint": "10034", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png", "paint_name": "★ Specialist Gloves | Emerald Web" }, { "weapon_defindex": 5034, "paint": "10035", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png", "paint_name": "★ Specialist Gloves | Foundation" }, { "weapon_defindex": 5034, "paint": "10061", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png", "paint_name": "★ Specialist Gloves | Crimson Web" }, { "weapon_defindex": 5034, "paint": "10062", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png", "paint_name": "★ Specialist Gloves | Buckshot" }, { "weapon_defindex": 5034, "paint": "10063", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png", "paint_name": "★ Specialist Gloves | Fade" }, { "weapon_defindex": 5034, "paint": "10064", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png", "paint_name": "★ Specialist Gloves | Mogul" }, { "weapon_defindex": 5034, "paint": "10065", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png", "paint_name": "★ Specialist Gloves | Marble Fade" }, { "weapon_defindex": 5034, "paint": "10066", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png", "paint_name": "★ Specialist Gloves | Lt. Commander" }, { "weapon_defindex": 5034, "paint": "10067", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png", "paint_name": "★ Specialist Gloves | Tiger Strike" }, { "weapon_defindex": 5034, "paint": "10068", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png", "paint_name": "★ Specialist Gloves | Field Agent" }, { "weapon_defindex": 5035, "paint": "10057", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png", "paint_name": "★ Hydra Gloves | Emerald" }, { "weapon_defindex": 5035, "paint": "10058", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png", "paint_name": "★ Hydra Gloves | Mangrove" }, { "weapon_defindex": 5035, "paint": "10059", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png", "paint_name": "★ Hydra Gloves | Rattler" }, { "weapon_defindex": 5035, "paint": "10060", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png", "paint_name": "★ Hydra Gloves | Case Hardened" } -] +] \ No newline at end of file diff --git a/resources/json/keychains.json b/resources/json/keychains.json new file mode 100644 index 0000000..fd70fa8 --- /dev/null +++ b/resources/json/keychains.json @@ -0,0 +1,167 @@ +[ + { + "id": "1", + "name": "Charm | Lil' Ava", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-1.png" + }, + { + "id": "2", + "name": "Charm | That's Bananas", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-2.png" + }, + { + "id": "3", + "name": "Charm | Lil' Whiskers", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-3.png" + }, + { + "id": "4", + "name": "Charm | Lil' Sandy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-4.png" + }, + { + "id": "5", + "name": "Charm | Chicken Lil'", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-5.png" + }, + { + "id": "6", + "name": "Charm | Lil' Crass", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-6.png" + }, + { + "id": "7", + "name": "Charm | Hot Howl", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-7.png" + }, + { + "id": "8", + "name": "Charm | Big Kev", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-8.png" + }, + { + "id": "9", + "name": "Charm | Lil' Monster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-9.png" + }, + { + "id": "10", + "name": "Charm | Hot Sauce", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-10.png" + }, + { + "id": "11", + "name": "Charm | Diamond Dog", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-11.png" + }, + { + "id": "12", + "name": "Charm | Pinch O' Salt", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-12.png" + }, + { + "id": "13", + "name": "Charm | Diner Dog", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-13.png" + }, + { + "id": "14", + "name": "Charm | Lil' Teacup", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-14.png" + }, + { + "id": "15", + "name": "Charm | Lil' SAS", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-15.png" + }, + { + "id": "16", + "name": "Charm | Hot Wurst", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-16.png" + }, + { + "id": "17", + "name": "Charm | Baby's AK", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-17.png" + }, + { + "id": "18", + "name": "Charm | Die-cast AK", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-18.png" + }, + { + "id": "19", + "name": "Charm | Pocket AWP", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-19.png" + }, + { + "id": "20", + "name": "Charm | Titeenium AWP", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-20.png" + }, + { + "id": "21", + "name": "Charm | Baby Karat CT", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-21.png" + }, + { + "id": "22", + "name": "Charm | Whittle Knife", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-22.png" + }, + { + "id": "23", + "name": "Charm | POP Art", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-23.png" + }, + { + "id": "24", + "name": "Charm | Lil' Squirt", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-24.png" + }, + { + "id": "25", + "name": "Charm | Disco MAC", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-25.png" + }, + { + "id": "26", + "name": "Charm | Backsplash", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-26.png" + }, + { + "id": "27", + "name": "Charm | Lil' Cap Gun", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-27.png" + }, + { + "id": "28", + "name": "Charm | Hot Hands", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-28.png" + }, + { + "id": "29", + "name": "Charm | Semi-Precious", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-29.png" + }, + { + "id": "30", + "name": "Charm | Baby Karat T", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-30.png" + }, + { + "id": "31", + "name": "Charm | Glamour Shot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-31.png" + }, + { + "id": "32", + "name": "Charm | Stitch-Loaded", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-32.png" + }, + { + "id": "33", + "name": "Charm | Lil' Squatch", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png" + } +] \ No newline at end of file diff --git a/resources/json/music.json b/resources/json/music.json index f32f6ba..440e88e 100755 --- a/resources/json/music.json +++ b/resources/json/music.json @@ -2,366 +2,406 @@ { "id": "3", "name": "Music Kit | Daniel Sadowski, Crimson Assault", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-3.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-3.png" }, { "id": "4", "name": "Music Kit | Noisia, Sharpened", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-4.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-4.png" }, { "id": "5", "name": "Music Kit | Robert Allaire, Insurgency", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-5.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-5.png" }, { "id": "6", "name": "Music Kit | Sean Murray, A*D*8", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-6.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-6.png" }, { "id": "7", "name": "Music Kit | Feed Me, High Noon", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-7.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-7.png" }, { "id": "8", "name": "Music Kit | Dren, Death's Head Demolition", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-8.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-8.png" }, { "id": "9", "name": "Music Kit | Austin Wintory, Desert Fire", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-9.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-9.png" }, { "id": "10", "name": "Music Kit | Sasha, LNOE", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-10.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-10.png" }, { "id": "11", "name": "Music Kit | Skog, Metal", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-11.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-11.png" }, { "id": "12", "name": "Music Kit | Midnight Riders, All I Want for Christmas", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-12.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-12.png" }, { "id": "13", "name": "Music Kit | Matt Lange, IsoRhythm", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-13.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-13.png" }, { "id": "14", "name": "Music Kit | Mateo Messina, For No Mankind", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-14.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-14.png" }, { "id": "15", "name": "Music Kit | Various Artists, Hotline Miami", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-15.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-15.png" }, { "id": "16", "name": "Music Kit | Daniel Sadowski, Total Domination", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-16.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-16.png" }, { "id": "17", "name": "Music Kit | Damjan Mravunac, The Talos Principle", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-17.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-17.png" }, { "id": "18", "name": "Music Kit | Proxy, Battlepack", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-18.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-18.png" }, { "id": "19", "name": "Music Kit | Ki:Theory, MOLOTOV", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-19.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-19.png" }, { "id": "20", "name": "Music Kit | Troels Folmann, Uber Blasto Phone", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-20.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-20.png" }, { "id": "21", "name": "Music Kit | Kelly Bailey, Hazardous Environments", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-21.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-21.png" }, { "id": "22", "name": "Music Kit | Skog, II-Headshot", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-22.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-22.png" }, { "id": "23", "name": "Music Kit | Daniel Sadowski, The 8-Bit Kit", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-23.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-23.png" }, { "id": "24", "name": "Music Kit | AWOLNATION, I Am", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-24.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-24.png" }, { "id": "25", "name": "Music Kit | Mord Fustang, Diamonds", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-25.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-25.png" }, { "id": "26", "name": "Music Kit | Michael Bross, Invasion!", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-26.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-26.png" }, { "id": "27", "name": "Music Kit | Ian Hultquist, Lion's Mouth", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-27.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-27.png" }, { "id": "28", "name": "Music Kit | New Beat Fund, Sponge Fingerz", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-28.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-28.png" }, { "id": "29", "name": "Music Kit | Beartooth, Disgusting", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-29.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-29.png" }, { "id": "30", "name": "Music Kit | Lennie Moore, Java Havana Funkaloo", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-30.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-30.png" }, { "id": "31", "name": "Music Kit | Darude, Moments CS:GO", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-31.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-31.png" }, { "id": "32", "name": "Music Kit | Beartooth, Aggressive", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-32.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-32.png" }, { "id": "33", "name": "Music Kit | Blitz Kids, The Good Youth", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-33.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-33.png" }, { "id": "34", "name": "Music Kit | Hundredth, FREE", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-34.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-34.png" }, { "id": "35", "name": "Music Kit | Neck Deep, Life's Not Out To Get You", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-35.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-35.png" }, { "id": "36", "name": "Music Kit | Roam, Backbone", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-36.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-36.png" }, { "id": "37", "name": "Music Kit | Twin Atlantic, GLA", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-37.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-37.png" }, { "id": "38", "name": "Music Kit | Skog, III-Arena", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-38.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-38.png" }, { "id": "39", "name": "Music Kit | The Verkkars, EZ4ENCE", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-39.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-39.png" }, { "id": "40", "name": "Halo, The Master Chief Collection", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-40.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-40.png" }, { "id": "41", "name": "Music Kit | Scarlxrd: King, Scar", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-41.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-41.png" }, { "id": "42", "name": "Half-Life: Alyx, Anti-Citizen", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-42.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-42.png" }, { "id": "43", "name": "Music Kit | Austin Wintory, Bachram", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-43.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-43.png" }, { "id": "44", "name": "Music Kit | Dren, Gunman Taco Truck", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-44.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-44.png" }, { "id": "45", "name": "Music Kit | Daniel Sadowski, Eye of the Dragon", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-45.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-45.png" }, { "id": "46", "name": "Music Kit | Tree Adams and Ben Bromfield, M.U.D.D. FORCE", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-46.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-46.png" }, { "id": "47", "name": "Music Kit | Tim Huling, Neo Noir", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-47.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-47.png" }, { "id": "48", "name": "Music Kit | Sam Marshall, Bodacious", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-48.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-48.png" }, { "id": "49", "name": "Music Kit | Matt Levine, Drifter", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-49.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-49.png" }, { "id": "50", "name": "Music Kit | Amon Tobin, All for Dust", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-50.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-50.png" }, { "id": "51", "name": "Darren Korb, Hades Music Kit", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-51.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-51.png" }, { "id": "52", "name": "Music Kit | Neck Deep, The Lowlife Pack", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-52.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-52.png" }, { "id": "53", "name": "Music Kit | Scarlxrd, CHAIN$AW.LXADXUT.", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-53.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-53.png" }, { "id": "54", "name": "Music Kit | Austin Wintory, Mocha Petal", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-54.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-54.png" }, { "id": "55", "name": "Music Kit | Chipzel, ~Yellow Magic~", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-55.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-55.png" }, { "id": "56", "name": "Music Kit | Freaky DNA, Vici", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-56.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-56.png" }, { "id": "57", "name": "Music Kit | Jesse Harlin, Astro Bellum", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-57.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-57.png" }, { "id": "58", "name": "Music Kit | Laura Shigihara: Work Hard, Play Hard", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-58.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-58.png" }, { "id": "59", "name": "Music Kit | Sarah Schachner, KOLIBRI", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-59.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-59.png" }, { "id": "60", "name": "Music Kit | bbno$, u mad!", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-60.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-60.png" }, { "id": "61", "name": "Music Kit | The Verkkars & n0thing, Flashbang Dance", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-61.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-61.png" }, { "id": "62", "name": "Music Kit | 3kliksphilip, Heading for the Source", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-62.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-62.png" }, { "id": "63", "name": "Music Kit | Humanity's Last Breath, Void", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-63.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-63.png" }, { "id": "64", "name": "Music Kit | Juelz, Shooters", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-64.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-64.png" }, { "id": "65", "name": "Music Kit | Knock2, dashstar*", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-65.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-65.png" }, { "id": "66", "name": "Music Kit | Meechy Darko, Gothic Luxury", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-66.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-66.png" }, { "id": "67", "name": "Music Kit | Sullivan King, Lock Me Up", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-67.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-67.png" }, { "id": "68", "name": "Music Kit | Perfect World, 花脸 Hua Lian (Painted Face)", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-68.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-68.png" }, { "id": "69", "name": "Music Kit | Denzel Curry, ULTIMATE", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-69.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-69.png" }, { "id": "71", "name": "Music Kit | DRYDEN, Feel The Power", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png" }, { "id": "72", "name": "Music Kit | ISOxo, inhuman", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png" }, { "id": "73", "name": "Music Kit | KILL SCRIPT, All Night", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png" }, { "id": "74", "name": "Music Kit | Knock2, Make U SWEAT!", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png" }, { "id": "75", "name": "Music Kit | Rad Cat, Reason", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png" }, { "id": "76", "name": "Music Kit | TWERL, Ekko & Sidetrack, Under Bright Lights", - "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png" + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png" + }, + { + "id": "78", + "name": "Music Kit | Austin Wintory, The Devil Went Clubbing In Georgia", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-78.png" + }, + { + "id": "79", + "name": "Music Kit | Ben Bromfield, Rabbit Hole", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-79.png" + }, + { + "id": "80", + "name": "Music Kit | Daniel Sadowski, Dead Shot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-80.png" + }, + { + "id": "81", + "name": "Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png" + }, + { + "id": "82", + "name": "Music Kit | Matt Levine, Agency", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png" + }, + { + "id": "83", + "name": "Music Kit | Sam Marshall, Clutch", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-83.png" + }, + { + "id": "84", + "name": "Music Kit | Tim Huling, Devil's Paintbrush", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png" + }, + { + "id": "85", + "name": "Music Kit | Tree Adams, Seventh Moon", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" } -] +] \ No newline at end of file diff --git a/resources/json/skins.json b/resources/json/skins.json index 538459f..896d1b5 100755 --- a/resources/json/skins.json +++ b/resources/json/skins.json @@ -4,7 +4,7 @@ "weapon_name": "weapon_deagle", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle.png", - "paint_name": "Desert Eagle | Default" + "paint_name": "Desert Eagle| Default" }, { "weapon_defindex": 1, @@ -41,6 +41,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-90.png", "paint_name": "Desert Eagle | Mudder" }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "114", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-114.png", + "paint_name": "Desert Eagle | Calligraffiti" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "138", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-138.png", + "paint_name": "Desert Eagle | Tilted" + }, { "weapon_defindex": 1, "weapon_name": "weapon_deagle", @@ -202,6 +216,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-841.png", "paint_name": "Desert Eagle | Light Rail" }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "938", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-938.png", + "paint_name": "Desert Eagle | Starcade" + }, { "weapon_defindex": 1, "weapon_name": "weapon_deagle", @@ -237,6 +258,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-1050.png", "paint_name": "Desert Eagle | Trigger Discipline" }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "1054", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-1054.png", + "paint_name": "Desert Eagle | Heat Treated" + }, { "weapon_defindex": 1, "weapon_name": "weapon_deagle", @@ -256,7 +284,7 @@ "weapon_name": "weapon_elite", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite.png", - "paint_name": "Dual Berettas | Default" + "paint_name": "Dual Berettas| Default" }, { "weapon_defindex": 2, @@ -286,6 +314,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-47.png", "paint_name": "Dual Berettas | Colony" }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "112", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-112.png", + "paint_name": "Dual Berettas | Hydro Strike" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "139", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-139.png", + "paint_name": "Dual Berettas | Sweet Little Angels" + }, { "weapon_defindex": 2, "weapon_name": "weapon_elite", @@ -508,7 +550,7 @@ "weapon_name": "weapon_fiveseven", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven.png", - "paint_name": "Five-SeveN | Default" + "paint_name": "Five-SeveN| Default" }, { "weapon_defindex": 3, @@ -692,6 +734,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-784.png", "paint_name": "Five-SeveN | Coolant" }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "831", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-831.png", + "paint_name": "Five-SeveN | Heat Treated" + }, { "weapon_defindex": 3, "weapon_name": "weapon_fiveseven", @@ -727,6 +776,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1002.png", "paint_name": "Five-SeveN | Berries And Cherries" }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "1062", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1062.png", + "paint_name": "Five-SeveN | Midnight Paintover" + }, { "weapon_defindex": 3, "weapon_name": "weapon_fiveseven", @@ -760,7 +816,7 @@ "weapon_name": "weapon_glock", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock.png", - "paint_name": "Glock-18 | Default" + "paint_name": "Glock-18| Default" }, { "weapon_defindex": 4, @@ -804,6 +860,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-84.png", "paint_name": "Glock-18 | Pink DDPAT" }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "129", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-129.png", + "paint_name": "Glock-18 | Gold Toof" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "152", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-152.png", + "paint_name": "Glock-18 | Teal Graf" + }, { "weapon_defindex": 4, "weapon_name": "weapon_glock", @@ -965,6 +1035,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-808.png", "paint_name": "Glock-18 | Oxide Blaze" }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "832", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-832.png", + "paint_name": "Glock-18 | AXIA" + }, { "weapon_defindex": 4, "weapon_name": "weapon_glock", @@ -1089,7 +1166,7 @@ "weapon_name": "weapon_ak47", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47.png", - "paint_name": "AK-47 | Default" + "paint_name": "AK-47| Default" }, { "weapon_defindex": 7, @@ -1112,6 +1189,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-72.png", "paint_name": "AK-47 | Safari Mesh" }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "113", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-113.png", + "paint_name": "AK-47 | The Outsiders" + }, { "weapon_defindex": 7, "weapon_name": "weapon_ak47", @@ -1119,6 +1203,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-122.png", "paint_name": "AK-47 | Jungle Spray" }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "142", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-142.png", + "paint_name": "AK-47 | B the Monster" + }, { "weapon_defindex": 7, "weapon_name": "weapon_ak47", @@ -1322,6 +1413,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-885.png", "paint_name": "AK-47 | Rat Rod" }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "912", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-912.png", + "paint_name": "AK-47 | Crossfade" + }, { "weapon_defindex": 7, "weapon_name": "weapon_ak47", @@ -1399,6 +1497,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1171.png", "paint_name": "AK-47 | Inheritance" }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1179", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1179.png", + "paint_name": "AK-47 | Olive Polycam" + }, { "weapon_defindex": 7, "weapon_name": "weapon_ak47", @@ -1418,7 +1523,7 @@ "weapon_name": "weapon_aug", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug.png", - "paint_name": "AUG | Default" + "paint_name": "AUG| Default" }, { "weapon_defindex": 8, @@ -1476,6 +1581,27 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-110.png", "paint_name": "AUG | Condemned" }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "121", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-121.png", + "paint_name": "AUG | Luxe Trim" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "134", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-134.png", + "paint_name": "AUG | Eye of Zapems" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "173", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-173.png", + "paint_name": "AUG | Lil' Pig" + }, { "weapon_defindex": 8, "weapon_name": "weapon_aug", @@ -1684,7 +1810,7 @@ "weapon_name": "weapon_awp", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp.png", - "paint_name": "AWP | Default" + "paint_name": "AWP| Default" }, { "weapon_defindex": 9, @@ -1714,6 +1840,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-84.png", "paint_name": "AWP | Pink DDPAT" }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "137", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-137.png", + "paint_name": "AWP | Crakow!" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "163", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-163.png", + "paint_name": "AWP | CMYK" + }, { "weapon_defindex": 9, "weapon_name": "weapon_awp", @@ -1971,7 +2111,7 @@ "weapon_name": "weapon_famas", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas.png", - "paint_name": "FAMAS | Default" + "paint_name": "FAMAS| Default" }, { "weapon_defindex": 10, @@ -2071,6 +2211,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-429.png", "paint_name": "FAMAS | Djinn" }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "461", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-461.png", + "paint_name": "FAMAS | Half Sleeve" + }, { "weapon_defindex": 10, "weapon_name": "weapon_famas", @@ -2141,6 +2288,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-869.png", "paint_name": "FAMAS | Sundown" }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "882", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-882.png", + "paint_name": "FAMAS | Halftone Wash" + }, { "weapon_defindex": 10, "weapon_name": "weapon_famas", @@ -2209,7 +2363,7 @@ "weapon_name": "weapon_g3sg1", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1.png", - "paint_name": "G3SG1 | Default" + "paint_name": "G3SG1| Default" }, { "weapon_defindex": 11, @@ -2412,7 +2566,7 @@ "weapon_name": "weapon_galilar", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar.png", - "paint_name": "Galil AR | Default" + "paint_name": "Galil AR| Default" }, { "weapon_defindex": 13, @@ -2470,6 +2624,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-237.png", "paint_name": "Galil AR | Urban Rubble" }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "239", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-239.png", + "paint_name": "Galil AR | Metallic Squeezer" + }, { "weapon_defindex": 13, "weapon_name": "weapon_galilar", @@ -2596,6 +2757,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-842.png", "paint_name": "Galil AR | Akoben" }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "939", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-939.png", + "paint_name": "Galil AR | NV" + }, { "weapon_defindex": 13, "weapon_name": "weapon_galilar", @@ -2645,12 +2813,19 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1147.png", "paint_name": "Galil AR | Destroyer" }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "1178", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1178.png", + "paint_name": "Galil AR | Rainbow Spoon" + }, { "weapon_defindex": 14, "weapon_name": "weapon_m249", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249.png", - "paint_name": "M249 | Default" + "paint_name": "M249| Default" }, { "weapon_defindex": 14, @@ -2666,6 +2841,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-75.png", "paint_name": "M249 | Blizzard Marbleized" }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "120", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-120.png", + "paint_name": "M249 | Hypnosis" + }, { "weapon_defindex": 14, "weapon_name": "weapon_m249", @@ -2750,6 +2932,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-827.png", "paint_name": "M249 | Humidor" }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "875", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-875.png", + "paint_name": "M249 | Spectrogram" + }, { "weapon_defindex": 14, "weapon_name": "weapon_m249", @@ -2804,7 +2993,7 @@ "weapon_name": "weapon_m4a1", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1.png", - "paint_name": "M4A4 | Default" + "paint_name": "M4A4| Default" }, { "weapon_defindex": 16, @@ -2834,6 +3023,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-101.png", "paint_name": "M4A4 | Tornado" }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "118", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-118.png", + "paint_name": "M4A4 | Turbine" + }, { "weapon_defindex": 16, "weapon_name": "weapon_m4a1", @@ -3009,6 +3205,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-844.png", "paint_name": "M4A4 | The Emperor" }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "874", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-874.png", + "paint_name": "M4A4 | Polysoup" + }, { "weapon_defindex": 16, "weapon_name": "weapon_m4a1", @@ -3091,7 +3294,7 @@ "weapon_name": "weapon_mac10", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10.png", - "paint_name": "MAC-10 | Default" + "paint_name": "MAC-10| Default" }, { "weapon_defindex": 17, @@ -3142,6 +3345,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-101.png", "paint_name": "MAC-10 | Tornado" }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "126", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-126.png", + "paint_name": "MAC-10 | Saibā Oni" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "140", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-140.png", + "paint_name": "MAC-10 | Pipsqueak" + }, { "weapon_defindex": 17, "weapon_name": "weapon_mac10", @@ -3420,7 +3637,7 @@ "weapon_name": "weapon_p90", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90.png", - "paint_name": "P90 | Default" + "paint_name": "P90| Default" }, { "weapon_defindex": 19, @@ -3457,6 +3674,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-124.png", "paint_name": "P90 | Sand Spray" }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "127", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-127.png", + "paint_name": "P90 | Randy Rush" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "133", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-133.png", + "paint_name": "P90 | Wash me" + }, { "weapon_defindex": 19, "weapon_name": "weapon_p90", @@ -3646,6 +3877,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-925.png", "paint_name": "P90 | Desert DDPAT" }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "936", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-936.png", + "paint_name": "P90 | Attack Vector" + }, { "weapon_defindex": 19, "weapon_name": "weapon_p90", @@ -3714,7 +3952,14 @@ "weapon_name": "weapon_mp5sd", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd.png", - "paint_name": "MP5-SD | Default" + "paint_name": "MP5-SD| Default" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "161", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-161.png", + "paint_name": "MP5-SD | Neon Squeezer" }, { "weapon_defindex": 23, @@ -3723,6 +3968,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-753.png", "paint_name": "MP5-SD | Dirt Drop" }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "768", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-768.png", + "paint_name": "MP5-SD | Savannah Halftone" + }, { "weapon_defindex": 23, "weapon_name": "weapon_mp5sd", @@ -3821,6 +4073,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-1137.png", "paint_name": "MP5-SD | Necro Jr." }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "1180", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-1180.png", + "paint_name": "MP5-SD | Statics" + }, { "weapon_defindex": 23, "weapon_name": "weapon_mp5sd", @@ -3833,7 +4092,7 @@ "weapon_name": "weapon_ump45", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45.png", - "paint_name": "UMP-45 | Default" + "paint_name": "UMP-45| Default" }, { "weapon_defindex": 24, @@ -3877,6 +4136,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-93.png", "paint_name": "UMP-45 | Caramel" }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "131", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-131.png", + "paint_name": "UMP-45 | Neo-Noir" + }, { "weapon_defindex": 24, "weapon_name": "weapon_ump45", @@ -3933,6 +4199,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-392.png", "paint_name": "UMP-45 | Delusion" }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "412", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-412.png", + "paint_name": "UMP-45 | Crimson Foil" + }, { "weapon_defindex": 24, "weapon_name": "weapon_ump45", @@ -4099,7 +4372,7 @@ "weapon_name": "weapon_xm1014", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014.png", - "paint_name": "XM1014 | Default" + "paint_name": "XM1014| Default" }, { "weapon_defindex": 25, @@ -4129,6 +4402,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-135.png", "paint_name": "XM1014 | Urban Perforated" }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "146", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-146.png", + "paint_name": "XM1014 | Monster Melt" + }, { "weapon_defindex": 25, "weapon_name": "weapon_xm1014", @@ -4276,6 +4556,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-821.png", "paint_name": "XM1014 | Elegant Vines" }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "834", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-834.png", + "paint_name": "XM1014 | Halftone Shift" + }, { "weapon_defindex": 25, "weapon_name": "weapon_xm1014", @@ -4351,7 +4638,7 @@ "weapon_name": "weapon_bizon", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon.png", - "paint_name": "PP-Bizon | Default" + "paint_name": "PP-Bizon| Default" }, { "weapon_defindex": 26, @@ -4528,6 +4815,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-692.png", "paint_name": "PP-Bizon | Night Riot" }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "770", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-770.png", + "paint_name": "PP-Bizon | Cold Cell" + }, { "weapon_defindex": 26, "weapon_name": "weapon_bizon", @@ -4589,7 +4883,7 @@ "weapon_name": "weapon_mag7", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7.png", - "paint_name": "MAG-7 | Default" + "paint_name": "MAG-7| Default" }, { "weapon_defindex": 27, @@ -4752,6 +5046,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-754.png", "paint_name": "MAG-7 | Rust Coat" }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "773", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-773.png", + "paint_name": "MAG-7 | Wildwood" + }, { "weapon_defindex": 27, "weapon_name": "weapon_mag7", @@ -4827,7 +5128,7 @@ "weapon_name": "weapon_negev", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev.png", - "paint_name": "Negev | Default" + "paint_name": "Negev| Default" }, { "weapon_defindex": 28, @@ -4836,6 +5137,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-28.png", "paint_name": "Negev | Anodized Navy" }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "144", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-144.png", + "paint_name": "Negev | Wall Bang" + }, { "weapon_defindex": 28, "weapon_name": "weapon_negev", @@ -4988,7 +5296,7 @@ "weapon_name": "weapon_sawedoff", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff.png", - "paint_name": "Sawed-Off | Default" + "paint_name": "Sawed-Off| Default" }, { "weapon_defindex": 29, @@ -5219,7 +5527,7 @@ "weapon_name": "weapon_tec9", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9.png", - "paint_name": "Tec-9 | Default" + "paint_name": "Tec-9| Default" }, { "weapon_defindex": 30, @@ -5410,6 +5718,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-738.png", "paint_name": "Tec-9 | Orange Murano" }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "766", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-766.png", + "paint_name": "Tec-9 | Tiger Stencil" + }, { "weapon_defindex": 30, "weapon_name": "weapon_tec9", @@ -5499,7 +5814,14 @@ "weapon_name": "weapon_taser", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_taser.png", - "paint_name": "Zeus x27 | Default" + "paint_name": "Zeus x27| Default" + }, + { + "weapon_defindex": 31, + "weapon_name": "weapon_taser", + "paint": "292", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_taser-292.png", + "paint_name": "Zeus x27 | Dragon Snore" }, { "weapon_defindex": 31, @@ -5513,7 +5835,7 @@ "weapon_name": "weapon_hkp2000", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000.png", - "paint_name": "P2000 | Default" + "paint_name": "P2000| Default" }, { "weapon_defindex": 32, @@ -5669,6 +5991,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-700.png", "paint_name": "P2000 | Urban Hazard" }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "878", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-878.png", + "paint_name": "P2000 | Coral Halftone" + }, { "weapon_defindex": 32, "weapon_name": "weapon_hkp2000", @@ -5730,7 +6059,7 @@ "weapon_name": "weapon_mp7", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7.png", - "paint_name": "MP7 | Default" + "paint_name": "MP7| Default" }, { "weapon_defindex": 33, @@ -5928,6 +6257,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-935.png", "paint_name": "MP7 | Prey" }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "940", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-940.png", + "paint_name": "MP7 | Astrolabe" + }, { "weapon_defindex": 33, "weapon_name": "weapon_mp7", @@ -5975,7 +6311,7 @@ "weapon_name": "weapon_mp9", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9.png", - "paint_name": "MP9 | Default" + "paint_name": "MP9| Default" }, { "weapon_defindex": 34, @@ -6047,6 +6383,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-329.png", "paint_name": "MP9 | Dark Age" }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "331", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-331.png", + "paint_name": "MP9 | Arctic Tri-Tone" + }, { "weapon_defindex": 34, "weapon_name": "weapon_mp9", @@ -6213,7 +6556,7 @@ "weapon_name": "weapon_nova", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova.png", - "paint_name": "Nova | Default" + "paint_name": "Nova| Default" }, { "weapon_defindex": 35, @@ -6250,6 +6593,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-107.png", "paint_name": "Nova | Polar Mesh" }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "145", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-145.png", + "paint_name": "Nova | Wurst Hölle" + }, { "weapon_defindex": 35, "weapon_name": "weapon_nova", @@ -6348,6 +6698,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-323.png", "paint_name": "Nova | Rust Coat" }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "324", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-324.png", + "paint_name": "Nova | Yorkshire" + }, { "weapon_defindex": 35, "weapon_name": "weapon_nova", @@ -6479,7 +6836,7 @@ "weapon_name": "weapon_p250", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250.png", - "paint_name": "P250 | Default" + "paint_name": "P250| Default" }, { "weapon_defindex": 36, @@ -6537,6 +6894,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-125.png", "paint_name": "P250 | X-Ray" }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "130", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-130.png", + "paint_name": "P250 | Epicenter" + }, { "weapon_defindex": 36, "weapon_name": "weapon_p250", @@ -6705,6 +7069,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-749.png", "paint_name": "P250 | Vino Primo" }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "774", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-774.png", + "paint_name": "P250 | Small Game" + }, { "weapon_defindex": 36, "weapon_name": "weapon_p250", @@ -6815,7 +7186,7 @@ "weapon_name": "weapon_scar20", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20.png", - "paint_name": "SCAR-20 | Default" + "paint_name": "SCAR-20| Default" }, { "weapon_defindex": 38, @@ -6845,6 +7216,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-116.png", "paint_name": "SCAR-20 | Sand Mesh" }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "117", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-117.png", + "paint_name": "SCAR-20 | Trail Blazer" + }, { "weapon_defindex": 38, "weapon_name": "weapon_scar20", @@ -6957,6 +7335,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-865.png", "paint_name": "SCAR-20 | Stone Mosaico" }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "883", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-883.png", + "paint_name": "SCAR-20 | Wild Berry" + }, { "weapon_defindex": 38, "weapon_name": "weapon_scar20", @@ -7004,7 +7389,7 @@ "weapon_name": "weapon_sg556", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556.png", - "paint_name": "SG 553 | Default" + "paint_name": "SG 553| Default" }, { "weapon_defindex": 39, @@ -7188,6 +7573,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-897.png", "paint_name": "SG 553 | Colony IV" }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "901", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-901.png", + "paint_name": "SG 553 | Berry Gel Coat" + }, { "weapon_defindex": 39, "weapon_name": "weapon_sg556", @@ -7249,7 +7641,7 @@ "weapon_name": "weapon_ssg08", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08.png", - "paint_name": "SSG 08 | Default" + "paint_name": "SSG 08| Default" }, { "weapon_defindex": 40, @@ -7286,6 +7678,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-99.png", "paint_name": "SSG 08 | Sand Dune" }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "128", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-128.png", + "paint_name": "SSG 08 | Rapid Transit" + }, { "weapon_defindex": 40, "weapon_name": "weapon_ssg08", @@ -7349,6 +7748,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-503.png", "paint_name": "SSG 08 | Big Iron" }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "513", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-513.png", + "paint_name": "SSG 08 | Zeno" + }, { "weapon_defindex": 40, "weapon_name": "weapon_ssg08", @@ -7405,6 +7811,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-868.png", "paint_name": "SSG 08 | Sea Calico" }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "877", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-877.png", + "paint_name": "SSG 08 | Halftone Whorl" + }, { "weapon_defindex": 40, "weapon_name": "weapon_ssg08", @@ -7487,7 +7900,7 @@ "weapon_name": "weapon_m4a1_silencer", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer.png", - "paint_name": "M4A1-S | Default" + "paint_name": "M4A1-S| Default" }, { "weapon_defindex": 60, @@ -7503,6 +7916,20 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-77.png", "paint_name": "M4A1-S | Boreal Forest" }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "106", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-106.png", + "paint_name": "M4A1-S | Vaporwave" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "160", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-160.png", + "paint_name": "M4A1-S | Wash me plz" + }, { "weapon_defindex": 60, "weapon_name": "weapon_m4a1_silencer", @@ -7720,6 +8147,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1166.png", "paint_name": "M4A1-S | Black Lotus" }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1177", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1177.png", + "paint_name": "M4A1-S | Fade" + }, { "weapon_defindex": 60, "weapon_name": "weapon_m4a1_silencer", @@ -7739,7 +8173,7 @@ "weapon_name": "weapon_usp_silencer", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer.png", - "paint_name": "USP-S | Default" + "paint_name": "USP-S| Default" }, { "weapon_defindex": 61, @@ -7755,6 +8189,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-60.png", "paint_name": "USP-S | Dark Water" }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "115", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-115.png", + "paint_name": "USP-S | 27" + }, { "weapon_defindex": 61, "weapon_name": "weapon_usp_silencer", @@ -7916,6 +8357,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-818.png", "paint_name": "USP-S | Purple DDPAT" }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "830", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-830.png", + "paint_name": "USP-S | Alpine Camo" + }, { "weapon_defindex": 61, "weapon_name": "weapon_usp_silencer", @@ -7998,7 +8446,7 @@ "weapon_name": "weapon_cz75a", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a.png", - "paint_name": "CZ75-Auto | Default" + "paint_name": "CZ75-Auto| Default" }, { "weapon_defindex": 63, @@ -8189,6 +8637,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-933.png", "paint_name": "CZ75-Auto | Midnight Palm" }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "937", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-937.png", + "paint_name": "CZ75-Auto | Slalom" + }, { "weapon_defindex": 63, "weapon_name": "weapon_cz75a", @@ -8229,7 +8684,7 @@ "weapon_name": "weapon_revolver", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver.png", - "paint_name": "R8 Revolver | Default" + "paint_name": "R8 Revolver| Default" }, { "weapon_defindex": 64, @@ -8259,6 +8714,13 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-40.png", "paint_name": "R8 Revolver | Night" }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "123", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-123.png", + "paint_name": "R8 Revolver | Tango" + }, { "weapon_defindex": 64, "weapon_name": "weapon_revolver", @@ -8383,7 +8845,7 @@ "weapon_name": "weapon_bayonet", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet.png", - "paint_name": "★ Bayonet | Default" + "paint_name": "★ Bayonet| Default" }, { "weapon_defindex": 500, @@ -8628,7 +9090,7 @@ "weapon_name": "weapon_knife_css", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css.png", - "paint_name": "★ Classic Knife | Default" + "paint_name": "★ Classic Knife| Default" }, { "weapon_defindex": 503, @@ -8719,7 +9181,7 @@ "weapon_name": "weapon_knife_flip", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip.png", - "paint_name": "★ Flip Knife | Default" + "paint_name": "★ Flip Knife| Default" }, { "weapon_defindex": 505, @@ -8964,7 +9426,7 @@ "weapon_name": "weapon_knife_gut", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut.png", - "paint_name": "★ Gut Knife | Default" + "paint_name": "★ Gut Knife| Default" }, { "weapon_defindex": 506, @@ -9209,7 +9671,7 @@ "weapon_name": "weapon_knife_karambit", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit.png", - "paint_name": "★ Karambit | Default" + "paint_name": "★ Karambit| Default" }, { "weapon_defindex": 507, @@ -9454,7 +9916,7 @@ "weapon_name": "weapon_knife_m9_bayonet", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet.png", - "paint_name": "★ M9 Bayonet | Default" + "paint_name": "★ M9 Bayonet| Default" }, { "weapon_defindex": 508, @@ -9699,7 +10161,7 @@ "weapon_name": "weapon_knife_tactical", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical.png", - "paint_name": "★ Huntsman Knife | Default" + "paint_name": "★ Huntsman Knife| Default" }, { "weapon_defindex": 509, @@ -9944,7 +10406,7 @@ "weapon_name": "weapon_knife_falchion", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion.png", - "paint_name": "★ Falchion Knife | Default" + "paint_name": "★ Falchion Knife| Default" }, { "weapon_defindex": 512, @@ -10189,7 +10651,7 @@ "weapon_name": "weapon_knife_survival_bowie", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie.png", - "paint_name": "★ Bowie Knife | Default" + "paint_name": "★ Bowie Knife| Default" }, { "weapon_defindex": 514, @@ -10434,7 +10896,7 @@ "weapon_name": "weapon_knife_butterfly", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly.png", - "paint_name": "★ Butterfly Knife | Default" + "paint_name": "★ Butterfly Knife| Default" }, { "weapon_defindex": 515, @@ -10679,7 +11141,7 @@ "weapon_name": "weapon_knife_push", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push.png", - "paint_name": "★ Shadow Daggers | Default" + "paint_name": "★ Shadow Daggers| Default" }, { "weapon_defindex": 516, @@ -10924,7 +11386,7 @@ "weapon_name": "weapon_knife_cord", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord.png", - "paint_name": "★ Paracord Knife | Default" + "paint_name": "★ Paracord Knife| Default" }, { "weapon_defindex": 517, @@ -11015,7 +11477,7 @@ "weapon_name": "weapon_knife_canis", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis.png", - "paint_name": "★ Survival Knife | Default" + "paint_name": "★ Survival Knife| Default" }, { "weapon_defindex": 518, @@ -11106,7 +11568,7 @@ "weapon_name": "weapon_knife_ursus", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus.png", - "paint_name": "★ Ursus Knife | Default" + "paint_name": "★ Ursus Knife| Default" }, { "weapon_defindex": 519, @@ -11281,7 +11743,7 @@ "weapon_name": "weapon_knife_gypsy_jackknife", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife.png", - "paint_name": "★ Navaja Knife | Default" + "paint_name": "★ Navaja Knife| Default" }, { "weapon_defindex": 520, @@ -11456,7 +11918,7 @@ "weapon_name": "weapon_knife_outdoor", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor.png", - "paint_name": "★ Nomad Knife | Default" + "paint_name": "★ Nomad Knife| Default" }, { "weapon_defindex": 521, @@ -11547,7 +12009,7 @@ "weapon_name": "weapon_knife_stiletto", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto.png", - "paint_name": "★ Stiletto Knife | Default" + "paint_name": "★ Stiletto Knife| Default" }, { "weapon_defindex": 522, @@ -11722,7 +12184,7 @@ "weapon_name": "weapon_knife_widowmaker", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker.png", - "paint_name": "★ Talon Knife | Default" + "paint_name": "★ Talon Knife| Default" }, { "weapon_defindex": 523, @@ -11897,7 +12359,7 @@ "weapon_name": "weapon_knife_skeleton", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton.png", - "paint_name": "★ Skeleton Knife | Default" + "paint_name": "★ Skeleton Knife| Default" }, { "weapon_defindex": 525, @@ -11988,7 +12450,7 @@ "weapon_name": "weapon_knife_kukri", "paint": 0, "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri.png", - "paint_name": "★ Kukri Knife | Default" + "paint_name": "★ Kukri Knife| Default" }, { "weapon_defindex": 526, @@ -12074,4 +12536,4 @@ "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-735.png", "paint_name": "★ Kukri Knife | Night Stripe" } -] +] \ No newline at end of file diff --git a/resources/json/stickers.json b/resources/json/stickers.json new file mode 100644 index 0000000..6b708cf --- /dev/null +++ b/resources/json/stickers.json @@ -0,0 +1,36927 @@ +[ + { + "id": "1", + "name": "Sticker | Shooter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1.png" + }, + { + "id": "2", + "name": "Sticker | Shooter (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2.png" + }, + { + "id": "3", + "name": "Sticker | Shooter Close", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3.png" + }, + { + "id": "4", + "name": "Sticker | Shooter Close (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4.png" + }, + { + "id": "5", + "name": "Sticker | Blue Snowflake", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5.png" + }, + { + "id": "6", + "name": "Sticker | Blue Snowflake (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6.png" + }, + { + "id": "7", + "name": "Sticker | Polar Bears", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7.png" + }, + { + "id": "8", + "name": "Sticker | Polar Bears (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-8.png" + }, + { + "id": "9", + "name": "Sticker | Mountain", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-9.png" + }, + { + "id": "10", + "name": "Sticker | Mountain (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-10.png" + }, + { + "id": "11", + "name": "Sticker | Frosty the Hitman", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-11.png" + }, + { + "id": "12", + "name": "Sticker | Frosty the Hitman (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-12.png" + }, + { + "id": "13", + "name": "Sticker | Lucky 13", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-13.png" + }, + { + "id": "14", + "name": "Sticker | Aces High", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-14.png" + }, + { + "id": "15", + "name": "Sticker | Aces High (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-15.png" + }, + { + "id": "16", + "name": "Sticker | I Conquered", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-16.png" + }, + { + "id": "17", + "name": "Sticker | Seek & Destroy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-17.png" + }, + { + "id": "18", + "name": "Sticker | Black Dog", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-18.png" + }, + { + "id": "19", + "name": "Sticker | Fearsome", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-19.png" + }, + { + "id": "20", + "name": "Sticker | Fearsome (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-20.png" + }, + { + "id": "21", + "name": "Sticker | Cerberus", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-21.png" + }, + { + "id": "22", + "name": "Sticker | Easy Peasy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-22.png" + }, + { + "id": "23", + "name": "Sticker | Luck Skill", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-23.png" + }, + { + "id": "24", + "name": "Sticker | Vigilance", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-24.png" + }, + { + "id": "25", + "name": "Sticker | Vigilance (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-25.png" + }, + { + "id": "26", + "name": "Sticker | Lucky 13 (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-26.png" + }, + { + "id": "27", + "name": "Sticker | Luck Skill (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-27.png" + }, + { + "id": "28", + "name": "Sticker | Blacksite (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-28.png" + }, + { + "id": "31", + "name": "Sticker | Bish (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-31.png" + }, + { + "id": "32", + "name": "Sticker | Bash (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-32.png" + }, + { + "id": "33", + "name": "Sticker | Bosh (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-33.png" + }, + { + "id": "34", + "name": "Sticker | Banana", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-34.png" + }, + { + "id": "35", + "name": "Sticker | Bomb Code", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-35.png" + }, + { + "id": "36", + "name": "Sticker | Chicken Lover", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-36.png" + }, + { + "id": "37", + "name": "Sticker | Crown (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-37.png" + }, + { + "id": "38", + "name": "Sticker | Good Game", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-38.png" + }, + { + "id": "39", + "name": "Sticker | Good Luck", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-39.png" + }, + { + "id": "40", + "name": "Sticker | Have Fun", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-40.png" + }, + { + "id": "41", + "name": "Sticker | Let's Roll-oll", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-41.png" + }, + { + "id": "42", + "name": "Sticker | Let's Roll-oll (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-42.png" + }, + { + "id": "43", + "name": "Sticker | Metal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-43.png" + }, + { + "id": "44", + "name": "Sticker | Nice Shot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-44.png" + }, + { + "id": "46", + "name": "Sticker | Stupid Banana (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-46.png" + }, + { + "id": "47", + "name": "Sticker | Welcome to the Clutch", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-47.png" + }, + { + "id": "48", + "name": "Sticker | 3DMAX | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-48.png" + }, + { + "id": "49", + "name": "Sticker | 3DMAX (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-49.png" + }, + { + "id": "50", + "name": "Sticker | compLexity Gaming | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-50.png" + }, + { + "id": "51", + "name": "Sticker | compLexity Gaming (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-51.png" + }, + { + "id": "52", + "name": "Sticker | Team Dignitas | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-52.png" + }, + { + "id": "53", + "name": "Sticker | Team Dignitas (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-53.png" + }, + { + "id": "55", + "name": "Sticker | Fnatic | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-55.png" + }, + { + "id": "56", + "name": "Sticker | Fnatic (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-56.png" + }, + { + "id": "57", + "name": "Sticker | HellRaisers | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-57.png" + }, + { + "id": "58", + "name": "Sticker | HellRaisers (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-58.png" + }, + { + "id": "59", + "name": "Sticker | iBUYPOWER | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-59.png" + }, + { + "id": "60", + "name": "Sticker | iBUYPOWER (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-60.png" + }, + { + "id": "61", + "name": "Sticker | Team LDLC.com | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-61.png" + }, + { + "id": "62", + "name": "Sticker | Team LDLC.com (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-62.png" + }, + { + "id": "63", + "name": "Sticker | LGB eSports | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-63.png" + }, + { + "id": "64", + "name": "Sticker | LGB eSports (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-64.png" + }, + { + "id": "65", + "name": "Sticker | mousesports | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-65.png" + }, + { + "id": "66", + "name": "Sticker | mousesports (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-66.png" + }, + { + "id": "67", + "name": "Sticker | Clan-Mystik | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-67.png" + }, + { + "id": "68", + "name": "Sticker | Clan-Mystik (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-68.png" + }, + { + "id": "69", + "name": "Sticker | Natus Vincere | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-69.png" + }, + { + "id": "70", + "name": "Sticker | Natus Vincere (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-70.png" + }, + { + "id": "71", + "name": "Sticker | Ninjas in Pyjamas | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-71.png" + }, + { + "id": "72", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-72.png" + }, + { + "id": "73", + "name": "Sticker | Reason Gaming | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-73.png" + }, + { + "id": "74", + "name": "Sticker | Reason Gaming (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-74.png" + }, + { + "id": "75", + "name": "Sticker | Titan | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-75.png" + }, + { + "id": "76", + "name": "Sticker | Titan (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-76.png" + }, + { + "id": "77", + "name": "Sticker | Virtus.Pro | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-77.png" + }, + { + "id": "78", + "name": "Sticker | Virtus.Pro (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-78.png" + }, + { + "id": "79", + "name": "Sticker | Vox Eminor | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-79.png" + }, + { + "id": "80", + "name": "Sticker | Vox Eminor (Holo) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-80.png" + }, + { + "id": "81", + "name": "Sticker | ESL Wolf (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-81.png" + }, + { + "id": "82", + "name": "Sticker | ESL Skull (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-82.png" + }, + { + "id": "83", + "name": "Sticker | 3DMAX (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-83.png" + }, + { + "id": "84", + "name": "Sticker | compLexity Gaming (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-84.png" + }, + { + "id": "85", + "name": "Sticker | Team Dignitas (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-85.png" + }, + { + "id": "86", + "name": "Sticker | Fnatic (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-86.png" + }, + { + "id": "87", + "name": "Sticker | HellRaisers (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-87.png" + }, + { + "id": "88", + "name": "Sticker | iBUYPOWER (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-88.png" + }, + { + "id": "89", + "name": "Sticker | Team LDLC.com (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-89.png" + }, + { + "id": "90", + "name": "Sticker | LGB eSports (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-90.png" + }, + { + "id": "91", + "name": "Sticker | mousesports (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-91.png" + }, + { + "id": "92", + "name": "Sticker | Clan-Mystik (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-92.png" + }, + { + "id": "93", + "name": "Sticker | Natus Vincere (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-93.png" + }, + { + "id": "94", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-94.png" + }, + { + "id": "95", + "name": "Sticker | Reason Gaming (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-95.png" + }, + { + "id": "96", + "name": "Sticker | Titan (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-96.png" + }, + { + "id": "97", + "name": "Sticker | Virtus.Pro (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-97.png" + }, + { + "id": "98", + "name": "Sticker | Vox Eminor (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-98.png" + }, + { + "id": "99", + "name": "Sticker | Gold ESL Wolf (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-99.png" + }, + { + "id": "100", + "name": "Sticker | Gold ESL Skull (Foil) | Katowice 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-100.png" + }, + { + "id": "101", + "name": "Sticker | Backstab", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-101.png" + }, + { + "id": "102", + "name": "Sticker | King on the Field", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-102.png" + }, + { + "id": "103", + "name": "Sticker | Howling Dawn", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-103.png" + }, + { + "id": "104", + "name": "Sticker | Bomb Doge", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-104.png" + }, + { + "id": "105", + "name": "Sticker | Burn Them All", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-105.png" + }, + { + "id": "106", + "name": "Sticker | Harp of War (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-106.png" + }, + { + "id": "107", + "name": "Sticker | Flammable (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-107.png" + }, + { + "id": "108", + "name": "Sticker | Headhunter (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-108.png" + }, + { + "id": "109", + "name": "Sticker | Llama Cannon", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-109.png" + }, + { + "id": "110", + "name": "Sticker | New Sheriff (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-110.png" + }, + { + "id": "111", + "name": "Sticker | My Other Awp", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-111.png" + }, + { + "id": "112", + "name": "Sticker | Shave Master", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-112.png" + }, + { + "id": "113", + "name": "Sticker | Rising Skull", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-113.png" + }, + { + "id": "114", + "name": "Sticker | Sneaky Beaky Like", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-114.png" + }, + { + "id": "115", + "name": "Sticker | Swag (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-115.png" + }, + { + "id": "116", + "name": "Sticker | Teamwork (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-116.png" + }, + { + "id": "117", + "name": "Sticker | To B or not to B", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-117.png" + }, + { + "id": "118", + "name": "Sticker | Winged Defuser", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-118.png" + }, + { + "id": "119", + "name": "Sticker | Pocket BBQ", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-119.png" + }, + { + "id": "120", + "name": "Sticker | Death Comes", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-120.png" + }, + { + "id": "121", + "name": "Sticker | Rekt (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-121.png" + }, + { + "id": "122", + "name": "Sticker | Cloud9 | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-122.png" + }, + { + "id": "123", + "name": "Sticker | Cloud9 (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-123.png" + }, + { + "id": "124", + "name": "Sticker | Fnatic | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-124.png" + }, + { + "id": "125", + "name": "Sticker | Fnatic (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-125.png" + }, + { + "id": "126", + "name": "Sticker | HellRaisers | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-126.png" + }, + { + "id": "127", + "name": "Sticker | HellRaisers (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-127.png" + }, + { + "id": "128", + "name": "Sticker | Ninjas in Pyjamas | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-128.png" + }, + { + "id": "129", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-129.png" + }, + { + "id": "130", + "name": "Sticker | Team Dignitas | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-130.png" + }, + { + "id": "131", + "name": "Sticker | Team Dignitas (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-131.png" + }, + { + "id": "132", + "name": "Sticker | Team LDLC.com | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-132.png" + }, + { + "id": "133", + "name": "Sticker | Team LDLC.com (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-133.png" + }, + { + "id": "134", + "name": "Sticker | Virtus.Pro | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-134.png" + }, + { + "id": "135", + "name": "Sticker | Virtus.Pro (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-135.png" + }, + { + "id": "136", + "name": "Sticker | Copenhagen Wolves | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-136.png" + }, + { + "id": "137", + "name": "Sticker | Copenhagen Wolves (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-137.png" + }, + { + "id": "138", + "name": "Sticker | dAT team | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-138.png" + }, + { + "id": "139", + "name": "Sticker | dAT team (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-139.png" + }, + { + "id": "140", + "name": "Sticker | Epsilon eSports | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-140.png" + }, + { + "id": "141", + "name": "Sticker | Epsilon eSports (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-141.png" + }, + { + "id": "142", + "name": "Sticker | iBUYPOWER | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-142.png" + }, + { + "id": "143", + "name": "Sticker | iBUYPOWER (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-143.png" + }, + { + "id": "144", + "name": "Sticker | London Conspiracy | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-144.png" + }, + { + "id": "145", + "name": "Sticker | London Conspiracy (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-145.png" + }, + { + "id": "146", + "name": "Sticker | Natus Vincere | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-146.png" + }, + { + "id": "147", + "name": "Sticker | Natus Vincere (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-147.png" + }, + { + "id": "148", + "name": "Sticker | Titan | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-148.png" + }, + { + "id": "149", + "name": "Sticker | Titan (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-149.png" + }, + { + "id": "150", + "name": "Sticker | Vox Eminor | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-150.png" + }, + { + "id": "151", + "name": "Sticker | Vox Eminor (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-151.png" + }, + { + "id": "152", + "name": "Sticker | MTS GameGod Wolf | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-152.png" + }, + { + "id": "153", + "name": "Sticker | MTS GameGod Wolf (Holo) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-153.png" + }, + { + "id": "154", + "name": "Sticker | ESL One Cologne 2014 (Blue)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-154.png" + }, + { + "id": "155", + "name": "Sticker | ESL One Cologne 2014 (Red)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-155.png" + }, + { + "id": "156", + "name": "Sticker | Cloud9 (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-156.png" + }, + { + "id": "157", + "name": "Sticker | Fnatic (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-157.png" + }, + { + "id": "158", + "name": "Sticker | HellRaisers (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-158.png" + }, + { + "id": "159", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-159.png" + }, + { + "id": "160", + "name": "Sticker | Team Dignitas (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-160.png" + }, + { + "id": "161", + "name": "Sticker | Team LDLC.com (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-161.png" + }, + { + "id": "162", + "name": "Sticker | Virtus.Pro (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-162.png" + }, + { + "id": "163", + "name": "Sticker | Copenhagen Wolves (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-163.png" + }, + { + "id": "164", + "name": "Sticker | dAT team (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-164.png" + }, + { + "id": "165", + "name": "Sticker | Epsilon eSports (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-165.png" + }, + { + "id": "166", + "name": "Sticker | iBUYPOWER (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-166.png" + }, + { + "id": "167", + "name": "Sticker | London Conspiracy (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-167.png" + }, + { + "id": "168", + "name": "Sticker | Natus Vincere (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-168.png" + }, + { + "id": "169", + "name": "Sticker | Titan (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-169.png" + }, + { + "id": "170", + "name": "Sticker | Vox Eminor (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-170.png" + }, + { + "id": "171", + "name": "Sticker | MTS GameGod Wolf (Foil) | Cologne 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-171.png" + }, + { + "id": "172", + "name": "Sticker | ESL One Cologne 2014 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-172.png" + }, + { + "id": "173", + "name": "Sticker | Bossy Burger", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-173.png" + }, + { + "id": "174", + "name": "Sticker | Cat Call", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-174.png" + }, + { + "id": "175", + "name": "Sticker | Chicken Strike", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-175.png" + }, + { + "id": "176", + "name": "Sticker | CT in Banana", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-176.png" + }, + { + "id": "177", + "name": "Sticker | Don't Worry, I'm Pro", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-177.png" + }, + { + "id": "178", + "name": "Sticker | Fight like a Girl", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-178.png" + }, + { + "id": "179", + "name": "Sticker | Flashbang", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-179.png" + }, + { + "id": "180", + "name": "Sticker | Kawaii Killer CT", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-180.png" + }, + { + "id": "181", + "name": "Sticker | Nelu the Bear", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-181.png" + }, + { + "id": "182", + "name": "Sticker | One Shot One Kill", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-182.png" + }, + { + "id": "183", + "name": "Sticker | Shooting Star Return", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-183.png" + }, + { + "id": "184", + "name": "Sticker | T On Cat", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-184.png" + }, + { + "id": "185", + "name": "Sticker | War Penguin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-185.png" + }, + { + "id": "186", + "name": "Sticker | Windy Walking Club", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-186.png" + }, + { + "id": "187", + "name": "Sticker | Blitzkrieg", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-187.png" + }, + { + "id": "188", + "name": "Sticker | Pigeon Master", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-188.png" + }, + { + "id": "189", + "name": "Sticker | Terrorized", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-189.png" + }, + { + "id": "190", + "name": "Sticker | Till Death Do Us Part", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-190.png" + }, + { + "id": "191", + "name": "Sticker | Stay Frosty", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-191.png" + }, + { + "id": "192", + "name": "Sticker | Doomed", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-192.png" + }, + { + "id": "193", + "name": "Sticker | Queen Of Pain", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-193.png" + }, + { + "id": "194", + "name": "Sticker | Trick Or Threat", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-194.png" + }, + { + "id": "195", + "name": "Sticker | Trick Or Treat", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-195.png" + }, + { + "id": "196", + "name": "Sticker | Witch", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-196.png" + }, + { + "id": "197", + "name": "Sticker | Zombie Lover", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-197.png" + }, + { + "id": "198", + "name": "Sticker | Fnatic | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-198.png" + }, + { + "id": "199", + "name": "Sticker | Fnatic (Holo) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-199.png" + }, + { + "id": "200", + "name": "Sticker | Fnatic (Foil) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-200.png" + }, + { + "id": "201", + "name": "Sticker | Cloud9 | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-201.png" + }, + { + "id": "202", + "name": "Sticker | Cloud9 (Holo) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-202.png" + }, + { + "id": "203", + "name": "Sticker | Cloud9 (Foil) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-203.png" + }, + { + "id": "207", + "name": "Sticker | Virtus.Pro | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-207.png" + }, + { + "id": "208", + "name": "Sticker | Virtus.Pro (Holo) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-208.png" + }, + { + "id": "209", + "name": "Sticker | Virtus.Pro (Foil) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-209.png" + }, + { + "id": "210", + "name": "Sticker | Ninjas in Pyjamas | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-210.png" + }, + { + "id": "211", + "name": "Sticker | Ninjas in Pyjamas (Holo) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-211.png" + }, + { + "id": "212", + "name": "Sticker | Ninjas in Pyjamas (Foil) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-212.png" + }, + { + "id": "213", + "name": "Sticker | Natus Vincere | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-213.png" + }, + { + "id": "214", + "name": "Sticker | Natus Vincere (Holo) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-214.png" + }, + { + "id": "215", + "name": "Sticker | Natus Vincere (Foil) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-215.png" + }, + { + "id": "219", + "name": "Sticker | Team Dignitas | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-219.png" + }, + { + "id": "220", + "name": "Sticker | Team Dignitas (Holo) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-220.png" + }, + { + "id": "221", + "name": "Sticker | Team Dignitas (Foil) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-221.png" + }, + { + "id": "222", + "name": "Sticker | Bravado Gaming | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-222.png" + }, + { + "id": "223", + "name": "Sticker | ESC Gaming | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-223.png" + }, + { + "id": "224", + "name": "Sticker | HellRaisers | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-224.png" + }, + { + "id": "225", + "name": "Sticker | iBUYPOWER | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-225.png" + }, + { + "id": "226", + "name": "Sticker | PENTA Sports | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-226.png" + }, + { + "id": "227", + "name": "Sticker | Planetkey Dynamics | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-227.png" + }, + { + "id": "228", + "name": "Sticker | Team LDLC.com | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-228.png" + }, + { + "id": "229", + "name": "Sticker | myXMG | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-229.png" + }, + { + "id": "230", + "name": "Sticker | DreamHack Winter 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-230.png" + }, + { + "id": "231", + "name": "Sticker | DreamHack Winter 2014 (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-231.png" + }, + { + "id": "232", + "name": "Sticker | 3DMAX | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-232.png" + }, + { + "id": "233", + "name": "Sticker | Copenhagen Wolves | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-233.png" + }, + { + "id": "234", + "name": "Sticker | dAT team | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-234.png" + }, + { + "id": "235", + "name": "Sticker | London Conspiracy | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-235.png" + }, + { + "id": "236", + "name": "Sticker | mousesports | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-236.png" + }, + { + "id": "237", + "name": "Sticker | 3DMAX (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-237.png" + }, + { + "id": "238", + "name": "Sticker | Bravado Gaming (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-238.png" + }, + { + "id": "239", + "name": "Sticker | Cloud9 (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-239.png" + }, + { + "id": "240", + "name": "Sticker | Copenhagen Wolves (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-240.png" + }, + { + "id": "241", + "name": "Sticker | dAT team (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-241.png" + }, + { + "id": "242", + "name": "Sticker | Team Dignitas (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-242.png" + }, + { + "id": "243", + "name": "Sticker | ESC Gaming (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-243.png" + }, + { + "id": "244", + "name": "Sticker | Fnatic (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-244.png" + }, + { + "id": "245", + "name": "Sticker | HellRaisers (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-245.png" + }, + { + "id": "246", + "name": "Sticker | iBUYPOWER (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-246.png" + }, + { + "id": "247", + "name": "Sticker | London Conspiracy (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-247.png" + }, + { + "id": "248", + "name": "Sticker | mousesports (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-248.png" + }, + { + "id": "249", + "name": "Sticker | myXMG (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-249.png" + }, + { + "id": "250", + "name": "Sticker | Natus Vincere (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-250.png" + }, + { + "id": "251", + "name": "Sticker | Ninjas in Pyjamas (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-251.png" + }, + { + "id": "252", + "name": "Sticker | PENTA Sports (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-252.png" + }, + { + "id": "253", + "name": "Sticker | Planetkey Dynamics (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-253.png" + }, + { + "id": "254", + "name": "Sticker | Team LDLC.com (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-254.png" + }, + { + "id": "255", + "name": "Sticker | Virtus.Pro (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-255.png" + }, + { + "id": "256", + "name": "Sticker | Flipsid3 Tactics | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-256.png" + }, + { + "id": "257", + "name": "Sticker | Flipsid3 Tactics (Gold) | DreamHack 2014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-257.png" + }, + { + "id": "258", + "name": "Sticker | Blood Boiler", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-258.png" + }, + { + "id": "259", + "name": "Sticker | Dinked", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-259.png" + }, + { + "id": "260", + "name": "Sticker | Drug War Veteran", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-260.png" + }, + { + "id": "261", + "name": "Sticker | Ho Ho Ho", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-261.png" + }, + { + "id": "262", + "name": "Sticker | Massive Pear", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-262.png" + }, + { + "id": "263", + "name": "Sticker | My Little Friend", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-263.png" + }, + { + "id": "264", + "name": "Sticker | Pandamonium", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-264.png" + }, + { + "id": "265", + "name": "Sticker | Piece Of Cake", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-265.png" + }, + { + "id": "266", + "name": "Sticker | SAS Chicken", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-266.png" + }, + { + "id": "267", + "name": "Sticker | Thug Life", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-267.png" + }, + { + "id": "268", + "name": "Sticker | T-Rekt", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-268.png" + }, + { + "id": "269", + "name": "Sticker | Warowl", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-269.png" + }, + { + "id": "270", + "name": "Sticker | Work For Ammo", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-270.png" + }, + { + "id": "271", + "name": "Sticker | Phoenix (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-271.png" + }, + { + "id": "272", + "name": "Sticker | Bomb Squad (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-272.png" + }, + { + "id": "273", + "name": "Sticker | Flickshot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-273.png" + }, + { + "id": "274", + "name": "Sticker | Headshot Guarantee", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-274.png" + }, + { + "id": "275", + "name": "Sticker | Eco Rush", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-275.png" + }, + { + "id": "276", + "name": "Sticker | Just Trolling", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-276.png" + }, + { + "id": "278", + "name": "Sticker | Firestarter (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-278.png" + }, + { + "id": "279", + "name": "Sticker | Lucky Cat (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-279.png" + }, + { + "id": "280", + "name": "Sticker | Robo", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-280.png" + }, + { + "id": "281", + "name": "Sticker | Witchcraft", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-281.png" + }, + { + "id": "282", + "name": "Sticker | Wanna Fight", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-282.png" + }, + { + "id": "283", + "name": "Sticker | Hostage Rescue", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-283.png" + }, + { + "id": "284", + "name": "Sticker | Hamster Hawk", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-284.png" + }, + { + "id": "285", + "name": "Sticker | Headless Chicken", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-285.png" + }, + { + "id": "286", + "name": "Sticker | 3DMAX | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-286.png" + }, + { + "id": "287", + "name": "Sticker | 3DMAX (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-287.png" + }, + { + "id": "288", + "name": "Sticker | 3DMAX (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-288.png" + }, + { + "id": "289", + "name": "Sticker | 3DMAX (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-289.png" + }, + { + "id": "290", + "name": "Sticker | Cloud9 G2A | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-290.png" + }, + { + "id": "291", + "name": "Sticker | Cloud9 G2A (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-291.png" + }, + { + "id": "292", + "name": "Sticker | Cloud9 G2A (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-292.png" + }, + { + "id": "293", + "name": "Sticker | Cloud9 G2A (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-293.png" + }, + { + "id": "294", + "name": "Sticker | Counter Logic Gaming | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-294.png" + }, + { + "id": "295", + "name": "Sticker | Counter Logic Gaming (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-295.png" + }, + { + "id": "296", + "name": "Sticker | Counter Logic Gaming (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-296.png" + }, + { + "id": "297", + "name": "Sticker | Counter Logic Gaming (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-297.png" + }, + { + "id": "300", + "name": "Sticker | ESL One (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-300.png" + }, + { + "id": "301", + "name": "Sticker | ESL One (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-301.png" + }, + { + "id": "302", + "name": "Sticker | Flipsid3 Tactics | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-302.png" + }, + { + "id": "303", + "name": "Sticker | Flipsid3 Tactics (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-303.png" + }, + { + "id": "304", + "name": "Sticker | Flipsid3 Tactics (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-304.png" + }, + { + "id": "305", + "name": "Sticker | Flipsid3 Tactics (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-305.png" + }, + { + "id": "306", + "name": "Sticker | Fnatic | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-306.png" + }, + { + "id": "307", + "name": "Sticker | Fnatic (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-307.png" + }, + { + "id": "308", + "name": "Sticker | Fnatic (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-308.png" + }, + { + "id": "309", + "name": "Sticker | Fnatic (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-309.png" + }, + { + "id": "310", + "name": "Sticker | HellRaisers | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-310.png" + }, + { + "id": "311", + "name": "Sticker | HellRaisers (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-311.png" + }, + { + "id": "312", + "name": "Sticker | HellRaisers (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-312.png" + }, + { + "id": "313", + "name": "Sticker | HellRaisers (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-313.png" + }, + { + "id": "314", + "name": "Sticker | Keyd Stars | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-314.png" + }, + { + "id": "315", + "name": "Sticker | Keyd Stars (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-315.png" + }, + { + "id": "316", + "name": "Sticker | Keyd Stars (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-316.png" + }, + { + "id": "317", + "name": "Sticker | Keyd Stars (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-317.png" + }, + { + "id": "318", + "name": "Sticker | LGB eSports | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-318.png" + }, + { + "id": "319", + "name": "Sticker | LGB eSports (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-319.png" + }, + { + "id": "320", + "name": "Sticker | LGB eSports (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-320.png" + }, + { + "id": "321", + "name": "Sticker | LGB eSports (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-321.png" + }, + { + "id": "322", + "name": "Sticker | Natus Vincere | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-322.png" + }, + { + "id": "323", + "name": "Sticker | Natus Vincere (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-323.png" + }, + { + "id": "324", + "name": "Sticker | Natus Vincere (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-324.png" + }, + { + "id": "325", + "name": "Sticker | Natus Vincere (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-325.png" + }, + { + "id": "326", + "name": "Sticker | Ninjas in Pyjamas | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-326.png" + }, + { + "id": "327", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-327.png" + }, + { + "id": "328", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-328.png" + }, + { + "id": "329", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-329.png" + }, + { + "id": "330", + "name": "Sticker | PENTA Sports | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-330.png" + }, + { + "id": "331", + "name": "Sticker | PENTA Sports (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-331.png" + }, + { + "id": "332", + "name": "Sticker | PENTA Sports (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-332.png" + }, + { + "id": "333", + "name": "Sticker | PENTA Sports (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-333.png" + }, + { + "id": "334", + "name": "Sticker | Team EnVyUs | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-334.png" + }, + { + "id": "335", + "name": "Sticker | Team EnVyUs (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-335.png" + }, + { + "id": "336", + "name": "Sticker | Team EnVyUs (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-336.png" + }, + { + "id": "337", + "name": "Sticker | Team EnVyUs (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-337.png" + }, + { + "id": "338", + "name": "Sticker | TSM Kinguin | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-338.png" + }, + { + "id": "339", + "name": "Sticker | TSM Kinguin (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-339.png" + }, + { + "id": "340", + "name": "Sticker | TSM Kinguin (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-340.png" + }, + { + "id": "341", + "name": "Sticker | TSM Kinguin (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-341.png" + }, + { + "id": "342", + "name": "Sticker | Titan | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-342.png" + }, + { + "id": "343", + "name": "Sticker | Titan (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-343.png" + }, + { + "id": "344", + "name": "Sticker | Titan (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-344.png" + }, + { + "id": "345", + "name": "Sticker | Titan (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-345.png" + }, + { + "id": "346", + "name": "Sticker | Virtus.pro | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-346.png" + }, + { + "id": "347", + "name": "Sticker | Virtus.pro (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-347.png" + }, + { + "id": "348", + "name": "Sticker | Virtus.pro (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-348.png" + }, + { + "id": "349", + "name": "Sticker | Virtus.pro (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-349.png" + }, + { + "id": "350", + "name": "Sticker | Vox Eminor | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-350.png" + }, + { + "id": "351", + "name": "Sticker | Vox Eminor (Holo) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-351.png" + }, + { + "id": "352", + "name": "Sticker | Vox Eminor (Foil) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-352.png" + }, + { + "id": "353", + "name": "Sticker | Vox Eminor (Gold) | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-353.png" + }, + { + "id": "354", + "name": "Sticker | ESL One | Katowice 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-354.png" + }, + { + "id": "355", + "name": "Sticker | Chabo", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-355.png" + }, + { + "id": "356", + "name": "Sticker | Bombsquad", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-356.png" + }, + { + "id": "357", + "name": "Sticker | Bombsquad (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-357.png" + }, + { + "id": "358", + "name": "Sticker | The Guru", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-358.png" + }, + { + "id": "359", + "name": "Sticker | Silent Ninja", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-359.png" + }, + { + "id": "360", + "name": "Sticker | Silent Ninja (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-360.png" + }, + { + "id": "361", + "name": "Sticker | The Samurai", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-361.png" + }, + { + "id": "362", + "name": "Sticker | Skull Lil Boney", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-362.png" + }, + { + "id": "363", + "name": "Sticker | Skulltorgeist", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-363.png" + }, + { + "id": "364", + "name": "Sticker | Skull Troop", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-364.png" + }, + { + "id": "365", + "name": "Sticker | Salute!", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-365.png" + }, + { + "id": "366", + "name": "Sticker | The Spartan", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-366.png" + }, + { + "id": "367", + "name": "Sticker | Unicorn", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-367.png" + }, + { + "id": "368", + "name": "Sticker | Unicorn (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-368.png" + }, + { + "id": "369", + "name": "Sticker | The Zombie", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-369.png" + }, + { + "id": "370", + "name": "Sticker | Awp Country", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-370.png" + }, + { + "id": "371", + "name": "Sticker | Chi Bomb", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-371.png" + }, + { + "id": "372", + "name": "Sticker | Doru The Fox", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-372.png" + }, + { + "id": "373", + "name": "Sticker | Knife Club", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-373.png" + }, + { + "id": "374", + "name": "Sticker | CS On The Mind", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-374.png" + }, + { + "id": "375", + "name": "Sticker | Ninja Defuse", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-375.png" + }, + { + "id": "376", + "name": "Sticker | Pros Don't Fake", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-376.png" + }, + { + "id": "377", + "name": "Sticker | Kawaii Killer Terrorist", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-377.png" + }, + { + "id": "378", + "name": "Sticker | Baaa-ckstabber!", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-378.png" + }, + { + "id": "379", + "name": "Sticker | Delicious Tears", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-379.png" + }, + { + "id": "380", + "name": "Sticker | pronax | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-380.png" + }, + { + "id": "381", + "name": "Sticker | pronax (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-381.png" + }, + { + "id": "382", + "name": "Sticker | pronax (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-382.png" + }, + { + "id": "383", + "name": "Sticker | flusha | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-383.png" + }, + { + "id": "384", + "name": "Sticker | flusha (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-384.png" + }, + { + "id": "385", + "name": "Sticker | flusha (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-385.png" + }, + { + "id": "386", + "name": "Sticker | JW | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-386.png" + }, + { + "id": "387", + "name": "Sticker | JW (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-387.png" + }, + { + "id": "388", + "name": "Sticker | JW (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-388.png" + }, + { + "id": "389", + "name": "Sticker | KRIMZ | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-389.png" + }, + { + "id": "390", + "name": "Sticker | KRIMZ (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-390.png" + }, + { + "id": "391", + "name": "Sticker | KRIMZ (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-391.png" + }, + { + "id": "392", + "name": "Sticker | olofmeister | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-392.png" + }, + { + "id": "393", + "name": "Sticker | olofmeister (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-393.png" + }, + { + "id": "394", + "name": "Sticker | olofmeister (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-394.png" + }, + { + "id": "395", + "name": "Sticker | FalleN | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-395.png" + }, + { + "id": "396", + "name": "Sticker | FalleN (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-396.png" + }, + { + "id": "397", + "name": "Sticker | FalleN (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-397.png" + }, + { + "id": "398", + "name": "Sticker | steel | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-398.png" + }, + { + "id": "399", + "name": "Sticker | steel (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-399.png" + }, + { + "id": "400", + "name": "Sticker | steel (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-400.png" + }, + { + "id": "401", + "name": "Sticker | fer | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-401.png" + }, + { + "id": "402", + "name": "Sticker | fer (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-402.png" + }, + { + "id": "403", + "name": "Sticker | fer (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-403.png" + }, + { + "id": "404", + "name": "Sticker | boltz | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-404.png" + }, + { + "id": "405", + "name": "Sticker | boltz (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-405.png" + }, + { + "id": "406", + "name": "Sticker | boltz (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-406.png" + }, + { + "id": "407", + "name": "Sticker | coldzera | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-407.png" + }, + { + "id": "408", + "name": "Sticker | coldzera (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-408.png" + }, + { + "id": "409", + "name": "Sticker | coldzera (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-409.png" + }, + { + "id": "410", + "name": "Sticker | GuardiaN | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-410.png" + }, + { + "id": "411", + "name": "Sticker | GuardiaN (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-411.png" + }, + { + "id": "412", + "name": "Sticker | GuardiaN (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-412.png" + }, + { + "id": "413", + "name": "Sticker | Zeus | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-413.png" + }, + { + "id": "414", + "name": "Sticker | Zeus (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-414.png" + }, + { + "id": "415", + "name": "Sticker | Zeus (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-415.png" + }, + { + "id": "416", + "name": "Sticker | seized | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-416.png" + }, + { + "id": "417", + "name": "Sticker | seized (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-417.png" + }, + { + "id": "418", + "name": "Sticker | seized (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-418.png" + }, + { + "id": "419", + "name": "Sticker | Edward | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-419.png" + }, + { + "id": "420", + "name": "Sticker | Edward (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-420.png" + }, + { + "id": "421", + "name": "Sticker | Edward (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-421.png" + }, + { + "id": "422", + "name": "Sticker | flamie | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-422.png" + }, + { + "id": "423", + "name": "Sticker | flamie (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-423.png" + }, + { + "id": "424", + "name": "Sticker | flamie (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-424.png" + }, + { + "id": "425", + "name": "Sticker | Xizt | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-425.png" + }, + { + "id": "426", + "name": "Sticker | Xizt (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-426.png" + }, + { + "id": "427", + "name": "Sticker | Xizt (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-427.png" + }, + { + "id": "428", + "name": "Sticker | f0rest | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-428.png" + }, + { + "id": "429", + "name": "Sticker | f0rest (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-429.png" + }, + { + "id": "430", + "name": "Sticker | f0rest (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-430.png" + }, + { + "id": "431", + "name": "Sticker | GeT_RiGhT | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-431.png" + }, + { + "id": "432", + "name": "Sticker | GeT_RiGhT (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-432.png" + }, + { + "id": "433", + "name": "Sticker | GeT_RiGhT (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-433.png" + }, + { + "id": "434", + "name": "Sticker | friberg | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-434.png" + }, + { + "id": "435", + "name": "Sticker | friberg (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-435.png" + }, + { + "id": "436", + "name": "Sticker | friberg (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-436.png" + }, + { + "id": "437", + "name": "Sticker | allu | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-437.png" + }, + { + "id": "438", + "name": "Sticker | allu (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-438.png" + }, + { + "id": "439", + "name": "Sticker | allu (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-439.png" + }, + { + "id": "440", + "name": "Sticker | kennyS | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-440.png" + }, + { + "id": "441", + "name": "Sticker | kennyS (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-441.png" + }, + { + "id": "442", + "name": "Sticker | kennyS (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-442.png" + }, + { + "id": "443", + "name": "Sticker | kioShiMa | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-443.png" + }, + { + "id": "444", + "name": "Sticker | kioShiMa (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-444.png" + }, + { + "id": "445", + "name": "Sticker | kioShiMa (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-445.png" + }, + { + "id": "446", + "name": "Sticker | Happy | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-446.png" + }, + { + "id": "447", + "name": "Sticker | Happy (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-447.png" + }, + { + "id": "448", + "name": "Sticker | Happy (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-448.png" + }, + { + "id": "449", + "name": "Sticker | apEX | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-449.png" + }, + { + "id": "450", + "name": "Sticker | apEX (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-450.png" + }, + { + "id": "451", + "name": "Sticker | apEX (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-451.png" + }, + { + "id": "452", + "name": "Sticker | NBK- | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-452.png" + }, + { + "id": "453", + "name": "Sticker | NBK- (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-453.png" + }, + { + "id": "454", + "name": "Sticker | NBK- (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-454.png" + }, + { + "id": "455", + "name": "Sticker | karrigan | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-455.png" + }, + { + "id": "456", + "name": "Sticker | karrigan (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-456.png" + }, + { + "id": "457", + "name": "Sticker | karrigan (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-457.png" + }, + { + "id": "458", + "name": "Sticker | device | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-458.png" + }, + { + "id": "459", + "name": "Sticker | device (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-459.png" + }, + { + "id": "460", + "name": "Sticker | device (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-460.png" + }, + { + "id": "461", + "name": "Sticker | dupreeh | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-461.png" + }, + { + "id": "462", + "name": "Sticker | dupreeh (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-462.png" + }, + { + "id": "463", + "name": "Sticker | dupreeh (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-463.png" + }, + { + "id": "464", + "name": "Sticker | Xyp9x | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-464.png" + }, + { + "id": "465", + "name": "Sticker | Xyp9x (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-465.png" + }, + { + "id": "466", + "name": "Sticker | Xyp9x (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-466.png" + }, + { + "id": "467", + "name": "Sticker | cajunb | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-467.png" + }, + { + "id": "468", + "name": "Sticker | cajunb (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-468.png" + }, + { + "id": "469", + "name": "Sticker | cajunb (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-469.png" + }, + { + "id": "470", + "name": "Sticker | NEO | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-470.png" + }, + { + "id": "471", + "name": "Sticker | NEO (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-471.png" + }, + { + "id": "472", + "name": "Sticker | NEO (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-472.png" + }, + { + "id": "473", + "name": "Sticker | pashaBiceps | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-473.png" + }, + { + "id": "474", + "name": "Sticker | pashaBiceps (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-474.png" + }, + { + "id": "475", + "name": "Sticker | pashaBiceps (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-475.png" + }, + { + "id": "476", + "name": "Sticker | TaZ | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-476.png" + }, + { + "id": "477", + "name": "Sticker | TaZ (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-477.png" + }, + { + "id": "478", + "name": "Sticker | TaZ (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-478.png" + }, + { + "id": "479", + "name": "Sticker | Snax | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-479.png" + }, + { + "id": "480", + "name": "Sticker | Snax (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-480.png" + }, + { + "id": "481", + "name": "Sticker | Snax (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-481.png" + }, + { + "id": "482", + "name": "Sticker | byali | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-482.png" + }, + { + "id": "483", + "name": "Sticker | byali (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-483.png" + }, + { + "id": "484", + "name": "Sticker | byali (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-484.png" + }, + { + "id": "485", + "name": "Sticker | chrisJ | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-485.png" + }, + { + "id": "486", + "name": "Sticker | chrisJ (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-486.png" + }, + { + "id": "487", + "name": "Sticker | chrisJ (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-487.png" + }, + { + "id": "488", + "name": "Sticker | gob b | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-488.png" + }, + { + "id": "489", + "name": "Sticker | gob b (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-489.png" + }, + { + "id": "490", + "name": "Sticker | gob b (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-490.png" + }, + { + "id": "491", + "name": "Sticker | denis | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-491.png" + }, + { + "id": "492", + "name": "Sticker | denis (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-492.png" + }, + { + "id": "493", + "name": "Sticker | denis (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-493.png" + }, + { + "id": "494", + "name": "Sticker | nex | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-494.png" + }, + { + "id": "495", + "name": "Sticker | nex (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-495.png" + }, + { + "id": "496", + "name": "Sticker | nex (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-496.png" + }, + { + "id": "497", + "name": "Sticker | Spiidi | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-497.png" + }, + { + "id": "498", + "name": "Sticker | Spiidi (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-498.png" + }, + { + "id": "499", + "name": "Sticker | Spiidi (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-499.png" + }, + { + "id": "500", + "name": "Sticker | AZR | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-500.png" + }, + { + "id": "501", + "name": "Sticker | AZR (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-501.png" + }, + { + "id": "502", + "name": "Sticker | AZR (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-502.png" + }, + { + "id": "503", + "name": "Sticker | Havoc | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-503.png" + }, + { + "id": "504", + "name": "Sticker | Havoc (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-504.png" + }, + { + "id": "505", + "name": "Sticker | Havoc (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-505.png" + }, + { + "id": "506", + "name": "Sticker | jks | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-506.png" + }, + { + "id": "507", + "name": "Sticker | jks (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-507.png" + }, + { + "id": "508", + "name": "Sticker | jks (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-508.png" + }, + { + "id": "509", + "name": "Sticker | SPUNJ | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-509.png" + }, + { + "id": "510", + "name": "Sticker | SPUNJ (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-510.png" + }, + { + "id": "511", + "name": "Sticker | SPUNJ (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-511.png" + }, + { + "id": "512", + "name": "Sticker | yam | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-512.png" + }, + { + "id": "513", + "name": "Sticker | yam (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-513.png" + }, + { + "id": "514", + "name": "Sticker | yam (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-514.png" + }, + { + "id": "515", + "name": "Sticker | USTILO | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-515.png" + }, + { + "id": "516", + "name": "Sticker | USTILO (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-516.png" + }, + { + "id": "517", + "name": "Sticker | USTILO (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-517.png" + }, + { + "id": "518", + "name": "Sticker | Rickeh | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-518.png" + }, + { + "id": "519", + "name": "Sticker | Rickeh (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-519.png" + }, + { + "id": "520", + "name": "Sticker | Rickeh (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-520.png" + }, + { + "id": "521", + "name": "Sticker | emagine | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-521.png" + }, + { + "id": "522", + "name": "Sticker | emagine (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-522.png" + }, + { + "id": "523", + "name": "Sticker | emagine (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-523.png" + }, + { + "id": "524", + "name": "Sticker | SnypeR | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-524.png" + }, + { + "id": "525", + "name": "Sticker | SnypeR (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-525.png" + }, + { + "id": "526", + "name": "Sticker | SnypeR (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-526.png" + }, + { + "id": "527", + "name": "Sticker | James | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-527.png" + }, + { + "id": "528", + "name": "Sticker | James (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-528.png" + }, + { + "id": "529", + "name": "Sticker | James (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-529.png" + }, + { + "id": "530", + "name": "Sticker | markeloff | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-530.png" + }, + { + "id": "531", + "name": "Sticker | markeloff (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-531.png" + }, + { + "id": "532", + "name": "Sticker | markeloff (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-532.png" + }, + { + "id": "533", + "name": "Sticker | B1ad3 | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-533.png" + }, + { + "id": "534", + "name": "Sticker | B1ad3 (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-534.png" + }, + { + "id": "535", + "name": "Sticker | B1ad3 (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-535.png" + }, + { + "id": "536", + "name": "Sticker | bondik | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-536.png" + }, + { + "id": "537", + "name": "Sticker | bondik (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-537.png" + }, + { + "id": "538", + "name": "Sticker | bondik (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-538.png" + }, + { + "id": "539", + "name": "Sticker | WorldEdit | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-539.png" + }, + { + "id": "540", + "name": "Sticker | WorldEdit (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-540.png" + }, + { + "id": "541", + "name": "Sticker | WorldEdit (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-541.png" + }, + { + "id": "542", + "name": "Sticker | DavCost | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-542.png" + }, + { + "id": "543", + "name": "Sticker | DavCost (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-543.png" + }, + { + "id": "544", + "name": "Sticker | DavCost (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-544.png" + }, + { + "id": "545", + "name": "Sticker | dennis | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-545.png" + }, + { + "id": "546", + "name": "Sticker | dennis (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-546.png" + }, + { + "id": "547", + "name": "Sticker | dennis (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-547.png" + }, + { + "id": "548", + "name": "Sticker | ScreaM | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-548.png" + }, + { + "id": "549", + "name": "Sticker | ScreaM (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-549.png" + }, + { + "id": "550", + "name": "Sticker | ScreaM (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-550.png" + }, + { + "id": "551", + "name": "Sticker | rain | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-551.png" + }, + { + "id": "552", + "name": "Sticker | rain (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-552.png" + }, + { + "id": "553", + "name": "Sticker | rain (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-553.png" + }, + { + "id": "554", + "name": "Sticker | Maikelele | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-554.png" + }, + { + "id": "555", + "name": "Sticker | Maikelele (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-555.png" + }, + { + "id": "556", + "name": "Sticker | Maikelele (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-556.png" + }, + { + "id": "557", + "name": "Sticker | fox | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-557.png" + }, + { + "id": "558", + "name": "Sticker | fox (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-558.png" + }, + { + "id": "559", + "name": "Sticker | fox (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-559.png" + }, + { + "id": "560", + "name": "Sticker | rallen | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-560.png" + }, + { + "id": "561", + "name": "Sticker | rallen (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-561.png" + }, + { + "id": "562", + "name": "Sticker | rallen (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-562.png" + }, + { + "id": "563", + "name": "Sticker | Hyper | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-563.png" + }, + { + "id": "564", + "name": "Sticker | Hyper (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-564.png" + }, + { + "id": "565", + "name": "Sticker | Hyper (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-565.png" + }, + { + "id": "566", + "name": "Sticker | peet | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-566.png" + }, + { + "id": "567", + "name": "Sticker | peet (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-567.png" + }, + { + "id": "568", + "name": "Sticker | peet (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-568.png" + }, + { + "id": "569", + "name": "Sticker | Furlan | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-569.png" + }, + { + "id": "570", + "name": "Sticker | Furlan (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-570.png" + }, + { + "id": "571", + "name": "Sticker | Furlan (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-571.png" + }, + { + "id": "572", + "name": "Sticker | GruBy | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-572.png" + }, + { + "id": "573", + "name": "Sticker | GruBy (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-573.png" + }, + { + "id": "574", + "name": "Sticker | GruBy (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-574.png" + }, + { + "id": "575", + "name": "Sticker | Maniac | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-575.png" + }, + { + "id": "576", + "name": "Sticker | Maniac (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-576.png" + }, + { + "id": "577", + "name": "Sticker | Maniac (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-577.png" + }, + { + "id": "578", + "name": "Sticker | Ex6TenZ | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-578.png" + }, + { + "id": "579", + "name": "Sticker | Ex6TenZ (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-579.png" + }, + { + "id": "580", + "name": "Sticker | Ex6TenZ (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-580.png" + }, + { + "id": "581", + "name": "Sticker | shox | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-581.png" + }, + { + "id": "582", + "name": "Sticker | shox (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-582.png" + }, + { + "id": "583", + "name": "Sticker | shox (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-583.png" + }, + { + "id": "584", + "name": "Sticker | SmithZz | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-584.png" + }, + { + "id": "585", + "name": "Sticker | SmithZz (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-585.png" + }, + { + "id": "586", + "name": "Sticker | SmithZz (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-586.png" + }, + { + "id": "587", + "name": "Sticker | RpK | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-587.png" + }, + { + "id": "588", + "name": "Sticker | RpK (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-588.png" + }, + { + "id": "589", + "name": "Sticker | RpK (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-589.png" + }, + { + "id": "590", + "name": "Sticker | hazed | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-590.png" + }, + { + "id": "591", + "name": "Sticker | hazed (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-591.png" + }, + { + "id": "592", + "name": "Sticker | hazed (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-592.png" + }, + { + "id": "593", + "name": "Sticker | FNS | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-593.png" + }, + { + "id": "594", + "name": "Sticker | FNS (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-594.png" + }, + { + "id": "595", + "name": "Sticker | FNS (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-595.png" + }, + { + "id": "596", + "name": "Sticker | jdm64 | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-596.png" + }, + { + "id": "597", + "name": "Sticker | jdm64 (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-597.png" + }, + { + "id": "598", + "name": "Sticker | jdm64 (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-598.png" + }, + { + "id": "599", + "name": "Sticker | reltuC | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-599.png" + }, + { + "id": "600", + "name": "Sticker | reltuC (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-600.png" + }, + { + "id": "601", + "name": "Sticker | reltuC (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-601.png" + }, + { + "id": "602", + "name": "Sticker | tarik | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-602.png" + }, + { + "id": "603", + "name": "Sticker | tarik (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-603.png" + }, + { + "id": "604", + "name": "Sticker | tarik (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-604.png" + }, + { + "id": "605", + "name": "Sticker | n0thing | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-605.png" + }, + { + "id": "606", + "name": "Sticker | n0thing (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-606.png" + }, + { + "id": "607", + "name": "Sticker | n0thing (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-607.png" + }, + { + "id": "608", + "name": "Sticker | seang@res | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-608.png" + }, + { + "id": "609", + "name": "Sticker | seang@res (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-609.png" + }, + { + "id": "610", + "name": "Sticker | seang@res (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-610.png" + }, + { + "id": "611", + "name": "Sticker | shroud | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-611.png" + }, + { + "id": "612", + "name": "Sticker | shroud (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-612.png" + }, + { + "id": "613", + "name": "Sticker | shroud (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-613.png" + }, + { + "id": "614", + "name": "Sticker | freakazoid | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-614.png" + }, + { + "id": "615", + "name": "Sticker | freakazoid (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-615.png" + }, + { + "id": "616", + "name": "Sticker | freakazoid (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-616.png" + }, + { + "id": "617", + "name": "Sticker | Skadoodle | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-617.png" + }, + { + "id": "618", + "name": "Sticker | Skadoodle (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-618.png" + }, + { + "id": "619", + "name": "Sticker | Skadoodle (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-619.png" + }, + { + "id": "620", + "name": "Sticker | Fnatic | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-620.png" + }, + { + "id": "621", + "name": "Sticker | Fnatic (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-621.png" + }, + { + "id": "622", + "name": "Sticker | Fnatic (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-622.png" + }, + { + "id": "623", + "name": "Sticker | Virtus.Pro | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-623.png" + }, + { + "id": "624", + "name": "Sticker | Virtus.Pro (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-624.png" + }, + { + "id": "625", + "name": "Sticker | Virtus.Pro (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-625.png" + }, + { + "id": "626", + "name": "Sticker | mousesports | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-626.png" + }, + { + "id": "627", + "name": "Sticker | mousesports (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-627.png" + }, + { + "id": "628", + "name": "Sticker | mousesports (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-628.png" + }, + { + "id": "629", + "name": "Sticker | Natus Vincere | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-629.png" + }, + { + "id": "630", + "name": "Sticker | Natus Vincere (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-630.png" + }, + { + "id": "631", + "name": "Sticker | Natus Vincere (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-631.png" + }, + { + "id": "632", + "name": "Sticker | Renegades | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-632.png" + }, + { + "id": "633", + "name": "Sticker | Renegades (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-633.png" + }, + { + "id": "634", + "name": "Sticker | Renegades (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-634.png" + }, + { + "id": "635", + "name": "Sticker | Team Kinguin | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-635.png" + }, + { + "id": "636", + "name": "Sticker | Team Kinguin (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-636.png" + }, + { + "id": "637", + "name": "Sticker | Team Kinguin (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-637.png" + }, + { + "id": "638", + "name": "Sticker | Team eBettle | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-638.png" + }, + { + "id": "639", + "name": "Sticker | Team eBettle (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-639.png" + }, + { + "id": "640", + "name": "Sticker | Team eBettle (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-640.png" + }, + { + "id": "641", + "name": "Sticker | Cloud9 G2A | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-641.png" + }, + { + "id": "642", + "name": "Sticker | Cloud9 G2A (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-642.png" + }, + { + "id": "643", + "name": "Sticker | Cloud9 G2A (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-643.png" + }, + { + "id": "644", + "name": "Sticker | Ninjas in Pyjamas | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-644.png" + }, + { + "id": "645", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-645.png" + }, + { + "id": "646", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-646.png" + }, + { + "id": "647", + "name": "Sticker | Team EnVyUs | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-647.png" + }, + { + "id": "648", + "name": "Sticker | Team EnVyUs (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-648.png" + }, + { + "id": "649", + "name": "Sticker | Team EnVyUs (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-649.png" + }, + { + "id": "650", + "name": "Sticker | Luminosity Gaming | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-650.png" + }, + { + "id": "651", + "name": "Sticker | Luminosity Gaming (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-651.png" + }, + { + "id": "652", + "name": "Sticker | Luminosity Gaming (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-652.png" + }, + { + "id": "653", + "name": "Sticker | Team SoloMid | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-653.png" + }, + { + "id": "654", + "name": "Sticker | Team SoloMid (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-654.png" + }, + { + "id": "655", + "name": "Sticker | Team SoloMid (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-655.png" + }, + { + "id": "656", + "name": "Sticker | Team Immunity | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-656.png" + }, + { + "id": "657", + "name": "Sticker | Team Immunity (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-657.png" + }, + { + "id": "658", + "name": "Sticker | Team Immunity (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-658.png" + }, + { + "id": "659", + "name": "Sticker | Flipsid3 Tactics | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-659.png" + }, + { + "id": "660", + "name": "Sticker | Flipsid3 Tactics (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-660.png" + }, + { + "id": "661", + "name": "Sticker | Flipsid3 Tactics (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-661.png" + }, + { + "id": "662", + "name": "Sticker | Titan | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-662.png" + }, + { + "id": "663", + "name": "Sticker | Titan (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-663.png" + }, + { + "id": "664", + "name": "Sticker | Titan (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-664.png" + }, + { + "id": "665", + "name": "Sticker | Counter Logic Gaming | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-665.png" + }, + { + "id": "666", + "name": "Sticker | Counter Logic Gaming (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-666.png" + }, + { + "id": "667", + "name": "Sticker | Counter Logic Gaming (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-667.png" + }, + { + "id": "668", + "name": "Sticker | ESL | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-668.png" + }, + { + "id": "669", + "name": "Sticker | ESL (Foil) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-669.png" + }, + { + "id": "670", + "name": "Sticker | ESL (Gold) | Cologne 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-670.png" + }, + { + "id": "671", + "name": "Sticker | reltuC | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-671.png" + }, + { + "id": "672", + "name": "Sticker | reltuC (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-672.png" + }, + { + "id": "673", + "name": "Sticker | reltuC (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-673.png" + }, + { + "id": "674", + "name": "Sticker | FNS | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-674.png" + }, + { + "id": "675", + "name": "Sticker | FNS (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-675.png" + }, + { + "id": "676", + "name": "Sticker | FNS (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-676.png" + }, + { + "id": "677", + "name": "Sticker | hazed | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-677.png" + }, + { + "id": "678", + "name": "Sticker | hazed (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-678.png" + }, + { + "id": "679", + "name": "Sticker | hazed (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-679.png" + }, + { + "id": "680", + "name": "Sticker | jdm64 | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-680.png" + }, + { + "id": "681", + "name": "Sticker | jdm64 (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-681.png" + }, + { + "id": "682", + "name": "Sticker | jdm64 (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-682.png" + }, + { + "id": "683", + "name": "Sticker | tarik | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-683.png" + }, + { + "id": "684", + "name": "Sticker | tarik (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-684.png" + }, + { + "id": "685", + "name": "Sticker | tarik (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-685.png" + }, + { + "id": "686", + "name": "Sticker | freakazoid | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-686.png" + }, + { + "id": "687", + "name": "Sticker | freakazoid (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-687.png" + }, + { + "id": "688", + "name": "Sticker | freakazoid (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-688.png" + }, + { + "id": "689", + "name": "Sticker | seang@res | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-689.png" + }, + { + "id": "690", + "name": "Sticker | seang@res (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-690.png" + }, + { + "id": "691", + "name": "Sticker | seang@res (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-691.png" + }, + { + "id": "692", + "name": "Sticker | shroud | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-692.png" + }, + { + "id": "693", + "name": "Sticker | shroud (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-693.png" + }, + { + "id": "694", + "name": "Sticker | shroud (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-694.png" + }, + { + "id": "695", + "name": "Sticker | Skadoodle | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-695.png" + }, + { + "id": "696", + "name": "Sticker | Skadoodle (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-696.png" + }, + { + "id": "697", + "name": "Sticker | Skadoodle (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-697.png" + }, + { + "id": "698", + "name": "Sticker | n0thing | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-698.png" + }, + { + "id": "699", + "name": "Sticker | n0thing (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-699.png" + }, + { + "id": "700", + "name": "Sticker | n0thing (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-700.png" + }, + { + "id": "701", + "name": "Sticker | apEX | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-701.png" + }, + { + "id": "702", + "name": "Sticker | apEX (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-702.png" + }, + { + "id": "703", + "name": "Sticker | apEX (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-703.png" + }, + { + "id": "704", + "name": "Sticker | Happy | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-704.png" + }, + { + "id": "705", + "name": "Sticker | Happy (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-705.png" + }, + { + "id": "706", + "name": "Sticker | Happy (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-706.png" + }, + { + "id": "707", + "name": "Sticker | kioShiMa | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-707.png" + }, + { + "id": "708", + "name": "Sticker | kioShiMa (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-708.png" + }, + { + "id": "709", + "name": "Sticker | kioShiMa (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-709.png" + }, + { + "id": "710", + "name": "Sticker | kennyS | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-710.png" + }, + { + "id": "711", + "name": "Sticker | kennyS (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-711.png" + }, + { + "id": "712", + "name": "Sticker | kennyS (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-712.png" + }, + { + "id": "713", + "name": "Sticker | NBK- | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-713.png" + }, + { + "id": "714", + "name": "Sticker | NBK- (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-714.png" + }, + { + "id": "715", + "name": "Sticker | NBK- (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-715.png" + }, + { + "id": "716", + "name": "Sticker | B1ad3 | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-716.png" + }, + { + "id": "717", + "name": "Sticker | B1ad3 (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-717.png" + }, + { + "id": "718", + "name": "Sticker | B1ad3 (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-718.png" + }, + { + "id": "719", + "name": "Sticker | bondik | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-719.png" + }, + { + "id": "720", + "name": "Sticker | bondik (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-720.png" + }, + { + "id": "721", + "name": "Sticker | bondik (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-721.png" + }, + { + "id": "722", + "name": "Sticker | DavCost | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-722.png" + }, + { + "id": "723", + "name": "Sticker | DavCost (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-723.png" + }, + { + "id": "724", + "name": "Sticker | DavCost (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-724.png" + }, + { + "id": "725", + "name": "Sticker | markeloff | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-725.png" + }, + { + "id": "726", + "name": "Sticker | markeloff (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-726.png" + }, + { + "id": "727", + "name": "Sticker | markeloff (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-727.png" + }, + { + "id": "728", + "name": "Sticker | WorldEdit | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-728.png" + }, + { + "id": "729", + "name": "Sticker | WorldEdit (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-729.png" + }, + { + "id": "730", + "name": "Sticker | WorldEdit (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-730.png" + }, + { + "id": "731", + "name": "Sticker | flusha | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-731.png" + }, + { + "id": "732", + "name": "Sticker | flusha (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-732.png" + }, + { + "id": "733", + "name": "Sticker | flusha (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-733.png" + }, + { + "id": "734", + "name": "Sticker | JW | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-734.png" + }, + { + "id": "735", + "name": "Sticker | JW (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-735.png" + }, + { + "id": "736", + "name": "Sticker | JW (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-736.png" + }, + { + "id": "737", + "name": "Sticker | KRIMZ | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-737.png" + }, + { + "id": "738", + "name": "Sticker | KRIMZ (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-738.png" + }, + { + "id": "739", + "name": "Sticker | KRIMZ (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-739.png" + }, + { + "id": "740", + "name": "Sticker | olofmeister | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-740.png" + }, + { + "id": "741", + "name": "Sticker | olofmeister (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-741.png" + }, + { + "id": "742", + "name": "Sticker | olofmeister (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-742.png" + }, + { + "id": "743", + "name": "Sticker | pronax | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-743.png" + }, + { + "id": "744", + "name": "Sticker | pronax (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-744.png" + }, + { + "id": "745", + "name": "Sticker | pronax (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-745.png" + }, + { + "id": "746", + "name": "Sticker | dennis | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-746.png" + }, + { + "id": "747", + "name": "Sticker | dennis (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-747.png" + }, + { + "id": "748", + "name": "Sticker | dennis (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-748.png" + }, + { + "id": "749", + "name": "Sticker | fox | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-749.png" + }, + { + "id": "750", + "name": "Sticker | fox (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-750.png" + }, + { + "id": "751", + "name": "Sticker | fox (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-751.png" + }, + { + "id": "752", + "name": "Sticker | Maikelele | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-752.png" + }, + { + "id": "753", + "name": "Sticker | Maikelele (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-753.png" + }, + { + "id": "754", + "name": "Sticker | Maikelele (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-754.png" + }, + { + "id": "755", + "name": "Sticker | rain | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-755.png" + }, + { + "id": "756", + "name": "Sticker | rain (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-756.png" + }, + { + "id": "757", + "name": "Sticker | rain (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-757.png" + }, + { + "id": "758", + "name": "Sticker | jkaem | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-758.png" + }, + { + "id": "759", + "name": "Sticker | jkaem (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-759.png" + }, + { + "id": "760", + "name": "Sticker | jkaem (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-760.png" + }, + { + "id": "761", + "name": "Sticker | boltz | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-761.png" + }, + { + "id": "762", + "name": "Sticker | boltz (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-762.png" + }, + { + "id": "763", + "name": "Sticker | boltz (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-763.png" + }, + { + "id": "764", + "name": "Sticker | coldzera | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-764.png" + }, + { + "id": "765", + "name": "Sticker | coldzera (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-765.png" + }, + { + "id": "766", + "name": "Sticker | coldzera (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-766.png" + }, + { + "id": "767", + "name": "Sticker | FalleN | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-767.png" + }, + { + "id": "768", + "name": "Sticker | FalleN (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-768.png" + }, + { + "id": "769", + "name": "Sticker | FalleN (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-769.png" + }, + { + "id": "770", + "name": "Sticker | fer | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-770.png" + }, + { + "id": "771", + "name": "Sticker | fer (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-771.png" + }, + { + "id": "772", + "name": "Sticker | fer (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-772.png" + }, + { + "id": "773", + "name": "Sticker | steel | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-773.png" + }, + { + "id": "774", + "name": "Sticker | steel (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-774.png" + }, + { + "id": "775", + "name": "Sticker | steel (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-775.png" + }, + { + "id": "776", + "name": "Sticker | chrisJ | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-776.png" + }, + { + "id": "777", + "name": "Sticker | chrisJ (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-777.png" + }, + { + "id": "778", + "name": "Sticker | chrisJ (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-778.png" + }, + { + "id": "779", + "name": "Sticker | denis | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-779.png" + }, + { + "id": "780", + "name": "Sticker | denis (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-780.png" + }, + { + "id": "781", + "name": "Sticker | denis (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-781.png" + }, + { + "id": "782", + "name": "Sticker | gob b | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-782.png" + }, + { + "id": "783", + "name": "Sticker | gob b (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-783.png" + }, + { + "id": "784", + "name": "Sticker | gob b (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-784.png" + }, + { + "id": "785", + "name": "Sticker | nex | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-785.png" + }, + { + "id": "786", + "name": "Sticker | nex (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-786.png" + }, + { + "id": "787", + "name": "Sticker | nex (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-787.png" + }, + { + "id": "788", + "name": "Sticker | NiKo | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-788.png" + }, + { + "id": "789", + "name": "Sticker | NiKo (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-789.png" + }, + { + "id": "790", + "name": "Sticker | NiKo (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-790.png" + }, + { + "id": "791", + "name": "Sticker | Edward | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-791.png" + }, + { + "id": "792", + "name": "Sticker | Edward (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-792.png" + }, + { + "id": "793", + "name": "Sticker | Edward (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-793.png" + }, + { + "id": "794", + "name": "Sticker | flamie | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-794.png" + }, + { + "id": "795", + "name": "Sticker | flamie (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-795.png" + }, + { + "id": "796", + "name": "Sticker | flamie (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-796.png" + }, + { + "id": "797", + "name": "Sticker | GuardiaN | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-797.png" + }, + { + "id": "798", + "name": "Sticker | GuardiaN (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-798.png" + }, + { + "id": "799", + "name": "Sticker | GuardiaN (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-799.png" + }, + { + "id": "800", + "name": "Sticker | seized | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-800.png" + }, + { + "id": "801", + "name": "Sticker | seized (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-801.png" + }, + { + "id": "802", + "name": "Sticker | seized (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-802.png" + }, + { + "id": "803", + "name": "Sticker | Zeus | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-803.png" + }, + { + "id": "804", + "name": "Sticker | Zeus (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-804.png" + }, + { + "id": "805", + "name": "Sticker | Zeus (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-805.png" + }, + { + "id": "806", + "name": "Sticker | allu | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-806.png" + }, + { + "id": "807", + "name": "Sticker | allu (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-807.png" + }, + { + "id": "808", + "name": "Sticker | allu (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-808.png" + }, + { + "id": "809", + "name": "Sticker | f0rest | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-809.png" + }, + { + "id": "810", + "name": "Sticker | f0rest (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-810.png" + }, + { + "id": "811", + "name": "Sticker | f0rest (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-811.png" + }, + { + "id": "812", + "name": "Sticker | friberg | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-812.png" + }, + { + "id": "813", + "name": "Sticker | friberg (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-813.png" + }, + { + "id": "814", + "name": "Sticker | friberg (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-814.png" + }, + { + "id": "815", + "name": "Sticker | GeT_RiGhT | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-815.png" + }, + { + "id": "816", + "name": "Sticker | GeT_RiGhT (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-816.png" + }, + { + "id": "817", + "name": "Sticker | GeT_RiGhT (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-817.png" + }, + { + "id": "818", + "name": "Sticker | Xizt | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-818.png" + }, + { + "id": "819", + "name": "Sticker | Xizt (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-819.png" + }, + { + "id": "820", + "name": "Sticker | Xizt (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-820.png" + }, + { + "id": "821", + "name": "Sticker | aizy | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-821.png" + }, + { + "id": "822", + "name": "Sticker | aizy (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-822.png" + }, + { + "id": "823", + "name": "Sticker | aizy (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-823.png" + }, + { + "id": "824", + "name": "Sticker | Kjaerbye | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-824.png" + }, + { + "id": "825", + "name": "Sticker | Kjaerbye (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-825.png" + }, + { + "id": "826", + "name": "Sticker | Kjaerbye (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-826.png" + }, + { + "id": "827", + "name": "Sticker | MSL | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-827.png" + }, + { + "id": "828", + "name": "Sticker | MSL (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-828.png" + }, + { + "id": "829", + "name": "Sticker | MSL (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-829.png" + }, + { + "id": "830", + "name": "Sticker | Pimp | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-830.png" + }, + { + "id": "831", + "name": "Sticker | Pimp (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-831.png" + }, + { + "id": "832", + "name": "Sticker | Pimp (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-832.png" + }, + { + "id": "833", + "name": "Sticker | tenzki | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-833.png" + }, + { + "id": "834", + "name": "Sticker | tenzki (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-834.png" + }, + { + "id": "835", + "name": "Sticker | tenzki (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-835.png" + }, + { + "id": "836", + "name": "Sticker | adreN | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-836.png" + }, + { + "id": "837", + "name": "Sticker | adreN (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-837.png" + }, + { + "id": "838", + "name": "Sticker | adreN (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-838.png" + }, + { + "id": "839", + "name": "Sticker | EliGE | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-839.png" + }, + { + "id": "840", + "name": "Sticker | EliGE (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-840.png" + }, + { + "id": "841", + "name": "Sticker | EliGE (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-841.png" + }, + { + "id": "842", + "name": "Sticker | FugLy | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-842.png" + }, + { + "id": "843", + "name": "Sticker | FugLy (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-843.png" + }, + { + "id": "844", + "name": "Sticker | FugLy (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-844.png" + }, + { + "id": "845", + "name": "Sticker | Hiko | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-845.png" + }, + { + "id": "846", + "name": "Sticker | Hiko (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-846.png" + }, + { + "id": "847", + "name": "Sticker | Hiko (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-847.png" + }, + { + "id": "848", + "name": "Sticker | nitr0 | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-848.png" + }, + { + "id": "849", + "name": "Sticker | nitr0 (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-849.png" + }, + { + "id": "850", + "name": "Sticker | nitr0 (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-850.png" + }, + { + "id": "851", + "name": "Sticker | Ex6TenZ | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-851.png" + }, + { + "id": "852", + "name": "Sticker | Ex6TenZ (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-852.png" + }, + { + "id": "853", + "name": "Sticker | Ex6TenZ (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-853.png" + }, + { + "id": "854", + "name": "Sticker | RpK | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-854.png" + }, + { + "id": "855", + "name": "Sticker | RpK (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-855.png" + }, + { + "id": "856", + "name": "Sticker | RpK (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-856.png" + }, + { + "id": "857", + "name": "Sticker | ScreaM | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-857.png" + }, + { + "id": "858", + "name": "Sticker | ScreaM (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-858.png" + }, + { + "id": "859", + "name": "Sticker | ScreaM (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-859.png" + }, + { + "id": "860", + "name": "Sticker | shox | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-860.png" + }, + { + "id": "861", + "name": "Sticker | shox (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-861.png" + }, + { + "id": "862", + "name": "Sticker | shox (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-862.png" + }, + { + "id": "863", + "name": "Sticker | SmithZz | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-863.png" + }, + { + "id": "864", + "name": "Sticker | SmithZz (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-864.png" + }, + { + "id": "865", + "name": "Sticker | SmithZz (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-865.png" + }, + { + "id": "866", + "name": "Sticker | cajunb | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-866.png" + }, + { + "id": "867", + "name": "Sticker | cajunb (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-867.png" + }, + { + "id": "868", + "name": "Sticker | cajunb (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-868.png" + }, + { + "id": "869", + "name": "Sticker | device | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-869.png" + }, + { + "id": "870", + "name": "Sticker | device (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-870.png" + }, + { + "id": "871", + "name": "Sticker | device (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-871.png" + }, + { + "id": "872", + "name": "Sticker | dupreeh | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-872.png" + }, + { + "id": "873", + "name": "Sticker | dupreeh (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-873.png" + }, + { + "id": "874", + "name": "Sticker | dupreeh (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-874.png" + }, + { + "id": "875", + "name": "Sticker | karrigan | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-875.png" + }, + { + "id": "876", + "name": "Sticker | karrigan (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-876.png" + }, + { + "id": "877", + "name": "Sticker | karrigan (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-877.png" + }, + { + "id": "878", + "name": "Sticker | Xyp9x | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-878.png" + }, + { + "id": "879", + "name": "Sticker | Xyp9x (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-879.png" + }, + { + "id": "880", + "name": "Sticker | Xyp9x (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-880.png" + }, + { + "id": "881", + "name": "Sticker | Furlan | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-881.png" + }, + { + "id": "882", + "name": "Sticker | Furlan (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-882.png" + }, + { + "id": "883", + "name": "Sticker | Furlan (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-883.png" + }, + { + "id": "884", + "name": "Sticker | GruBy | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-884.png" + }, + { + "id": "885", + "name": "Sticker | GruBy (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-885.png" + }, + { + "id": "886", + "name": "Sticker | GruBy (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-886.png" + }, + { + "id": "887", + "name": "Sticker | Hyper | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-887.png" + }, + { + "id": "888", + "name": "Sticker | Hyper (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-888.png" + }, + { + "id": "889", + "name": "Sticker | Hyper (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-889.png" + }, + { + "id": "890", + "name": "Sticker | peet | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-890.png" + }, + { + "id": "891", + "name": "Sticker | peet (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-891.png" + }, + { + "id": "892", + "name": "Sticker | peet (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-892.png" + }, + { + "id": "893", + "name": "Sticker | rallen | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-893.png" + }, + { + "id": "894", + "name": "Sticker | rallen (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-894.png" + }, + { + "id": "895", + "name": "Sticker | rallen (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-895.png" + }, + { + "id": "896", + "name": "Sticker | byali | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-896.png" + }, + { + "id": "897", + "name": "Sticker | byali (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-897.png" + }, + { + "id": "898", + "name": "Sticker | byali (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-898.png" + }, + { + "id": "899", + "name": "Sticker | NEO | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-899.png" + }, + { + "id": "900", + "name": "Sticker | NEO (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-900.png" + }, + { + "id": "901", + "name": "Sticker | NEO (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-901.png" + }, + { + "id": "902", + "name": "Sticker | pashaBiceps | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-902.png" + }, + { + "id": "903", + "name": "Sticker | pashaBiceps (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-903.png" + }, + { + "id": "904", + "name": "Sticker | pashaBiceps (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-904.png" + }, + { + "id": "905", + "name": "Sticker | Snax | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-905.png" + }, + { + "id": "906", + "name": "Sticker | Snax (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-906.png" + }, + { + "id": "907", + "name": "Sticker | Snax (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-907.png" + }, + { + "id": "908", + "name": "Sticker | TaZ | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-908.png" + }, + { + "id": "909", + "name": "Sticker | TaZ (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-909.png" + }, + { + "id": "910", + "name": "Sticker | TaZ (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-910.png" + }, + { + "id": "911", + "name": "Sticker | Ninjas in Pyjamas | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-911.png" + }, + { + "id": "912", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-912.png" + }, + { + "id": "913", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-913.png" + }, + { + "id": "914", + "name": "Sticker | Team Dignitas | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-914.png" + }, + { + "id": "915", + "name": "Sticker | Team Dignitas (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-915.png" + }, + { + "id": "916", + "name": "Sticker | Team Dignitas (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-916.png" + }, + { + "id": "917", + "name": "Sticker | Counter Logic Gaming | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-917.png" + }, + { + "id": "918", + "name": "Sticker | Counter Logic Gaming (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-918.png" + }, + { + "id": "919", + "name": "Sticker | Counter Logic Gaming (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-919.png" + }, + { + "id": "920", + "name": "Sticker | Vexed Gaming | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-920.png" + }, + { + "id": "921", + "name": "Sticker | Vexed Gaming (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-921.png" + }, + { + "id": "922", + "name": "Sticker | Vexed Gaming (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-922.png" + }, + { + "id": "923", + "name": "Sticker | Flipsid3 Tactics | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-923.png" + }, + { + "id": "924", + "name": "Sticker | Flipsid3 Tactics (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-924.png" + }, + { + "id": "925", + "name": "Sticker | Flipsid3 Tactics (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-925.png" + }, + { + "id": "926", + "name": "Sticker | Team Liquid | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-926.png" + }, + { + "id": "927", + "name": "Sticker | Team Liquid (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-927.png" + }, + { + "id": "928", + "name": "Sticker | Team Liquid (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-928.png" + }, + { + "id": "929", + "name": "Sticker | mousesports | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-929.png" + }, + { + "id": "930", + "name": "Sticker | mousesports (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-930.png" + }, + { + "id": "931", + "name": "Sticker | mousesports (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-931.png" + }, + { + "id": "932", + "name": "Sticker | Natus Vincere | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-932.png" + }, + { + "id": "933", + "name": "Sticker | Natus Vincere (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-933.png" + }, + { + "id": "934", + "name": "Sticker | Natus Vincere (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-934.png" + }, + { + "id": "935", + "name": "Sticker | Virtus.Pro | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-935.png" + }, + { + "id": "936", + "name": "Sticker | Virtus.Pro (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-936.png" + }, + { + "id": "937", + "name": "Sticker | Virtus.Pro (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-937.png" + }, + { + "id": "938", + "name": "Sticker | Cloud9 | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-938.png" + }, + { + "id": "939", + "name": "Sticker | Cloud9 (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-939.png" + }, + { + "id": "940", + "name": "Sticker | Cloud9 (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-940.png" + }, + { + "id": "941", + "name": "Sticker | G2 Esports | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-941.png" + }, + { + "id": "942", + "name": "Sticker | G2 Esports (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-942.png" + }, + { + "id": "943", + "name": "Sticker | G2 Esports (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-943.png" + }, + { + "id": "944", + "name": "Sticker | Titan | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-944.png" + }, + { + "id": "945", + "name": "Sticker | Titan (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-945.png" + }, + { + "id": "946", + "name": "Sticker | Titan (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-946.png" + }, + { + "id": "947", + "name": "Sticker | Team SoloMid | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-947.png" + }, + { + "id": "948", + "name": "Sticker | Team SoloMid (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-948.png" + }, + { + "id": "949", + "name": "Sticker | Team SoloMid (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-949.png" + }, + { + "id": "950", + "name": "Sticker | Team EnVyUs | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-950.png" + }, + { + "id": "951", + "name": "Sticker | Team EnVyUs (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-951.png" + }, + { + "id": "952", + "name": "Sticker | Team EnVyUs (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-952.png" + }, + { + "id": "953", + "name": "Sticker | Fnatic | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-953.png" + }, + { + "id": "954", + "name": "Sticker | Fnatic (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-954.png" + }, + { + "id": "955", + "name": "Sticker | Fnatic (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-955.png" + }, + { + "id": "956", + "name": "Sticker | Luminosity Gaming | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-956.png" + }, + { + "id": "957", + "name": "Sticker | Luminosity Gaming (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-957.png" + }, + { + "id": "958", + "name": "Sticker | Luminosity Gaming (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-958.png" + }, + { + "id": "959", + "name": "Sticker | DreamHack | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-959.png" + }, + { + "id": "960", + "name": "Sticker | DreamHack (Foil) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-960.png" + }, + { + "id": "961", + "name": "Sticker | DreamHack (Gold) | Cluj-Napoca 2015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-961.png" + }, + { + "id": "962", + "name": "Sticker | Ivette", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-962.png" + }, + { + "id": "963", + "name": "Sticker | Kimberly", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-963.png" + }, + { + "id": "964", + "name": "Sticker | Martha", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-964.png" + }, + { + "id": "965", + "name": "Sticker | Merietta", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-965.png" + }, + { + "id": "966", + "name": "Sticker | Sherry", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-966.png" + }, + { + "id": "967", + "name": "Sticker | Tamara", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-967.png" + }, + { + "id": "968", + "name": "Sticker | Ivette (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-968.png" + }, + { + "id": "969", + "name": "Sticker | Kimberly (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-969.png" + }, + { + "id": "970", + "name": "Sticker | Martha (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-970.png" + }, + { + "id": "971", + "name": "Sticker | Merietta (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-971.png" + }, + { + "id": "972", + "name": "Sticker | Sherry (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-972.png" + }, + { + "id": "973", + "name": "Sticker | Tamara (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-973.png" + }, + { + "id": "974", + "name": "Sticker | Boom", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-974.png" + }, + { + "id": "975", + "name": "Sticker | Boom (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-975.png" + }, + { + "id": "976", + "name": "Sticker | Boom (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-976.png" + }, + { + "id": "977", + "name": "Sticker | Countdown", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-977.png" + }, + { + "id": "978", + "name": "Sticker | Countdown (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-978.png" + }, + { + "id": "979", + "name": "Sticker | Countdown (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-979.png" + }, + { + "id": "980", + "name": "Sticker | Don't Worry", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-980.png" + }, + { + "id": "981", + "name": "Sticker | Don't Worry (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-981.png" + }, + { + "id": "982", + "name": "Sticker | Don't Worry (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-982.png" + }, + { + "id": "983", + "name": "Sticker | Hard Cluck Life", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-983.png" + }, + { + "id": "984", + "name": "Sticker | Hard Cluck Life (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-984.png" + }, + { + "id": "985", + "name": "Sticker | Hard Cluck Life (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-985.png" + }, + { + "id": "986", + "name": "Sticker | Move It", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-986.png" + }, + { + "id": "987", + "name": "Sticker | Move It (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-987.png" + }, + { + "id": "988", + "name": "Sticker | Move It (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-988.png" + }, + { + "id": "989", + "name": "Sticker | The Awper", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-989.png" + }, + { + "id": "990", + "name": "Sticker | The Baiter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-990.png" + }, + { + "id": "991", + "name": "Sticker | The Bomber", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-991.png" + }, + { + "id": "992", + "name": "Sticker | The Bot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-992.png" + }, + { + "id": "993", + "name": "Sticker | The Fragger", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-993.png" + }, + { + "id": "994", + "name": "Sticker | The Leader", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-994.png" + }, + { + "id": "995", + "name": "Sticker | The Lurker", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-995.png" + }, + { + "id": "996", + "name": "Sticker | The 'Nader", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-996.png" + }, + { + "id": "997", + "name": "Sticker | The Ninja", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-997.png" + }, + { + "id": "998", + "name": "Sticker | Support", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-998.png" + }, + { + "id": "999", + "name": "Sticker | The Awper (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-999.png" + }, + { + "id": "1000", + "name": "Sticker | The Bomber (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1000.png" + }, + { + "id": "1001", + "name": "Sticker | The Fragger (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1001.png" + }, + { + "id": "1002", + "name": "Sticker | The Leader (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1002.png" + }, + { + "id": "1003", + "name": "Sticker | The Nader (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1003.png" + }, + { + "id": "1004", + "name": "Sticker | Ninja (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1004.png" + }, + { + "id": "1005", + "name": "Sticker | The Pro (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1005.png" + }, + { + "id": "1006", + "name": "Sticker | Support (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1006.png" + }, + { + "id": "1007", + "name": "Sticker | Ninjas in Pyjamas | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1007.png" + }, + { + "id": "1008", + "name": "Sticker | Ninjas in Pyjamas (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1008.png" + }, + { + "id": "1009", + "name": "Sticker | Ninjas in Pyjamas (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1009.png" + }, + { + "id": "1010", + "name": "Sticker | Ninjas in Pyjamas (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1010.png" + }, + { + "id": "1011", + "name": "Sticker | Splyce | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1011.png" + }, + { + "id": "1012", + "name": "Sticker | Splyce (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1012.png" + }, + { + "id": "1013", + "name": "Sticker | Splyce (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1013.png" + }, + { + "id": "1014", + "name": "Sticker | Splyce (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1014.png" + }, + { + "id": "1015", + "name": "Sticker | Counter Logic Gaming | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1015.png" + }, + { + "id": "1016", + "name": "Sticker | Counter Logic Gaming (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1016.png" + }, + { + "id": "1017", + "name": "Sticker | Counter Logic Gaming (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1017.png" + }, + { + "id": "1018", + "name": "Sticker | Counter Logic Gaming (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1018.png" + }, + { + "id": "1019", + "name": "Sticker | Gambit Gaming | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1019.png" + }, + { + "id": "1020", + "name": "Sticker | Gambit Gaming (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1020.png" + }, + { + "id": "1021", + "name": "Sticker | Gambit Gaming (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1021.png" + }, + { + "id": "1022", + "name": "Sticker | Gambit Gaming (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1022.png" + }, + { + "id": "1023", + "name": "Sticker | Flipsid3 Tactics | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1023.png" + }, + { + "id": "1024", + "name": "Sticker | Flipsid3 Tactics (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1024.png" + }, + { + "id": "1025", + "name": "Sticker | Flipsid3 Tactics (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1025.png" + }, + { + "id": "1026", + "name": "Sticker | Flipsid3 Tactics (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1026.png" + }, + { + "id": "1027", + "name": "Sticker | Team Liquid | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1027.png" + }, + { + "id": "1028", + "name": "Sticker | Team Liquid (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1028.png" + }, + { + "id": "1029", + "name": "Sticker | Team Liquid (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1029.png" + }, + { + "id": "1030", + "name": "Sticker | Team Liquid (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1030.png" + }, + { + "id": "1031", + "name": "Sticker | mousesports | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1031.png" + }, + { + "id": "1032", + "name": "Sticker | mousesports (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1032.png" + }, + { + "id": "1033", + "name": "Sticker | mousesports (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1033.png" + }, + { + "id": "1034", + "name": "Sticker | mousesports (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1034.png" + }, + { + "id": "1035", + "name": "Sticker | Natus Vincere | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1035.png" + }, + { + "id": "1036", + "name": "Sticker | Natus Vincere (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1036.png" + }, + { + "id": "1037", + "name": "Sticker | Natus Vincere (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1037.png" + }, + { + "id": "1038", + "name": "Sticker | Natus Vincere (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1038.png" + }, + { + "id": "1039", + "name": "Sticker | Virtus.Pro | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1039.png" + }, + { + "id": "1040", + "name": "Sticker | Virtus.Pro (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1040.png" + }, + { + "id": "1041", + "name": "Sticker | Virtus.Pro (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1041.png" + }, + { + "id": "1042", + "name": "Sticker | Virtus.Pro (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1042.png" + }, + { + "id": "1043", + "name": "Sticker | Cloud9 | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1043.png" + }, + { + "id": "1044", + "name": "Sticker | Cloud9 (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1044.png" + }, + { + "id": "1045", + "name": "Sticker | Cloud9 (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1045.png" + }, + { + "id": "1046", + "name": "Sticker | Cloud9 (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1046.png" + }, + { + "id": "1047", + "name": "Sticker | G2 Esports | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1047.png" + }, + { + "id": "1048", + "name": "Sticker | G2 Esports (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1048.png" + }, + { + "id": "1049", + "name": "Sticker | G2 Esports (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1049.png" + }, + { + "id": "1050", + "name": "Sticker | G2 Esports (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1050.png" + }, + { + "id": "1051", + "name": "Sticker | FaZe Clan | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1051.png" + }, + { + "id": "1052", + "name": "Sticker | FaZe Clan (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1052.png" + }, + { + "id": "1053", + "name": "Sticker | FaZe Clan (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1053.png" + }, + { + "id": "1054", + "name": "Sticker | FaZe Clan (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1054.png" + }, + { + "id": "1055", + "name": "Sticker | Astralis | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1055.png" + }, + { + "id": "1056", + "name": "Sticker | Astralis (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1056.png" + }, + { + "id": "1057", + "name": "Sticker | Astralis (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1057.png" + }, + { + "id": "1058", + "name": "Sticker | Astralis (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1058.png" + }, + { + "id": "1059", + "name": "Sticker | Team EnVyUs | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1059.png" + }, + { + "id": "1060", + "name": "Sticker | Team EnVyUs (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1060.png" + }, + { + "id": "1061", + "name": "Sticker | Team EnVyUs (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1061.png" + }, + { + "id": "1062", + "name": "Sticker | Team EnVyUs (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1062.png" + }, + { + "id": "1063", + "name": "Sticker | Fnatic | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1063.png" + }, + { + "id": "1064", + "name": "Sticker | Fnatic (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1064.png" + }, + { + "id": "1065", + "name": "Sticker | Fnatic (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1065.png" + }, + { + "id": "1066", + "name": "Sticker | Fnatic (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1066.png" + }, + { + "id": "1067", + "name": "Sticker | Luminosity Gaming | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1067.png" + }, + { + "id": "1068", + "name": "Sticker | Luminosity Gaming (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1068.png" + }, + { + "id": "1069", + "name": "Sticker | Luminosity Gaming (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1069.png" + }, + { + "id": "1070", + "name": "Sticker | Luminosity Gaming (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1070.png" + }, + { + "id": "1071", + "name": "Sticker | MLG | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1071.png" + }, + { + "id": "1072", + "name": "Sticker | MLG (Holo) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1072.png" + }, + { + "id": "1073", + "name": "Sticker | MLG (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1073.png" + }, + { + "id": "1074", + "name": "Sticker | MLG (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1074.png" + }, + { + "id": "1075", + "name": "Sticker | reltuC | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1075.png" + }, + { + "id": "1076", + "name": "Sticker | reltuC (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1076.png" + }, + { + "id": "1077", + "name": "Sticker | reltuC (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1077.png" + }, + { + "id": "1078", + "name": "Sticker | FugLy | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1078.png" + }, + { + "id": "1079", + "name": "Sticker | FugLy (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1079.png" + }, + { + "id": "1080", + "name": "Sticker | FugLy (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1080.png" + }, + { + "id": "1081", + "name": "Sticker | hazed | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1081.png" + }, + { + "id": "1082", + "name": "Sticker | hazed (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1082.png" + }, + { + "id": "1083", + "name": "Sticker | hazed (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1083.png" + }, + { + "id": "1084", + "name": "Sticker | jdm64 | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1084.png" + }, + { + "id": "1085", + "name": "Sticker | jdm64 (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1085.png" + }, + { + "id": "1086", + "name": "Sticker | jdm64 (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1086.png" + }, + { + "id": "1087", + "name": "Sticker | tarik | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1087.png" + }, + { + "id": "1088", + "name": "Sticker | tarik (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1088.png" + }, + { + "id": "1089", + "name": "Sticker | tarik (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1089.png" + }, + { + "id": "1090", + "name": "Sticker | freakazoid | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1090.png" + }, + { + "id": "1091", + "name": "Sticker | freakazoid (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1091.png" + }, + { + "id": "1092", + "name": "Sticker | freakazoid (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1092.png" + }, + { + "id": "1093", + "name": "Sticker | Stewie2K | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1093.png" + }, + { + "id": "1094", + "name": "Sticker | Stewie2K (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1094.png" + }, + { + "id": "1095", + "name": "Sticker | Stewie2K (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1095.png" + }, + { + "id": "1096", + "name": "Sticker | shroud | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1096.png" + }, + { + "id": "1097", + "name": "Sticker | shroud (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1097.png" + }, + { + "id": "1098", + "name": "Sticker | shroud (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1098.png" + }, + { + "id": "1099", + "name": "Sticker | Skadoodle | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1099.png" + }, + { + "id": "1100", + "name": "Sticker | Skadoodle (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1100.png" + }, + { + "id": "1101", + "name": "Sticker | Skadoodle (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1101.png" + }, + { + "id": "1102", + "name": "Sticker | n0thing | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1102.png" + }, + { + "id": "1103", + "name": "Sticker | n0thing (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1103.png" + }, + { + "id": "1104", + "name": "Sticker | n0thing (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1104.png" + }, + { + "id": "1105", + "name": "Sticker | apEX | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1105.png" + }, + { + "id": "1106", + "name": "Sticker | apEX (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1106.png" + }, + { + "id": "1107", + "name": "Sticker | apEX (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1107.png" + }, + { + "id": "1108", + "name": "Sticker | Happy | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1108.png" + }, + { + "id": "1109", + "name": "Sticker | Happy (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1109.png" + }, + { + "id": "1110", + "name": "Sticker | Happy (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1110.png" + }, + { + "id": "1111", + "name": "Sticker | DEVIL | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1111.png" + }, + { + "id": "1112", + "name": "Sticker | DEVIL (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1112.png" + }, + { + "id": "1113", + "name": "Sticker | DEVIL (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1113.png" + }, + { + "id": "1114", + "name": "Sticker | kennyS | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1114.png" + }, + { + "id": "1115", + "name": "Sticker | kennyS (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1115.png" + }, + { + "id": "1116", + "name": "Sticker | kennyS (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1116.png" + }, + { + "id": "1117", + "name": "Sticker | NBK- | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1117.png" + }, + { + "id": "1118", + "name": "Sticker | NBK- (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1118.png" + }, + { + "id": "1119", + "name": "Sticker | NBK- (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1119.png" + }, + { + "id": "1120", + "name": "Sticker | B1ad3 | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1120.png" + }, + { + "id": "1121", + "name": "Sticker | B1ad3 (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1121.png" + }, + { + "id": "1122", + "name": "Sticker | B1ad3 (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1122.png" + }, + { + "id": "1123", + "name": "Sticker | bondik | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1123.png" + }, + { + "id": "1124", + "name": "Sticker | bondik (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1124.png" + }, + { + "id": "1125", + "name": "Sticker | bondik (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1125.png" + }, + { + "id": "1126", + "name": "Sticker | Shara | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1126.png" + }, + { + "id": "1127", + "name": "Sticker | Shara (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1127.png" + }, + { + "id": "1128", + "name": "Sticker | Shara (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1128.png" + }, + { + "id": "1129", + "name": "Sticker | markeloff | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1129.png" + }, + { + "id": "1130", + "name": "Sticker | markeloff (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1130.png" + }, + { + "id": "1131", + "name": "Sticker | markeloff (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1131.png" + }, + { + "id": "1132", + "name": "Sticker | WorldEdit | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1132.png" + }, + { + "id": "1133", + "name": "Sticker | WorldEdit (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1133.png" + }, + { + "id": "1134", + "name": "Sticker | WorldEdit (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1134.png" + }, + { + "id": "1135", + "name": "Sticker | flusha | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1135.png" + }, + { + "id": "1136", + "name": "Sticker | flusha (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1136.png" + }, + { + "id": "1137", + "name": "Sticker | flusha (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1137.png" + }, + { + "id": "1138", + "name": "Sticker | JW | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1138.png" + }, + { + "id": "1139", + "name": "Sticker | JW (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1139.png" + }, + { + "id": "1140", + "name": "Sticker | JW (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1140.png" + }, + { + "id": "1141", + "name": "Sticker | KRIMZ | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1141.png" + }, + { + "id": "1142", + "name": "Sticker | KRIMZ (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1142.png" + }, + { + "id": "1143", + "name": "Sticker | KRIMZ (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1143.png" + }, + { + "id": "1144", + "name": "Sticker | olofmeister | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1144.png" + }, + { + "id": "1145", + "name": "Sticker | olofmeister (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1145.png" + }, + { + "id": "1146", + "name": "Sticker | olofmeister (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1146.png" + }, + { + "id": "1147", + "name": "Sticker | dennis | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1147.png" + }, + { + "id": "1148", + "name": "Sticker | dennis (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1148.png" + }, + { + "id": "1149", + "name": "Sticker | dennis (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1149.png" + }, + { + "id": "1150", + "name": "Sticker | aizy | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1150.png" + }, + { + "id": "1151", + "name": "Sticker | aizy (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1151.png" + }, + { + "id": "1152", + "name": "Sticker | aizy (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1152.png" + }, + { + "id": "1153", + "name": "Sticker | fox | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1153.png" + }, + { + "id": "1154", + "name": "Sticker | fox (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1154.png" + }, + { + "id": "1155", + "name": "Sticker | fox (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1155.png" + }, + { + "id": "1156", + "name": "Sticker | Maikelele | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1156.png" + }, + { + "id": "1157", + "name": "Sticker | Maikelele (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1157.png" + }, + { + "id": "1158", + "name": "Sticker | Maikelele (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1158.png" + }, + { + "id": "1159", + "name": "Sticker | rain | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1159.png" + }, + { + "id": "1160", + "name": "Sticker | rain (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1160.png" + }, + { + "id": "1161", + "name": "Sticker | rain (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1161.png" + }, + { + "id": "1162", + "name": "Sticker | jkaem | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1162.png" + }, + { + "id": "1163", + "name": "Sticker | jkaem (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1163.png" + }, + { + "id": "1164", + "name": "Sticker | jkaem (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1164.png" + }, + { + "id": "1165", + "name": "Sticker | fnx | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1165.png" + }, + { + "id": "1166", + "name": "Sticker | fnx (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1166.png" + }, + { + "id": "1167", + "name": "Sticker | fnx (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1167.png" + }, + { + "id": "1168", + "name": "Sticker | coldzera | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1168.png" + }, + { + "id": "1169", + "name": "Sticker | coldzera (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1169.png" + }, + { + "id": "1170", + "name": "Sticker | coldzera (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1170.png" + }, + { + "id": "1171", + "name": "Sticker | FalleN | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1171.png" + }, + { + "id": "1172", + "name": "Sticker | FalleN (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1172.png" + }, + { + "id": "1173", + "name": "Sticker | FalleN (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1173.png" + }, + { + "id": "1174", + "name": "Sticker | fer | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1174.png" + }, + { + "id": "1175", + "name": "Sticker | fer (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1175.png" + }, + { + "id": "1176", + "name": "Sticker | fer (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1176.png" + }, + { + "id": "1177", + "name": "Sticker | TACO | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1177.png" + }, + { + "id": "1178", + "name": "Sticker | TACO (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1178.png" + }, + { + "id": "1179", + "name": "Sticker | TACO (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1179.png" + }, + { + "id": "1180", + "name": "Sticker | chrisJ | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1180.png" + }, + { + "id": "1181", + "name": "Sticker | chrisJ (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1181.png" + }, + { + "id": "1182", + "name": "Sticker | chrisJ (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1182.png" + }, + { + "id": "1183", + "name": "Sticker | denis | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1183.png" + }, + { + "id": "1184", + "name": "Sticker | denis (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1184.png" + }, + { + "id": "1185", + "name": "Sticker | denis (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1185.png" + }, + { + "id": "1186", + "name": "Sticker | Spiidi | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1186.png" + }, + { + "id": "1187", + "name": "Sticker | Spiidi (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1187.png" + }, + { + "id": "1188", + "name": "Sticker | Spiidi (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1188.png" + }, + { + "id": "1189", + "name": "Sticker | nex | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1189.png" + }, + { + "id": "1190", + "name": "Sticker | nex (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1190.png" + }, + { + "id": "1191", + "name": "Sticker | nex (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1191.png" + }, + { + "id": "1192", + "name": "Sticker | NiKo | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1192.png" + }, + { + "id": "1193", + "name": "Sticker | NiKo (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1193.png" + }, + { + "id": "1194", + "name": "Sticker | NiKo (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1194.png" + }, + { + "id": "1195", + "name": "Sticker | Edward | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1195.png" + }, + { + "id": "1196", + "name": "Sticker | Edward (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1196.png" + }, + { + "id": "1197", + "name": "Sticker | Edward (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1197.png" + }, + { + "id": "1198", + "name": "Sticker | flamie | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1198.png" + }, + { + "id": "1199", + "name": "Sticker | flamie (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1199.png" + }, + { + "id": "1200", + "name": "Sticker | flamie (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1200.png" + }, + { + "id": "1201", + "name": "Sticker | GuardiaN | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1201.png" + }, + { + "id": "1202", + "name": "Sticker | GuardiaN (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1202.png" + }, + { + "id": "1203", + "name": "Sticker | GuardiaN (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1203.png" + }, + { + "id": "1204", + "name": "Sticker | seized | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1204.png" + }, + { + "id": "1205", + "name": "Sticker | seized (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1205.png" + }, + { + "id": "1206", + "name": "Sticker | seized (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1206.png" + }, + { + "id": "1207", + "name": "Sticker | Zeus | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1207.png" + }, + { + "id": "1208", + "name": "Sticker | Zeus (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1208.png" + }, + { + "id": "1209", + "name": "Sticker | Zeus (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1209.png" + }, + { + "id": "1210", + "name": "Sticker | pyth | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1210.png" + }, + { + "id": "1211", + "name": "Sticker | pyth (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1211.png" + }, + { + "id": "1212", + "name": "Sticker | pyth (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1212.png" + }, + { + "id": "1213", + "name": "Sticker | f0rest | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1213.png" + }, + { + "id": "1214", + "name": "Sticker | f0rest (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1214.png" + }, + { + "id": "1215", + "name": "Sticker | f0rest (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1215.png" + }, + { + "id": "1216", + "name": "Sticker | friberg | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1216.png" + }, + { + "id": "1217", + "name": "Sticker | friberg (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1217.png" + }, + { + "id": "1218", + "name": "Sticker | friberg (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1218.png" + }, + { + "id": "1219", + "name": "Sticker | GeT_RiGhT | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1219.png" + }, + { + "id": "1220", + "name": "Sticker | GeT_RiGhT (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1220.png" + }, + { + "id": "1221", + "name": "Sticker | GeT_RiGhT (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1221.png" + }, + { + "id": "1222", + "name": "Sticker | Xizt | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1222.png" + }, + { + "id": "1223", + "name": "Sticker | Xizt (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1223.png" + }, + { + "id": "1224", + "name": "Sticker | Xizt (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1224.png" + }, + { + "id": "1225", + "name": "Sticker | jasonR | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1225.png" + }, + { + "id": "1226", + "name": "Sticker | jasonR (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1226.png" + }, + { + "id": "1227", + "name": "Sticker | jasonR (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1227.png" + }, + { + "id": "1228", + "name": "Sticker | arya | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1228.png" + }, + { + "id": "1229", + "name": "Sticker | arya (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1229.png" + }, + { + "id": "1230", + "name": "Sticker | arya (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1230.png" + }, + { + "id": "1231", + "name": "Sticker | Professor_Chaos | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1231.png" + }, + { + "id": "1232", + "name": "Sticker | Professor_Chaos (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1232.png" + }, + { + "id": "1233", + "name": "Sticker | Professor_Chaos (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1233.png" + }, + { + "id": "1234", + "name": "Sticker | DAVEY | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1234.png" + }, + { + "id": "1235", + "name": "Sticker | DAVEY (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1235.png" + }, + { + "id": "1236", + "name": "Sticker | DAVEY (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1236.png" + }, + { + "id": "1237", + "name": "Sticker | abE | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1237.png" + }, + { + "id": "1238", + "name": "Sticker | abE (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1238.png" + }, + { + "id": "1239", + "name": "Sticker | abE (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1239.png" + }, + { + "id": "1240", + "name": "Sticker | adreN | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1240.png" + }, + { + "id": "1241", + "name": "Sticker | adreN (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1241.png" + }, + { + "id": "1242", + "name": "Sticker | adreN (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1242.png" + }, + { + "id": "1243", + "name": "Sticker | EliGE | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1243.png" + }, + { + "id": "1244", + "name": "Sticker | EliGE (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1244.png" + }, + { + "id": "1245", + "name": "Sticker | EliGE (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1245.png" + }, + { + "id": "1246", + "name": "Sticker | s1mple | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1246.png" + }, + { + "id": "1247", + "name": "Sticker | s1mple (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1247.png" + }, + { + "id": "1248", + "name": "Sticker | s1mple (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1248.png" + }, + { + "id": "1249", + "name": "Sticker | Hiko | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1249.png" + }, + { + "id": "1250", + "name": "Sticker | Hiko (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1250.png" + }, + { + "id": "1251", + "name": "Sticker | Hiko (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1251.png" + }, + { + "id": "1252", + "name": "Sticker | nitr0 | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1252.png" + }, + { + "id": "1253", + "name": "Sticker | nitr0 (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1253.png" + }, + { + "id": "1254", + "name": "Sticker | nitr0 (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1254.png" + }, + { + "id": "1255", + "name": "Sticker | Ex6TenZ | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1255.png" + }, + { + "id": "1256", + "name": "Sticker | Ex6TenZ (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1256.png" + }, + { + "id": "1257", + "name": "Sticker | Ex6TenZ (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1257.png" + }, + { + "id": "1258", + "name": "Sticker | RpK | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1258.png" + }, + { + "id": "1259", + "name": "Sticker | RpK (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1259.png" + }, + { + "id": "1260", + "name": "Sticker | RpK (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1260.png" + }, + { + "id": "1261", + "name": "Sticker | ScreaM | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1261.png" + }, + { + "id": "1262", + "name": "Sticker | ScreaM (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1262.png" + }, + { + "id": "1263", + "name": "Sticker | ScreaM (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1263.png" + }, + { + "id": "1264", + "name": "Sticker | shox | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1264.png" + }, + { + "id": "1265", + "name": "Sticker | shox (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1265.png" + }, + { + "id": "1266", + "name": "Sticker | shox (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1266.png" + }, + { + "id": "1267", + "name": "Sticker | SmithZz | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1267.png" + }, + { + "id": "1268", + "name": "Sticker | SmithZz (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1268.png" + }, + { + "id": "1269", + "name": "Sticker | SmithZz (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1269.png" + }, + { + "id": "1270", + "name": "Sticker | cajunb | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1270.png" + }, + { + "id": "1271", + "name": "Sticker | cajunb (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1271.png" + }, + { + "id": "1272", + "name": "Sticker | cajunb (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1272.png" + }, + { + "id": "1273", + "name": "Sticker | device | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1273.png" + }, + { + "id": "1274", + "name": "Sticker | device (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1274.png" + }, + { + "id": "1275", + "name": "Sticker | device (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1275.png" + }, + { + "id": "1276", + "name": "Sticker | dupreeh | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1276.png" + }, + { + "id": "1277", + "name": "Sticker | dupreeh (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1277.png" + }, + { + "id": "1278", + "name": "Sticker | dupreeh (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1278.png" + }, + { + "id": "1279", + "name": "Sticker | karrigan | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1279.png" + }, + { + "id": "1280", + "name": "Sticker | karrigan (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1280.png" + }, + { + "id": "1281", + "name": "Sticker | karrigan (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1281.png" + }, + { + "id": "1282", + "name": "Sticker | Xyp9x | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1282.png" + }, + { + "id": "1283", + "name": "Sticker | Xyp9x (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1283.png" + }, + { + "id": "1284", + "name": "Sticker | Xyp9x (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1284.png" + }, + { + "id": "1285", + "name": "Sticker | wayLander | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1285.png" + }, + { + "id": "1286", + "name": "Sticker | wayLander (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1286.png" + }, + { + "id": "1287", + "name": "Sticker | wayLander (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1287.png" + }, + { + "id": "1288", + "name": "Sticker | Dosia | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1288.png" + }, + { + "id": "1289", + "name": "Sticker | Dosia (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1289.png" + }, + { + "id": "1290", + "name": "Sticker | Dosia (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1290.png" + }, + { + "id": "1291", + "name": "Sticker | hooch | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1291.png" + }, + { + "id": "1292", + "name": "Sticker | hooch (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1292.png" + }, + { + "id": "1293", + "name": "Sticker | hooch (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1293.png" + }, + { + "id": "1294", + "name": "Sticker | mou | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1294.png" + }, + { + "id": "1295", + "name": "Sticker | mou (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1295.png" + }, + { + "id": "1296", + "name": "Sticker | mou (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1296.png" + }, + { + "id": "1297", + "name": "Sticker | AdreN | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1297.png" + }, + { + "id": "1298", + "name": "Sticker | AdreN (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1298.png" + }, + { + "id": "1299", + "name": "Sticker | AdreN (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1299.png" + }, + { + "id": "1300", + "name": "Sticker | byali | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1300.png" + }, + { + "id": "1301", + "name": "Sticker | byali (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1301.png" + }, + { + "id": "1302", + "name": "Sticker | byali (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1302.png" + }, + { + "id": "1303", + "name": "Sticker | NEO | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1303.png" + }, + { + "id": "1304", + "name": "Sticker | NEO (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1304.png" + }, + { + "id": "1305", + "name": "Sticker | NEO (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1305.png" + }, + { + "id": "1306", + "name": "Sticker | pashaBiceps | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1306.png" + }, + { + "id": "1307", + "name": "Sticker | pashaBiceps (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1307.png" + }, + { + "id": "1308", + "name": "Sticker | pashaBiceps (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1308.png" + }, + { + "id": "1309", + "name": "Sticker | Snax | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1309.png" + }, + { + "id": "1310", + "name": "Sticker | Snax (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1310.png" + }, + { + "id": "1311", + "name": "Sticker | Snax (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1311.png" + }, + { + "id": "1312", + "name": "Sticker | TaZ | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1312.png" + }, + { + "id": "1313", + "name": "Sticker | TaZ (Foil) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1313.png" + }, + { + "id": "1314", + "name": "Sticker | TaZ (Gold) | MLG Columbus 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1314.png" + }, + { + "id": "1315", + "name": "Sticker | All-Stars Orange (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1315.png" + }, + { + "id": "1316", + "name": "Sticker | All-Stars Blue (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1316.png" + }, + { + "id": "1317", + "name": "Sticker | Ninjas in Pyjamas | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1317.png" + }, + { + "id": "1318", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1318.png" + }, + { + "id": "1319", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1319.png" + }, + { + "id": "1320", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1320.png" + }, + { + "id": "1321", + "name": "Sticker | OpTic Gaming | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1321.png" + }, + { + "id": "1322", + "name": "Sticker | OpTic Gaming (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1322.png" + }, + { + "id": "1323", + "name": "Sticker | OpTic Gaming (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1323.png" + }, + { + "id": "1324", + "name": "Sticker | OpTic Gaming (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1324.png" + }, + { + "id": "1325", + "name": "Sticker | Counter Logic Gaming | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1325.png" + }, + { + "id": "1326", + "name": "Sticker | Counter Logic Gaming (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1326.png" + }, + { + "id": "1327", + "name": "Sticker | Counter Logic Gaming (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1327.png" + }, + { + "id": "1328", + "name": "Sticker | Counter Logic Gaming (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1328.png" + }, + { + "id": "1329", + "name": "Sticker | Gambit Gaming | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1329.png" + }, + { + "id": "1330", + "name": "Sticker | Gambit Gaming (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1330.png" + }, + { + "id": "1331", + "name": "Sticker | Gambit Gaming (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1331.png" + }, + { + "id": "1332", + "name": "Sticker | Gambit Gaming (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1332.png" + }, + { + "id": "1333", + "name": "Sticker | Flipsid3 Tactics | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1333.png" + }, + { + "id": "1334", + "name": "Sticker | Flipsid3 Tactics (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1334.png" + }, + { + "id": "1335", + "name": "Sticker | Flipsid3 Tactics (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1335.png" + }, + { + "id": "1336", + "name": "Sticker | Flipsid3 Tactics (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1336.png" + }, + { + "id": "1337", + "name": "Sticker | Team Liquid | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1337.png" + }, + { + "id": "1338", + "name": "Sticker | Team Liquid (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1338.png" + }, + { + "id": "1339", + "name": "Sticker | Team Liquid (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1339.png" + }, + { + "id": "1340", + "name": "Sticker | Team Liquid (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1340.png" + }, + { + "id": "1341", + "name": "Sticker | mousesports | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1341.png" + }, + { + "id": "1342", + "name": "Sticker | mousesports (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1342.png" + }, + { + "id": "1343", + "name": "Sticker | mousesports (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1343.png" + }, + { + "id": "1344", + "name": "Sticker | mousesports (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1344.png" + }, + { + "id": "1345", + "name": "Sticker | Natus Vincere | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1345.png" + }, + { + "id": "1346", + "name": "Sticker | Natus Vincere (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1346.png" + }, + { + "id": "1347", + "name": "Sticker | Natus Vincere (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1347.png" + }, + { + "id": "1348", + "name": "Sticker | Natus Vincere (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1348.png" + }, + { + "id": "1349", + "name": "Sticker | Virtus.Pro | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1349.png" + }, + { + "id": "1350", + "name": "Sticker | Virtus.Pro (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1350.png" + }, + { + "id": "1351", + "name": "Sticker | Virtus.Pro (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1351.png" + }, + { + "id": "1352", + "name": "Sticker | Virtus.Pro (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1352.png" + }, + { + "id": "1353", + "name": "Sticker | SK Gaming | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1353.png" + }, + { + "id": "1354", + "name": "Sticker | SK Gaming (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1354.png" + }, + { + "id": "1355", + "name": "Sticker | SK Gaming (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1355.png" + }, + { + "id": "1356", + "name": "Sticker | SK Gaming (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1356.png" + }, + { + "id": "1357", + "name": "Sticker | G2 Esports | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1357.png" + }, + { + "id": "1358", + "name": "Sticker | G2 Esports (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1358.png" + }, + { + "id": "1359", + "name": "Sticker | G2 Esports (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1359.png" + }, + { + "id": "1360", + "name": "Sticker | G2 Esports (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1360.png" + }, + { + "id": "1361", + "name": "Sticker | FaZe Clan | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1361.png" + }, + { + "id": "1362", + "name": "Sticker | FaZe Clan (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1362.png" + }, + { + "id": "1363", + "name": "Sticker | FaZe Clan (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1363.png" + }, + { + "id": "1364", + "name": "Sticker | FaZe Clan (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1364.png" + }, + { + "id": "1365", + "name": "Sticker | Astralis | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1365.png" + }, + { + "id": "1366", + "name": "Sticker | Astralis (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1366.png" + }, + { + "id": "1367", + "name": "Sticker | Astralis (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1367.png" + }, + { + "id": "1368", + "name": "Sticker | Astralis (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1368.png" + }, + { + "id": "1369", + "name": "Sticker | Team EnVyUs | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1369.png" + }, + { + "id": "1370", + "name": "Sticker | Team EnVyUs (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1370.png" + }, + { + "id": "1371", + "name": "Sticker | Team EnVyUs (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1371.png" + }, + { + "id": "1372", + "name": "Sticker | Team EnVyUs (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1372.png" + }, + { + "id": "1373", + "name": "Sticker | Fnatic | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1373.png" + }, + { + "id": "1374", + "name": "Sticker | Fnatic (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1374.png" + }, + { + "id": "1375", + "name": "Sticker | Fnatic (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1375.png" + }, + { + "id": "1376", + "name": "Sticker | Fnatic (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1376.png" + }, + { + "id": "1377", + "name": "Sticker | Team Dignitas | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1377.png" + }, + { + "id": "1378", + "name": "Sticker | Team Dignitas (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1378.png" + }, + { + "id": "1379", + "name": "Sticker | Team Dignitas (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1379.png" + }, + { + "id": "1380", + "name": "Sticker | Team Dignitas (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1380.png" + }, + { + "id": "1381", + "name": "Sticker | ESL | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1381.png" + }, + { + "id": "1382", + "name": "Sticker | ESL (Holo) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1382.png" + }, + { + "id": "1383", + "name": "Sticker | ESL (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1383.png" + }, + { + "id": "1384", + "name": "Sticker | ESL (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1384.png" + }, + { + "id": "1385", + "name": "Sticker | reltuC | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1385.png" + }, + { + "id": "1386", + "name": "Sticker | reltuC (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1386.png" + }, + { + "id": "1387", + "name": "Sticker | reltuC (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1387.png" + }, + { + "id": "1388", + "name": "Sticker | koosta | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1388.png" + }, + { + "id": "1389", + "name": "Sticker | koosta (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1389.png" + }, + { + "id": "1390", + "name": "Sticker | koosta (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1390.png" + }, + { + "id": "1391", + "name": "Sticker | hazed | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1391.png" + }, + { + "id": "1392", + "name": "Sticker | hazed (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1392.png" + }, + { + "id": "1393", + "name": "Sticker | hazed (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1393.png" + }, + { + "id": "1394", + "name": "Sticker | pita | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1394.png" + }, + { + "id": "1395", + "name": "Sticker | pita (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1395.png" + }, + { + "id": "1396", + "name": "Sticker | pita (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1396.png" + }, + { + "id": "1397", + "name": "Sticker | tarik | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1397.png" + }, + { + "id": "1398", + "name": "Sticker | tarik (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1398.png" + }, + { + "id": "1399", + "name": "Sticker | tarik (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1399.png" + }, + { + "id": "1400", + "name": "Sticker | daps | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1400.png" + }, + { + "id": "1401", + "name": "Sticker | daps (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1401.png" + }, + { + "id": "1402", + "name": "Sticker | daps (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1402.png" + }, + { + "id": "1403", + "name": "Sticker | mixwell | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1403.png" + }, + { + "id": "1404", + "name": "Sticker | mixwell (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1404.png" + }, + { + "id": "1405", + "name": "Sticker | mixwell (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1405.png" + }, + { + "id": "1406", + "name": "Sticker | NAF | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1406.png" + }, + { + "id": "1407", + "name": "Sticker | NAF (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1407.png" + }, + { + "id": "1408", + "name": "Sticker | NAF (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1408.png" + }, + { + "id": "1409", + "name": "Sticker | RUSH | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1409.png" + }, + { + "id": "1410", + "name": "Sticker | RUSH (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1410.png" + }, + { + "id": "1411", + "name": "Sticker | RUSH (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1411.png" + }, + { + "id": "1412", + "name": "Sticker | stanislaw | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1412.png" + }, + { + "id": "1413", + "name": "Sticker | stanislaw (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1413.png" + }, + { + "id": "1414", + "name": "Sticker | stanislaw (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1414.png" + }, + { + "id": "1415", + "name": "Sticker | apEX | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1415.png" + }, + { + "id": "1416", + "name": "Sticker | apEX (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1416.png" + }, + { + "id": "1417", + "name": "Sticker | apEX (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1417.png" + }, + { + "id": "1418", + "name": "Sticker | Happy | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1418.png" + }, + { + "id": "1419", + "name": "Sticker | Happy (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1419.png" + }, + { + "id": "1420", + "name": "Sticker | Happy (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1420.png" + }, + { + "id": "1421", + "name": "Sticker | DEVIL | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1421.png" + }, + { + "id": "1422", + "name": "Sticker | DEVIL (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1422.png" + }, + { + "id": "1423", + "name": "Sticker | DEVIL (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1423.png" + }, + { + "id": "1424", + "name": "Sticker | kennyS | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1424.png" + }, + { + "id": "1425", + "name": "Sticker | kennyS (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1425.png" + }, + { + "id": "1426", + "name": "Sticker | kennyS (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1426.png" + }, + { + "id": "1427", + "name": "Sticker | NBK- | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1427.png" + }, + { + "id": "1428", + "name": "Sticker | NBK- (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1428.png" + }, + { + "id": "1429", + "name": "Sticker | NBK- (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1429.png" + }, + { + "id": "1430", + "name": "Sticker | B1ad3 | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1430.png" + }, + { + "id": "1431", + "name": "Sticker | B1ad3 (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1431.png" + }, + { + "id": "1432", + "name": "Sticker | B1ad3 (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1432.png" + }, + { + "id": "1433", + "name": "Sticker | wayLander | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1433.png" + }, + { + "id": "1434", + "name": "Sticker | wayLander (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1434.png" + }, + { + "id": "1435", + "name": "Sticker | wayLander (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1435.png" + }, + { + "id": "1436", + "name": "Sticker | Shara | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1436.png" + }, + { + "id": "1437", + "name": "Sticker | Shara (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1437.png" + }, + { + "id": "1438", + "name": "Sticker | Shara (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1438.png" + }, + { + "id": "1439", + "name": "Sticker | markeloff | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1439.png" + }, + { + "id": "1440", + "name": "Sticker | markeloff (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1440.png" + }, + { + "id": "1441", + "name": "Sticker | markeloff (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1441.png" + }, + { + "id": "1442", + "name": "Sticker | WorldEdit | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1442.png" + }, + { + "id": "1443", + "name": "Sticker | WorldEdit (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1443.png" + }, + { + "id": "1444", + "name": "Sticker | WorldEdit (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1444.png" + }, + { + "id": "1445", + "name": "Sticker | flusha | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1445.png" + }, + { + "id": "1446", + "name": "Sticker | flusha (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1446.png" + }, + { + "id": "1447", + "name": "Sticker | flusha (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1447.png" + }, + { + "id": "1448", + "name": "Sticker | JW | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1448.png" + }, + { + "id": "1449", + "name": "Sticker | JW (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1449.png" + }, + { + "id": "1450", + "name": "Sticker | JW (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1450.png" + }, + { + "id": "1451", + "name": "Sticker | KRIMZ | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1451.png" + }, + { + "id": "1452", + "name": "Sticker | KRIMZ (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1452.png" + }, + { + "id": "1453", + "name": "Sticker | KRIMZ (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1453.png" + }, + { + "id": "1454", + "name": "Sticker | olofmeister | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1454.png" + }, + { + "id": "1455", + "name": "Sticker | olofmeister (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1455.png" + }, + { + "id": "1456", + "name": "Sticker | olofmeister (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1456.png" + }, + { + "id": "1457", + "name": "Sticker | dennis | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1457.png" + }, + { + "id": "1458", + "name": "Sticker | dennis (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1458.png" + }, + { + "id": "1459", + "name": "Sticker | dennis (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1459.png" + }, + { + "id": "1460", + "name": "Sticker | aizy | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1460.png" + }, + { + "id": "1461", + "name": "Sticker | aizy (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1461.png" + }, + { + "id": "1462", + "name": "Sticker | aizy (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1462.png" + }, + { + "id": "1463", + "name": "Sticker | fox | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1463.png" + }, + { + "id": "1464", + "name": "Sticker | fox (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1464.png" + }, + { + "id": "1465", + "name": "Sticker | fox (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1465.png" + }, + { + "id": "1466", + "name": "Sticker | kioShiMa | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1466.png" + }, + { + "id": "1467", + "name": "Sticker | kioShiMa (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1467.png" + }, + { + "id": "1468", + "name": "Sticker | kioShiMa (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1468.png" + }, + { + "id": "1469", + "name": "Sticker | rain | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1469.png" + }, + { + "id": "1470", + "name": "Sticker | rain (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1470.png" + }, + { + "id": "1471", + "name": "Sticker | rain (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1471.png" + }, + { + "id": "1472", + "name": "Sticker | jkaem | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1472.png" + }, + { + "id": "1473", + "name": "Sticker | jkaem (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1473.png" + }, + { + "id": "1474", + "name": "Sticker | jkaem (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1474.png" + }, + { + "id": "1475", + "name": "Sticker | coldzera | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1475.png" + }, + { + "id": "1476", + "name": "Sticker | coldzera (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1476.png" + }, + { + "id": "1477", + "name": "Sticker | coldzera (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1477.png" + }, + { + "id": "1478", + "name": "Sticker | FalleN | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1478.png" + }, + { + "id": "1479", + "name": "Sticker | FalleN (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1479.png" + }, + { + "id": "1480", + "name": "Sticker | FalleN (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1480.png" + }, + { + "id": "1481", + "name": "Sticker | fer | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1481.png" + }, + { + "id": "1482", + "name": "Sticker | fer (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1482.png" + }, + { + "id": "1483", + "name": "Sticker | fer (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1483.png" + }, + { + "id": "1484", + "name": "Sticker | fnx | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1484.png" + }, + { + "id": "1485", + "name": "Sticker | fnx (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1485.png" + }, + { + "id": "1486", + "name": "Sticker | fnx (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1486.png" + }, + { + "id": "1487", + "name": "Sticker | TACO | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1487.png" + }, + { + "id": "1488", + "name": "Sticker | TACO (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1488.png" + }, + { + "id": "1489", + "name": "Sticker | TACO (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1489.png" + }, + { + "id": "1490", + "name": "Sticker | chrisJ | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1490.png" + }, + { + "id": "1491", + "name": "Sticker | chrisJ (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1491.png" + }, + { + "id": "1492", + "name": "Sticker | chrisJ (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1492.png" + }, + { + "id": "1493", + "name": "Sticker | denis | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1493.png" + }, + { + "id": "1494", + "name": "Sticker | denis (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1494.png" + }, + { + "id": "1495", + "name": "Sticker | denis (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1495.png" + }, + { + "id": "1496", + "name": "Sticker | Spiidi | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1496.png" + }, + { + "id": "1497", + "name": "Sticker | Spiidi (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1497.png" + }, + { + "id": "1498", + "name": "Sticker | Spiidi (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1498.png" + }, + { + "id": "1499", + "name": "Sticker | nex | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1499.png" + }, + { + "id": "1500", + "name": "Sticker | nex (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1500.png" + }, + { + "id": "1501", + "name": "Sticker | nex (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1501.png" + }, + { + "id": "1502", + "name": "Sticker | NiKo | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1502.png" + }, + { + "id": "1503", + "name": "Sticker | NiKo (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1503.png" + }, + { + "id": "1504", + "name": "Sticker | NiKo (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1504.png" + }, + { + "id": "1505", + "name": "Sticker | Edward | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1505.png" + }, + { + "id": "1506", + "name": "Sticker | Edward (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1506.png" + }, + { + "id": "1507", + "name": "Sticker | Edward (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1507.png" + }, + { + "id": "1508", + "name": "Sticker | flamie | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1508.png" + }, + { + "id": "1509", + "name": "Sticker | flamie (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1509.png" + }, + { + "id": "1510", + "name": "Sticker | flamie (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1510.png" + }, + { + "id": "1511", + "name": "Sticker | GuardiaN | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1511.png" + }, + { + "id": "1512", + "name": "Sticker | GuardiaN (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1512.png" + }, + { + "id": "1513", + "name": "Sticker | GuardiaN (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1513.png" + }, + { + "id": "1514", + "name": "Sticker | seized | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1514.png" + }, + { + "id": "1515", + "name": "Sticker | seized (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1515.png" + }, + { + "id": "1516", + "name": "Sticker | seized (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1516.png" + }, + { + "id": "1517", + "name": "Sticker | Zeus | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1517.png" + }, + { + "id": "1518", + "name": "Sticker | Zeus (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1518.png" + }, + { + "id": "1519", + "name": "Sticker | Zeus (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1519.png" + }, + { + "id": "1520", + "name": "Sticker | pyth | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1520.png" + }, + { + "id": "1521", + "name": "Sticker | pyth (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1521.png" + }, + { + "id": "1522", + "name": "Sticker | pyth (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1522.png" + }, + { + "id": "1523", + "name": "Sticker | f0rest | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1523.png" + }, + { + "id": "1524", + "name": "Sticker | f0rest (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1524.png" + }, + { + "id": "1525", + "name": "Sticker | f0rest (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1525.png" + }, + { + "id": "1526", + "name": "Sticker | friberg | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1526.png" + }, + { + "id": "1527", + "name": "Sticker | friberg (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1527.png" + }, + { + "id": "1528", + "name": "Sticker | friberg (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1528.png" + }, + { + "id": "1529", + "name": "Sticker | GeT_RiGhT | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1529.png" + }, + { + "id": "1530", + "name": "Sticker | GeT_RiGhT (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1530.png" + }, + { + "id": "1531", + "name": "Sticker | GeT_RiGhT (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1531.png" + }, + { + "id": "1532", + "name": "Sticker | Xizt | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1532.png" + }, + { + "id": "1533", + "name": "Sticker | Xizt (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1533.png" + }, + { + "id": "1534", + "name": "Sticker | Xizt (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1534.png" + }, + { + "id": "1535", + "name": "Sticker | cajunb | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1535.png" + }, + { + "id": "1536", + "name": "Sticker | cajunb (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1536.png" + }, + { + "id": "1537", + "name": "Sticker | cajunb (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1537.png" + }, + { + "id": "1538", + "name": "Sticker | MSL | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1538.png" + }, + { + "id": "1539", + "name": "Sticker | MSL (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1539.png" + }, + { + "id": "1540", + "name": "Sticker | MSL (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1540.png" + }, + { + "id": "1541", + "name": "Sticker | TENZKI | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1541.png" + }, + { + "id": "1542", + "name": "Sticker | TENZKI (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1542.png" + }, + { + "id": "1543", + "name": "Sticker | TENZKI (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1543.png" + }, + { + "id": "1544", + "name": "Sticker | RUBINO | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1544.png" + }, + { + "id": "1545", + "name": "Sticker | RUBINO (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1545.png" + }, + { + "id": "1546", + "name": "Sticker | RUBINO (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1546.png" + }, + { + "id": "1547", + "name": "Sticker | k0nfig | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1547.png" + }, + { + "id": "1548", + "name": "Sticker | k0nfig (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1548.png" + }, + { + "id": "1549", + "name": "Sticker | k0nfig (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1549.png" + }, + { + "id": "1550", + "name": "Sticker | jdm64 | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1550.png" + }, + { + "id": "1551", + "name": "Sticker | jdm64 (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1551.png" + }, + { + "id": "1552", + "name": "Sticker | jdm64 (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1552.png" + }, + { + "id": "1553", + "name": "Sticker | EliGE | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1553.png" + }, + { + "id": "1554", + "name": "Sticker | EliGE (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1554.png" + }, + { + "id": "1555", + "name": "Sticker | EliGE (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1555.png" + }, + { + "id": "1556", + "name": "Sticker | s1mple | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1556.png" + }, + { + "id": "1557", + "name": "Sticker | s1mple (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1557.png" + }, + { + "id": "1558", + "name": "Sticker | s1mple (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1558.png" + }, + { + "id": "1559", + "name": "Sticker | Hiko | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1559.png" + }, + { + "id": "1560", + "name": "Sticker | Hiko (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1560.png" + }, + { + "id": "1561", + "name": "Sticker | Hiko (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1561.png" + }, + { + "id": "1562", + "name": "Sticker | nitr0 | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1562.png" + }, + { + "id": "1563", + "name": "Sticker | nitr0 (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1563.png" + }, + { + "id": "1564", + "name": "Sticker | nitr0 (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1564.png" + }, + { + "id": "1565", + "name": "Sticker | bodyy | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1565.png" + }, + { + "id": "1566", + "name": "Sticker | bodyy (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1566.png" + }, + { + "id": "1567", + "name": "Sticker | bodyy (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1567.png" + }, + { + "id": "1568", + "name": "Sticker | RpK | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1568.png" + }, + { + "id": "1569", + "name": "Sticker | RpK (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1569.png" + }, + { + "id": "1570", + "name": "Sticker | RpK (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1570.png" + }, + { + "id": "1571", + "name": "Sticker | ScreaM | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1571.png" + }, + { + "id": "1572", + "name": "Sticker | ScreaM (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1572.png" + }, + { + "id": "1573", + "name": "Sticker | ScreaM (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1573.png" + }, + { + "id": "1574", + "name": "Sticker | shox | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1574.png" + }, + { + "id": "1575", + "name": "Sticker | shox (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1575.png" + }, + { + "id": "1576", + "name": "Sticker | shox (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1576.png" + }, + { + "id": "1577", + "name": "Sticker | SmithZz | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1577.png" + }, + { + "id": "1578", + "name": "Sticker | SmithZz (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1578.png" + }, + { + "id": "1579", + "name": "Sticker | SmithZz (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1579.png" + }, + { + "id": "1580", + "name": "Sticker | gla1ve | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1580.png" + }, + { + "id": "1581", + "name": "Sticker | gla1ve (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1581.png" + }, + { + "id": "1582", + "name": "Sticker | gla1ve (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1582.png" + }, + { + "id": "1583", + "name": "Sticker | device | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1583.png" + }, + { + "id": "1584", + "name": "Sticker | device (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1584.png" + }, + { + "id": "1585", + "name": "Sticker | device (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1585.png" + }, + { + "id": "1586", + "name": "Sticker | dupreeh | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1586.png" + }, + { + "id": "1587", + "name": "Sticker | dupreeh (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1587.png" + }, + { + "id": "1588", + "name": "Sticker | dupreeh (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1588.png" + }, + { + "id": "1589", + "name": "Sticker | karrigan | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1589.png" + }, + { + "id": "1590", + "name": "Sticker | karrigan (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1590.png" + }, + { + "id": "1591", + "name": "Sticker | karrigan (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1591.png" + }, + { + "id": "1592", + "name": "Sticker | Xyp9x | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1592.png" + }, + { + "id": "1593", + "name": "Sticker | Xyp9x (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1593.png" + }, + { + "id": "1594", + "name": "Sticker | Xyp9x (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1594.png" + }, + { + "id": "1595", + "name": "Sticker | spaze | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1595.png" + }, + { + "id": "1596", + "name": "Sticker | spaze (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1596.png" + }, + { + "id": "1597", + "name": "Sticker | spaze (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1597.png" + }, + { + "id": "1598", + "name": "Sticker | Dosia | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1598.png" + }, + { + "id": "1599", + "name": "Sticker | Dosia (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1599.png" + }, + { + "id": "1600", + "name": "Sticker | Dosia (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1600.png" + }, + { + "id": "1601", + "name": "Sticker | hooch | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1601.png" + }, + { + "id": "1602", + "name": "Sticker | hooch (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1602.png" + }, + { + "id": "1603", + "name": "Sticker | hooch (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1603.png" + }, + { + "id": "1604", + "name": "Sticker | mou | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1604.png" + }, + { + "id": "1605", + "name": "Sticker | mou (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1605.png" + }, + { + "id": "1606", + "name": "Sticker | mou (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1606.png" + }, + { + "id": "1607", + "name": "Sticker | AdreN | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1607.png" + }, + { + "id": "1608", + "name": "Sticker | AdreN (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1608.png" + }, + { + "id": "1609", + "name": "Sticker | AdreN (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1609.png" + }, + { + "id": "1610", + "name": "Sticker | byali | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1610.png" + }, + { + "id": "1611", + "name": "Sticker | byali (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1611.png" + }, + { + "id": "1612", + "name": "Sticker | byali (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1612.png" + }, + { + "id": "1613", + "name": "Sticker | NEO | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1613.png" + }, + { + "id": "1614", + "name": "Sticker | NEO (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1614.png" + }, + { + "id": "1615", + "name": "Sticker | NEO (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1615.png" + }, + { + "id": "1616", + "name": "Sticker | pashaBiceps | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1616.png" + }, + { + "id": "1617", + "name": "Sticker | pashaBiceps (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1617.png" + }, + { + "id": "1618", + "name": "Sticker | pashaBiceps (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1618.png" + }, + { + "id": "1619", + "name": "Sticker | Snax | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1619.png" + }, + { + "id": "1620", + "name": "Sticker | Snax (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1620.png" + }, + { + "id": "1621", + "name": "Sticker | Snax (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1621.png" + }, + { + "id": "1622", + "name": "Sticker | TaZ | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1622.png" + }, + { + "id": "1623", + "name": "Sticker | TaZ (Foil) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1623.png" + }, + { + "id": "1624", + "name": "Sticker | TaZ (Gold) | Cologne 2016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1624.png" + }, + { + "id": "1625", + "name": "Sticker | Boris", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1625.png" + }, + { + "id": "1626", + "name": "Sticker | Max", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1626.png" + }, + { + "id": "1627", + "name": "Sticker | Stan", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1627.png" + }, + { + "id": "1628", + "name": "Sticker | Jack", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1628.png" + }, + { + "id": "1629", + "name": "Sticker | Perry", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1629.png" + }, + { + "id": "1630", + "name": "Sticker | Viggo", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1630.png" + }, + { + "id": "1631", + "name": "Sticker | Joan", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1631.png" + }, + { + "id": "1632", + "name": "Sticker | Boris (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1632.png" + }, + { + "id": "1633", + "name": "Sticker | Max (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1633.png" + }, + { + "id": "1634", + "name": "Sticker | Stan (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1634.png" + }, + { + "id": "1635", + "name": "Sticker | Jack (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1635.png" + }, + { + "id": "1636", + "name": "Sticker | Perry (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1636.png" + }, + { + "id": "1637", + "name": "Sticker | Viggo (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1637.png" + }, + { + "id": "1638", + "name": "Sticker | Joan (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1638.png" + }, + { + "id": "1639", + "name": "Sticker | Basilisk", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1639.png" + }, + { + "id": "1640", + "name": "Sticker | Dragon", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1640.png" + }, + { + "id": "1641", + "name": "Sticker | Hippocamp", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1641.png" + }, + { + "id": "1642", + "name": "Sticker | Manticore", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1642.png" + }, + { + "id": "1643", + "name": "Sticker | Pegasus", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1643.png" + }, + { + "id": "1644", + "name": "Sticker | Phoenix Reborn", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1644.png" + }, + { + "id": "1645", + "name": "Sticker | Sphinx", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1645.png" + }, + { + "id": "1646", + "name": "Sticker | Hippocamp (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1646.png" + }, + { + "id": "1647", + "name": "Sticker | Manticore (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1647.png" + }, + { + "id": "1648", + "name": "Sticker | Pegasus (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1648.png" + }, + { + "id": "1649", + "name": "Sticker | Sphinx (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1649.png" + }, + { + "id": "1650", + "name": "Sticker | Basilisk (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1650.png" + }, + { + "id": "1651", + "name": "Sticker | Dragon (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1651.png" + }, + { + "id": "1652", + "name": "Sticker | Phoenix Reborn (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1652.png" + }, + { + "id": "1689", + "name": "Sticker | Ancient (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1689.png" + }, + { + "id": "1690", + "name": "Sticker | Dust II (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1690.png" + }, + { + "id": "1691", + "name": "Sticker | Inferno (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1691.png" + }, + { + "id": "1692", + "name": "Sticker | Mirage (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1692.png" + }, + { + "id": "1693", + "name": "Sticker | Nuke (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1693.png" + }, + { + "id": "1694", + "name": "Sticker | Overpass (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1694.png" + }, + { + "id": "1695", + "name": "Sticker | Vertigo (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1695.png" + }, + { + "id": "1738", + "name": "Sticker | Astralis | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1738.png" + }, + { + "id": "1739", + "name": "Sticker | Astralis (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1739.png" + }, + { + "id": "1740", + "name": "Sticker | Astralis (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1740.png" + }, + { + "id": "1741", + "name": "Sticker | Astralis (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1741.png" + }, + { + "id": "1742", + "name": "Sticker | Team EnVyUs | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1742.png" + }, + { + "id": "1743", + "name": "Sticker | Team EnVyUs (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1743.png" + }, + { + "id": "1744", + "name": "Sticker | Team EnVyUs (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1744.png" + }, + { + "id": "1745", + "name": "Sticker | Team EnVyUs (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1745.png" + }, + { + "id": "1746", + "name": "Sticker | FaZe Clan | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1746.png" + }, + { + "id": "1747", + "name": "Sticker | FaZe Clan (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1747.png" + }, + { + "id": "1748", + "name": "Sticker | FaZe Clan (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1748.png" + }, + { + "id": "1749", + "name": "Sticker | FaZe Clan (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1749.png" + }, + { + "id": "1750", + "name": "Sticker | Flipsid3 Tactics | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1750.png" + }, + { + "id": "1751", + "name": "Sticker | Flipsid3 Tactics (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1751.png" + }, + { + "id": "1752", + "name": "Sticker | Flipsid3 Tactics (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1752.png" + }, + { + "id": "1753", + "name": "Sticker | Flipsid3 Tactics (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1753.png" + }, + { + "id": "1754", + "name": "Sticker | Fnatic | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1754.png" + }, + { + "id": "1755", + "name": "Sticker | Fnatic (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1755.png" + }, + { + "id": "1756", + "name": "Sticker | Fnatic (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1756.png" + }, + { + "id": "1757", + "name": "Sticker | Fnatic (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1757.png" + }, + { + "id": "1758", + "name": "Sticker | G2 Esports | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1758.png" + }, + { + "id": "1759", + "name": "Sticker | G2 Esports (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1759.png" + }, + { + "id": "1760", + "name": "Sticker | G2 Esports (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1760.png" + }, + { + "id": "1761", + "name": "Sticker | G2 Esports (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1761.png" + }, + { + "id": "1762", + "name": "Sticker | Gambit Gaming | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1762.png" + }, + { + "id": "1763", + "name": "Sticker | Gambit Gaming (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1763.png" + }, + { + "id": "1764", + "name": "Sticker | Gambit Gaming (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1764.png" + }, + { + "id": "1765", + "name": "Sticker | Gambit Gaming (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1765.png" + }, + { + "id": "1766", + "name": "Sticker | GODSENT | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1766.png" + }, + { + "id": "1767", + "name": "Sticker | GODSENT (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1767.png" + }, + { + "id": "1768", + "name": "Sticker | GODSENT (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1768.png" + }, + { + "id": "1769", + "name": "Sticker | GODSENT (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1769.png" + }, + { + "id": "1770", + "name": "Sticker | HellRaisers | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1770.png" + }, + { + "id": "1771", + "name": "Sticker | HellRaisers (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1771.png" + }, + { + "id": "1772", + "name": "Sticker | HellRaisers (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1772.png" + }, + { + "id": "1773", + "name": "Sticker | HellRaisers (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1773.png" + }, + { + "id": "1774", + "name": "Sticker | mousesports | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1774.png" + }, + { + "id": "1775", + "name": "Sticker | mousesports (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1775.png" + }, + { + "id": "1776", + "name": "Sticker | mousesports (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1776.png" + }, + { + "id": "1777", + "name": "Sticker | mousesports (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1777.png" + }, + { + "id": "1778", + "name": "Sticker | Natus Vincere | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1778.png" + }, + { + "id": "1779", + "name": "Sticker | Natus Vincere (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1779.png" + }, + { + "id": "1780", + "name": "Sticker | Natus Vincere (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1780.png" + }, + { + "id": "1781", + "name": "Sticker | Natus Vincere (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1781.png" + }, + { + "id": "1782", + "name": "Sticker | North | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1782.png" + }, + { + "id": "1783", + "name": "Sticker | North (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1783.png" + }, + { + "id": "1784", + "name": "Sticker | North (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1784.png" + }, + { + "id": "1785", + "name": "Sticker | North (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1785.png" + }, + { + "id": "1786", + "name": "Sticker | OpTic Gaming | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1786.png" + }, + { + "id": "1787", + "name": "Sticker | OpTic Gaming (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1787.png" + }, + { + "id": "1788", + "name": "Sticker | OpTic Gaming (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1788.png" + }, + { + "id": "1789", + "name": "Sticker | OpTic Gaming (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1789.png" + }, + { + "id": "1790", + "name": "Sticker | SK Gaming | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1790.png" + }, + { + "id": "1791", + "name": "Sticker | SK Gaming (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1791.png" + }, + { + "id": "1792", + "name": "Sticker | SK Gaming (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1792.png" + }, + { + "id": "1793", + "name": "Sticker | SK Gaming (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1793.png" + }, + { + "id": "1794", + "name": "Sticker | Team Liquid | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1794.png" + }, + { + "id": "1795", + "name": "Sticker | Team Liquid (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1795.png" + }, + { + "id": "1796", + "name": "Sticker | Team Liquid (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1796.png" + }, + { + "id": "1797", + "name": "Sticker | Team Liquid (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1797.png" + }, + { + "id": "1798", + "name": "Sticker | Virtus.Pro | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1798.png" + }, + { + "id": "1799", + "name": "Sticker | Virtus.Pro (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1799.png" + }, + { + "id": "1800", + "name": "Sticker | Virtus.Pro (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1800.png" + }, + { + "id": "1801", + "name": "Sticker | Virtus.Pro (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1801.png" + }, + { + "id": "1802", + "name": "Sticker | ELEAGUE | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1802.png" + }, + { + "id": "1803", + "name": "Sticker | ELEAGUE (Holo) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1803.png" + }, + { + "id": "1804", + "name": "Sticker | ELEAGUE (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1804.png" + }, + { + "id": "1805", + "name": "Sticker | ELEAGUE (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1805.png" + }, + { + "id": "1823", + "name": "Sticker | STYKO | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1823.png" + }, + { + "id": "1824", + "name": "Sticker | STYKO (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1824.png" + }, + { + "id": "1825", + "name": "Sticker | STYKO (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1825.png" + }, + { + "id": "1826", + "name": "Sticker | Zero | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1826.png" + }, + { + "id": "1827", + "name": "Sticker | Zero (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1827.png" + }, + { + "id": "1828", + "name": "Sticker | Zero (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1828.png" + }, + { + "id": "1829", + "name": "Sticker | DeadFox | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1829.png" + }, + { + "id": "1830", + "name": "Sticker | DeadFox (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1830.png" + }, + { + "id": "1831", + "name": "Sticker | DeadFox (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1831.png" + }, + { + "id": "1832", + "name": "Sticker | bondik | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1832.png" + }, + { + "id": "1833", + "name": "Sticker | bondik (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1833.png" + }, + { + "id": "1834", + "name": "Sticker | bondik (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1834.png" + }, + { + "id": "1835", + "name": "Sticker | ANGE1 | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1835.png" + }, + { + "id": "1836", + "name": "Sticker | ANGE1 (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1836.png" + }, + { + "id": "1837", + "name": "Sticker | ANGE1 (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1837.png" + }, + { + "id": "1838", + "name": "Sticker | tarik | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1838.png" + }, + { + "id": "1839", + "name": "Sticker | tarik (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1839.png" + }, + { + "id": "1840", + "name": "Sticker | tarik (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1840.png" + }, + { + "id": "1841", + "name": "Sticker | mixwell | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1841.png" + }, + { + "id": "1842", + "name": "Sticker | mixwell (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1842.png" + }, + { + "id": "1843", + "name": "Sticker | mixwell (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1843.png" + }, + { + "id": "1844", + "name": "Sticker | NAF | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1844.png" + }, + { + "id": "1845", + "name": "Sticker | NAF (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1845.png" + }, + { + "id": "1846", + "name": "Sticker | NAF (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1846.png" + }, + { + "id": "1847", + "name": "Sticker | RUSH | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1847.png" + }, + { + "id": "1848", + "name": "Sticker | RUSH (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1848.png" + }, + { + "id": "1849", + "name": "Sticker | RUSH (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1849.png" + }, + { + "id": "1850", + "name": "Sticker | stanislaw | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1850.png" + }, + { + "id": "1851", + "name": "Sticker | stanislaw (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1851.png" + }, + { + "id": "1852", + "name": "Sticker | stanislaw (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1852.png" + }, + { + "id": "1853", + "name": "Sticker | apEX | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1853.png" + }, + { + "id": "1854", + "name": "Sticker | apEX (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1854.png" + }, + { + "id": "1855", + "name": "Sticker | apEX (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1855.png" + }, + { + "id": "1856", + "name": "Sticker | Happy | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1856.png" + }, + { + "id": "1857", + "name": "Sticker | Happy (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1857.png" + }, + { + "id": "1858", + "name": "Sticker | Happy (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1858.png" + }, + { + "id": "1859", + "name": "Sticker | SIXER | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1859.png" + }, + { + "id": "1860", + "name": "Sticker | SIXER (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1860.png" + }, + { + "id": "1861", + "name": "Sticker | SIXER (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1861.png" + }, + { + "id": "1862", + "name": "Sticker | kennyS | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1862.png" + }, + { + "id": "1863", + "name": "Sticker | kennyS (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1863.png" + }, + { + "id": "1864", + "name": "Sticker | kennyS (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1864.png" + }, + { + "id": "1865", + "name": "Sticker | NBK- | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1865.png" + }, + { + "id": "1866", + "name": "Sticker | NBK- (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1866.png" + }, + { + "id": "1867", + "name": "Sticker | NBK- (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1867.png" + }, + { + "id": "1868", + "name": "Sticker | B1ad3 | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1868.png" + }, + { + "id": "1869", + "name": "Sticker | B1ad3 (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1869.png" + }, + { + "id": "1870", + "name": "Sticker | B1ad3 (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1870.png" + }, + { + "id": "1871", + "name": "Sticker | wayLander | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1871.png" + }, + { + "id": "1872", + "name": "Sticker | wayLander (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1872.png" + }, + { + "id": "1873", + "name": "Sticker | wayLander (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1873.png" + }, + { + "id": "1874", + "name": "Sticker | electronic | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1874.png" + }, + { + "id": "1875", + "name": "Sticker | electronic (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1875.png" + }, + { + "id": "1876", + "name": "Sticker | electronic (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1876.png" + }, + { + "id": "1877", + "name": "Sticker | markeloff | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1877.png" + }, + { + "id": "1878", + "name": "Sticker | markeloff (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1878.png" + }, + { + "id": "1879", + "name": "Sticker | markeloff (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1879.png" + }, + { + "id": "1880", + "name": "Sticker | WorldEdit | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1880.png" + }, + { + "id": "1881", + "name": "Sticker | WorldEdit (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1881.png" + }, + { + "id": "1882", + "name": "Sticker | WorldEdit (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1882.png" + }, + { + "id": "1883", + "name": "Sticker | twist | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1883.png" + }, + { + "id": "1884", + "name": "Sticker | twist (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1884.png" + }, + { + "id": "1885", + "name": "Sticker | twist (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1885.png" + }, + { + "id": "1886", + "name": "Sticker | disco doplan | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1886.png" + }, + { + "id": "1887", + "name": "Sticker | disco doplan (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1887.png" + }, + { + "id": "1888", + "name": "Sticker | disco doplan (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1888.png" + }, + { + "id": "1889", + "name": "Sticker | KRIMZ | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1889.png" + }, + { + "id": "1890", + "name": "Sticker | KRIMZ (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1890.png" + }, + { + "id": "1891", + "name": "Sticker | KRIMZ (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1891.png" + }, + { + "id": "1892", + "name": "Sticker | olofmeister | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1892.png" + }, + { + "id": "1893", + "name": "Sticker | olofmeister (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1893.png" + }, + { + "id": "1894", + "name": "Sticker | olofmeister (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1894.png" + }, + { + "id": "1895", + "name": "Sticker | dennis | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1895.png" + }, + { + "id": "1896", + "name": "Sticker | dennis (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1896.png" + }, + { + "id": "1897", + "name": "Sticker | dennis (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1897.png" + }, + { + "id": "1898", + "name": "Sticker | aizy | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1898.png" + }, + { + "id": "1899", + "name": "Sticker | aizy (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1899.png" + }, + { + "id": "1900", + "name": "Sticker | aizy (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1900.png" + }, + { + "id": "1901", + "name": "Sticker | allu | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1901.png" + }, + { + "id": "1902", + "name": "Sticker | allu (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1902.png" + }, + { + "id": "1903", + "name": "Sticker | allu (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1903.png" + }, + { + "id": "1904", + "name": "Sticker | kioShiMa | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1904.png" + }, + { + "id": "1905", + "name": "Sticker | kioShiMa (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1905.png" + }, + { + "id": "1906", + "name": "Sticker | kioShiMa (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1906.png" + }, + { + "id": "1907", + "name": "Sticker | rain | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1907.png" + }, + { + "id": "1908", + "name": "Sticker | rain (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1908.png" + }, + { + "id": "1909", + "name": "Sticker | rain (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1909.png" + }, + { + "id": "1910", + "name": "Sticker | karrigan | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1910.png" + }, + { + "id": "1911", + "name": "Sticker | karrigan (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1911.png" + }, + { + "id": "1912", + "name": "Sticker | karrigan (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1912.png" + }, + { + "id": "1913", + "name": "Sticker | coldzera | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1913.png" + }, + { + "id": "1914", + "name": "Sticker | coldzera (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1914.png" + }, + { + "id": "1915", + "name": "Sticker | coldzera (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1915.png" + }, + { + "id": "1916", + "name": "Sticker | FalleN | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1916.png" + }, + { + "id": "1917", + "name": "Sticker | FalleN (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1917.png" + }, + { + "id": "1918", + "name": "Sticker | FalleN (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1918.png" + }, + { + "id": "1919", + "name": "Sticker | fer | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1919.png" + }, + { + "id": "1920", + "name": "Sticker | fer (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1920.png" + }, + { + "id": "1921", + "name": "Sticker | fer (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1921.png" + }, + { + "id": "1922", + "name": "Sticker | fox | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1922.png" + }, + { + "id": "1923", + "name": "Sticker | fox (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1923.png" + }, + { + "id": "1924", + "name": "Sticker | fox (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1924.png" + }, + { + "id": "1925", + "name": "Sticker | TACO | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1925.png" + }, + { + "id": "1926", + "name": "Sticker | TACO (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1926.png" + }, + { + "id": "1927", + "name": "Sticker | TACO (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1927.png" + }, + { + "id": "1928", + "name": "Sticker | chrisJ | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1928.png" + }, + { + "id": "1929", + "name": "Sticker | chrisJ (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1929.png" + }, + { + "id": "1930", + "name": "Sticker | chrisJ (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1930.png" + }, + { + "id": "1931", + "name": "Sticker | denis | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1931.png" + }, + { + "id": "1932", + "name": "Sticker | denis (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1932.png" + }, + { + "id": "1933", + "name": "Sticker | denis (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1933.png" + }, + { + "id": "1934", + "name": "Sticker | Spiidi | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1934.png" + }, + { + "id": "1935", + "name": "Sticker | Spiidi (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1935.png" + }, + { + "id": "1936", + "name": "Sticker | Spiidi (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1936.png" + }, + { + "id": "1937", + "name": "Sticker | loWel | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1937.png" + }, + { + "id": "1938", + "name": "Sticker | loWel (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1938.png" + }, + { + "id": "1939", + "name": "Sticker | loWel (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1939.png" + }, + { + "id": "1940", + "name": "Sticker | NiKo | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1940.png" + }, + { + "id": "1941", + "name": "Sticker | NiKo (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1941.png" + }, + { + "id": "1942", + "name": "Sticker | NiKo (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1942.png" + }, + { + "id": "1943", + "name": "Sticker | Edward | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1943.png" + }, + { + "id": "1944", + "name": "Sticker | Edward (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1944.png" + }, + { + "id": "1945", + "name": "Sticker | Edward (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1945.png" + }, + { + "id": "1946", + "name": "Sticker | flamie | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1946.png" + }, + { + "id": "1947", + "name": "Sticker | flamie (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1947.png" + }, + { + "id": "1948", + "name": "Sticker | flamie (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1948.png" + }, + { + "id": "1949", + "name": "Sticker | GuardiaN | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1949.png" + }, + { + "id": "1950", + "name": "Sticker | GuardiaN (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1950.png" + }, + { + "id": "1951", + "name": "Sticker | GuardiaN (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1951.png" + }, + { + "id": "1952", + "name": "Sticker | seized | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1952.png" + }, + { + "id": "1953", + "name": "Sticker | seized (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1953.png" + }, + { + "id": "1954", + "name": "Sticker | seized (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1954.png" + }, + { + "id": "1955", + "name": "Sticker | s1mple | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1955.png" + }, + { + "id": "1956", + "name": "Sticker | s1mple (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1956.png" + }, + { + "id": "1957", + "name": "Sticker | s1mple (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1957.png" + }, + { + "id": "1958", + "name": "Sticker | znajder | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1958.png" + }, + { + "id": "1959", + "name": "Sticker | znajder (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1959.png" + }, + { + "id": "1960", + "name": "Sticker | znajder (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1960.png" + }, + { + "id": "1961", + "name": "Sticker | Lekr0 | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1961.png" + }, + { + "id": "1962", + "name": "Sticker | Lekr0 (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1962.png" + }, + { + "id": "1963", + "name": "Sticker | Lekr0 (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1963.png" + }, + { + "id": "1964", + "name": "Sticker | pronax | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1964.png" + }, + { + "id": "1965", + "name": "Sticker | pronax (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1965.png" + }, + { + "id": "1966", + "name": "Sticker | pronax (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1966.png" + }, + { + "id": "1967", + "name": "Sticker | JW | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1967.png" + }, + { + "id": "1968", + "name": "Sticker | JW (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1968.png" + }, + { + "id": "1969", + "name": "Sticker | JW (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1969.png" + }, + { + "id": "1970", + "name": "Sticker | flusha | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1970.png" + }, + { + "id": "1971", + "name": "Sticker | flusha (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1971.png" + }, + { + "id": "1972", + "name": "Sticker | flusha (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1972.png" + }, + { + "id": "1973", + "name": "Sticker | cajunb | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1973.png" + }, + { + "id": "1974", + "name": "Sticker | cajunb (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1974.png" + }, + { + "id": "1975", + "name": "Sticker | cajunb (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1975.png" + }, + { + "id": "1976", + "name": "Sticker | MSL | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1976.png" + }, + { + "id": "1977", + "name": "Sticker | MSL (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1977.png" + }, + { + "id": "1978", + "name": "Sticker | MSL (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1978.png" + }, + { + "id": "1979", + "name": "Sticker | Magisk | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1979.png" + }, + { + "id": "1980", + "name": "Sticker | Magisk (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1980.png" + }, + { + "id": "1981", + "name": "Sticker | Magisk (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1981.png" + }, + { + "id": "1982", + "name": "Sticker | RUBINO | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1982.png" + }, + { + "id": "1983", + "name": "Sticker | RUBINO (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1983.png" + }, + { + "id": "1984", + "name": "Sticker | RUBINO (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1984.png" + }, + { + "id": "1985", + "name": "Sticker | k0nfig | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1985.png" + }, + { + "id": "1986", + "name": "Sticker | k0nfig (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1986.png" + }, + { + "id": "1987", + "name": "Sticker | k0nfig (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1987.png" + }, + { + "id": "1988", + "name": "Sticker | jdm64 | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1988.png" + }, + { + "id": "1989", + "name": "Sticker | jdm64 (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1989.png" + }, + { + "id": "1990", + "name": "Sticker | jdm64 (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1990.png" + }, + { + "id": "1991", + "name": "Sticker | EliGE | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1991.png" + }, + { + "id": "1992", + "name": "Sticker | EliGE (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1992.png" + }, + { + "id": "1993", + "name": "Sticker | EliGE (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1993.png" + }, + { + "id": "1994", + "name": "Sticker | Pimp | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1994.png" + }, + { + "id": "1995", + "name": "Sticker | Pimp (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1995.png" + }, + { + "id": "1996", + "name": "Sticker | Pimp (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1996.png" + }, + { + "id": "1997", + "name": "Sticker | Hiko | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1997.png" + }, + { + "id": "1998", + "name": "Sticker | Hiko (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1998.png" + }, + { + "id": "1999", + "name": "Sticker | Hiko (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-1999.png" + }, + { + "id": "2000", + "name": "Sticker | nitr0 | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2000.png" + }, + { + "id": "2001", + "name": "Sticker | nitr0 (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2001.png" + }, + { + "id": "2002", + "name": "Sticker | nitr0 (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2002.png" + }, + { + "id": "2003", + "name": "Sticker | bodyy | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2003.png" + }, + { + "id": "2004", + "name": "Sticker | bodyy (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2004.png" + }, + { + "id": "2005", + "name": "Sticker | bodyy (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2005.png" + }, + { + "id": "2006", + "name": "Sticker | RpK | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2006.png" + }, + { + "id": "2007", + "name": "Sticker | RpK (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2007.png" + }, + { + "id": "2008", + "name": "Sticker | RpK (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2008.png" + }, + { + "id": "2009", + "name": "Sticker | ScreaM | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2009.png" + }, + { + "id": "2010", + "name": "Sticker | ScreaM (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2010.png" + }, + { + "id": "2011", + "name": "Sticker | ScreaM (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2011.png" + }, + { + "id": "2012", + "name": "Sticker | shox | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2012.png" + }, + { + "id": "2013", + "name": "Sticker | shox (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2013.png" + }, + { + "id": "2014", + "name": "Sticker | shox (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2014.png" + }, + { + "id": "2015", + "name": "Sticker | SmithZz | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2015.png" + }, + { + "id": "2016", + "name": "Sticker | SmithZz (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2016.png" + }, + { + "id": "2017", + "name": "Sticker | SmithZz (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2017.png" + }, + { + "id": "2018", + "name": "Sticker | gla1ve | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2018.png" + }, + { + "id": "2019", + "name": "Sticker | gla1ve (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2019.png" + }, + { + "id": "2020", + "name": "Sticker | gla1ve (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2020.png" + }, + { + "id": "2021", + "name": "Sticker | device | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2021.png" + }, + { + "id": "2022", + "name": "Sticker | device (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2022.png" + }, + { + "id": "2023", + "name": "Sticker | device (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2023.png" + }, + { + "id": "2024", + "name": "Sticker | dupreeh | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2024.png" + }, + { + "id": "2025", + "name": "Sticker | dupreeh (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2025.png" + }, + { + "id": "2026", + "name": "Sticker | dupreeh (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2026.png" + }, + { + "id": "2027", + "name": "Sticker | Kjaerbye | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2027.png" + }, + { + "id": "2028", + "name": "Sticker | Kjaerbye (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2028.png" + }, + { + "id": "2029", + "name": "Sticker | Kjaerbye (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2029.png" + }, + { + "id": "2030", + "name": "Sticker | Xyp9x | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2030.png" + }, + { + "id": "2031", + "name": "Sticker | Xyp9x (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2031.png" + }, + { + "id": "2032", + "name": "Sticker | Xyp9x (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2032.png" + }, + { + "id": "2033", + "name": "Sticker | Zeus | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2033.png" + }, + { + "id": "2034", + "name": "Sticker | Zeus (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2034.png" + }, + { + "id": "2035", + "name": "Sticker | Zeus (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2035.png" + }, + { + "id": "2036", + "name": "Sticker | Dosia | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2036.png" + }, + { + "id": "2037", + "name": "Sticker | Dosia (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2037.png" + }, + { + "id": "2038", + "name": "Sticker | Dosia (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2038.png" + }, + { + "id": "2039", + "name": "Sticker | Hobbit | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2039.png" + }, + { + "id": "2040", + "name": "Sticker | Hobbit (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2040.png" + }, + { + "id": "2041", + "name": "Sticker | Hobbit (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2041.png" + }, + { + "id": "2042", + "name": "Sticker | mou | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2042.png" + }, + { + "id": "2043", + "name": "Sticker | mou (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2043.png" + }, + { + "id": "2044", + "name": "Sticker | mou (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2044.png" + }, + { + "id": "2045", + "name": "Sticker | AdreN | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2045.png" + }, + { + "id": "2046", + "name": "Sticker | AdreN (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2046.png" + }, + { + "id": "2047", + "name": "Sticker | AdreN (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2047.png" + }, + { + "id": "2048", + "name": "Sticker | byali | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2048.png" + }, + { + "id": "2049", + "name": "Sticker | byali (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2049.png" + }, + { + "id": "2050", + "name": "Sticker | byali (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2050.png" + }, + { + "id": "2051", + "name": "Sticker | NEO | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2051.png" + }, + { + "id": "2052", + "name": "Sticker | NEO (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2052.png" + }, + { + "id": "2053", + "name": "Sticker | NEO (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2053.png" + }, + { + "id": "2054", + "name": "Sticker | pashaBiceps | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2054.png" + }, + { + "id": "2055", + "name": "Sticker | pashaBiceps (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2055.png" + }, + { + "id": "2056", + "name": "Sticker | pashaBiceps (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2056.png" + }, + { + "id": "2057", + "name": "Sticker | Snax | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2057.png" + }, + { + "id": "2058", + "name": "Sticker | Snax (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2058.png" + }, + { + "id": "2059", + "name": "Sticker | Snax (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2059.png" + }, + { + "id": "2060", + "name": "Sticker | TaZ | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2060.png" + }, + { + "id": "2061", + "name": "Sticker | TaZ (Foil) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2061.png" + }, + { + "id": "2062", + "name": "Sticker | TaZ (Gold) | Atlanta 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2062.png" + }, + { + "id": "2063", + "name": "Sticker | Astralis | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2063.png" + }, + { + "id": "2064", + "name": "Sticker | Astralis (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2064.png" + }, + { + "id": "2065", + "name": "Sticker | Astralis (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2065.png" + }, + { + "id": "2066", + "name": "Sticker | Astralis (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2066.png" + }, + { + "id": "2067", + "name": "Sticker | Virtus.Pro | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2067.png" + }, + { + "id": "2068", + "name": "Sticker | Virtus.Pro (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2068.png" + }, + { + "id": "2069", + "name": "Sticker | Virtus.Pro (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2069.png" + }, + { + "id": "2070", + "name": "Sticker | Virtus.Pro (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2070.png" + }, + { + "id": "2071", + "name": "Sticker | Fnatic | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2071.png" + }, + { + "id": "2072", + "name": "Sticker | Fnatic (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2072.png" + }, + { + "id": "2073", + "name": "Sticker | Fnatic (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2073.png" + }, + { + "id": "2074", + "name": "Sticker | Fnatic (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2074.png" + }, + { + "id": "2075", + "name": "Sticker | SK Gaming | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2075.png" + }, + { + "id": "2076", + "name": "Sticker | SK Gaming (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2076.png" + }, + { + "id": "2077", + "name": "Sticker | SK Gaming (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2077.png" + }, + { + "id": "2078", + "name": "Sticker | SK Gaming (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2078.png" + }, + { + "id": "2079", + "name": "Sticker | Natus Vincere | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2079.png" + }, + { + "id": "2080", + "name": "Sticker | Natus Vincere (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2080.png" + }, + { + "id": "2081", + "name": "Sticker | Natus Vincere (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2081.png" + }, + { + "id": "2082", + "name": "Sticker | Natus Vincere (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2082.png" + }, + { + "id": "2083", + "name": "Sticker | Gambit | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2083.png" + }, + { + "id": "2084", + "name": "Sticker | Gambit (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2084.png" + }, + { + "id": "2085", + "name": "Sticker | Gambit (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2085.png" + }, + { + "id": "2086", + "name": "Sticker | Gambit (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2086.png" + }, + { + "id": "2087", + "name": "Sticker | North | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2087.png" + }, + { + "id": "2088", + "name": "Sticker | North (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2088.png" + }, + { + "id": "2089", + "name": "Sticker | North (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2089.png" + }, + { + "id": "2090", + "name": "Sticker | North (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2090.png" + }, + { + "id": "2091", + "name": "Sticker | FaZe Clan | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2091.png" + }, + { + "id": "2092", + "name": "Sticker | FaZe Clan (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2092.png" + }, + { + "id": "2093", + "name": "Sticker | FaZe Clan (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2093.png" + }, + { + "id": "2094", + "name": "Sticker | FaZe Clan (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2094.png" + }, + { + "id": "2095", + "name": "Sticker | mousesports | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2095.png" + }, + { + "id": "2096", + "name": "Sticker | mousesports (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2096.png" + }, + { + "id": "2097", + "name": "Sticker | mousesports (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2097.png" + }, + { + "id": "2098", + "name": "Sticker | mousesports (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2098.png" + }, + { + "id": "2099", + "name": "Sticker | G2 Esports | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2099.png" + }, + { + "id": "2100", + "name": "Sticker | G2 Esports (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2100.png" + }, + { + "id": "2101", + "name": "Sticker | G2 Esports (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2101.png" + }, + { + "id": "2102", + "name": "Sticker | G2 Esports (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2102.png" + }, + { + "id": "2103", + "name": "Sticker | BIG | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2103.png" + }, + { + "id": "2104", + "name": "Sticker | BIG (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2104.png" + }, + { + "id": "2105", + "name": "Sticker | BIG (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2105.png" + }, + { + "id": "2106", + "name": "Sticker | BIG (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2106.png" + }, + { + "id": "2107", + "name": "Sticker | Cloud9 | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2107.png" + }, + { + "id": "2108", + "name": "Sticker | Cloud9 (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2108.png" + }, + { + "id": "2109", + "name": "Sticker | Cloud9 (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2109.png" + }, + { + "id": "2110", + "name": "Sticker | Cloud9 (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2110.png" + }, + { + "id": "2111", + "name": "Sticker | PENTA Sports | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2111.png" + }, + { + "id": "2112", + "name": "Sticker | PENTA Sports (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2112.png" + }, + { + "id": "2113", + "name": "Sticker | PENTA Sports (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2113.png" + }, + { + "id": "2114", + "name": "Sticker | PENTA Sports (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2114.png" + }, + { + "id": "2115", + "name": "Sticker | Flipsid3 Tactics | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2115.png" + }, + { + "id": "2116", + "name": "Sticker | Flipsid3 Tactics (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2116.png" + }, + { + "id": "2117", + "name": "Sticker | Flipsid3 Tactics (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2117.png" + }, + { + "id": "2118", + "name": "Sticker | Flipsid3 Tactics (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2118.png" + }, + { + "id": "2119", + "name": "Sticker | Immortals | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2119.png" + }, + { + "id": "2120", + "name": "Sticker | Immortals (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2120.png" + }, + { + "id": "2121", + "name": "Sticker | Immortals (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2121.png" + }, + { + "id": "2122", + "name": "Sticker | Immortals (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2122.png" + }, + { + "id": "2123", + "name": "Sticker | Vega Squadron | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2123.png" + }, + { + "id": "2124", + "name": "Sticker | Vega Squadron (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2124.png" + }, + { + "id": "2125", + "name": "Sticker | Vega Squadron (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2125.png" + }, + { + "id": "2126", + "name": "Sticker | Vega Squadron (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2126.png" + }, + { + "id": "2127", + "name": "Sticker | PGL | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2127.png" + }, + { + "id": "2128", + "name": "Sticker | PGL (Holo) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2128.png" + }, + { + "id": "2129", + "name": "Sticker | PGL (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2129.png" + }, + { + "id": "2130", + "name": "Sticker | PGL (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2130.png" + }, + { + "id": "2148", + "name": "Sticker | device | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2148.png" + }, + { + "id": "2149", + "name": "Sticker | device (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2149.png" + }, + { + "id": "2150", + "name": "Sticker | device (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2150.png" + }, + { + "id": "2151", + "name": "Sticker | dupreeh | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2151.png" + }, + { + "id": "2152", + "name": "Sticker | dupreeh (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2152.png" + }, + { + "id": "2153", + "name": "Sticker | dupreeh (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2153.png" + }, + { + "id": "2154", + "name": "Sticker | gla1ve | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2154.png" + }, + { + "id": "2155", + "name": "Sticker | gla1ve (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2155.png" + }, + { + "id": "2156", + "name": "Sticker | gla1ve (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2156.png" + }, + { + "id": "2157", + "name": "Sticker | Kjaerbye | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2157.png" + }, + { + "id": "2158", + "name": "Sticker | Kjaerbye (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2158.png" + }, + { + "id": "2159", + "name": "Sticker | Kjaerbye (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2159.png" + }, + { + "id": "2160", + "name": "Sticker | Xyp9x | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2160.png" + }, + { + "id": "2161", + "name": "Sticker | Xyp9x (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2161.png" + }, + { + "id": "2162", + "name": "Sticker | Xyp9x (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2162.png" + }, + { + "id": "2163", + "name": "Sticker | byali | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2163.png" + }, + { + "id": "2164", + "name": "Sticker | byali (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2164.png" + }, + { + "id": "2165", + "name": "Sticker | byali (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2165.png" + }, + { + "id": "2166", + "name": "Sticker | NEO | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2166.png" + }, + { + "id": "2167", + "name": "Sticker | NEO (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2167.png" + }, + { + "id": "2168", + "name": "Sticker | NEO (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2168.png" + }, + { + "id": "2169", + "name": "Sticker | pashaBiceps | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2169.png" + }, + { + "id": "2170", + "name": "Sticker | pashaBiceps (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2170.png" + }, + { + "id": "2171", + "name": "Sticker | pashaBiceps (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2171.png" + }, + { + "id": "2172", + "name": "Sticker | Snax | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2172.png" + }, + { + "id": "2173", + "name": "Sticker | Snax (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2173.png" + }, + { + "id": "2174", + "name": "Sticker | Snax (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2174.png" + }, + { + "id": "2175", + "name": "Sticker | TaZ | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2175.png" + }, + { + "id": "2176", + "name": "Sticker | TaZ (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2176.png" + }, + { + "id": "2177", + "name": "Sticker | TaZ (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2177.png" + }, + { + "id": "2178", + "name": "Sticker | dennis | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2178.png" + }, + { + "id": "2179", + "name": "Sticker | dennis (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2179.png" + }, + { + "id": "2180", + "name": "Sticker | dennis (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2180.png" + }, + { + "id": "2181", + "name": "Sticker | flusha | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2181.png" + }, + { + "id": "2182", + "name": "Sticker | flusha (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2182.png" + }, + { + "id": "2183", + "name": "Sticker | flusha (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2183.png" + }, + { + "id": "2184", + "name": "Sticker | JW | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2184.png" + }, + { + "id": "2185", + "name": "Sticker | JW (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2185.png" + }, + { + "id": "2186", + "name": "Sticker | JW (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2186.png" + }, + { + "id": "2187", + "name": "Sticker | KRIMZ | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2187.png" + }, + { + "id": "2188", + "name": "Sticker | KRIMZ (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2188.png" + }, + { + "id": "2189", + "name": "Sticker | KRIMZ (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2189.png" + }, + { + "id": "2190", + "name": "Sticker | olofmeister | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2190.png" + }, + { + "id": "2191", + "name": "Sticker | olofmeister (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2191.png" + }, + { + "id": "2192", + "name": "Sticker | olofmeister (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2192.png" + }, + { + "id": "2193", + "name": "Sticker | coldzera | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2193.png" + }, + { + "id": "2194", + "name": "Sticker | coldzera (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2194.png" + }, + { + "id": "2195", + "name": "Sticker | coldzera (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2195.png" + }, + { + "id": "2196", + "name": "Sticker | FalleN | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2196.png" + }, + { + "id": "2197", + "name": "Sticker | FalleN (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2197.png" + }, + { + "id": "2198", + "name": "Sticker | FalleN (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2198.png" + }, + { + "id": "2199", + "name": "Sticker | felps | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2199.png" + }, + { + "id": "2200", + "name": "Sticker | felps (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2200.png" + }, + { + "id": "2201", + "name": "Sticker | felps (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2201.png" + }, + { + "id": "2202", + "name": "Sticker | fer | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2202.png" + }, + { + "id": "2203", + "name": "Sticker | fer (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2203.png" + }, + { + "id": "2204", + "name": "Sticker | fer (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2204.png" + }, + { + "id": "2205", + "name": "Sticker | TACO | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2205.png" + }, + { + "id": "2206", + "name": "Sticker | TACO (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2206.png" + }, + { + "id": "2207", + "name": "Sticker | TACO (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2207.png" + }, + { + "id": "2208", + "name": "Sticker | Edward | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2208.png" + }, + { + "id": "2209", + "name": "Sticker | Edward (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2209.png" + }, + { + "id": "2210", + "name": "Sticker | Edward (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2210.png" + }, + { + "id": "2211", + "name": "Sticker | flamie | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2211.png" + }, + { + "id": "2212", + "name": "Sticker | flamie (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2212.png" + }, + { + "id": "2213", + "name": "Sticker | flamie (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2213.png" + }, + { + "id": "2214", + "name": "Sticker | GuardiaN | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2214.png" + }, + { + "id": "2215", + "name": "Sticker | GuardiaN (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2215.png" + }, + { + "id": "2216", + "name": "Sticker | GuardiaN (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2216.png" + }, + { + "id": "2217", + "name": "Sticker | s1mple | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2217.png" + }, + { + "id": "2218", + "name": "Sticker | s1mple (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2218.png" + }, + { + "id": "2219", + "name": "Sticker | s1mple (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2219.png" + }, + { + "id": "2220", + "name": "Sticker | seized | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2220.png" + }, + { + "id": "2221", + "name": "Sticker | seized (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2221.png" + }, + { + "id": "2222", + "name": "Sticker | seized (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2222.png" + }, + { + "id": "2223", + "name": "Sticker | AdreN | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2223.png" + }, + { + "id": "2224", + "name": "Sticker | AdreN (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2224.png" + }, + { + "id": "2225", + "name": "Sticker | AdreN (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2225.png" + }, + { + "id": "2226", + "name": "Sticker | Dosia | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2226.png" + }, + { + "id": "2227", + "name": "Sticker | Dosia (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2227.png" + }, + { + "id": "2228", + "name": "Sticker | Dosia (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2228.png" + }, + { + "id": "2229", + "name": "Sticker | Hobbit | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2229.png" + }, + { + "id": "2230", + "name": "Sticker | Hobbit (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2230.png" + }, + { + "id": "2231", + "name": "Sticker | Hobbit (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2231.png" + }, + { + "id": "2232", + "name": "Sticker | mou | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2232.png" + }, + { + "id": "2233", + "name": "Sticker | mou (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2233.png" + }, + { + "id": "2234", + "name": "Sticker | mou (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2234.png" + }, + { + "id": "2235", + "name": "Sticker | Zeus | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2235.png" + }, + { + "id": "2236", + "name": "Sticker | Zeus (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2236.png" + }, + { + "id": "2237", + "name": "Sticker | Zeus (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2237.png" + }, + { + "id": "2238", + "name": "Sticker | aizy | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2238.png" + }, + { + "id": "2239", + "name": "Sticker | aizy (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2239.png" + }, + { + "id": "2240", + "name": "Sticker | aizy (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2240.png" + }, + { + "id": "2241", + "name": "Sticker | cajunb | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2241.png" + }, + { + "id": "2242", + "name": "Sticker | cajunb (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2242.png" + }, + { + "id": "2243", + "name": "Sticker | cajunb (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2243.png" + }, + { + "id": "2244", + "name": "Sticker | k0nfig | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2244.png" + }, + { + "id": "2245", + "name": "Sticker | k0nfig (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2245.png" + }, + { + "id": "2246", + "name": "Sticker | k0nfig (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2246.png" + }, + { + "id": "2247", + "name": "Sticker | Magisk | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2247.png" + }, + { + "id": "2248", + "name": "Sticker | Magisk (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2248.png" + }, + { + "id": "2249", + "name": "Sticker | Magisk (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2249.png" + }, + { + "id": "2250", + "name": "Sticker | MSL | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2250.png" + }, + { + "id": "2251", + "name": "Sticker | MSL (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2251.png" + }, + { + "id": "2252", + "name": "Sticker | MSL (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2252.png" + }, + { + "id": "2253", + "name": "Sticker | allu | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2253.png" + }, + { + "id": "2254", + "name": "Sticker | allu (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2254.png" + }, + { + "id": "2255", + "name": "Sticker | allu (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2255.png" + }, + { + "id": "2256", + "name": "Sticker | karrigan | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2256.png" + }, + { + "id": "2257", + "name": "Sticker | karrigan (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2257.png" + }, + { + "id": "2258", + "name": "Sticker | karrigan (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2258.png" + }, + { + "id": "2259", + "name": "Sticker | kioShiMa | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2259.png" + }, + { + "id": "2260", + "name": "Sticker | kioShiMa (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2260.png" + }, + { + "id": "2261", + "name": "Sticker | kioShiMa (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2261.png" + }, + { + "id": "2262", + "name": "Sticker | NiKo | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2262.png" + }, + { + "id": "2263", + "name": "Sticker | NiKo (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2263.png" + }, + { + "id": "2264", + "name": "Sticker | NiKo (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2264.png" + }, + { + "id": "2265", + "name": "Sticker | rain | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2265.png" + }, + { + "id": "2266", + "name": "Sticker | rain (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2266.png" + }, + { + "id": "2267", + "name": "Sticker | rain (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2267.png" + }, + { + "id": "2268", + "name": "Sticker | chrisJ | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2268.png" + }, + { + "id": "2269", + "name": "Sticker | chrisJ (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2269.png" + }, + { + "id": "2270", + "name": "Sticker | chrisJ (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2270.png" + }, + { + "id": "2271", + "name": "Sticker | denis | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2271.png" + }, + { + "id": "2272", + "name": "Sticker | denis (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2272.png" + }, + { + "id": "2273", + "name": "Sticker | denis (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2273.png" + }, + { + "id": "2274", + "name": "Sticker | loWel | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2274.png" + }, + { + "id": "2275", + "name": "Sticker | loWel (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2275.png" + }, + { + "id": "2276", + "name": "Sticker | loWel (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2276.png" + }, + { + "id": "2277", + "name": "Sticker | oskar | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2277.png" + }, + { + "id": "2278", + "name": "Sticker | oskar (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2278.png" + }, + { + "id": "2279", + "name": "Sticker | oskar (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2279.png" + }, + { + "id": "2280", + "name": "Sticker | ropz | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2280.png" + }, + { + "id": "2281", + "name": "Sticker | ropz (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2281.png" + }, + { + "id": "2282", + "name": "Sticker | ropz (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2282.png" + }, + { + "id": "2283", + "name": "Sticker | apEX | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2283.png" + }, + { + "id": "2284", + "name": "Sticker | apEX (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2284.png" + }, + { + "id": "2285", + "name": "Sticker | apEX (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2285.png" + }, + { + "id": "2286", + "name": "Sticker | bodyy | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2286.png" + }, + { + "id": "2287", + "name": "Sticker | bodyy (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2287.png" + }, + { + "id": "2288", + "name": "Sticker | bodyy (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2288.png" + }, + { + "id": "2289", + "name": "Sticker | kennyS | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2289.png" + }, + { + "id": "2290", + "name": "Sticker | kennyS (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2290.png" + }, + { + "id": "2291", + "name": "Sticker | kennyS (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2291.png" + }, + { + "id": "2292", + "name": "Sticker | NBK- | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2292.png" + }, + { + "id": "2293", + "name": "Sticker | NBK- (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2293.png" + }, + { + "id": "2294", + "name": "Sticker | NBK- (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2294.png" + }, + { + "id": "2295", + "name": "Sticker | shox | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2295.png" + }, + { + "id": "2296", + "name": "Sticker | shox (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2296.png" + }, + { + "id": "2297", + "name": "Sticker | shox (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2297.png" + }, + { + "id": "2298", + "name": "Sticker | gob b | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2298.png" + }, + { + "id": "2299", + "name": "Sticker | gob b (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2299.png" + }, + { + "id": "2300", + "name": "Sticker | gob b (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2300.png" + }, + { + "id": "2301", + "name": "Sticker | keev | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2301.png" + }, + { + "id": "2302", + "name": "Sticker | keev (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2302.png" + }, + { + "id": "2303", + "name": "Sticker | keev (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2303.png" + }, + { + "id": "2304", + "name": "Sticker | LEGIJA | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2304.png" + }, + { + "id": "2305", + "name": "Sticker | LEGIJA (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2305.png" + }, + { + "id": "2306", + "name": "Sticker | LEGIJA (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2306.png" + }, + { + "id": "2307", + "name": "Sticker | nex | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2307.png" + }, + { + "id": "2308", + "name": "Sticker | nex (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2308.png" + }, + { + "id": "2309", + "name": "Sticker | nex (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2309.png" + }, + { + "id": "2310", + "name": "Sticker | tabseN | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2310.png" + }, + { + "id": "2311", + "name": "Sticker | tabseN (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2311.png" + }, + { + "id": "2312", + "name": "Sticker | tabseN (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2312.png" + }, + { + "id": "2313", + "name": "Sticker | autimatic | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2313.png" + }, + { + "id": "2314", + "name": "Sticker | autimatic (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2314.png" + }, + { + "id": "2315", + "name": "Sticker | autimatic (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2315.png" + }, + { + "id": "2316", + "name": "Sticker | n0thing | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2316.png" + }, + { + "id": "2317", + "name": "Sticker | n0thing (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2317.png" + }, + { + "id": "2318", + "name": "Sticker | n0thing (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2318.png" + }, + { + "id": "2319", + "name": "Sticker | shroud | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2319.png" + }, + { + "id": "2320", + "name": "Sticker | shroud (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2320.png" + }, + { + "id": "2321", + "name": "Sticker | shroud (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2321.png" + }, + { + "id": "2322", + "name": "Sticker | Skadoodle | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2322.png" + }, + { + "id": "2323", + "name": "Sticker | Skadoodle (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2323.png" + }, + { + "id": "2324", + "name": "Sticker | Skadoodle (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2324.png" + }, + { + "id": "2325", + "name": "Sticker | Stewie2K | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2325.png" + }, + { + "id": "2326", + "name": "Sticker | Stewie2K (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2326.png" + }, + { + "id": "2327", + "name": "Sticker | Stewie2K (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2327.png" + }, + { + "id": "2328", + "name": "Sticker | HS | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2328.png" + }, + { + "id": "2329", + "name": "Sticker | HS (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2329.png" + }, + { + "id": "2330", + "name": "Sticker | HS (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2330.png" + }, + { + "id": "2331", + "name": "Sticker | innocent | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2331.png" + }, + { + "id": "2332", + "name": "Sticker | innocent (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2332.png" + }, + { + "id": "2333", + "name": "Sticker | innocent (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2333.png" + }, + { + "id": "2334", + "name": "Sticker | kRYSTAL | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2334.png" + }, + { + "id": "2335", + "name": "Sticker | kRYSTAL (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2335.png" + }, + { + "id": "2336", + "name": "Sticker | kRYSTAL (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2336.png" + }, + { + "id": "2337", + "name": "Sticker | suNny | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2337.png" + }, + { + "id": "2338", + "name": "Sticker | suNny (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2338.png" + }, + { + "id": "2339", + "name": "Sticker | suNny (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2339.png" + }, + { + "id": "2340", + "name": "Sticker | zehN | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2340.png" + }, + { + "id": "2341", + "name": "Sticker | zehN (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2341.png" + }, + { + "id": "2342", + "name": "Sticker | zehN (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2342.png" + }, + { + "id": "2343", + "name": "Sticker | B1ad3 | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2343.png" + }, + { + "id": "2344", + "name": "Sticker | B1ad3 (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2344.png" + }, + { + "id": "2345", + "name": "Sticker | B1ad3 (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2345.png" + }, + { + "id": "2346", + "name": "Sticker | electronic | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2346.png" + }, + { + "id": "2347", + "name": "Sticker | electronic (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2347.png" + }, + { + "id": "2348", + "name": "Sticker | electronic (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2348.png" + }, + { + "id": "2349", + "name": "Sticker | markeloff | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2349.png" + }, + { + "id": "2350", + "name": "Sticker | markeloff (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2350.png" + }, + { + "id": "2351", + "name": "Sticker | markeloff (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2351.png" + }, + { + "id": "2352", + "name": "Sticker | wayLander | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2352.png" + }, + { + "id": "2353", + "name": "Sticker | wayLander (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2353.png" + }, + { + "id": "2354", + "name": "Sticker | wayLander (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2354.png" + }, + { + "id": "2355", + "name": "Sticker | WorldEdit | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2355.png" + }, + { + "id": "2356", + "name": "Sticker | WorldEdit (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2356.png" + }, + { + "id": "2357", + "name": "Sticker | WorldEdit (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2357.png" + }, + { + "id": "2358", + "name": "Sticker | boltz | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2358.png" + }, + { + "id": "2359", + "name": "Sticker | boltz (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2359.png" + }, + { + "id": "2360", + "name": "Sticker | boltz (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2360.png" + }, + { + "id": "2361", + "name": "Sticker | HEN1 | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2361.png" + }, + { + "id": "2362", + "name": "Sticker | HEN1 (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2362.png" + }, + { + "id": "2363", + "name": "Sticker | HEN1 (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2363.png" + }, + { + "id": "2364", + "name": "Sticker | kNgV- | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2364.png" + }, + { + "id": "2365", + "name": "Sticker | kNgV- (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2365.png" + }, + { + "id": "2366", + "name": "Sticker | kNgV- (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2366.png" + }, + { + "id": "2367", + "name": "Sticker | LUCAS1 | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2367.png" + }, + { + "id": "2368", + "name": "Sticker | LUCAS1 (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2368.png" + }, + { + "id": "2369", + "name": "Sticker | LUCAS1 (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2369.png" + }, + { + "id": "2370", + "name": "Sticker | steel | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2370.png" + }, + { + "id": "2371", + "name": "Sticker | steel (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2371.png" + }, + { + "id": "2372", + "name": "Sticker | steel (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2372.png" + }, + { + "id": "2373", + "name": "Sticker | chopper | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2373.png" + }, + { + "id": "2374", + "name": "Sticker | chopper (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2374.png" + }, + { + "id": "2375", + "name": "Sticker | chopper (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2375.png" + }, + { + "id": "2376", + "name": "Sticker | hutji | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2376.png" + }, + { + "id": "2377", + "name": "Sticker | hutji (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2377.png" + }, + { + "id": "2378", + "name": "Sticker | hutji (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2378.png" + }, + { + "id": "2379", + "name": "Sticker | jR | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2379.png" + }, + { + "id": "2380", + "name": "Sticker | jR (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2380.png" + }, + { + "id": "2381", + "name": "Sticker | jR (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2381.png" + }, + { + "id": "2382", + "name": "Sticker | keshandr | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2382.png" + }, + { + "id": "2383", + "name": "Sticker | keshandr (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2383.png" + }, + { + "id": "2384", + "name": "Sticker | keshandr (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2384.png" + }, + { + "id": "2385", + "name": "Sticker | mir | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2385.png" + }, + { + "id": "2386", + "name": "Sticker | mir (Foil) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2386.png" + }, + { + "id": "2387", + "name": "Sticker | mir (Gold) | Krakow 2017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2387.png" + }, + { + "id": "2388", + "name": "Sticker | Water Gun", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2388.png" + }, + { + "id": "2389", + "name": "Sticker | Cheongsam", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2389.png" + }, + { + "id": "2390", + "name": "Sticker | Cheongsam (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2390.png" + }, + { + "id": "2391", + "name": "Sticker | Fancy Koi", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2391.png" + }, + { + "id": "2392", + "name": "Sticker | Fancy Koi (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2392.png" + }, + { + "id": "2393", + "name": "Sticker | Guardian Dragon", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2393.png" + }, + { + "id": "2394", + "name": "Sticker | Guardian Dragon (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2394.png" + }, + { + "id": "2395", + "name": "Sticker | Hotpot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2395.png" + }, + { + "id": "2396", + "name": "Sticker | Noodles", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2396.png" + }, + { + "id": "2397", + "name": "Sticker | Rice Bomb", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2397.png" + }, + { + "id": "2398", + "name": "Sticker | Terror Rice", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2398.png" + }, + { + "id": "2399", + "name": "Sticker | Mahjong Fa", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2399.png" + }, + { + "id": "2400", + "name": "Sticker | Mahjong Rooster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2400.png" + }, + { + "id": "2401", + "name": "Sticker | Mahjong Zhong", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2401.png" + }, + { + "id": "2402", + "name": "Sticker | Toy Tiger", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2402.png" + }, + { + "id": "2403", + "name": "Sticker | God of Fortune", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2403.png" + }, + { + "id": "2404", + "name": "Sticker | Huaji", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2404.png" + }, + { + "id": "2405", + "name": "Sticker | Nezha", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2405.png" + }, + { + "id": "2406", + "name": "Sticker | Rage", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2406.png" + }, + { + "id": "2407", + "name": "Sticker | Longevity", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2407.png" + }, + { + "id": "2408", + "name": "Sticker | Longevity (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2408.png" + }, + { + "id": "2409", + "name": "Sticker | Non-Veg", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2409.png" + }, + { + "id": "2410", + "name": "Sticker | Pixiu", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2410.png" + }, + { + "id": "2411", + "name": "Sticker | Pixiu (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2411.png" + }, + { + "id": "2412", + "name": "Sticker | Twin Koi", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2412.png" + }, + { + "id": "2413", + "name": "Sticker | Twin Koi (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2413.png" + }, + { + "id": "2414", + "name": "Sticker | Shaolin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2414.png" + }, + { + "id": "2415", + "name": "Sticker | Green Swallow", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2415.png" + }, + { + "id": "2416", + "name": "Sticker | Blue Swallow", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2416.png" + }, + { + "id": "2417", + "name": "Sticker | Zombie Hop", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2417.png" + }, + { + "id": "2436", + "name": "Sticker | Gambit Esports | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2436.png" + }, + { + "id": "2437", + "name": "Sticker | Gambit Esports (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2437.png" + }, + { + "id": "2438", + "name": "Sticker | Gambit Esports (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2438.png" + }, + { + "id": "2439", + "name": "Sticker | Gambit Esports (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2439.png" + }, + { + "id": "2440", + "name": "Sticker | 100 Thieves | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2440.png" + }, + { + "id": "2441", + "name": "Sticker | 100 Thieves (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2441.png" + }, + { + "id": "2442", + "name": "Sticker | 100 Thieves (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2442.png" + }, + { + "id": "2443", + "name": "Sticker | 100 Thieves (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2443.png" + }, + { + "id": "2444", + "name": "Sticker | Astralis | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2444.png" + }, + { + "id": "2445", + "name": "Sticker | Astralis (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2445.png" + }, + { + "id": "2446", + "name": "Sticker | Astralis (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2446.png" + }, + { + "id": "2447", + "name": "Sticker | Astralis (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2447.png" + }, + { + "id": "2448", + "name": "Sticker | Virtus.Pro | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2448.png" + }, + { + "id": "2449", + "name": "Sticker | Virtus.Pro (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2449.png" + }, + { + "id": "2450", + "name": "Sticker | Virtus.Pro (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2450.png" + }, + { + "id": "2451", + "name": "Sticker | Virtus.Pro (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2451.png" + }, + { + "id": "2452", + "name": "Sticker | Fnatic | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2452.png" + }, + { + "id": "2453", + "name": "Sticker | Fnatic (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2453.png" + }, + { + "id": "2454", + "name": "Sticker | Fnatic (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2454.png" + }, + { + "id": "2455", + "name": "Sticker | Fnatic (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2455.png" + }, + { + "id": "2456", + "name": "Sticker | SK Gaming | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2456.png" + }, + { + "id": "2457", + "name": "Sticker | SK Gaming (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2457.png" + }, + { + "id": "2458", + "name": "Sticker | SK Gaming (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2458.png" + }, + { + "id": "2459", + "name": "Sticker | SK Gaming (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2459.png" + }, + { + "id": "2460", + "name": "Sticker | BIG | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2460.png" + }, + { + "id": "2461", + "name": "Sticker | BIG (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2461.png" + }, + { + "id": "2462", + "name": "Sticker | BIG (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2462.png" + }, + { + "id": "2463", + "name": "Sticker | BIG (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2463.png" + }, + { + "id": "2464", + "name": "Sticker | North | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2464.png" + }, + { + "id": "2465", + "name": "Sticker | North (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2465.png" + }, + { + "id": "2466", + "name": "Sticker | North (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2466.png" + }, + { + "id": "2467", + "name": "Sticker | North (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2467.png" + }, + { + "id": "2468", + "name": "Sticker | G2 Esports | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2468.png" + }, + { + "id": "2469", + "name": "Sticker | G2 Esports (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2469.png" + }, + { + "id": "2470", + "name": "Sticker | G2 Esports (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2470.png" + }, + { + "id": "2471", + "name": "Sticker | G2 Esports (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2471.png" + }, + { + "id": "2472", + "name": "Sticker | Cloud9 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2472.png" + }, + { + "id": "2473", + "name": "Sticker | Cloud9 (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2473.png" + }, + { + "id": "2474", + "name": "Sticker | Cloud9 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2474.png" + }, + { + "id": "2475", + "name": "Sticker | Cloud9 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2475.png" + }, + { + "id": "2476", + "name": "Sticker | Flipsid3 Tactics | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2476.png" + }, + { + "id": "2477", + "name": "Sticker | Flipsid3 Tactics (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2477.png" + }, + { + "id": "2478", + "name": "Sticker | Flipsid3 Tactics (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2478.png" + }, + { + "id": "2479", + "name": "Sticker | Flipsid3 Tactics (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2479.png" + }, + { + "id": "2480", + "name": "Sticker | Natus Vincere | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2480.png" + }, + { + "id": "2481", + "name": "Sticker | Natus Vincere (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2481.png" + }, + { + "id": "2482", + "name": "Sticker | Natus Vincere (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2482.png" + }, + { + "id": "2483", + "name": "Sticker | Natus Vincere (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2483.png" + }, + { + "id": "2484", + "name": "Sticker | mousesports | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2484.png" + }, + { + "id": "2485", + "name": "Sticker | mousesports (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2485.png" + }, + { + "id": "2486", + "name": "Sticker | mousesports (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2486.png" + }, + { + "id": "2487", + "name": "Sticker | mousesports (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2487.png" + }, + { + "id": "2488", + "name": "Sticker | Sprout Esports | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2488.png" + }, + { + "id": "2489", + "name": "Sticker | Sprout Esports (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2489.png" + }, + { + "id": "2490", + "name": "Sticker | Sprout Esports (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2490.png" + }, + { + "id": "2491", + "name": "Sticker | Sprout Esports (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2491.png" + }, + { + "id": "2492", + "name": "Sticker | FaZe Clan | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2492.png" + }, + { + "id": "2493", + "name": "Sticker | FaZe Clan (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2493.png" + }, + { + "id": "2494", + "name": "Sticker | FaZe Clan (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2494.png" + }, + { + "id": "2495", + "name": "Sticker | FaZe Clan (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2495.png" + }, + { + "id": "2496", + "name": "Sticker | Vega Squadron | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2496.png" + }, + { + "id": "2497", + "name": "Sticker | Vega Squadron (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2497.png" + }, + { + "id": "2498", + "name": "Sticker | Vega Squadron (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2498.png" + }, + { + "id": "2499", + "name": "Sticker | Vega Squadron (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2499.png" + }, + { + "id": "2500", + "name": "Sticker | Space Soldiers | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2500.png" + }, + { + "id": "2501", + "name": "Sticker | Space Soldiers (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2501.png" + }, + { + "id": "2502", + "name": "Sticker | Space Soldiers (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2502.png" + }, + { + "id": "2503", + "name": "Sticker | Space Soldiers (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2503.png" + }, + { + "id": "2504", + "name": "Sticker | Team Liquid | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2504.png" + }, + { + "id": "2505", + "name": "Sticker | Team Liquid (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2505.png" + }, + { + "id": "2506", + "name": "Sticker | Team Liquid (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2506.png" + }, + { + "id": "2507", + "name": "Sticker | Team Liquid (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2507.png" + }, + { + "id": "2508", + "name": "Sticker | Avangar | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2508.png" + }, + { + "id": "2509", + "name": "Sticker | Avangar (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2509.png" + }, + { + "id": "2510", + "name": "Sticker | Avangar (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2510.png" + }, + { + "id": "2511", + "name": "Sticker | Avangar (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2511.png" + }, + { + "id": "2512", + "name": "Sticker | Renegades | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2512.png" + }, + { + "id": "2513", + "name": "Sticker | Renegades (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2513.png" + }, + { + "id": "2514", + "name": "Sticker | Renegades (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2514.png" + }, + { + "id": "2515", + "name": "Sticker | Renegades (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2515.png" + }, + { + "id": "2516", + "name": "Sticker | Team EnVyUs | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2516.png" + }, + { + "id": "2517", + "name": "Sticker | Team EnVyUs (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2517.png" + }, + { + "id": "2518", + "name": "Sticker | Team EnVyUs (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2518.png" + }, + { + "id": "2519", + "name": "Sticker | Team EnVyUs (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2519.png" + }, + { + "id": "2520", + "name": "Sticker | Misfits Gaming | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2520.png" + }, + { + "id": "2521", + "name": "Sticker | Misfits Gaming (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2521.png" + }, + { + "id": "2522", + "name": "Sticker | Misfits Gaming (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2522.png" + }, + { + "id": "2523", + "name": "Sticker | Misfits Gaming (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2523.png" + }, + { + "id": "2524", + "name": "Sticker | Quantum Bellator Fire | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2524.png" + }, + { + "id": "2525", + "name": "Sticker | Quantum Bellator Fire (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2525.png" + }, + { + "id": "2526", + "name": "Sticker | Quantum Bellator Fire (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2526.png" + }, + { + "id": "2527", + "name": "Sticker | Quantum Bellator Fire (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2527.png" + }, + { + "id": "2528", + "name": "Sticker | Tyloo | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2528.png" + }, + { + "id": "2529", + "name": "Sticker | Tyloo (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2529.png" + }, + { + "id": "2530", + "name": "Sticker | Tyloo (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2530.png" + }, + { + "id": "2531", + "name": "Sticker | Tyloo (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2531.png" + }, + { + "id": "2532", + "name": "Sticker | ELEAGUE | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2532.png" + }, + { + "id": "2533", + "name": "Sticker | ELEAGUE (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2533.png" + }, + { + "id": "2534", + "name": "Sticker | ELEAGUE (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2534.png" + }, + { + "id": "2535", + "name": "Sticker | ELEAGUE (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2535.png" + }, + { + "id": "2561", + "name": "Sticker | AdreN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2561.png" + }, + { + "id": "2562", + "name": "Sticker | AdreN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2562.png" + }, + { + "id": "2563", + "name": "Sticker | AdreN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2563.png" + }, + { + "id": "2564", + "name": "Sticker | Dosia | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2564.png" + }, + { + "id": "2565", + "name": "Sticker | Dosia (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2565.png" + }, + { + "id": "2566", + "name": "Sticker | Dosia (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2566.png" + }, + { + "id": "2567", + "name": "Sticker | fitch | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2567.png" + }, + { + "id": "2568", + "name": "Sticker | fitch (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2568.png" + }, + { + "id": "2569", + "name": "Sticker | fitch (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2569.png" + }, + { + "id": "2570", + "name": "Sticker | Hobbit | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2570.png" + }, + { + "id": "2571", + "name": "Sticker | Hobbit (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2571.png" + }, + { + "id": "2572", + "name": "Sticker | Hobbit (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2572.png" + }, + { + "id": "2573", + "name": "Sticker | mou | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2573.png" + }, + { + "id": "2574", + "name": "Sticker | mou (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2574.png" + }, + { + "id": "2575", + "name": "Sticker | mou (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2575.png" + }, + { + "id": "2576", + "name": "Sticker | BIT | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2576.png" + }, + { + "id": "2577", + "name": "Sticker | BIT (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2577.png" + }, + { + "id": "2578", + "name": "Sticker | BIT (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2578.png" + }, + { + "id": "2579", + "name": "Sticker | fnx | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2579.png" + }, + { + "id": "2580", + "name": "Sticker | fnx (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2580.png" + }, + { + "id": "2581", + "name": "Sticker | fnx (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2581.png" + }, + { + "id": "2582", + "name": "Sticker | HEN1 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2582.png" + }, + { + "id": "2583", + "name": "Sticker | HEN1 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2583.png" + }, + { + "id": "2584", + "name": "Sticker | HEN1 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2584.png" + }, + { + "id": "2585", + "name": "Sticker | kNgV- | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2585.png" + }, + { + "id": "2586", + "name": "Sticker | kNgV- (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2586.png" + }, + { + "id": "2587", + "name": "Sticker | kNgV- (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2587.png" + }, + { + "id": "2588", + "name": "Sticker | LUCAS1 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2588.png" + }, + { + "id": "2589", + "name": "Sticker | LUCAS1 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2589.png" + }, + { + "id": "2590", + "name": "Sticker | LUCAS1 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2590.png" + }, + { + "id": "2591", + "name": "Sticker | device | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2591.png" + }, + { + "id": "2592", + "name": "Sticker | device (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2592.png" + }, + { + "id": "2593", + "name": "Sticker | device (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2593.png" + }, + { + "id": "2594", + "name": "Sticker | dupreeh | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2594.png" + }, + { + "id": "2595", + "name": "Sticker | dupreeh (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2595.png" + }, + { + "id": "2596", + "name": "Sticker | dupreeh (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2596.png" + }, + { + "id": "2597", + "name": "Sticker | gla1ve | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2597.png" + }, + { + "id": "2598", + "name": "Sticker | gla1ve (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2598.png" + }, + { + "id": "2599", + "name": "Sticker | gla1ve (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2599.png" + }, + { + "id": "2600", + "name": "Sticker | Kjaerbye | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2600.png" + }, + { + "id": "2601", + "name": "Sticker | Kjaerbye (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2601.png" + }, + { + "id": "2602", + "name": "Sticker | Kjaerbye (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2602.png" + }, + { + "id": "2603", + "name": "Sticker | Xyp9x | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2603.png" + }, + { + "id": "2604", + "name": "Sticker | Xyp9x (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2604.png" + }, + { + "id": "2605", + "name": "Sticker | Xyp9x (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2605.png" + }, + { + "id": "2606", + "name": "Sticker | byali | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2606.png" + }, + { + "id": "2607", + "name": "Sticker | byali (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2607.png" + }, + { + "id": "2608", + "name": "Sticker | byali (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2608.png" + }, + { + "id": "2609", + "name": "Sticker | NEO | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2609.png" + }, + { + "id": "2610", + "name": "Sticker | NEO (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2610.png" + }, + { + "id": "2611", + "name": "Sticker | NEO (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2611.png" + }, + { + "id": "2612", + "name": "Sticker | pashaBiceps | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2612.png" + }, + { + "id": "2613", + "name": "Sticker | pashaBiceps (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2613.png" + }, + { + "id": "2614", + "name": "Sticker | pashaBiceps (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2614.png" + }, + { + "id": "2615", + "name": "Sticker | Snax | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2615.png" + }, + { + "id": "2616", + "name": "Sticker | Snax (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2616.png" + }, + { + "id": "2617", + "name": "Sticker | Snax (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2617.png" + }, + { + "id": "2618", + "name": "Sticker | TaZ | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2618.png" + }, + { + "id": "2619", + "name": "Sticker | TaZ (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2619.png" + }, + { + "id": "2620", + "name": "Sticker | TaZ (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2620.png" + }, + { + "id": "2621", + "name": "Sticker | flusha | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2621.png" + }, + { + "id": "2622", + "name": "Sticker | flusha (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2622.png" + }, + { + "id": "2623", + "name": "Sticker | flusha (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2623.png" + }, + { + "id": "2624", + "name": "Sticker | Golden | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2624.png" + }, + { + "id": "2625", + "name": "Sticker | Golden (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2625.png" + }, + { + "id": "2626", + "name": "Sticker | Golden (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2626.png" + }, + { + "id": "2627", + "name": "Sticker | JW | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2627.png" + }, + { + "id": "2628", + "name": "Sticker | JW (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2628.png" + }, + { + "id": "2629", + "name": "Sticker | JW (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2629.png" + }, + { + "id": "2630", + "name": "Sticker | KRIMZ | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2630.png" + }, + { + "id": "2631", + "name": "Sticker | KRIMZ (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2631.png" + }, + { + "id": "2632", + "name": "Sticker | KRIMZ (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2632.png" + }, + { + "id": "2633", + "name": "Sticker | Lekr0 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2633.png" + }, + { + "id": "2634", + "name": "Sticker | Lekr0 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2634.png" + }, + { + "id": "2635", + "name": "Sticker | Lekr0 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2635.png" + }, + { + "id": "2636", + "name": "Sticker | coldzera | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2636.png" + }, + { + "id": "2637", + "name": "Sticker | coldzera (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2637.png" + }, + { + "id": "2638", + "name": "Sticker | coldzera (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2638.png" + }, + { + "id": "2639", + "name": "Sticker | FalleN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2639.png" + }, + { + "id": "2640", + "name": "Sticker | FalleN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2640.png" + }, + { + "id": "2641", + "name": "Sticker | FalleN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2641.png" + }, + { + "id": "2642", + "name": "Sticker | felps | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2642.png" + }, + { + "id": "2643", + "name": "Sticker | felps (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2643.png" + }, + { + "id": "2644", + "name": "Sticker | felps (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2644.png" + }, + { + "id": "2645", + "name": "Sticker | fer | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2645.png" + }, + { + "id": "2646", + "name": "Sticker | fer (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2646.png" + }, + { + "id": "2647", + "name": "Sticker | fer (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2647.png" + }, + { + "id": "2648", + "name": "Sticker | TACO | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2648.png" + }, + { + "id": "2649", + "name": "Sticker | TACO (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2649.png" + }, + { + "id": "2650", + "name": "Sticker | TACO (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2650.png" + }, + { + "id": "2651", + "name": "Sticker | gob b | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2651.png" + }, + { + "id": "2652", + "name": "Sticker | gob b (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2652.png" + }, + { + "id": "2653", + "name": "Sticker | gob b (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2653.png" + }, + { + "id": "2654", + "name": "Sticker | keev | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2654.png" + }, + { + "id": "2655", + "name": "Sticker | keev (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2655.png" + }, + { + "id": "2656", + "name": "Sticker | keev (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2656.png" + }, + { + "id": "2657", + "name": "Sticker | LEGIJA | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2657.png" + }, + { + "id": "2658", + "name": "Sticker | LEGIJA (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2658.png" + }, + { + "id": "2659", + "name": "Sticker | LEGIJA (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2659.png" + }, + { + "id": "2660", + "name": "Sticker | nex | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2660.png" + }, + { + "id": "2661", + "name": "Sticker | nex (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2661.png" + }, + { + "id": "2662", + "name": "Sticker | nex (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2662.png" + }, + { + "id": "2663", + "name": "Sticker | tabseN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2663.png" + }, + { + "id": "2664", + "name": "Sticker | tabseN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2664.png" + }, + { + "id": "2665", + "name": "Sticker | tabseN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2665.png" + }, + { + "id": "2666", + "name": "Sticker | aizy | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2666.png" + }, + { + "id": "2667", + "name": "Sticker | aizy (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2667.png" + }, + { + "id": "2668", + "name": "Sticker | aizy (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2668.png" + }, + { + "id": "2669", + "name": "Sticker | cajunb | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2669.png" + }, + { + "id": "2670", + "name": "Sticker | cajunb (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2670.png" + }, + { + "id": "2671", + "name": "Sticker | cajunb (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2671.png" + }, + { + "id": "2672", + "name": "Sticker | k0nfig | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2672.png" + }, + { + "id": "2673", + "name": "Sticker | k0nfig (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2673.png" + }, + { + "id": "2674", + "name": "Sticker | k0nfig (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2674.png" + }, + { + "id": "2675", + "name": "Sticker | MSL | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2675.png" + }, + { + "id": "2676", + "name": "Sticker | MSL (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2676.png" + }, + { + "id": "2677", + "name": "Sticker | MSL (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2677.png" + }, + { + "id": "2678", + "name": "Sticker | v4lde | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2678.png" + }, + { + "id": "2679", + "name": "Sticker | v4lde (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2679.png" + }, + { + "id": "2680", + "name": "Sticker | v4lde (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2680.png" + }, + { + "id": "2681", + "name": "Sticker | apEX | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2681.png" + }, + { + "id": "2682", + "name": "Sticker | apEX (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2682.png" + }, + { + "id": "2683", + "name": "Sticker | apEX (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2683.png" + }, + { + "id": "2684", + "name": "Sticker | bodyy | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2684.png" + }, + { + "id": "2685", + "name": "Sticker | bodyy (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2685.png" + }, + { + "id": "2686", + "name": "Sticker | bodyy (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2686.png" + }, + { + "id": "2687", + "name": "Sticker | kennyS | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2687.png" + }, + { + "id": "2688", + "name": "Sticker | kennyS (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2688.png" + }, + { + "id": "2689", + "name": "Sticker | kennyS (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2689.png" + }, + { + "id": "2690", + "name": "Sticker | NBK- | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2690.png" + }, + { + "id": "2691", + "name": "Sticker | NBK- (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2691.png" + }, + { + "id": "2692", + "name": "Sticker | NBK- (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2692.png" + }, + { + "id": "2693", + "name": "Sticker | shox | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2693.png" + }, + { + "id": "2694", + "name": "Sticker | shox (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2694.png" + }, + { + "id": "2695", + "name": "Sticker | shox (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2695.png" + }, + { + "id": "2696", + "name": "Sticker | autimatic | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2696.png" + }, + { + "id": "2697", + "name": "Sticker | autimatic (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2697.png" + }, + { + "id": "2698", + "name": "Sticker | autimatic (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2698.png" + }, + { + "id": "2699", + "name": "Sticker | RUSH | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2699.png" + }, + { + "id": "2700", + "name": "Sticker | RUSH (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2700.png" + }, + { + "id": "2701", + "name": "Sticker | RUSH (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2701.png" + }, + { + "id": "2702", + "name": "Sticker | Skadoodle | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2702.png" + }, + { + "id": "2703", + "name": "Sticker | Skadoodle (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2703.png" + }, + { + "id": "2704", + "name": "Sticker | Skadoodle (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2704.png" + }, + { + "id": "2705", + "name": "Sticker | Stewie2K | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2705.png" + }, + { + "id": "2706", + "name": "Sticker | Stewie2K (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2706.png" + }, + { + "id": "2707", + "name": "Sticker | Stewie2K (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2707.png" + }, + { + "id": "2708", + "name": "Sticker | tarik | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2708.png" + }, + { + "id": "2709", + "name": "Sticker | tarik (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2709.png" + }, + { + "id": "2710", + "name": "Sticker | tarik (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2710.png" + }, + { + "id": "2711", + "name": "Sticker | B1ad3 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2711.png" + }, + { + "id": "2712", + "name": "Sticker | B1ad3 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2712.png" + }, + { + "id": "2713", + "name": "Sticker | B1ad3 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2713.png" + }, + { + "id": "2714", + "name": "Sticker | markeloff | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2714.png" + }, + { + "id": "2715", + "name": "Sticker | markeloff (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2715.png" + }, + { + "id": "2716", + "name": "Sticker | markeloff (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2716.png" + }, + { + "id": "2717", + "name": "Sticker | seized | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2717.png" + }, + { + "id": "2718", + "name": "Sticker | seized (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2718.png" + }, + { + "id": "2719", + "name": "Sticker | seized (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2719.png" + }, + { + "id": "2720", + "name": "Sticker | wayLander | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2720.png" + }, + { + "id": "2721", + "name": "Sticker | wayLander (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2721.png" + }, + { + "id": "2722", + "name": "Sticker | wayLander (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2722.png" + }, + { + "id": "2723", + "name": "Sticker | WorldEdit | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2723.png" + }, + { + "id": "2724", + "name": "Sticker | WorldEdit (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2724.png" + }, + { + "id": "2725", + "name": "Sticker | WorldEdit (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2725.png" + }, + { + "id": "2726", + "name": "Sticker | Edward | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2726.png" + }, + { + "id": "2727", + "name": "Sticker | Edward (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2727.png" + }, + { + "id": "2728", + "name": "Sticker | Edward (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2728.png" + }, + { + "id": "2729", + "name": "Sticker | electronic | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2729.png" + }, + { + "id": "2730", + "name": "Sticker | electronic (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2730.png" + }, + { + "id": "2731", + "name": "Sticker | electronic (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2731.png" + }, + { + "id": "2732", + "name": "Sticker | flamie | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2732.png" + }, + { + "id": "2733", + "name": "Sticker | flamie (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2733.png" + }, + { + "id": "2734", + "name": "Sticker | flamie (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2734.png" + }, + { + "id": "2735", + "name": "Sticker | s1mple | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2735.png" + }, + { + "id": "2736", + "name": "Sticker | s1mple (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2736.png" + }, + { + "id": "2737", + "name": "Sticker | s1mple (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2737.png" + }, + { + "id": "2738", + "name": "Sticker | Zeus | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2738.png" + }, + { + "id": "2739", + "name": "Sticker | Zeus (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2739.png" + }, + { + "id": "2740", + "name": "Sticker | Zeus (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2740.png" + }, + { + "id": "2741", + "name": "Sticker | chrisJ | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2741.png" + }, + { + "id": "2742", + "name": "Sticker | chrisJ (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2742.png" + }, + { + "id": "2743", + "name": "Sticker | chrisJ (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2743.png" + }, + { + "id": "2744", + "name": "Sticker | oskar | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2744.png" + }, + { + "id": "2745", + "name": "Sticker | oskar (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2745.png" + }, + { + "id": "2746", + "name": "Sticker | oskar (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2746.png" + }, + { + "id": "2747", + "name": "Sticker | ropz | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2747.png" + }, + { + "id": "2748", + "name": "Sticker | ropz (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2748.png" + }, + { + "id": "2749", + "name": "Sticker | ropz (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2749.png" + }, + { + "id": "2750", + "name": "Sticker | STYKO | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2750.png" + }, + { + "id": "2751", + "name": "Sticker | STYKO (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2751.png" + }, + { + "id": "2752", + "name": "Sticker | STYKO (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2752.png" + }, + { + "id": "2753", + "name": "Sticker | suNny | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2753.png" + }, + { + "id": "2754", + "name": "Sticker | suNny (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2754.png" + }, + { + "id": "2755", + "name": "Sticker | suNny (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2755.png" + }, + { + "id": "2756", + "name": "Sticker | denis | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2756.png" + }, + { + "id": "2757", + "name": "Sticker | denis (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2757.png" + }, + { + "id": "2758", + "name": "Sticker | denis (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2758.png" + }, + { + "id": "2759", + "name": "Sticker | innocent | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2759.png" + }, + { + "id": "2760", + "name": "Sticker | innocent (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2760.png" + }, + { + "id": "2761", + "name": "Sticker | innocent (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2761.png" + }, + { + "id": "2762", + "name": "Sticker | kRYSTAL | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2762.png" + }, + { + "id": "2763", + "name": "Sticker | kRYSTAL (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2763.png" + }, + { + "id": "2764", + "name": "Sticker | kRYSTAL (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2764.png" + }, + { + "id": "2765", + "name": "Sticker | Spiidi | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2765.png" + }, + { + "id": "2766", + "name": "Sticker | Spiidi (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2766.png" + }, + { + "id": "2767", + "name": "Sticker | Spiidi (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2767.png" + }, + { + "id": "2768", + "name": "Sticker | zehN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2768.png" + }, + { + "id": "2769", + "name": "Sticker | zehN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2769.png" + }, + { + "id": "2770", + "name": "Sticker | zehN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2770.png" + }, + { + "id": "2771", + "name": "Sticker | GuardiaN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2771.png" + }, + { + "id": "2772", + "name": "Sticker | GuardiaN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2772.png" + }, + { + "id": "2773", + "name": "Sticker | GuardiaN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2773.png" + }, + { + "id": "2774", + "name": "Sticker | karrigan | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2774.png" + }, + { + "id": "2775", + "name": "Sticker | karrigan (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2775.png" + }, + { + "id": "2776", + "name": "Sticker | karrigan (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2776.png" + }, + { + "id": "2777", + "name": "Sticker | NiKo | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2777.png" + }, + { + "id": "2778", + "name": "Sticker | NiKo (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2778.png" + }, + { + "id": "2779", + "name": "Sticker | NiKo (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2779.png" + }, + { + "id": "2780", + "name": "Sticker | olofmeister | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2780.png" + }, + { + "id": "2781", + "name": "Sticker | olofmeister (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2781.png" + }, + { + "id": "2782", + "name": "Sticker | olofmeister (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2782.png" + }, + { + "id": "2783", + "name": "Sticker | rain | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2783.png" + }, + { + "id": "2784", + "name": "Sticker | rain (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2784.png" + }, + { + "id": "2785", + "name": "Sticker | rain (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2785.png" + }, + { + "id": "2786", + "name": "Sticker | chopper | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2786.png" + }, + { + "id": "2787", + "name": "Sticker | chopper (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2787.png" + }, + { + "id": "2788", + "name": "Sticker | chopper (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2788.png" + }, + { + "id": "2789", + "name": "Sticker | hutji | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2789.png" + }, + { + "id": "2790", + "name": "Sticker | hutji (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2790.png" + }, + { + "id": "2791", + "name": "Sticker | hutji (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2791.png" + }, + { + "id": "2792", + "name": "Sticker | jR | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2792.png" + }, + { + "id": "2793", + "name": "Sticker | jR (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2793.png" + }, + { + "id": "2794", + "name": "Sticker | jR (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2794.png" + }, + { + "id": "2795", + "name": "Sticker | keshandr | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2795.png" + }, + { + "id": "2796", + "name": "Sticker | keshandr (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2796.png" + }, + { + "id": "2797", + "name": "Sticker | keshandr (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2797.png" + }, + { + "id": "2798", + "name": "Sticker | mir | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2798.png" + }, + { + "id": "2799", + "name": "Sticker | mir (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2799.png" + }, + { + "id": "2800", + "name": "Sticker | mir (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2800.png" + }, + { + "id": "2801", + "name": "Sticker | Calyx | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2801.png" + }, + { + "id": "2802", + "name": "Sticker | Calyx (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2802.png" + }, + { + "id": "2803", + "name": "Sticker | Calyx (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2803.png" + }, + { + "id": "2804", + "name": "Sticker | MAJ3R | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2804.png" + }, + { + "id": "2805", + "name": "Sticker | MAJ3R (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2805.png" + }, + { + "id": "2806", + "name": "Sticker | MAJ3R (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2806.png" + }, + { + "id": "2807", + "name": "Sticker | ngiN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2807.png" + }, + { + "id": "2808", + "name": "Sticker | ngiN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2808.png" + }, + { + "id": "2809", + "name": "Sticker | ngiN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2809.png" + }, + { + "id": "2810", + "name": "Sticker | paz | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2810.png" + }, + { + "id": "2811", + "name": "Sticker | paz (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2811.png" + }, + { + "id": "2812", + "name": "Sticker | paz (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2812.png" + }, + { + "id": "2813", + "name": "Sticker | XANTARES | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2813.png" + }, + { + "id": "2814", + "name": "Sticker | XANTARES (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2814.png" + }, + { + "id": "2815", + "name": "Sticker | XANTARES (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2815.png" + }, + { + "id": "2816", + "name": "Sticker | EliGE | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2816.png" + }, + { + "id": "2817", + "name": "Sticker | EliGE (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2817.png" + }, + { + "id": "2818", + "name": "Sticker | EliGE (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2818.png" + }, + { + "id": "2819", + "name": "Sticker | jdm64 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2819.png" + }, + { + "id": "2820", + "name": "Sticker | jdm64 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2820.png" + }, + { + "id": "2821", + "name": "Sticker | jdm64 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2821.png" + }, + { + "id": "2822", + "name": "Sticker | nitr0 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2822.png" + }, + { + "id": "2823", + "name": "Sticker | nitr0 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2823.png" + }, + { + "id": "2824", + "name": "Sticker | nitr0 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2824.png" + }, + { + "id": "2825", + "name": "Sticker | stanislaw | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2825.png" + }, + { + "id": "2826", + "name": "Sticker | stanislaw (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2826.png" + }, + { + "id": "2827", + "name": "Sticker | stanislaw (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2827.png" + }, + { + "id": "2828", + "name": "Sticker | Twistzz | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2828.png" + }, + { + "id": "2829", + "name": "Sticker | Twistzz (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2829.png" + }, + { + "id": "2830", + "name": "Sticker | Twistzz (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2830.png" + }, + { + "id": "2831", + "name": "Sticker | buster | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2831.png" + }, + { + "id": "2832", + "name": "Sticker | buster (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2832.png" + }, + { + "id": "2833", + "name": "Sticker | buster (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2833.png" + }, + { + "id": "2834", + "name": "Sticker | dimasick | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2834.png" + }, + { + "id": "2835", + "name": "Sticker | dimasick (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2835.png" + }, + { + "id": "2836", + "name": "Sticker | dimasick (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2836.png" + }, + { + "id": "2837", + "name": "Sticker | Jame | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2837.png" + }, + { + "id": "2838", + "name": "Sticker | Jame (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2838.png" + }, + { + "id": "2839", + "name": "Sticker | Jame (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2839.png" + }, + { + "id": "2840", + "name": "Sticker | KrizzeN | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2840.png" + }, + { + "id": "2841", + "name": "Sticker | KrizzeN (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2841.png" + }, + { + "id": "2842", + "name": "Sticker | KrizzeN (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2842.png" + }, + { + "id": "2843", + "name": "Sticker | qikert | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2843.png" + }, + { + "id": "2844", + "name": "Sticker | qikert (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2844.png" + }, + { + "id": "2845", + "name": "Sticker | qikert (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2845.png" + }, + { + "id": "2846", + "name": "Sticker | AZR | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2846.png" + }, + { + "id": "2847", + "name": "Sticker | AZR (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2847.png" + }, + { + "id": "2848", + "name": "Sticker | AZR (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2848.png" + }, + { + "id": "2849", + "name": "Sticker | jks | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2849.png" + }, + { + "id": "2850", + "name": "Sticker | jks (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2850.png" + }, + { + "id": "2851", + "name": "Sticker | jks (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2851.png" + }, + { + "id": "2852", + "name": "Sticker | NAF | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2852.png" + }, + { + "id": "2853", + "name": "Sticker | NAF (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2853.png" + }, + { + "id": "2854", + "name": "Sticker | NAF (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2854.png" + }, + { + "id": "2855", + "name": "Sticker | Nifty | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2855.png" + }, + { + "id": "2856", + "name": "Sticker | Nifty (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2856.png" + }, + { + "id": "2857", + "name": "Sticker | Nifty (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2857.png" + }, + { + "id": "2858", + "name": "Sticker | USTILO | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2858.png" + }, + { + "id": "2859", + "name": "Sticker | USTILO (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2859.png" + }, + { + "id": "2860", + "name": "Sticker | USTILO (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2860.png" + }, + { + "id": "2861", + "name": "Sticker | Happy | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2861.png" + }, + { + "id": "2862", + "name": "Sticker | Happy (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2862.png" + }, + { + "id": "2863", + "name": "Sticker | Happy (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2863.png" + }, + { + "id": "2864", + "name": "Sticker | RpK | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2864.png" + }, + { + "id": "2865", + "name": "Sticker | RpK (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2865.png" + }, + { + "id": "2866", + "name": "Sticker | RpK (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2866.png" + }, + { + "id": "2867", + "name": "Sticker | ScreaM | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2867.png" + }, + { + "id": "2868", + "name": "Sticker | ScreaM (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2868.png" + }, + { + "id": "2869", + "name": "Sticker | ScreaM (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2869.png" + }, + { + "id": "2870", + "name": "Sticker | SIXER | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2870.png" + }, + { + "id": "2871", + "name": "Sticker | SIXER (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2871.png" + }, + { + "id": "2872", + "name": "Sticker | SIXER (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2872.png" + }, + { + "id": "2873", + "name": "Sticker | xms | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2873.png" + }, + { + "id": "2874", + "name": "Sticker | xms (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2874.png" + }, + { + "id": "2875", + "name": "Sticker | xms (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2875.png" + }, + { + "id": "2876", + "name": "Sticker | AmaNEk | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2876.png" + }, + { + "id": "2877", + "name": "Sticker | AmaNEk (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2877.png" + }, + { + "id": "2878", + "name": "Sticker | AmaNEk (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2878.png" + }, + { + "id": "2879", + "name": "Sticker | devoduvek | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2879.png" + }, + { + "id": "2880", + "name": "Sticker | devoduvek (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2880.png" + }, + { + "id": "2881", + "name": "Sticker | devoduvek (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2881.png" + }, + { + "id": "2882", + "name": "Sticker | seang@res | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2882.png" + }, + { + "id": "2883", + "name": "Sticker | seang@res (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2883.png" + }, + { + "id": "2884", + "name": "Sticker | seang@res (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2884.png" + }, + { + "id": "2885", + "name": "Sticker | ShahZaM | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2885.png" + }, + { + "id": "2886", + "name": "Sticker | ShahZaM (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2886.png" + }, + { + "id": "2887", + "name": "Sticker | ShahZaM (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2887.png" + }, + { + "id": "2888", + "name": "Sticker | SicK | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2888.png" + }, + { + "id": "2889", + "name": "Sticker | SicK (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2889.png" + }, + { + "id": "2890", + "name": "Sticker | SicK (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2890.png" + }, + { + "id": "2891", + "name": "Sticker | balblna | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2891.png" + }, + { + "id": "2892", + "name": "Sticker | balblna (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2892.png" + }, + { + "id": "2893", + "name": "Sticker | balblna (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2893.png" + }, + { + "id": "2894", + "name": "Sticker | Boombl4 | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2894.png" + }, + { + "id": "2895", + "name": "Sticker | Boombl4 (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2895.png" + }, + { + "id": "2896", + "name": "Sticker | Boombl4 (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2896.png" + }, + { + "id": "2897", + "name": "Sticker | jmqa | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2897.png" + }, + { + "id": "2898", + "name": "Sticker | jmqa (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2898.png" + }, + { + "id": "2899", + "name": "Sticker | jmqa (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2899.png" + }, + { + "id": "2900", + "name": "Sticker | Kvik | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2900.png" + }, + { + "id": "2901", + "name": "Sticker | Kvik (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2901.png" + }, + { + "id": "2902", + "name": "Sticker | Kvik (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2902.png" + }, + { + "id": "2903", + "name": "Sticker | waterfaLLZ | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2903.png" + }, + { + "id": "2904", + "name": "Sticker | waterfaLLZ (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2904.png" + }, + { + "id": "2905", + "name": "Sticker | waterfaLLZ (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2905.png" + }, + { + "id": "2906", + "name": "Sticker | BnTeT | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2906.png" + }, + { + "id": "2907", + "name": "Sticker | BnTeT (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2907.png" + }, + { + "id": "2908", + "name": "Sticker | BnTeT (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2908.png" + }, + { + "id": "2909", + "name": "Sticker | bondik | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2909.png" + }, + { + "id": "2910", + "name": "Sticker | bondik (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2910.png" + }, + { + "id": "2911", + "name": "Sticker | bondik (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2911.png" + }, + { + "id": "2912", + "name": "Sticker | captainMo | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2912.png" + }, + { + "id": "2913", + "name": "Sticker | captainMo (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2913.png" + }, + { + "id": "2914", + "name": "Sticker | captainMo (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2914.png" + }, + { + "id": "2915", + "name": "Sticker | DD | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2915.png" + }, + { + "id": "2916", + "name": "Sticker | DD (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2916.png" + }, + { + "id": "2917", + "name": "Sticker | DD (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2917.png" + }, + { + "id": "2918", + "name": "Sticker | somebody | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2918.png" + }, + { + "id": "2919", + "name": "Sticker | somebody (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2919.png" + }, + { + "id": "2920", + "name": "Sticker | somebody (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2920.png" + }, + { + "id": "2921", + "name": "Sticker | Bullet Rain", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2921.png" + }, + { + "id": "2922", + "name": "Sticker | Camper", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2922.png" + }, + { + "id": "2923", + "name": "Sticker | Dessert Eagle", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2923.png" + }, + { + "id": "2924", + "name": "Sticker | Devouring Flame", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2924.png" + }, + { + "id": "2925", + "name": "Sticker | Entry Fragger", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2925.png" + }, + { + "id": "2926", + "name": "Sticker | Friendly Fire", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2926.png" + }, + { + "id": "2927", + "name": "Sticker | Retake Expert", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2927.png" + }, + { + "id": "2928", + "name": "Sticker | Small Arms", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2928.png" + }, + { + "id": "2929", + "name": "Sticker | Devouring Flame (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2929.png" + }, + { + "id": "2930", + "name": "Sticker | Friendly Fire (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2930.png" + }, + { + "id": "2931", + "name": "Sticker | Retake Expert (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2931.png" + }, + { + "id": "2932", + "name": "Sticker | Small Arms (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2932.png" + }, + { + "id": "2933", + "name": "Sticker | Bullet Rain (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2933.png" + }, + { + "id": "2934", + "name": "Sticker | Camper (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2934.png" + }, + { + "id": "2935", + "name": "Sticker | Flash Gaming | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2935.png" + }, + { + "id": "2936", + "name": "Sticker | Flash Gaming (Holo) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2936.png" + }, + { + "id": "2937", + "name": "Sticker | Flash Gaming (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2937.png" + }, + { + "id": "2938", + "name": "Sticker | Flash Gaming (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2938.png" + }, + { + "id": "2940", + "name": "Sticker | Attacker | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2940.png" + }, + { + "id": "2941", + "name": "Sticker | Attacker (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2941.png" + }, + { + "id": "2942", + "name": "Sticker | Attacker (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2942.png" + }, + { + "id": "2943", + "name": "Sticker | Karsa | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2943.png" + }, + { + "id": "2944", + "name": "Sticker | Karsa (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2944.png" + }, + { + "id": "2945", + "name": "Sticker | Karsa (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2945.png" + }, + { + "id": "2946", + "name": "Sticker | Kaze | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2946.png" + }, + { + "id": "2947", + "name": "Sticker | Kaze (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2947.png" + }, + { + "id": "2948", + "name": "Sticker | Kaze (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2948.png" + }, + { + "id": "2949", + "name": "Sticker | LoveYY | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2949.png" + }, + { + "id": "2950", + "name": "Sticker | LoveYY (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2950.png" + }, + { + "id": "2951", + "name": "Sticker | LoveYY (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2951.png" + }, + { + "id": "2952", + "name": "Sticker | Summer | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2952.png" + }, + { + "id": "2953", + "name": "Sticker | Summer (Foil) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2953.png" + }, + { + "id": "2954", + "name": "Sticker | Summer (Gold) | Boston 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2954.png" + }, + { + "id": "2955", + "name": "Sticker | Cloud9 | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2955.png" + }, + { + "id": "2956", + "name": "Sticker | Cloud9 (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2956.png" + }, + { + "id": "2957", + "name": "Sticker | Cloud9 (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2957.png" + }, + { + "id": "2958", + "name": "Sticker | Cloud9 (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2958.png" + }, + { + "id": "2959", + "name": "Sticker | FaZe Clan | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2959.png" + }, + { + "id": "2960", + "name": "Sticker | FaZe Clan (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2960.png" + }, + { + "id": "2961", + "name": "Sticker | FaZe Clan (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2961.png" + }, + { + "id": "2962", + "name": "Sticker | FaZe Clan (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2962.png" + }, + { + "id": "2963", + "name": "Sticker | Natus Vincere | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2963.png" + }, + { + "id": "2964", + "name": "Sticker | Natus Vincere (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2964.png" + }, + { + "id": "2965", + "name": "Sticker | Natus Vincere (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2965.png" + }, + { + "id": "2966", + "name": "Sticker | Natus Vincere (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2966.png" + }, + { + "id": "2967", + "name": "Sticker | MIBR | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2967.png" + }, + { + "id": "2968", + "name": "Sticker | MIBR (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2968.png" + }, + { + "id": "2969", + "name": "Sticker | MIBR (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2969.png" + }, + { + "id": "2970", + "name": "Sticker | MIBR (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2970.png" + }, + { + "id": "2971", + "name": "Sticker | mousesports | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2971.png" + }, + { + "id": "2972", + "name": "Sticker | mousesports (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2972.png" + }, + { + "id": "2973", + "name": "Sticker | mousesports (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2973.png" + }, + { + "id": "2974", + "name": "Sticker | mousesports (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2974.png" + }, + { + "id": "2975", + "name": "Sticker | Winstrike Team | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2975.png" + }, + { + "id": "2976", + "name": "Sticker | Winstrike Team (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2976.png" + }, + { + "id": "2977", + "name": "Sticker | Winstrike Team (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2977.png" + }, + { + "id": "2978", + "name": "Sticker | Winstrike Team (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2978.png" + }, + { + "id": "2979", + "name": "Sticker | G2 Esports | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2979.png" + }, + { + "id": "2980", + "name": "Sticker | G2 Esports (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2980.png" + }, + { + "id": "2981", + "name": "Sticker | G2 Esports (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2981.png" + }, + { + "id": "2982", + "name": "Sticker | G2 Esports (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2982.png" + }, + { + "id": "2983", + "name": "Sticker | Fnatic | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2983.png" + }, + { + "id": "2984", + "name": "Sticker | Fnatic (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2984.png" + }, + { + "id": "2985", + "name": "Sticker | Fnatic (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2985.png" + }, + { + "id": "2986", + "name": "Sticker | Fnatic (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2986.png" + }, + { + "id": "2987", + "name": "Sticker | Gambit Esports | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2987.png" + }, + { + "id": "2988", + "name": "Sticker | Gambit Esports (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2988.png" + }, + { + "id": "2989", + "name": "Sticker | Gambit Esports (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2989.png" + }, + { + "id": "2990", + "name": "Sticker | Gambit Esports (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2990.png" + }, + { + "id": "2991", + "name": "Sticker | Vega Squadron | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2991.png" + }, + { + "id": "2992", + "name": "Sticker | Vega Squadron (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2992.png" + }, + { + "id": "2993", + "name": "Sticker | Vega Squadron (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2993.png" + }, + { + "id": "2994", + "name": "Sticker | Vega Squadron (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2994.png" + }, + { + "id": "2995", + "name": "Sticker | Space Soldiers | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2995.png" + }, + { + "id": "2996", + "name": "Sticker | Space Soldiers (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2996.png" + }, + { + "id": "2997", + "name": "Sticker | Space Soldiers (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2997.png" + }, + { + "id": "2998", + "name": "Sticker | Space Soldiers (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2998.png" + }, + { + "id": "2999", + "name": "Sticker | BIG | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-2999.png" + }, + { + "id": "3000", + "name": "Sticker | BIG (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3000.png" + }, + { + "id": "3001", + "name": "Sticker | BIG (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3001.png" + }, + { + "id": "3002", + "name": "Sticker | BIG (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3002.png" + }, + { + "id": "3003", + "name": "Sticker | Astralis | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3003.png" + }, + { + "id": "3004", + "name": "Sticker | Astralis (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3004.png" + }, + { + "id": "3005", + "name": "Sticker | Astralis (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3005.png" + }, + { + "id": "3006", + "name": "Sticker | Astralis (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3006.png" + }, + { + "id": "3007", + "name": "Sticker | Team Liquid | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3007.png" + }, + { + "id": "3008", + "name": "Sticker | Team Liquid (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3008.png" + }, + { + "id": "3009", + "name": "Sticker | Team Liquid (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3009.png" + }, + { + "id": "3010", + "name": "Sticker | Team Liquid (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3010.png" + }, + { + "id": "3011", + "name": "Sticker | North | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3011.png" + }, + { + "id": "3012", + "name": "Sticker | North (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3012.png" + }, + { + "id": "3013", + "name": "Sticker | North (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3013.png" + }, + { + "id": "3014", + "name": "Sticker | North (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3014.png" + }, + { + "id": "3015", + "name": "Sticker | Virtus.Pro | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3015.png" + }, + { + "id": "3016", + "name": "Sticker | Virtus.Pro (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3016.png" + }, + { + "id": "3017", + "name": "Sticker | Virtus.Pro (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3017.png" + }, + { + "id": "3018", + "name": "Sticker | Virtus.Pro (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3018.png" + }, + { + "id": "3019", + "name": "Sticker | Ninjas in Pyjamas | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3019.png" + }, + { + "id": "3020", + "name": "Sticker | Ninjas in Pyjamas (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3020.png" + }, + { + "id": "3021", + "name": "Sticker | Ninjas in Pyjamas (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3021.png" + }, + { + "id": "3022", + "name": "Sticker | Ninjas in Pyjamas (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3022.png" + }, + { + "id": "3023", + "name": "Sticker | compLexity Gaming | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3023.png" + }, + { + "id": "3024", + "name": "Sticker | compLexity Gaming (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3024.png" + }, + { + "id": "3025", + "name": "Sticker | compLexity Gaming (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3025.png" + }, + { + "id": "3026", + "name": "Sticker | compLexity Gaming (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3026.png" + }, + { + "id": "3027", + "name": "Sticker | HellRaisers | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3027.png" + }, + { + "id": "3028", + "name": "Sticker | HellRaisers (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3028.png" + }, + { + "id": "3029", + "name": "Sticker | HellRaisers (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3029.png" + }, + { + "id": "3030", + "name": "Sticker | HellRaisers (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3030.png" + }, + { + "id": "3031", + "name": "Sticker | Renegades | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3031.png" + }, + { + "id": "3032", + "name": "Sticker | Renegades (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3032.png" + }, + { + "id": "3033", + "name": "Sticker | Renegades (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3033.png" + }, + { + "id": "3034", + "name": "Sticker | Renegades (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3034.png" + }, + { + "id": "3035", + "name": "Sticker | OpTic Gaming | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3035.png" + }, + { + "id": "3036", + "name": "Sticker | OpTic Gaming (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3036.png" + }, + { + "id": "3037", + "name": "Sticker | OpTic Gaming (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3037.png" + }, + { + "id": "3038", + "name": "Sticker | OpTic Gaming (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3038.png" + }, + { + "id": "3039", + "name": "Sticker | Rogue | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3039.png" + }, + { + "id": "3040", + "name": "Sticker | Rogue (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3040.png" + }, + { + "id": "3041", + "name": "Sticker | Rogue (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3041.png" + }, + { + "id": "3042", + "name": "Sticker | Rogue (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3042.png" + }, + { + "id": "3043", + "name": "Sticker | Team Spirit | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3043.png" + }, + { + "id": "3044", + "name": "Sticker | Team Spirit (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3044.png" + }, + { + "id": "3045", + "name": "Sticker | Team Spirit (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3045.png" + }, + { + "id": "3046", + "name": "Sticker | Team Spirit (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3046.png" + }, + { + "id": "3047", + "name": "Sticker | Tyloo | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3047.png" + }, + { + "id": "3048", + "name": "Sticker | Tyloo (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3048.png" + }, + { + "id": "3049", + "name": "Sticker | Tyloo (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3049.png" + }, + { + "id": "3050", + "name": "Sticker | Tyloo (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3050.png" + }, + { + "id": "3051", + "name": "Sticker | FACEIT | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3051.png" + }, + { + "id": "3052", + "name": "Sticker | FACEIT (Holo) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3052.png" + }, + { + "id": "3053", + "name": "Sticker | FACEIT (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3053.png" + }, + { + "id": "3054", + "name": "Sticker | FACEIT (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3054.png" + }, + { + "id": "3080", + "name": "Sticker | Golden | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3080.png" + }, + { + "id": "3081", + "name": "Sticker | Golden (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3081.png" + }, + { + "id": "3082", + "name": "Sticker | Golden (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3082.png" + }, + { + "id": "3083", + "name": "Sticker | autimatic | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3083.png" + }, + { + "id": "3084", + "name": "Sticker | autimatic (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3084.png" + }, + { + "id": "3085", + "name": "Sticker | autimatic (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3085.png" + }, + { + "id": "3086", + "name": "Sticker | RUSH | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3086.png" + }, + { + "id": "3087", + "name": "Sticker | RUSH (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3087.png" + }, + { + "id": "3088", + "name": "Sticker | RUSH (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3088.png" + }, + { + "id": "3089", + "name": "Sticker | STYKO | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3089.png" + }, + { + "id": "3090", + "name": "Sticker | STYKO (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3090.png" + }, + { + "id": "3091", + "name": "Sticker | STYKO (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3091.png" + }, + { + "id": "3092", + "name": "Sticker | Skadoodle | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3092.png" + }, + { + "id": "3093", + "name": "Sticker | Skadoodle (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3093.png" + }, + { + "id": "3094", + "name": "Sticker | Skadoodle (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3094.png" + }, + { + "id": "3095", + "name": "Sticker | GuardiaN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3095.png" + }, + { + "id": "3096", + "name": "Sticker | GuardiaN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3096.png" + }, + { + "id": "3097", + "name": "Sticker | GuardiaN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3097.png" + }, + { + "id": "3098", + "name": "Sticker | olofmeister | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3098.png" + }, + { + "id": "3099", + "name": "Sticker | olofmeister (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3099.png" + }, + { + "id": "3100", + "name": "Sticker | olofmeister (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3100.png" + }, + { + "id": "3101", + "name": "Sticker | karrigan | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3101.png" + }, + { + "id": "3102", + "name": "Sticker | karrigan (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3102.png" + }, + { + "id": "3103", + "name": "Sticker | karrigan (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3103.png" + }, + { + "id": "3104", + "name": "Sticker | rain | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3104.png" + }, + { + "id": "3105", + "name": "Sticker | rain (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3105.png" + }, + { + "id": "3106", + "name": "Sticker | rain (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3106.png" + }, + { + "id": "3107", + "name": "Sticker | NiKo | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3107.png" + }, + { + "id": "3108", + "name": "Sticker | NiKo (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3108.png" + }, + { + "id": "3109", + "name": "Sticker | NiKo (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3109.png" + }, + { + "id": "3110", + "name": "Sticker | electronic | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3110.png" + }, + { + "id": "3111", + "name": "Sticker | electronic (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3111.png" + }, + { + "id": "3112", + "name": "Sticker | electronic (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3112.png" + }, + { + "id": "3113", + "name": "Sticker | Zeus | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3113.png" + }, + { + "id": "3114", + "name": "Sticker | Zeus (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3114.png" + }, + { + "id": "3115", + "name": "Sticker | Zeus (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3115.png" + }, + { + "id": "3116", + "name": "Sticker | s1mple | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3116.png" + }, + { + "id": "3117", + "name": "Sticker | s1mple (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3117.png" + }, + { + "id": "3118", + "name": "Sticker | s1mple (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3118.png" + }, + { + "id": "3119", + "name": "Sticker | Edward | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3119.png" + }, + { + "id": "3120", + "name": "Sticker | Edward (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3120.png" + }, + { + "id": "3121", + "name": "Sticker | Edward (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3121.png" + }, + { + "id": "3122", + "name": "Sticker | flamie | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3122.png" + }, + { + "id": "3123", + "name": "Sticker | flamie (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3123.png" + }, + { + "id": "3124", + "name": "Sticker | flamie (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3124.png" + }, + { + "id": "3125", + "name": "Sticker | coldzera | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3125.png" + }, + { + "id": "3126", + "name": "Sticker | coldzera (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3126.png" + }, + { + "id": "3127", + "name": "Sticker | coldzera (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3127.png" + }, + { + "id": "3128", + "name": "Sticker | FalleN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3128.png" + }, + { + "id": "3129", + "name": "Sticker | FalleN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3129.png" + }, + { + "id": "3130", + "name": "Sticker | FalleN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3130.png" + }, + { + "id": "3131", + "name": "Sticker | tarik | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3131.png" + }, + { + "id": "3132", + "name": "Sticker | tarik (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3132.png" + }, + { + "id": "3133", + "name": "Sticker | tarik (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3133.png" + }, + { + "id": "3134", + "name": "Sticker | Stewie2K | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3134.png" + }, + { + "id": "3135", + "name": "Sticker | Stewie2K (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3135.png" + }, + { + "id": "3136", + "name": "Sticker | Stewie2K (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3136.png" + }, + { + "id": "3137", + "name": "Sticker | fer | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3137.png" + }, + { + "id": "3138", + "name": "Sticker | fer (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3138.png" + }, + { + "id": "3139", + "name": "Sticker | fer (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3139.png" + }, + { + "id": "3140", + "name": "Sticker | Snax | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3140.png" + }, + { + "id": "3141", + "name": "Sticker | Snax (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3141.png" + }, + { + "id": "3142", + "name": "Sticker | Snax (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3142.png" + }, + { + "id": "3143", + "name": "Sticker | chrisJ | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3143.png" + }, + { + "id": "3144", + "name": "Sticker | chrisJ (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3144.png" + }, + { + "id": "3145", + "name": "Sticker | chrisJ (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3145.png" + }, + { + "id": "3146", + "name": "Sticker | ropz | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3146.png" + }, + { + "id": "3147", + "name": "Sticker | ropz (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3147.png" + }, + { + "id": "3148", + "name": "Sticker | ropz (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3148.png" + }, + { + "id": "3149", + "name": "Sticker | suNny | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3149.png" + }, + { + "id": "3150", + "name": "Sticker | suNny (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3150.png" + }, + { + "id": "3151", + "name": "Sticker | suNny (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3151.png" + }, + { + "id": "3152", + "name": "Sticker | oskar | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3152.png" + }, + { + "id": "3153", + "name": "Sticker | oskar (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3153.png" + }, + { + "id": "3154", + "name": "Sticker | oskar (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3154.png" + }, + { + "id": "3155", + "name": "Sticker | jmqa | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3155.png" + }, + { + "id": "3156", + "name": "Sticker | jmqa (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3156.png" + }, + { + "id": "3157", + "name": "Sticker | jmqa (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3157.png" + }, + { + "id": "3158", + "name": "Sticker | Kvik | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3158.png" + }, + { + "id": "3159", + "name": "Sticker | Kvik (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3159.png" + }, + { + "id": "3160", + "name": "Sticker | Kvik (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3160.png" + }, + { + "id": "3161", + "name": "Sticker | balblna | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3161.png" + }, + { + "id": "3162", + "name": "Sticker | balblna (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3162.png" + }, + { + "id": "3163", + "name": "Sticker | balblna (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3163.png" + }, + { + "id": "3164", + "name": "Sticker | waterfaLLZ | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3164.png" + }, + { + "id": "3165", + "name": "Sticker | waterfaLLZ (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3165.png" + }, + { + "id": "3166", + "name": "Sticker | waterfaLLZ (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3166.png" + }, + { + "id": "3167", + "name": "Sticker | Boombl4 | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3167.png" + }, + { + "id": "3168", + "name": "Sticker | Boombl4 (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3168.png" + }, + { + "id": "3169", + "name": "Sticker | Boombl4 (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3169.png" + }, + { + "id": "3170", + "name": "Sticker | kennyS | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3170.png" + }, + { + "id": "3171", + "name": "Sticker | kennyS (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3171.png" + }, + { + "id": "3172", + "name": "Sticker | kennyS (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3172.png" + }, + { + "id": "3173", + "name": "Sticker | bodyy | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3173.png" + }, + { + "id": "3174", + "name": "Sticker | bodyy (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3174.png" + }, + { + "id": "3175", + "name": "Sticker | bodyy (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3175.png" + }, + { + "id": "3176", + "name": "Sticker | shox | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3176.png" + }, + { + "id": "3177", + "name": "Sticker | shox (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3177.png" + }, + { + "id": "3178", + "name": "Sticker | shox (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3178.png" + }, + { + "id": "3179", + "name": "Sticker | Ex6TenZ | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3179.png" + }, + { + "id": "3180", + "name": "Sticker | Ex6TenZ (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3180.png" + }, + { + "id": "3181", + "name": "Sticker | Ex6TenZ (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3181.png" + }, + { + "id": "3182", + "name": "Sticker | SmithZz | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3182.png" + }, + { + "id": "3183", + "name": "Sticker | SmithZz (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3183.png" + }, + { + "id": "3184", + "name": "Sticker | SmithZz (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3184.png" + }, + { + "id": "3185", + "name": "Sticker | draken | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3185.png" + }, + { + "id": "3186", + "name": "Sticker | draken (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3186.png" + }, + { + "id": "3187", + "name": "Sticker | draken (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3187.png" + }, + { + "id": "3188", + "name": "Sticker | JW | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3188.png" + }, + { + "id": "3189", + "name": "Sticker | JW (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3189.png" + }, + { + "id": "3190", + "name": "Sticker | JW (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3190.png" + }, + { + "id": "3191", + "name": "Sticker | KRIMZ | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3191.png" + }, + { + "id": "3192", + "name": "Sticker | KRIMZ (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3192.png" + }, + { + "id": "3193", + "name": "Sticker | KRIMZ (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3193.png" + }, + { + "id": "3194", + "name": "Sticker | flusha | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3194.png" + }, + { + "id": "3195", + "name": "Sticker | flusha (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3195.png" + }, + { + "id": "3196", + "name": "Sticker | flusha (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3196.png" + }, + { + "id": "3197", + "name": "Sticker | Xizt | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3197.png" + }, + { + "id": "3198", + "name": "Sticker | Xizt (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3198.png" + }, + { + "id": "3199", + "name": "Sticker | Xizt (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3199.png" + }, + { + "id": "3200", + "name": "Sticker | mir | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3200.png" + }, + { + "id": "3201", + "name": "Sticker | mir (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3201.png" + }, + { + "id": "3202", + "name": "Sticker | mir (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3202.png" + }, + { + "id": "3203", + "name": "Sticker | Dosia | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3203.png" + }, + { + "id": "3204", + "name": "Sticker | Dosia (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3204.png" + }, + { + "id": "3205", + "name": "Sticker | Dosia (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3205.png" + }, + { + "id": "3206", + "name": "Sticker | Hobbit | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3206.png" + }, + { + "id": "3207", + "name": "Sticker | Hobbit (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3207.png" + }, + { + "id": "3208", + "name": "Sticker | Hobbit (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3208.png" + }, + { + "id": "3209", + "name": "Sticker | mou | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3209.png" + }, + { + "id": "3210", + "name": "Sticker | mou (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3210.png" + }, + { + "id": "3211", + "name": "Sticker | mou (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3211.png" + }, + { + "id": "3212", + "name": "Sticker | AdreN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3212.png" + }, + { + "id": "3213", + "name": "Sticker | AdreN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3213.png" + }, + { + "id": "3214", + "name": "Sticker | AdreN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3214.png" + }, + { + "id": "3215", + "name": "Sticker | tonyblack | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3215.png" + }, + { + "id": "3216", + "name": "Sticker | tonyblack (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3216.png" + }, + { + "id": "3217", + "name": "Sticker | tonyblack (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3217.png" + }, + { + "id": "3218", + "name": "Sticker | crush | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3218.png" + }, + { + "id": "3219", + "name": "Sticker | crush (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3219.png" + }, + { + "id": "3220", + "name": "Sticker | crush (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3220.png" + }, + { + "id": "3221", + "name": "Sticker | hutji | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3221.png" + }, + { + "id": "3222", + "name": "Sticker | hutji (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3222.png" + }, + { + "id": "3223", + "name": "Sticker | hutji (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3223.png" + }, + { + "id": "3224", + "name": "Sticker | jR | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3224.png" + }, + { + "id": "3225", + "name": "Sticker | jR (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3225.png" + }, + { + "id": "3226", + "name": "Sticker | jR (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3226.png" + }, + { + "id": "3227", + "name": "Sticker | chopper | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3227.png" + }, + { + "id": "3228", + "name": "Sticker | chopper (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3228.png" + }, + { + "id": "3229", + "name": "Sticker | chopper (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3229.png" + }, + { + "id": "3230", + "name": "Sticker | XANTARES | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3230.png" + }, + { + "id": "3231", + "name": "Sticker | XANTARES (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3231.png" + }, + { + "id": "3232", + "name": "Sticker | XANTARES (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3232.png" + }, + { + "id": "3233", + "name": "Sticker | Calyx | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3233.png" + }, + { + "id": "3234", + "name": "Sticker | Calyx (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3234.png" + }, + { + "id": "3235", + "name": "Sticker | Calyx (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3235.png" + }, + { + "id": "3236", + "name": "Sticker | paz | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3236.png" + }, + { + "id": "3237", + "name": "Sticker | paz (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3237.png" + }, + { + "id": "3238", + "name": "Sticker | paz (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3238.png" + }, + { + "id": "3239", + "name": "Sticker | ngiN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3239.png" + }, + { + "id": "3240", + "name": "Sticker | ngiN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3240.png" + }, + { + "id": "3241", + "name": "Sticker | ngiN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3241.png" + }, + { + "id": "3242", + "name": "Sticker | MAJ3R | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3242.png" + }, + { + "id": "3243", + "name": "Sticker | MAJ3R (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3243.png" + }, + { + "id": "3244", + "name": "Sticker | MAJ3R (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3244.png" + }, + { + "id": "3245", + "name": "Sticker | tiziaN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3245.png" + }, + { + "id": "3246", + "name": "Sticker | tiziaN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3246.png" + }, + { + "id": "3247", + "name": "Sticker | tiziaN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3247.png" + }, + { + "id": "3248", + "name": "Sticker | gob b | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3248.png" + }, + { + "id": "3249", + "name": "Sticker | gob b (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3249.png" + }, + { + "id": "3250", + "name": "Sticker | gob b (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3250.png" + }, + { + "id": "3251", + "name": "Sticker | tabseN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3251.png" + }, + { + "id": "3252", + "name": "Sticker | tabseN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3252.png" + }, + { + "id": "3253", + "name": "Sticker | tabseN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3253.png" + }, + { + "id": "3254", + "name": "Sticker | nex | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3254.png" + }, + { + "id": "3255", + "name": "Sticker | nex (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3255.png" + }, + { + "id": "3256", + "name": "Sticker | nex (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3256.png" + }, + { + "id": "3257", + "name": "Sticker | smooya | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3257.png" + }, + { + "id": "3258", + "name": "Sticker | smooya (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3258.png" + }, + { + "id": "3259", + "name": "Sticker | smooya (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3259.png" + }, + { + "id": "3260", + "name": "Sticker | dupreeh | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3260.png" + }, + { + "id": "3261", + "name": "Sticker | dupreeh (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3261.png" + }, + { + "id": "3262", + "name": "Sticker | dupreeh (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3262.png" + }, + { + "id": "3263", + "name": "Sticker | gla1ve | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3263.png" + }, + { + "id": "3264", + "name": "Sticker | gla1ve (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3264.png" + }, + { + "id": "3265", + "name": "Sticker | gla1ve (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3265.png" + }, + { + "id": "3266", + "name": "Sticker | device | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3266.png" + }, + { + "id": "3267", + "name": "Sticker | device (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3267.png" + }, + { + "id": "3268", + "name": "Sticker | device (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3268.png" + }, + { + "id": "3269", + "name": "Sticker | Magisk | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3269.png" + }, + { + "id": "3270", + "name": "Sticker | Magisk (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3270.png" + }, + { + "id": "3271", + "name": "Sticker | Magisk (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3271.png" + }, + { + "id": "3272", + "name": "Sticker | Xyp9x | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3272.png" + }, + { + "id": "3273", + "name": "Sticker | Xyp9x (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3273.png" + }, + { + "id": "3274", + "name": "Sticker | Xyp9x (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3274.png" + }, + { + "id": "3275", + "name": "Sticker | EliGE | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3275.png" + }, + { + "id": "3276", + "name": "Sticker | EliGE (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3276.png" + }, + { + "id": "3277", + "name": "Sticker | EliGE (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3277.png" + }, + { + "id": "3278", + "name": "Sticker | TACO | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3278.png" + }, + { + "id": "3279", + "name": "Sticker | TACO (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3279.png" + }, + { + "id": "3280", + "name": "Sticker | TACO (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3280.png" + }, + { + "id": "3281", + "name": "Sticker | Twistzz | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3281.png" + }, + { + "id": "3282", + "name": "Sticker | Twistzz (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3282.png" + }, + { + "id": "3283", + "name": "Sticker | Twistzz (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3283.png" + }, + { + "id": "3284", + "name": "Sticker | NAF | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3284.png" + }, + { + "id": "3285", + "name": "Sticker | NAF (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3285.png" + }, + { + "id": "3286", + "name": "Sticker | NAF (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3286.png" + }, + { + "id": "3287", + "name": "Sticker | nitr0 | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3287.png" + }, + { + "id": "3288", + "name": "Sticker | nitr0 (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3288.png" + }, + { + "id": "3289", + "name": "Sticker | nitr0 (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3289.png" + }, + { + "id": "3290", + "name": "Sticker | MSL | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3290.png" + }, + { + "id": "3291", + "name": "Sticker | MSL (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3291.png" + }, + { + "id": "3292", + "name": "Sticker | MSL (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3292.png" + }, + { + "id": "3293", + "name": "Sticker | niko | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3293.png" + }, + { + "id": "3294", + "name": "Sticker | niko (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3294.png" + }, + { + "id": "3295", + "name": "Sticker | niko (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3295.png" + }, + { + "id": "3296", + "name": "Sticker | Kjaerbye | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3296.png" + }, + { + "id": "3297", + "name": "Sticker | Kjaerbye (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3297.png" + }, + { + "id": "3298", + "name": "Sticker | Kjaerbye (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3298.png" + }, + { + "id": "3299", + "name": "Sticker | aizy | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3299.png" + }, + { + "id": "3300", + "name": "Sticker | aizy (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3300.png" + }, + { + "id": "3301", + "name": "Sticker | aizy (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3301.png" + }, + { + "id": "3302", + "name": "Sticker | v4lde | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3302.png" + }, + { + "id": "3303", + "name": "Sticker | v4lde (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3303.png" + }, + { + "id": "3304", + "name": "Sticker | v4lde (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3304.png" + }, + { + "id": "3305", + "name": "Sticker | byali | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3305.png" + }, + { + "id": "3306", + "name": "Sticker | byali (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3306.png" + }, + { + "id": "3307", + "name": "Sticker | byali (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3307.png" + }, + { + "id": "3308", + "name": "Sticker | pashaBiceps | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3308.png" + }, + { + "id": "3309", + "name": "Sticker | pashaBiceps (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3309.png" + }, + { + "id": "3310", + "name": "Sticker | pashaBiceps (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3310.png" + }, + { + "id": "3311", + "name": "Sticker | NEO | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3311.png" + }, + { + "id": "3312", + "name": "Sticker | NEO (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3312.png" + }, + { + "id": "3313", + "name": "Sticker | NEO (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3313.png" + }, + { + "id": "3314", + "name": "Sticker | MICHU | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3314.png" + }, + { + "id": "3315", + "name": "Sticker | MICHU (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3315.png" + }, + { + "id": "3316", + "name": "Sticker | MICHU (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3316.png" + }, + { + "id": "3317", + "name": "Sticker | snatchie | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3317.png" + }, + { + "id": "3318", + "name": "Sticker | snatchie (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3318.png" + }, + { + "id": "3319", + "name": "Sticker | snatchie (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3319.png" + }, + { + "id": "3320", + "name": "Sticker | GeT_RiGhT | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3320.png" + }, + { + "id": "3321", + "name": "Sticker | GeT_RiGhT (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3321.png" + }, + { + "id": "3322", + "name": "Sticker | GeT_RiGhT (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3322.png" + }, + { + "id": "3323", + "name": "Sticker | f0rest | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3323.png" + }, + { + "id": "3324", + "name": "Sticker | f0rest (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3324.png" + }, + { + "id": "3325", + "name": "Sticker | f0rest (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3325.png" + }, + { + "id": "3326", + "name": "Sticker | Lekr0 | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3326.png" + }, + { + "id": "3327", + "name": "Sticker | Lekr0 (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3327.png" + }, + { + "id": "3328", + "name": "Sticker | Lekr0 (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3328.png" + }, + { + "id": "3329", + "name": "Sticker | REZ | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3329.png" + }, + { + "id": "3330", + "name": "Sticker | REZ (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3330.png" + }, + { + "id": "3331", + "name": "Sticker | REZ (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3331.png" + }, + { + "id": "3332", + "name": "Sticker | dennis | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3332.png" + }, + { + "id": "3333", + "name": "Sticker | dennis (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3333.png" + }, + { + "id": "3334", + "name": "Sticker | dennis (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3334.png" + }, + { + "id": "3335", + "name": "Sticker | ANDROID | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3335.png" + }, + { + "id": "3336", + "name": "Sticker | ANDROID (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3336.png" + }, + { + "id": "3337", + "name": "Sticker | ANDROID (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3337.png" + }, + { + "id": "3338", + "name": "Sticker | stanislaw | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3338.png" + }, + { + "id": "3339", + "name": "Sticker | stanislaw (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3339.png" + }, + { + "id": "3340", + "name": "Sticker | stanislaw (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3340.png" + }, + { + "id": "3341", + "name": "Sticker | dephh | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3341.png" + }, + { + "id": "3342", + "name": "Sticker | dephh (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3342.png" + }, + { + "id": "3343", + "name": "Sticker | dephh (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3343.png" + }, + { + "id": "3344", + "name": "Sticker | yay | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3344.png" + }, + { + "id": "3345", + "name": "Sticker | yay (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3345.png" + }, + { + "id": "3346", + "name": "Sticker | yay (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3346.png" + }, + { + "id": "3347", + "name": "Sticker | ShahZaM | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3347.png" + }, + { + "id": "3348", + "name": "Sticker | ShahZaM (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3348.png" + }, + { + "id": "3349", + "name": "Sticker | ShahZaM (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3349.png" + }, + { + "id": "3350", + "name": "Sticker | woxic | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3350.png" + }, + { + "id": "3351", + "name": "Sticker | woxic (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3351.png" + }, + { + "id": "3352", + "name": "Sticker | woxic (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3352.png" + }, + { + "id": "3353", + "name": "Sticker | ISSAA | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3353.png" + }, + { + "id": "3354", + "name": "Sticker | ISSAA (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3354.png" + }, + { + "id": "3355", + "name": "Sticker | ISSAA (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3355.png" + }, + { + "id": "3356", + "name": "Sticker | bondik | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3356.png" + }, + { + "id": "3357", + "name": "Sticker | bondik (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3357.png" + }, + { + "id": "3358", + "name": "Sticker | bondik (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3358.png" + }, + { + "id": "3359", + "name": "Sticker | ANGE1 | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3359.png" + }, + { + "id": "3360", + "name": "Sticker | ANGE1 (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3360.png" + }, + { + "id": "3361", + "name": "Sticker | ANGE1 (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3361.png" + }, + { + "id": "3362", + "name": "Sticker | DeadFox | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3362.png" + }, + { + "id": "3363", + "name": "Sticker | DeadFox (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3363.png" + }, + { + "id": "3364", + "name": "Sticker | DeadFox (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3364.png" + }, + { + "id": "3365", + "name": "Sticker | Nifty | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3365.png" + }, + { + "id": "3366", + "name": "Sticker | Nifty (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3366.png" + }, + { + "id": "3367", + "name": "Sticker | Nifty (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3367.png" + }, + { + "id": "3368", + "name": "Sticker | jkaem | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3368.png" + }, + { + "id": "3369", + "name": "Sticker | jkaem (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3369.png" + }, + { + "id": "3370", + "name": "Sticker | jkaem (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3370.png" + }, + { + "id": "3371", + "name": "Sticker | jks | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3371.png" + }, + { + "id": "3372", + "name": "Sticker | jks (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3372.png" + }, + { + "id": "3373", + "name": "Sticker | jks (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3373.png" + }, + { + "id": "3374", + "name": "Sticker | USTILO | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3374.png" + }, + { + "id": "3375", + "name": "Sticker | USTILO (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3375.png" + }, + { + "id": "3376", + "name": "Sticker | USTILO (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3376.png" + }, + { + "id": "3377", + "name": "Sticker | AZR | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3377.png" + }, + { + "id": "3378", + "name": "Sticker | AZR (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3378.png" + }, + { + "id": "3379", + "name": "Sticker | AZR (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3379.png" + }, + { + "id": "3380", + "name": "Sticker | cajunb | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3380.png" + }, + { + "id": "3381", + "name": "Sticker | cajunb (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3381.png" + }, + { + "id": "3382", + "name": "Sticker | cajunb (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3382.png" + }, + { + "id": "3383", + "name": "Sticker | k0nfig | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3383.png" + }, + { + "id": "3384", + "name": "Sticker | k0nfig (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3384.png" + }, + { + "id": "3385", + "name": "Sticker | k0nfig (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3385.png" + }, + { + "id": "3386", + "name": "Sticker | gade | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3386.png" + }, + { + "id": "3387", + "name": "Sticker | gade (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3387.png" + }, + { + "id": "3388", + "name": "Sticker | gade (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3388.png" + }, + { + "id": "3389", + "name": "Sticker | Snappi | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3389.png" + }, + { + "id": "3390", + "name": "Sticker | Snappi (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3390.png" + }, + { + "id": "3391", + "name": "Sticker | Snappi (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3391.png" + }, + { + "id": "3392", + "name": "Sticker | JUGi | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3392.png" + }, + { + "id": "3393", + "name": "Sticker | JUGi (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3393.png" + }, + { + "id": "3394", + "name": "Sticker | JUGi (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3394.png" + }, + { + "id": "3395", + "name": "Sticker | SicK | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3395.png" + }, + { + "id": "3396", + "name": "Sticker | SicK (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3396.png" + }, + { + "id": "3397", + "name": "Sticker | SicK (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3397.png" + }, + { + "id": "3398", + "name": "Sticker | Hiko | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3398.png" + }, + { + "id": "3399", + "name": "Sticker | Hiko (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3399.png" + }, + { + "id": "3400", + "name": "Sticker | Hiko (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3400.png" + }, + { + "id": "3401", + "name": "Sticker | Rickeh | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3401.png" + }, + { + "id": "3402", + "name": "Sticker | Rickeh (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3402.png" + }, + { + "id": "3403", + "name": "Sticker | Rickeh (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3403.png" + }, + { + "id": "3404", + "name": "Sticker | cadiaN | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3404.png" + }, + { + "id": "3405", + "name": "Sticker | cadiaN (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3405.png" + }, + { + "id": "3406", + "name": "Sticker | cadiaN (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3406.png" + }, + { + "id": "3407", + "name": "Sticker | vice | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3407.png" + }, + { + "id": "3408", + "name": "Sticker | vice (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3408.png" + }, + { + "id": "3409", + "name": "Sticker | vice (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3409.png" + }, + { + "id": "3410", + "name": "Sticker | COLDYY1 | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3410.png" + }, + { + "id": "3411", + "name": "Sticker | COLDYY1 (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3411.png" + }, + { + "id": "3412", + "name": "Sticker | COLDYY1 (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3412.png" + }, + { + "id": "3413", + "name": "Sticker | Dima | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3413.png" + }, + { + "id": "3414", + "name": "Sticker | Dima (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3414.png" + }, + { + "id": "3415", + "name": "Sticker | Dima (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3415.png" + }, + { + "id": "3416", + "name": "Sticker | sdy | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3416.png" + }, + { + "id": "3417", + "name": "Sticker | sdy (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3417.png" + }, + { + "id": "3418", + "name": "Sticker | sdy (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3418.png" + }, + { + "id": "3419", + "name": "Sticker | S0tF1k | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3419.png" + }, + { + "id": "3420", + "name": "Sticker | S0tF1k (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3420.png" + }, + { + "id": "3421", + "name": "Sticker | S0tF1k (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3421.png" + }, + { + "id": "3422", + "name": "Sticker | DavCost | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3422.png" + }, + { + "id": "3423", + "name": "Sticker | DavCost (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3423.png" + }, + { + "id": "3424", + "name": "Sticker | DavCost (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3424.png" + }, + { + "id": "3425", + "name": "Sticker | somebody | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3425.png" + }, + { + "id": "3426", + "name": "Sticker | somebody (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3426.png" + }, + { + "id": "3427", + "name": "Sticker | somebody (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3427.png" + }, + { + "id": "3428", + "name": "Sticker | captainMo | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3428.png" + }, + { + "id": "3429", + "name": "Sticker | captainMo (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3429.png" + }, + { + "id": "3430", + "name": "Sticker | captainMo (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3430.png" + }, + { + "id": "3431", + "name": "Sticker | BnTeT | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3431.png" + }, + { + "id": "3432", + "name": "Sticker | BnTeT (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3432.png" + }, + { + "id": "3433", + "name": "Sticker | BnTeT (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3433.png" + }, + { + "id": "3434", + "name": "Sticker | DD | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3434.png" + }, + { + "id": "3435", + "name": "Sticker | DD (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3435.png" + }, + { + "id": "3436", + "name": "Sticker | DD (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3436.png" + }, + { + "id": "3437", + "name": "Sticker | xccurate | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3437.png" + }, + { + "id": "3438", + "name": "Sticker | xccurate (Foil) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3438.png" + }, + { + "id": "3439", + "name": "Sticker | xccurate (Gold) | London 2018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3439.png" + }, + { + "id": "3440", + "name": "Sticker | Silver", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3440.png" + }, + { + "id": "3441", + "name": "Sticker | Silver (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3441.png" + }, + { + "id": "3442", + "name": "Sticker | Gold Nova", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3442.png" + }, + { + "id": "3443", + "name": "Sticker | Gold Nova (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3443.png" + }, + { + "id": "3444", + "name": "Sticker | Master Guardian", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3444.png" + }, + { + "id": "3445", + "name": "Sticker | Master Guardian (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3445.png" + }, + { + "id": "3446", + "name": "Sticker | Master Guardian Elite", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3446.png" + }, + { + "id": "3447", + "name": "Sticker | Master Guardian Elite (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3447.png" + }, + { + "id": "3448", + "name": "Sticker | Distinguished Master Guardian", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3448.png" + }, + { + "id": "3449", + "name": "Sticker | Distinguished Master Guardian (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3449.png" + }, + { + "id": "3450", + "name": "Sticker | Legendary Eagle", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3450.png" + }, + { + "id": "3451", + "name": "Sticker | Legendary Eagle (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3451.png" + }, + { + "id": "3452", + "name": "Sticker | Legendary Eagle Master", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3452.png" + }, + { + "id": "3453", + "name": "Sticker | Legendary Eagle Master (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3453.png" + }, + { + "id": "3454", + "name": "Sticker | Supreme Master First Class", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3454.png" + }, + { + "id": "3455", + "name": "Sticker | Supreme Master First Class (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3455.png" + }, + { + "id": "3456", + "name": "Sticker | Global Elite", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3456.png" + }, + { + "id": "3457", + "name": "Sticker | Global Elite (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3457.png" + }, + { + "id": "3460", + "name": "Sticker | Astralis | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3460.png" + }, + { + "id": "3461", + "name": "Sticker | Astralis (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3461.png" + }, + { + "id": "3462", + "name": "Sticker | Astralis (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3462.png" + }, + { + "id": "3463", + "name": "Sticker | Astralis (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3463.png" + }, + { + "id": "3464", + "name": "Sticker | Avangar | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3464.png" + }, + { + "id": "3465", + "name": "Sticker | Avangar (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3465.png" + }, + { + "id": "3466", + "name": "Sticker | Avangar (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3466.png" + }, + { + "id": "3467", + "name": "Sticker | Avangar (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3467.png" + }, + { + "id": "3468", + "name": "Sticker | BIG | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3468.png" + }, + { + "id": "3469", + "name": "Sticker | BIG (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3469.png" + }, + { + "id": "3470", + "name": "Sticker | BIG (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3470.png" + }, + { + "id": "3471", + "name": "Sticker | BIG (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3471.png" + }, + { + "id": "3472", + "name": "Sticker | Cloud9 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3472.png" + }, + { + "id": "3473", + "name": "Sticker | Cloud9 (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3473.png" + }, + { + "id": "3474", + "name": "Sticker | Cloud9 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3474.png" + }, + { + "id": "3475", + "name": "Sticker | Cloud9 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3475.png" + }, + { + "id": "3476", + "name": "Sticker | compLexity Gaming | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3476.png" + }, + { + "id": "3477", + "name": "Sticker | compLexity Gaming (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3477.png" + }, + { + "id": "3478", + "name": "Sticker | compLexity Gaming (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3478.png" + }, + { + "id": "3479", + "name": "Sticker | compLexity Gaming (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3479.png" + }, + { + "id": "3480", + "name": "Sticker | ENCE | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3480.png" + }, + { + "id": "3481", + "name": "Sticker | ENCE (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3481.png" + }, + { + "id": "3482", + "name": "Sticker | ENCE (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3482.png" + }, + { + "id": "3483", + "name": "Sticker | ENCE (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3483.png" + }, + { + "id": "3484", + "name": "Sticker | FaZe Clan | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3484.png" + }, + { + "id": "3485", + "name": "Sticker | FaZe Clan (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3485.png" + }, + { + "id": "3486", + "name": "Sticker | FaZe Clan (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3486.png" + }, + { + "id": "3487", + "name": "Sticker | FaZe Clan (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3487.png" + }, + { + "id": "3488", + "name": "Sticker | Fnatic | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3488.png" + }, + { + "id": "3489", + "name": "Sticker | Fnatic (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3489.png" + }, + { + "id": "3490", + "name": "Sticker | Fnatic (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3490.png" + }, + { + "id": "3491", + "name": "Sticker | Fnatic (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3491.png" + }, + { + "id": "3492", + "name": "Sticker | FURIA | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3492.png" + }, + { + "id": "3493", + "name": "Sticker | FURIA (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3493.png" + }, + { + "id": "3494", + "name": "Sticker | FURIA (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3494.png" + }, + { + "id": "3495", + "name": "Sticker | FURIA (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3495.png" + }, + { + "id": "3496", + "name": "Sticker | G2 Esports | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3496.png" + }, + { + "id": "3497", + "name": "Sticker | G2 Esports (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3497.png" + }, + { + "id": "3498", + "name": "Sticker | G2 Esports (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3498.png" + }, + { + "id": "3499", + "name": "Sticker | G2 Esports (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3499.png" + }, + { + "id": "3500", + "name": "Sticker | Grayhound Gaming | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3500.png" + }, + { + "id": "3501", + "name": "Sticker | Grayhound Gaming (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3501.png" + }, + { + "id": "3502", + "name": "Sticker | Grayhound Gaming (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3502.png" + }, + { + "id": "3503", + "name": "Sticker | Grayhound Gaming (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3503.png" + }, + { + "id": "3504", + "name": "Sticker | HellRaisers | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3504.png" + }, + { + "id": "3505", + "name": "Sticker | HellRaisers (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3505.png" + }, + { + "id": "3506", + "name": "Sticker | HellRaisers (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3506.png" + }, + { + "id": "3507", + "name": "Sticker | HellRaisers (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3507.png" + }, + { + "id": "3508", + "name": "Sticker | MIBR | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3508.png" + }, + { + "id": "3509", + "name": "Sticker | MIBR (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3509.png" + }, + { + "id": "3510", + "name": "Sticker | MIBR (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3510.png" + }, + { + "id": "3511", + "name": "Sticker | MIBR (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3511.png" + }, + { + "id": "3512", + "name": "Sticker | Natus Vincere | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3512.png" + }, + { + "id": "3513", + "name": "Sticker | Natus Vincere (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3513.png" + }, + { + "id": "3514", + "name": "Sticker | Natus Vincere (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3514.png" + }, + { + "id": "3515", + "name": "Sticker | Natus Vincere (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3515.png" + }, + { + "id": "3516", + "name": "Sticker | Ninjas in Pyjamas | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3516.png" + }, + { + "id": "3517", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3517.png" + }, + { + "id": "3518", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3518.png" + }, + { + "id": "3519", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3519.png" + }, + { + "id": "3520", + "name": "Sticker | NRG | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3520.png" + }, + { + "id": "3521", + "name": "Sticker | NRG (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3521.png" + }, + { + "id": "3522", + "name": "Sticker | NRG (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3522.png" + }, + { + "id": "3523", + "name": "Sticker | NRG (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3523.png" + }, + { + "id": "3524", + "name": "Sticker | Renegades | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3524.png" + }, + { + "id": "3525", + "name": "Sticker | Renegades (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3525.png" + }, + { + "id": "3526", + "name": "Sticker | Renegades (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3526.png" + }, + { + "id": "3527", + "name": "Sticker | Renegades (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3527.png" + }, + { + "id": "3528", + "name": "Sticker | Team Liquid | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3528.png" + }, + { + "id": "3529", + "name": "Sticker | Team Liquid (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3529.png" + }, + { + "id": "3530", + "name": "Sticker | Team Liquid (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3530.png" + }, + { + "id": "3531", + "name": "Sticker | Team Liquid (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3531.png" + }, + { + "id": "3532", + "name": "Sticker | Team Spirit | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3532.png" + }, + { + "id": "3533", + "name": "Sticker | Team Spirit (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3533.png" + }, + { + "id": "3534", + "name": "Sticker | Team Spirit (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3534.png" + }, + { + "id": "3535", + "name": "Sticker | Team Spirit (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3535.png" + }, + { + "id": "3536", + "name": "Sticker | Tyloo | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3536.png" + }, + { + "id": "3537", + "name": "Sticker | Tyloo (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3537.png" + }, + { + "id": "3538", + "name": "Sticker | Tyloo (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3538.png" + }, + { + "id": "3539", + "name": "Sticker | Tyloo (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3539.png" + }, + { + "id": "3540", + "name": "Sticker | Vega Squadron | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3540.png" + }, + { + "id": "3541", + "name": "Sticker | Vega Squadron (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3541.png" + }, + { + "id": "3542", + "name": "Sticker | Vega Squadron (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3542.png" + }, + { + "id": "3543", + "name": "Sticker | Vega Squadron (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3543.png" + }, + { + "id": "3544", + "name": "Sticker | ViCi Gaming | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3544.png" + }, + { + "id": "3545", + "name": "Sticker | ViCi Gaming (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3545.png" + }, + { + "id": "3546", + "name": "Sticker | ViCi Gaming (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3546.png" + }, + { + "id": "3547", + "name": "Sticker | ViCi Gaming (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3547.png" + }, + { + "id": "3548", + "name": "Sticker | Vitality | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3548.png" + }, + { + "id": "3549", + "name": "Sticker | Vitality (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3549.png" + }, + { + "id": "3550", + "name": "Sticker | Vitality (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3550.png" + }, + { + "id": "3551", + "name": "Sticker | Vitality (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3551.png" + }, + { + "id": "3552", + "name": "Sticker | Winstrike Team | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3552.png" + }, + { + "id": "3553", + "name": "Sticker | Winstrike Team (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3553.png" + }, + { + "id": "3554", + "name": "Sticker | Winstrike Team (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3554.png" + }, + { + "id": "3555", + "name": "Sticker | Winstrike Team (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3555.png" + }, + { + "id": "3556", + "name": "Sticker | IEM | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3556.png" + }, + { + "id": "3557", + "name": "Sticker | IEM (Holo) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3557.png" + }, + { + "id": "3558", + "name": "Sticker | IEM (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3558.png" + }, + { + "id": "3559", + "name": "Sticker | IEM (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3559.png" + }, + { + "id": "3585", + "name": "Sticker | Magisk | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3585.png" + }, + { + "id": "3586", + "name": "Sticker | Magisk (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3586.png" + }, + { + "id": "3587", + "name": "Sticker | Magisk (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3587.png" + }, + { + "id": "3588", + "name": "Sticker | device | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3588.png" + }, + { + "id": "3589", + "name": "Sticker | device (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3589.png" + }, + { + "id": "3590", + "name": "Sticker | device (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3590.png" + }, + { + "id": "3591", + "name": "Sticker | Xyp9x | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3591.png" + }, + { + "id": "3592", + "name": "Sticker | Xyp9x (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3592.png" + }, + { + "id": "3593", + "name": "Sticker | Xyp9x (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3593.png" + }, + { + "id": "3594", + "name": "Sticker | dupreeh | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3594.png" + }, + { + "id": "3595", + "name": "Sticker | dupreeh (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3595.png" + }, + { + "id": "3596", + "name": "Sticker | dupreeh (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3596.png" + }, + { + "id": "3597", + "name": "Sticker | gla1ve | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3597.png" + }, + { + "id": "3598", + "name": "Sticker | gla1ve (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3598.png" + }, + { + "id": "3599", + "name": "Sticker | gla1ve (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3599.png" + }, + { + "id": "3600", + "name": "Sticker | fitch | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3600.png" + }, + { + "id": "3601", + "name": "Sticker | fitch (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3601.png" + }, + { + "id": "3602", + "name": "Sticker | fitch (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3602.png" + }, + { + "id": "3603", + "name": "Sticker | Jame | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3603.png" + }, + { + "id": "3604", + "name": "Sticker | Jame (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3604.png" + }, + { + "id": "3605", + "name": "Sticker | Jame (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3605.png" + }, + { + "id": "3606", + "name": "Sticker | KrizzeN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3606.png" + }, + { + "id": "3607", + "name": "Sticker | KrizzeN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3607.png" + }, + { + "id": "3608", + "name": "Sticker | KrizzeN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3608.png" + }, + { + "id": "3609", + "name": "Sticker | qikert | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3609.png" + }, + { + "id": "3610", + "name": "Sticker | qikert (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3610.png" + }, + { + "id": "3611", + "name": "Sticker | qikert (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3611.png" + }, + { + "id": "3612", + "name": "Sticker | buster | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3612.png" + }, + { + "id": "3613", + "name": "Sticker | buster (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3613.png" + }, + { + "id": "3614", + "name": "Sticker | buster (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3614.png" + }, + { + "id": "3615", + "name": "Sticker | gob b | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3615.png" + }, + { + "id": "3616", + "name": "Sticker | gob b (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3616.png" + }, + { + "id": "3617", + "name": "Sticker | gob b (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3617.png" + }, + { + "id": "3618", + "name": "Sticker | tabseN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3618.png" + }, + { + "id": "3619", + "name": "Sticker | tabseN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3619.png" + }, + { + "id": "3620", + "name": "Sticker | tabseN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3620.png" + }, + { + "id": "3621", + "name": "Sticker | tiziaN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3621.png" + }, + { + "id": "3622", + "name": "Sticker | tiziaN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3622.png" + }, + { + "id": "3623", + "name": "Sticker | tiziaN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3623.png" + }, + { + "id": "3624", + "name": "Sticker | XANTARES | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3624.png" + }, + { + "id": "3625", + "name": "Sticker | XANTARES (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3625.png" + }, + { + "id": "3626", + "name": "Sticker | XANTARES (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3626.png" + }, + { + "id": "3627", + "name": "Sticker | smooya | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3627.png" + }, + { + "id": "3628", + "name": "Sticker | smooya (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3628.png" + }, + { + "id": "3629", + "name": "Sticker | smooya (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3629.png" + }, + { + "id": "3630", + "name": "Sticker | flusha | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3630.png" + }, + { + "id": "3631", + "name": "Sticker | flusha (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3631.png" + }, + { + "id": "3632", + "name": "Sticker | flusha (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3632.png" + }, + { + "id": "3633", + "name": "Sticker | kioShiMa | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3633.png" + }, + { + "id": "3634", + "name": "Sticker | kioShiMa (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3634.png" + }, + { + "id": "3635", + "name": "Sticker | kioShiMa (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3635.png" + }, + { + "id": "3636", + "name": "Sticker | RUSH | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3636.png" + }, + { + "id": "3637", + "name": "Sticker | RUSH (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3637.png" + }, + { + "id": "3638", + "name": "Sticker | RUSH (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3638.png" + }, + { + "id": "3639", + "name": "Sticker | autimatic | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3639.png" + }, + { + "id": "3640", + "name": "Sticker | autimatic (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3640.png" + }, + { + "id": "3641", + "name": "Sticker | autimatic (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3641.png" + }, + { + "id": "3642", + "name": "Sticker | Golden | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3642.png" + }, + { + "id": "3643", + "name": "Sticker | Golden (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3643.png" + }, + { + "id": "3644", + "name": "Sticker | Golden (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3644.png" + }, + { + "id": "3645", + "name": "Sticker | n0thing | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3645.png" + }, + { + "id": "3646", + "name": "Sticker | n0thing (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3646.png" + }, + { + "id": "3647", + "name": "Sticker | n0thing (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3647.png" + }, + { + "id": "3648", + "name": "Sticker | Rickeh | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3648.png" + }, + { + "id": "3649", + "name": "Sticker | Rickeh (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3649.png" + }, + { + "id": "3650", + "name": "Sticker | Rickeh (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3650.png" + }, + { + "id": "3651", + "name": "Sticker | stanislaw | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3651.png" + }, + { + "id": "3652", + "name": "Sticker | stanislaw (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3652.png" + }, + { + "id": "3653", + "name": "Sticker | stanislaw (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3653.png" + }, + { + "id": "3654", + "name": "Sticker | dephh | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3654.png" + }, + { + "id": "3655", + "name": "Sticker | dephh (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3655.png" + }, + { + "id": "3656", + "name": "Sticker | dephh (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3656.png" + }, + { + "id": "3657", + "name": "Sticker | ShahZaM | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3657.png" + }, + { + "id": "3658", + "name": "Sticker | ShahZaM (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3658.png" + }, + { + "id": "3659", + "name": "Sticker | ShahZaM (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3659.png" + }, + { + "id": "3660", + "name": "Sticker | allu | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3660.png" + }, + { + "id": "3661", + "name": "Sticker | allu (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3661.png" + }, + { + "id": "3662", + "name": "Sticker | allu (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3662.png" + }, + { + "id": "3663", + "name": "Sticker | Aerial | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3663.png" + }, + { + "id": "3664", + "name": "Sticker | Aerial (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3664.png" + }, + { + "id": "3665", + "name": "Sticker | Aerial (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3665.png" + }, + { + "id": "3666", + "name": "Sticker | xseveN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3666.png" + }, + { + "id": "3667", + "name": "Sticker | xseveN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3667.png" + }, + { + "id": "3668", + "name": "Sticker | xseveN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3668.png" + }, + { + "id": "3669", + "name": "Sticker | Aleksib | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3669.png" + }, + { + "id": "3670", + "name": "Sticker | Aleksib (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3670.png" + }, + { + "id": "3671", + "name": "Sticker | Aleksib (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3671.png" + }, + { + "id": "3672", + "name": "Sticker | sergej | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3672.png" + }, + { + "id": "3673", + "name": "Sticker | sergej (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3673.png" + }, + { + "id": "3674", + "name": "Sticker | sergej (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3674.png" + }, + { + "id": "3675", + "name": "Sticker | GuardiaN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3675.png" + }, + { + "id": "3676", + "name": "Sticker | GuardiaN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3676.png" + }, + { + "id": "3677", + "name": "Sticker | GuardiaN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3677.png" + }, + { + "id": "3678", + "name": "Sticker | olofmeister | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3678.png" + }, + { + "id": "3679", + "name": "Sticker | olofmeister (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3679.png" + }, + { + "id": "3680", + "name": "Sticker | olofmeister (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3680.png" + }, + { + "id": "3681", + "name": "Sticker | rain | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3681.png" + }, + { + "id": "3682", + "name": "Sticker | rain (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3682.png" + }, + { + "id": "3683", + "name": "Sticker | rain (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3683.png" + }, + { + "id": "3684", + "name": "Sticker | AdreN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3684.png" + }, + { + "id": "3685", + "name": "Sticker | AdreN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3685.png" + }, + { + "id": "3686", + "name": "Sticker | AdreN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3686.png" + }, + { + "id": "3687", + "name": "Sticker | NiKo | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3687.png" + }, + { + "id": "3688", + "name": "Sticker | NiKo (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3688.png" + }, + { + "id": "3689", + "name": "Sticker | NiKo (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3689.png" + }, + { + "id": "3690", + "name": "Sticker | twist | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3690.png" + }, + { + "id": "3691", + "name": "Sticker | twist (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3691.png" + }, + { + "id": "3692", + "name": "Sticker | twist (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3692.png" + }, + { + "id": "3693", + "name": "Sticker | Xizt | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3693.png" + }, + { + "id": "3694", + "name": "Sticker | Xizt (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3694.png" + }, + { + "id": "3695", + "name": "Sticker | Xizt (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3695.png" + }, + { + "id": "3696", + "name": "Sticker | JW | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3696.png" + }, + { + "id": "3697", + "name": "Sticker | JW (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3697.png" + }, + { + "id": "3698", + "name": "Sticker | JW (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3698.png" + }, + { + "id": "3699", + "name": "Sticker | KRIMZ | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3699.png" + }, + { + "id": "3700", + "name": "Sticker | KRIMZ (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3700.png" + }, + { + "id": "3701", + "name": "Sticker | KRIMZ (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3701.png" + }, + { + "id": "3702", + "name": "Sticker | Brollan | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3702.png" + }, + { + "id": "3703", + "name": "Sticker | Brollan (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3703.png" + }, + { + "id": "3704", + "name": "Sticker | Brollan (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3704.png" + }, + { + "id": "3705", + "name": "Sticker | VINI | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3705.png" + }, + { + "id": "3706", + "name": "Sticker | VINI (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3706.png" + }, + { + "id": "3707", + "name": "Sticker | VINI (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3707.png" + }, + { + "id": "3708", + "name": "Sticker | ableJ | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3708.png" + }, + { + "id": "3709", + "name": "Sticker | ableJ (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3709.png" + }, + { + "id": "3710", + "name": "Sticker | ableJ (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3710.png" + }, + { + "id": "3711", + "name": "Sticker | arT | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3711.png" + }, + { + "id": "3712", + "name": "Sticker | arT (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3712.png" + }, + { + "id": "3713", + "name": "Sticker | arT (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3713.png" + }, + { + "id": "3714", + "name": "Sticker | KSCERATO | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3714.png" + }, + { + "id": "3715", + "name": "Sticker | KSCERATO (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3715.png" + }, + { + "id": "3716", + "name": "Sticker | KSCERATO (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3716.png" + }, + { + "id": "3717", + "name": "Sticker | yuurih | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3717.png" + }, + { + "id": "3718", + "name": "Sticker | yuurih (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3718.png" + }, + { + "id": "3719", + "name": "Sticker | yuurih (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3719.png" + }, + { + "id": "3720", + "name": "Sticker | JaCkz | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3720.png" + }, + { + "id": "3721", + "name": "Sticker | JaCkz (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3721.png" + }, + { + "id": "3722", + "name": "Sticker | JaCkz (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3722.png" + }, + { + "id": "3723", + "name": "Sticker | shox | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3723.png" + }, + { + "id": "3724", + "name": "Sticker | shox (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3724.png" + }, + { + "id": "3725", + "name": "Sticker | shox (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3725.png" + }, + { + "id": "3726", + "name": "Sticker | bodyy | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3726.png" + }, + { + "id": "3727", + "name": "Sticker | bodyy (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3727.png" + }, + { + "id": "3728", + "name": "Sticker | bodyy (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3728.png" + }, + { + "id": "3729", + "name": "Sticker | kennyS | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3729.png" + }, + { + "id": "3730", + "name": "Sticker | kennyS (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3730.png" + }, + { + "id": "3731", + "name": "Sticker | kennyS (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3731.png" + }, + { + "id": "3732", + "name": "Sticker | Lucky | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3732.png" + }, + { + "id": "3733", + "name": "Sticker | Lucky (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3733.png" + }, + { + "id": "3734", + "name": "Sticker | Lucky (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3734.png" + }, + { + "id": "3735", + "name": "Sticker | sterling | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3735.png" + }, + { + "id": "3736", + "name": "Sticker | sterling (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3736.png" + }, + { + "id": "3737", + "name": "Sticker | sterling (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3737.png" + }, + { + "id": "3738", + "name": "Sticker | dexter | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3738.png" + }, + { + "id": "3739", + "name": "Sticker | dexter (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3739.png" + }, + { + "id": "3740", + "name": "Sticker | dexter (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3740.png" + }, + { + "id": "3741", + "name": "Sticker | erkaSt | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3741.png" + }, + { + "id": "3742", + "name": "Sticker | erkaSt (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3742.png" + }, + { + "id": "3743", + "name": "Sticker | erkaSt (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3743.png" + }, + { + "id": "3744", + "name": "Sticker | malta | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3744.png" + }, + { + "id": "3745", + "name": "Sticker | malta (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3745.png" + }, + { + "id": "3746", + "name": "Sticker | malta (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3746.png" + }, + { + "id": "3747", + "name": "Sticker | DickStacy | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3747.png" + }, + { + "id": "3748", + "name": "Sticker | DickStacy (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3748.png" + }, + { + "id": "3749", + "name": "Sticker | DickStacy (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3749.png" + }, + { + "id": "3750", + "name": "Sticker | DeadFox | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3750.png" + }, + { + "id": "3751", + "name": "Sticker | DeadFox (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3751.png" + }, + { + "id": "3752", + "name": "Sticker | DeadFox (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3752.png" + }, + { + "id": "3753", + "name": "Sticker | ANGE1 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3753.png" + }, + { + "id": "3754", + "name": "Sticker | ANGE1 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3754.png" + }, + { + "id": "3755", + "name": "Sticker | ANGE1 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3755.png" + }, + { + "id": "3756", + "name": "Sticker | Hobbit | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3756.png" + }, + { + "id": "3757", + "name": "Sticker | Hobbit (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3757.png" + }, + { + "id": "3758", + "name": "Sticker | Hobbit (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3758.png" + }, + { + "id": "3759", + "name": "Sticker | ISSAA | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3759.png" + }, + { + "id": "3760", + "name": "Sticker | ISSAA (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3760.png" + }, + { + "id": "3761", + "name": "Sticker | ISSAA (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3761.png" + }, + { + "id": "3762", + "name": "Sticker | woxic | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3762.png" + }, + { + "id": "3763", + "name": "Sticker | woxic (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3763.png" + }, + { + "id": "3764", + "name": "Sticker | woxic (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3764.png" + }, + { + "id": "3765", + "name": "Sticker | FalleN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3765.png" + }, + { + "id": "3766", + "name": "Sticker | FalleN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3766.png" + }, + { + "id": "3767", + "name": "Sticker | FalleN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3767.png" + }, + { + "id": "3768", + "name": "Sticker | felps | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3768.png" + }, + { + "id": "3769", + "name": "Sticker | felps (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3769.png" + }, + { + "id": "3770", + "name": "Sticker | felps (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3770.png" + }, + { + "id": "3771", + "name": "Sticker | fer | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3771.png" + }, + { + "id": "3772", + "name": "Sticker | fer (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3772.png" + }, + { + "id": "3773", + "name": "Sticker | fer (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3773.png" + }, + { + "id": "3774", + "name": "Sticker | TACO | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3774.png" + }, + { + "id": "3775", + "name": "Sticker | TACO (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3775.png" + }, + { + "id": "3776", + "name": "Sticker | TACO (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3776.png" + }, + { + "id": "3777", + "name": "Sticker | coldzera | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3777.png" + }, + { + "id": "3778", + "name": "Sticker | coldzera (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3778.png" + }, + { + "id": "3779", + "name": "Sticker | coldzera (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3779.png" + }, + { + "id": "3780", + "name": "Sticker | Edward | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3780.png" + }, + { + "id": "3781", + "name": "Sticker | Edward (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3781.png" + }, + { + "id": "3782", + "name": "Sticker | Edward (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3782.png" + }, + { + "id": "3783", + "name": "Sticker | Zeus | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3783.png" + }, + { + "id": "3784", + "name": "Sticker | Zeus (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3784.png" + }, + { + "id": "3785", + "name": "Sticker | Zeus (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3785.png" + }, + { + "id": "3786", + "name": "Sticker | s1mple | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3786.png" + }, + { + "id": "3787", + "name": "Sticker | s1mple (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3787.png" + }, + { + "id": "3788", + "name": "Sticker | s1mple (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3788.png" + }, + { + "id": "3789", + "name": "Sticker | electronic | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3789.png" + }, + { + "id": "3790", + "name": "Sticker | electronic (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3790.png" + }, + { + "id": "3791", + "name": "Sticker | electronic (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3791.png" + }, + { + "id": "3792", + "name": "Sticker | flamie | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3792.png" + }, + { + "id": "3793", + "name": "Sticker | flamie (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3793.png" + }, + { + "id": "3794", + "name": "Sticker | flamie (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3794.png" + }, + { + "id": "3795", + "name": "Sticker | f0rest | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3795.png" + }, + { + "id": "3796", + "name": "Sticker | f0rest (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3796.png" + }, + { + "id": "3797", + "name": "Sticker | f0rest (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3797.png" + }, + { + "id": "3798", + "name": "Sticker | Lekr0 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3798.png" + }, + { + "id": "3799", + "name": "Sticker | Lekr0 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3799.png" + }, + { + "id": "3800", + "name": "Sticker | Lekr0 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3800.png" + }, + { + "id": "3801", + "name": "Sticker | GeT_RiGhT | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3801.png" + }, + { + "id": "3802", + "name": "Sticker | GeT_RiGhT (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3802.png" + }, + { + "id": "3803", + "name": "Sticker | GeT_RiGhT (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3803.png" + }, + { + "id": "3804", + "name": "Sticker | REZ | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3804.png" + }, + { + "id": "3805", + "name": "Sticker | REZ (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3805.png" + }, + { + "id": "3806", + "name": "Sticker | REZ (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3806.png" + }, + { + "id": "3807", + "name": "Sticker | dennis | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3807.png" + }, + { + "id": "3808", + "name": "Sticker | dennis (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3808.png" + }, + { + "id": "3809", + "name": "Sticker | dennis (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3809.png" + }, + { + "id": "3810", + "name": "Sticker | daps | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3810.png" + }, + { + "id": "3811", + "name": "Sticker | daps (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3811.png" + }, + { + "id": "3812", + "name": "Sticker | daps (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3812.png" + }, + { + "id": "3813", + "name": "Sticker | Brehze | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3813.png" + }, + { + "id": "3814", + "name": "Sticker | Brehze (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3814.png" + }, + { + "id": "3815", + "name": "Sticker | Brehze (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3815.png" + }, + { + "id": "3816", + "name": "Sticker | FugLy | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3816.png" + }, + { + "id": "3817", + "name": "Sticker | FugLy (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3817.png" + }, + { + "id": "3818", + "name": "Sticker | FugLy (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3818.png" + }, + { + "id": "3819", + "name": "Sticker | Ethan | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3819.png" + }, + { + "id": "3820", + "name": "Sticker | Ethan (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3820.png" + }, + { + "id": "3821", + "name": "Sticker | Ethan (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3821.png" + }, + { + "id": "3822", + "name": "Sticker | CeRq | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3822.png" + }, + { + "id": "3823", + "name": "Sticker | CeRq (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3823.png" + }, + { + "id": "3824", + "name": "Sticker | CeRq (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3824.png" + }, + { + "id": "3825", + "name": "Sticker | Gratisfaction | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3825.png" + }, + { + "id": "3826", + "name": "Sticker | Gratisfaction (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3826.png" + }, + { + "id": "3827", + "name": "Sticker | Gratisfaction (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3827.png" + }, + { + "id": "3828", + "name": "Sticker | jks | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3828.png" + }, + { + "id": "3829", + "name": "Sticker | jks (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3829.png" + }, + { + "id": "3830", + "name": "Sticker | jks (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3830.png" + }, + { + "id": "3831", + "name": "Sticker | AZR | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3831.png" + }, + { + "id": "3832", + "name": "Sticker | AZR (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3832.png" + }, + { + "id": "3833", + "name": "Sticker | AZR (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3833.png" + }, + { + "id": "3834", + "name": "Sticker | jkaem | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3834.png" + }, + { + "id": "3835", + "name": "Sticker | jkaem (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3835.png" + }, + { + "id": "3836", + "name": "Sticker | jkaem (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3836.png" + }, + { + "id": "3837", + "name": "Sticker | Liazz | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3837.png" + }, + { + "id": "3838", + "name": "Sticker | Liazz (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3838.png" + }, + { + "id": "3839", + "name": "Sticker | Liazz (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3839.png" + }, + { + "id": "3840", + "name": "Sticker | nitr0 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3840.png" + }, + { + "id": "3841", + "name": "Sticker | nitr0 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3841.png" + }, + { + "id": "3842", + "name": "Sticker | nitr0 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3842.png" + }, + { + "id": "3843", + "name": "Sticker | Stewie2K | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3843.png" + }, + { + "id": "3844", + "name": "Sticker | Stewie2K (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3844.png" + }, + { + "id": "3845", + "name": "Sticker | Stewie2K (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3845.png" + }, + { + "id": "3846", + "name": "Sticker | NAF | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3846.png" + }, + { + "id": "3847", + "name": "Sticker | NAF (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3847.png" + }, + { + "id": "3848", + "name": "Sticker | NAF (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3848.png" + }, + { + "id": "3849", + "name": "Sticker | Twistzz | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3849.png" + }, + { + "id": "3850", + "name": "Sticker | Twistzz (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3850.png" + }, + { + "id": "3851", + "name": "Sticker | Twistzz (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3851.png" + }, + { + "id": "3852", + "name": "Sticker | EliGE | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3852.png" + }, + { + "id": "3853", + "name": "Sticker | EliGE (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3853.png" + }, + { + "id": "3854", + "name": "Sticker | EliGE (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3854.png" + }, + { + "id": "3855", + "name": "Sticker | DavCost | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3855.png" + }, + { + "id": "3856", + "name": "Sticker | DavCost (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3856.png" + }, + { + "id": "3857", + "name": "Sticker | DavCost (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3857.png" + }, + { + "id": "3858", + "name": "Sticker | COLDYY1 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3858.png" + }, + { + "id": "3859", + "name": "Sticker | COLDYY1 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3859.png" + }, + { + "id": "3860", + "name": "Sticker | COLDYY1 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3860.png" + }, + { + "id": "3861", + "name": "Sticker | Dima | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3861.png" + }, + { + "id": "3862", + "name": "Sticker | Dima (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3862.png" + }, + { + "id": "3863", + "name": "Sticker | Dima (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3863.png" + }, + { + "id": "3864", + "name": "Sticker | sdy | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3864.png" + }, + { + "id": "3865", + "name": "Sticker | sdy (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3865.png" + }, + { + "id": "3866", + "name": "Sticker | sdy (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3866.png" + }, + { + "id": "3867", + "name": "Sticker | S0tF1k | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3867.png" + }, + { + "id": "3868", + "name": "Sticker | S0tF1k (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3868.png" + }, + { + "id": "3869", + "name": "Sticker | S0tF1k (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3869.png" + }, + { + "id": "3870", + "name": "Sticker | Summer | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3870.png" + }, + { + "id": "3871", + "name": "Sticker | Summer (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3871.png" + }, + { + "id": "3872", + "name": "Sticker | Summer (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3872.png" + }, + { + "id": "3873", + "name": "Sticker | somebody | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3873.png" + }, + { + "id": "3874", + "name": "Sticker | somebody (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3874.png" + }, + { + "id": "3875", + "name": "Sticker | somebody (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3875.png" + }, + { + "id": "3876", + "name": "Sticker | Attacker | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3876.png" + }, + { + "id": "3877", + "name": "Sticker | Attacker (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3877.png" + }, + { + "id": "3878", + "name": "Sticker | Attacker (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3878.png" + }, + { + "id": "3879", + "name": "Sticker | BnTeT | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3879.png" + }, + { + "id": "3880", + "name": "Sticker | BnTeT (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3880.png" + }, + { + "id": "3881", + "name": "Sticker | BnTeT (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3881.png" + }, + { + "id": "3882", + "name": "Sticker | xccurate | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3882.png" + }, + { + "id": "3883", + "name": "Sticker | xccurate (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3883.png" + }, + { + "id": "3884", + "name": "Sticker | xccurate (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3884.png" + }, + { + "id": "3885", + "name": "Sticker | tonyblack | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3885.png" + }, + { + "id": "3886", + "name": "Sticker | tonyblack (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3886.png" + }, + { + "id": "3887", + "name": "Sticker | tonyblack (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3887.png" + }, + { + "id": "3888", + "name": "Sticker | crush | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3888.png" + }, + { + "id": "3889", + "name": "Sticker | crush (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3889.png" + }, + { + "id": "3890", + "name": "Sticker | crush (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3890.png" + }, + { + "id": "3891", + "name": "Sticker | jR | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3891.png" + }, + { + "id": "3892", + "name": "Sticker | jR (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3892.png" + }, + { + "id": "3893", + "name": "Sticker | jR (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3893.png" + }, + { + "id": "3894", + "name": "Sticker | hutji | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3894.png" + }, + { + "id": "3895", + "name": "Sticker | hutji (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3895.png" + }, + { + "id": "3896", + "name": "Sticker | hutji (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3896.png" + }, + { + "id": "3897", + "name": "Sticker | chopper | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3897.png" + }, + { + "id": "3898", + "name": "Sticker | chopper (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3898.png" + }, + { + "id": "3899", + "name": "Sticker | chopper (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3899.png" + }, + { + "id": "3900", + "name": "Sticker | Kaze | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3900.png" + }, + { + "id": "3901", + "name": "Sticker | Kaze (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3901.png" + }, + { + "id": "3902", + "name": "Sticker | Kaze (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3902.png" + }, + { + "id": "3903", + "name": "Sticker | advent | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3903.png" + }, + { + "id": "3904", + "name": "Sticker | advent (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3904.png" + }, + { + "id": "3905", + "name": "Sticker | advent (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3905.png" + }, + { + "id": "3906", + "name": "Sticker | aumaN | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3906.png" + }, + { + "id": "3907", + "name": "Sticker | aumaN (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3907.png" + }, + { + "id": "3908", + "name": "Sticker | aumaN (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3908.png" + }, + { + "id": "3909", + "name": "Sticker | zhokiNg | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3909.png" + }, + { + "id": "3910", + "name": "Sticker | zhokiNg (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3910.png" + }, + { + "id": "3911", + "name": "Sticker | zhokiNg (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3911.png" + }, + { + "id": "3912", + "name": "Sticker | Freeman | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3912.png" + }, + { + "id": "3913", + "name": "Sticker | Freeman (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3913.png" + }, + { + "id": "3914", + "name": "Sticker | Freeman (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3914.png" + }, + { + "id": "3915", + "name": "Sticker | NBK- | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3915.png" + }, + { + "id": "3916", + "name": "Sticker | NBK- (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3916.png" + }, + { + "id": "3917", + "name": "Sticker | NBK- (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3917.png" + }, + { + "id": "3918", + "name": "Sticker | apEX | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3918.png" + }, + { + "id": "3919", + "name": "Sticker | apEX (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3919.png" + }, + { + "id": "3920", + "name": "Sticker | apEX (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3920.png" + }, + { + "id": "3921", + "name": "Sticker | ALEX | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3921.png" + }, + { + "id": "3922", + "name": "Sticker | ALEX (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3922.png" + }, + { + "id": "3923", + "name": "Sticker | ALEX (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3923.png" + }, + { + "id": "3924", + "name": "Sticker | RpK | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3924.png" + }, + { + "id": "3925", + "name": "Sticker | RpK (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3925.png" + }, + { + "id": "3926", + "name": "Sticker | RpK (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3926.png" + }, + { + "id": "3927", + "name": "Sticker | ZywOo | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3927.png" + }, + { + "id": "3928", + "name": "Sticker | ZywOo (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3928.png" + }, + { + "id": "3929", + "name": "Sticker | ZywOo (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3929.png" + }, + { + "id": "3930", + "name": "Sticker | WorldEdit | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3930.png" + }, + { + "id": "3931", + "name": "Sticker | WorldEdit (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3931.png" + }, + { + "id": "3932", + "name": "Sticker | WorldEdit (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3932.png" + }, + { + "id": "3933", + "name": "Sticker | wayLander | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3933.png" + }, + { + "id": "3934", + "name": "Sticker | wayLander (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3934.png" + }, + { + "id": "3935", + "name": "Sticker | wayLander (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3935.png" + }, + { + "id": "3936", + "name": "Sticker | Kvik | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3936.png" + }, + { + "id": "3937", + "name": "Sticker | Kvik (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3937.png" + }, + { + "id": "3938", + "name": "Sticker | Kvik (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3938.png" + }, + { + "id": "3939", + "name": "Sticker | Boombl4 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3939.png" + }, + { + "id": "3940", + "name": "Sticker | Boombl4 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3940.png" + }, + { + "id": "3941", + "name": "Sticker | Boombl4 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3941.png" + }, + { + "id": "3942", + "name": "Sticker | n0rb3r7 | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3942.png" + }, + { + "id": "3943", + "name": "Sticker | n0rb3r7 (Foil) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3943.png" + }, + { + "id": "3944", + "name": "Sticker | n0rb3r7 (Gold) | Katowice 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3944.png" + }, + { + "id": "3945", + "name": "Sticker | Baited", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3945.png" + }, + { + "id": "3946", + "name": "Sticker | Baited (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3946.png" + }, + { + "id": "3947", + "name": "Sticker | Bite Me", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3947.png" + }, + { + "id": "3949", + "name": "Sticker | Bite Me (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3949.png" + }, + { + "id": "3950", + "name": "Sticker | Cluck", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3950.png" + }, + { + "id": "3951", + "name": "Sticker | Cluck (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3951.png" + }, + { + "id": "3952", + "name": "Sticker | First Blood", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3952.png" + }, + { + "id": "3953", + "name": "Sticker | First Blood (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3953.png" + }, + { + "id": "3954", + "name": "Sticker | Free Hugs", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3954.png" + }, + { + "id": "3955", + "name": "Sticker | Free Hugs (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3955.png" + }, + { + "id": "3956", + "name": "Sticker | Lurker", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3956.png" + }, + { + "id": "3958", + "name": "Sticker | Lurker (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3958.png" + }, + { + "id": "3959", + "name": "Sticker | One Sting", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3959.png" + }, + { + "id": "3960", + "name": "Sticker | One Sting (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3960.png" + }, + { + "id": "3961", + "name": "Sticker | Scavenger", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3961.png" + }, + { + "id": "3962", + "name": "Sticker | Scavenger (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3962.png" + }, + { + "id": "3963", + "name": "Sticker | Toxic", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3963.png" + }, + { + "id": "3965", + "name": "Sticker | Toxic (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3965.png" + }, + { + "id": "3966", + "name": "Sticker | Big Clucks", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3966.png" + }, + { + "id": "3967", + "name": "Sticker | Bonehead", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3967.png" + }, + { + "id": "3968", + "name": "Sticker | BukAWP", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3968.png" + }, + { + "id": "3969", + "name": "Sticker | Double Dip", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3969.png" + }, + { + "id": "3970", + "name": "Sticker | Fowl Play", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3970.png" + }, + { + "id": "3971", + "name": "Sticker | Heads Up", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3971.png" + }, + { + "id": "3972", + "name": "Sticker | Hot Wings", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3972.png" + }, + { + "id": "3973", + "name": "Sticker | Nest Egg", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3973.png" + }, + { + "id": "3974", + "name": "Sticker | Roosty Boosty", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3974.png" + }, + { + "id": "3975", + "name": "Sticker | What What", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3975.png" + }, + { + "id": "3976", + "name": "Sticker | Bonehead (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3976.png" + }, + { + "id": "3977", + "name": "Sticker | Double Dip (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3977.png" + }, + { + "id": "3978", + "name": "Sticker | Fowl Play (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3978.png" + }, + { + "id": "3979", + "name": "Sticker | Hot Wings (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3979.png" + }, + { + "id": "3980", + "name": "Sticker | Nest Egg (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3980.png" + }, + { + "id": "3981", + "name": "Sticker | Big Clucks (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3981.png" + }, + { + "id": "3982", + "name": "Sticker | Roosty Boosty (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-3982.png" + }, + { + "id": "4019", + "name": "Sticker | Astralis | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4019.png" + }, + { + "id": "4020", + "name": "Sticker | Astralis (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4020.png" + }, + { + "id": "4021", + "name": "Sticker | Astralis (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4021.png" + }, + { + "id": "4022", + "name": "Sticker | Astralis (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4022.png" + }, + { + "id": "4023", + "name": "Sticker | ENCE | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4023.png" + }, + { + "id": "4024", + "name": "Sticker | ENCE (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4024.png" + }, + { + "id": "4025", + "name": "Sticker | ENCE (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4025.png" + }, + { + "id": "4026", + "name": "Sticker | ENCE (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4026.png" + }, + { + "id": "4027", + "name": "Sticker | MIBR | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4027.png" + }, + { + "id": "4028", + "name": "Sticker | MIBR (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4028.png" + }, + { + "id": "4029", + "name": "Sticker | MIBR (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4029.png" + }, + { + "id": "4030", + "name": "Sticker | MIBR (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4030.png" + }, + { + "id": "4031", + "name": "Sticker | Natus Vincere | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4031.png" + }, + { + "id": "4032", + "name": "Sticker | Natus Vincere (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4032.png" + }, + { + "id": "4033", + "name": "Sticker | Natus Vincere (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4033.png" + }, + { + "id": "4034", + "name": "Sticker | Natus Vincere (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4034.png" + }, + { + "id": "4035", + "name": "Sticker | Ninjas in Pyjamas | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4035.png" + }, + { + "id": "4036", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4036.png" + }, + { + "id": "4037", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4037.png" + }, + { + "id": "4038", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4038.png" + }, + { + "id": "4039", + "name": "Sticker | FaZe Clan | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4039.png" + }, + { + "id": "4040", + "name": "Sticker | FaZe Clan (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4040.png" + }, + { + "id": "4041", + "name": "Sticker | FaZe Clan (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4041.png" + }, + { + "id": "4042", + "name": "Sticker | FaZe Clan (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4042.png" + }, + { + "id": "4043", + "name": "Sticker | Team Liquid | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4043.png" + }, + { + "id": "4044", + "name": "Sticker | Team Liquid (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4044.png" + }, + { + "id": "4045", + "name": "Sticker | Team Liquid (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4045.png" + }, + { + "id": "4046", + "name": "Sticker | Team Liquid (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4046.png" + }, + { + "id": "4047", + "name": "Sticker | Renegades | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4047.png" + }, + { + "id": "4048", + "name": "Sticker | Renegades (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4048.png" + }, + { + "id": "4049", + "name": "Sticker | Renegades (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4049.png" + }, + { + "id": "4050", + "name": "Sticker | Renegades (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4050.png" + }, + { + "id": "4051", + "name": "Sticker | compLexity Gaming | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4051.png" + }, + { + "id": "4052", + "name": "Sticker | compLexity Gaming (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4052.png" + }, + { + "id": "4053", + "name": "Sticker | compLexity Gaming (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4053.png" + }, + { + "id": "4054", + "name": "Sticker | compLexity Gaming (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4054.png" + }, + { + "id": "4055", + "name": "Sticker | HellRaisers | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4055.png" + }, + { + "id": "4056", + "name": "Sticker | HellRaisers (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4056.png" + }, + { + "id": "4057", + "name": "Sticker | HellRaisers (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4057.png" + }, + { + "id": "4058", + "name": "Sticker | HellRaisers (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4058.png" + }, + { + "id": "4059", + "name": "Sticker | Avangar | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4059.png" + }, + { + "id": "4060", + "name": "Sticker | Avangar (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4060.png" + }, + { + "id": "4061", + "name": "Sticker | Avangar (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4061.png" + }, + { + "id": "4062", + "name": "Sticker | Avangar (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4062.png" + }, + { + "id": "4063", + "name": "Sticker | G2 Esports | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4063.png" + }, + { + "id": "4064", + "name": "Sticker | G2 Esports (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4064.png" + }, + { + "id": "4065", + "name": "Sticker | G2 Esports (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4065.png" + }, + { + "id": "4066", + "name": "Sticker | G2 Esports (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4066.png" + }, + { + "id": "4067", + "name": "Sticker | Vitality | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4067.png" + }, + { + "id": "4068", + "name": "Sticker | Vitality (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4068.png" + }, + { + "id": "4069", + "name": "Sticker | Vitality (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4069.png" + }, + { + "id": "4070", + "name": "Sticker | Vitality (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4070.png" + }, + { + "id": "4071", + "name": "Sticker | Grayhound Gaming | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4071.png" + }, + { + "id": "4072", + "name": "Sticker | Grayhound Gaming (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4072.png" + }, + { + "id": "4073", + "name": "Sticker | Grayhound Gaming (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4073.png" + }, + { + "id": "4074", + "name": "Sticker | Grayhound Gaming (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4074.png" + }, + { + "id": "4075", + "name": "Sticker | mousesports | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4075.png" + }, + { + "id": "4076", + "name": "Sticker | mousesports (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4076.png" + }, + { + "id": "4077", + "name": "Sticker | mousesports (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4077.png" + }, + { + "id": "4078", + "name": "Sticker | mousesports (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4078.png" + }, + { + "id": "4079", + "name": "Sticker | forZe eSports | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4079.png" + }, + { + "id": "4080", + "name": "Sticker | forZe eSports (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4080.png" + }, + { + "id": "4081", + "name": "Sticker | forZe eSports (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4081.png" + }, + { + "id": "4082", + "name": "Sticker | forZe eSports (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4082.png" + }, + { + "id": "4083", + "name": "Sticker | NRG | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4083.png" + }, + { + "id": "4084", + "name": "Sticker | NRG (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4084.png" + }, + { + "id": "4085", + "name": "Sticker | NRG (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4085.png" + }, + { + "id": "4086", + "name": "Sticker | NRG (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4086.png" + }, + { + "id": "4087", + "name": "Sticker | Tyloo | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4087.png" + }, + { + "id": "4088", + "name": "Sticker | Tyloo (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4088.png" + }, + { + "id": "4089", + "name": "Sticker | Tyloo (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4089.png" + }, + { + "id": "4090", + "name": "Sticker | Tyloo (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4090.png" + }, + { + "id": "4091", + "name": "Sticker | FURIA | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4091.png" + }, + { + "id": "4092", + "name": "Sticker | FURIA (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4092.png" + }, + { + "id": "4093", + "name": "Sticker | FURIA (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4093.png" + }, + { + "id": "4094", + "name": "Sticker | FURIA (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4094.png" + }, + { + "id": "4095", + "name": "Sticker | CR4ZY | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4095.png" + }, + { + "id": "4096", + "name": "Sticker | CR4ZY (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4096.png" + }, + { + "id": "4097", + "name": "Sticker | CR4ZY (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4097.png" + }, + { + "id": "4098", + "name": "Sticker | CR4ZY (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4098.png" + }, + { + "id": "4099", + "name": "Sticker | Syman Gaming | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4099.png" + }, + { + "id": "4100", + "name": "Sticker | Syman Gaming (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4100.png" + }, + { + "id": "4101", + "name": "Sticker | Syman Gaming (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4101.png" + }, + { + "id": "4102", + "name": "Sticker | Syman Gaming (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4102.png" + }, + { + "id": "4103", + "name": "Sticker | North | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4103.png" + }, + { + "id": "4104", + "name": "Sticker | North (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4104.png" + }, + { + "id": "4105", + "name": "Sticker | North (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4105.png" + }, + { + "id": "4106", + "name": "Sticker | North (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4106.png" + }, + { + "id": "4107", + "name": "Sticker | DreamEaters | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4107.png" + }, + { + "id": "4108", + "name": "Sticker | DreamEaters (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4108.png" + }, + { + "id": "4109", + "name": "Sticker | DreamEaters (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4109.png" + }, + { + "id": "4110", + "name": "Sticker | DreamEaters (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4110.png" + }, + { + "id": "4111", + "name": "Sticker | INTZ E-SPORTS CLUB | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4111.png" + }, + { + "id": "4112", + "name": "Sticker | INTZ E-SPORTS CLUB (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4112.png" + }, + { + "id": "4113", + "name": "Sticker | INTZ E-SPORTS CLUB (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4113.png" + }, + { + "id": "4114", + "name": "Sticker | INTZ E-SPORTS CLUB (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4114.png" + }, + { + "id": "4115", + "name": "Sticker | StarLadder | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4115.png" + }, + { + "id": "4116", + "name": "Sticker | StarLadder (Holo) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4116.png" + }, + { + "id": "4117", + "name": "Sticker | StarLadder (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4117.png" + }, + { + "id": "4118", + "name": "Sticker | StarLadder (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4118.png" + }, + { + "id": "4144", + "name": "Sticker | Magisk | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4144.png" + }, + { + "id": "4145", + "name": "Sticker | Magisk (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4145.png" + }, + { + "id": "4146", + "name": "Sticker | Magisk (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4146.png" + }, + { + "id": "4147", + "name": "Sticker | device | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4147.png" + }, + { + "id": "4148", + "name": "Sticker | device (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4148.png" + }, + { + "id": "4149", + "name": "Sticker | device (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4149.png" + }, + { + "id": "4150", + "name": "Sticker | Xyp9x | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4150.png" + }, + { + "id": "4151", + "name": "Sticker | Xyp9x (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4151.png" + }, + { + "id": "4152", + "name": "Sticker | Xyp9x (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4152.png" + }, + { + "id": "4153", + "name": "Sticker | dupreeh | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4153.png" + }, + { + "id": "4154", + "name": "Sticker | dupreeh (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4154.png" + }, + { + "id": "4155", + "name": "Sticker | dupreeh (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4155.png" + }, + { + "id": "4156", + "name": "Sticker | gla1ve | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4156.png" + }, + { + "id": "4157", + "name": "Sticker | gla1ve (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4157.png" + }, + { + "id": "4158", + "name": "Sticker | gla1ve (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4158.png" + }, + { + "id": "4159", + "name": "Sticker | allu | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4159.png" + }, + { + "id": "4160", + "name": "Sticker | allu (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4160.png" + }, + { + "id": "4161", + "name": "Sticker | allu (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4161.png" + }, + { + "id": "4162", + "name": "Sticker | Aerial | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4162.png" + }, + { + "id": "4163", + "name": "Sticker | Aerial (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4163.png" + }, + { + "id": "4164", + "name": "Sticker | Aerial (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4164.png" + }, + { + "id": "4165", + "name": "Sticker | xseveN | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4165.png" + }, + { + "id": "4166", + "name": "Sticker | xseveN (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4166.png" + }, + { + "id": "4167", + "name": "Sticker | xseveN (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4167.png" + }, + { + "id": "4168", + "name": "Sticker | Aleksib | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4168.png" + }, + { + "id": "4169", + "name": "Sticker | Aleksib (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4169.png" + }, + { + "id": "4170", + "name": "Sticker | Aleksib (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4170.png" + }, + { + "id": "4171", + "name": "Sticker | sergej | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4171.png" + }, + { + "id": "4172", + "name": "Sticker | sergej (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4172.png" + }, + { + "id": "4173", + "name": "Sticker | sergej (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4173.png" + }, + { + "id": "4174", + "name": "Sticker | FalleN | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4174.png" + }, + { + "id": "4175", + "name": "Sticker | FalleN (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4175.png" + }, + { + "id": "4176", + "name": "Sticker | FalleN (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4176.png" + }, + { + "id": "4177", + "name": "Sticker | LUCAS1 | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4177.png" + }, + { + "id": "4178", + "name": "Sticker | LUCAS1 (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4178.png" + }, + { + "id": "4179", + "name": "Sticker | LUCAS1 (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4179.png" + }, + { + "id": "4180", + "name": "Sticker | fer | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4180.png" + }, + { + "id": "4181", + "name": "Sticker | fer (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4181.png" + }, + { + "id": "4182", + "name": "Sticker | fer (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4182.png" + }, + { + "id": "4183", + "name": "Sticker | TACO | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4183.png" + }, + { + "id": "4184", + "name": "Sticker | TACO (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4184.png" + }, + { + "id": "4185", + "name": "Sticker | TACO (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4185.png" + }, + { + "id": "4186", + "name": "Sticker | coldzera | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4186.png" + }, + { + "id": "4187", + "name": "Sticker | coldzera (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4187.png" + }, + { + "id": "4188", + "name": "Sticker | coldzera (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4188.png" + }, + { + "id": "4189", + "name": "Sticker | Zeus | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4189.png" + }, + { + "id": "4190", + "name": "Sticker | Zeus (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4190.png" + }, + { + "id": "4191", + "name": "Sticker | Zeus (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4191.png" + }, + { + "id": "4192", + "name": "Sticker | s1mple | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4192.png" + }, + { + "id": "4193", + "name": "Sticker | s1mple (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4193.png" + }, + { + "id": "4194", + "name": "Sticker | s1mple (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4194.png" + }, + { + "id": "4195", + "name": "Sticker | electronic | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4195.png" + }, + { + "id": "4196", + "name": "Sticker | electronic (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4196.png" + }, + { + "id": "4197", + "name": "Sticker | electronic (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4197.png" + }, + { + "id": "4198", + "name": "Sticker | flamie | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4198.png" + }, + { + "id": "4199", + "name": "Sticker | flamie (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4199.png" + }, + { + "id": "4200", + "name": "Sticker | flamie (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4200.png" + }, + { + "id": "4201", + "name": "Sticker | Boombl4 | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4201.png" + }, + { + "id": "4202", + "name": "Sticker | Boombl4 (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4202.png" + }, + { + "id": "4203", + "name": "Sticker | Boombl4 (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4203.png" + }, + { + "id": "4204", + "name": "Sticker | f0rest | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4204.png" + }, + { + "id": "4205", + "name": "Sticker | f0rest (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4205.png" + }, + { + "id": "4206", + "name": "Sticker | f0rest (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4206.png" + }, + { + "id": "4207", + "name": "Sticker | Lekr0 | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4207.png" + }, + { + "id": "4208", + "name": "Sticker | Lekr0 (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4208.png" + }, + { + "id": "4209", + "name": "Sticker | Lekr0 (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4209.png" + }, + { + "id": "4210", + "name": "Sticker | GeT_RiGhT | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4210.png" + }, + { + "id": "4211", + "name": "Sticker | GeT_RiGhT (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4211.png" + }, + { + "id": "4212", + "name": "Sticker | GeT_RiGhT (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4212.png" + }, + { + "id": "4213", + "name": "Sticker | REZ | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4213.png" + }, + { + "id": "4214", + "name": "Sticker | REZ (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4214.png" + }, + { + "id": "4215", + "name": "Sticker | REZ (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4215.png" + }, + { + "id": "4216", + "name": "Sticker | Golden | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4216.png" + }, + { + "id": "4217", + "name": "Sticker | Golden (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4217.png" + }, + { + "id": "4218", + "name": "Sticker | Golden (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4218.png" + }, + { + "id": "4219", + "name": "Sticker | NEO | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4219.png" + }, + { + "id": "4220", + "name": "Sticker | NEO (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4220.png" + }, + { + "id": "4221", + "name": "Sticker | NEO (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4221.png" + }, + { + "id": "4222", + "name": "Sticker | GuardiaN | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4222.png" + }, + { + "id": "4223", + "name": "Sticker | GuardiaN (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4223.png" + }, + { + "id": "4224", + "name": "Sticker | GuardiaN (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4224.png" + }, + { + "id": "4225", + "name": "Sticker | olofmeister | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4225.png" + }, + { + "id": "4226", + "name": "Sticker | olofmeister (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4226.png" + }, + { + "id": "4227", + "name": "Sticker | olofmeister (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4227.png" + }, + { + "id": "4228", + "name": "Sticker | rain | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4228.png" + }, + { + "id": "4229", + "name": "Sticker | rain (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4229.png" + }, + { + "id": "4230", + "name": "Sticker | rain (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4230.png" + }, + { + "id": "4231", + "name": "Sticker | NiKo | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4231.png" + }, + { + "id": "4232", + "name": "Sticker | NiKo (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4232.png" + }, + { + "id": "4233", + "name": "Sticker | NiKo (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4233.png" + }, + { + "id": "4234", + "name": "Sticker | nitr0 | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4234.png" + }, + { + "id": "4235", + "name": "Sticker | nitr0 (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4235.png" + }, + { + "id": "4236", + "name": "Sticker | nitr0 (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4236.png" + }, + { + "id": "4237", + "name": "Sticker | Stewie2K | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4237.png" + }, + { + "id": "4238", + "name": "Sticker | Stewie2K (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4238.png" + }, + { + "id": "4239", + "name": "Sticker | Stewie2K (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4239.png" + }, + { + "id": "4240", + "name": "Sticker | NAF | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4240.png" + }, + { + "id": "4241", + "name": "Sticker | NAF (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4241.png" + }, + { + "id": "4242", + "name": "Sticker | NAF (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4242.png" + }, + { + "id": "4243", + "name": "Sticker | Twistzz | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4243.png" + }, + { + "id": "4244", + "name": "Sticker | Twistzz (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4244.png" + }, + { + "id": "4245", + "name": "Sticker | Twistzz (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4245.png" + }, + { + "id": "4246", + "name": "Sticker | EliGE | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4246.png" + }, + { + "id": "4247", + "name": "Sticker | EliGE (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4247.png" + }, + { + "id": "4248", + "name": "Sticker | EliGE (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4248.png" + }, + { + "id": "4249", + "name": "Sticker | Gratisfaction | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4249.png" + }, + { + "id": "4250", + "name": "Sticker | Gratisfaction (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4250.png" + }, + { + "id": "4251", + "name": "Sticker | Gratisfaction (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4251.png" + }, + { + "id": "4252", + "name": "Sticker | jks | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4252.png" + }, + { + "id": "4253", + "name": "Sticker | jks (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4253.png" + }, + { + "id": "4254", + "name": "Sticker | jks (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4254.png" + }, + { + "id": "4255", + "name": "Sticker | AZR | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4255.png" + }, + { + "id": "4256", + "name": "Sticker | AZR (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4256.png" + }, + { + "id": "4257", + "name": "Sticker | AZR (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4257.png" + }, + { + "id": "4258", + "name": "Sticker | jkaem | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4258.png" + }, + { + "id": "4259", + "name": "Sticker | jkaem (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4259.png" + }, + { + "id": "4260", + "name": "Sticker | jkaem (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4260.png" + }, + { + "id": "4261", + "name": "Sticker | Liazz | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4261.png" + }, + { + "id": "4262", + "name": "Sticker | Liazz (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4262.png" + }, + { + "id": "4263", + "name": "Sticker | Liazz (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4263.png" + }, + { + "id": "4264", + "name": "Sticker | Rickeh | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4264.png" + }, + { + "id": "4265", + "name": "Sticker | Rickeh (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4265.png" + }, + { + "id": "4266", + "name": "Sticker | Rickeh (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4266.png" + }, + { + "id": "4267", + "name": "Sticker | SicK | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4267.png" + }, + { + "id": "4268", + "name": "Sticker | SicK (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4268.png" + }, + { + "id": "4269", + "name": "Sticker | SicK (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4269.png" + }, + { + "id": "4270", + "name": "Sticker | dephh | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4270.png" + }, + { + "id": "4271", + "name": "Sticker | dephh (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4271.png" + }, + { + "id": "4272", + "name": "Sticker | dephh (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4272.png" + }, + { + "id": "4273", + "name": "Sticker | ShahZaM | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4273.png" + }, + { + "id": "4274", + "name": "Sticker | ShahZaM (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4274.png" + }, + { + "id": "4275", + "name": "Sticker | ShahZaM (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4275.png" + }, + { + "id": "4276", + "name": "Sticker | oBo | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4276.png" + }, + { + "id": "4277", + "name": "Sticker | oBo (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4277.png" + }, + { + "id": "4278", + "name": "Sticker | oBo (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4278.png" + }, + { + "id": "4279", + "name": "Sticker | DeadFox | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4279.png" + }, + { + "id": "4280", + "name": "Sticker | DeadFox (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4280.png" + }, + { + "id": "4281", + "name": "Sticker | DeadFox (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4281.png" + }, + { + "id": "4282", + "name": "Sticker | loWel | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4282.png" + }, + { + "id": "4283", + "name": "Sticker | loWel (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4283.png" + }, + { + "id": "4284", + "name": "Sticker | loWel (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4284.png" + }, + { + "id": "4285", + "name": "Sticker | ANGE1 | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4285.png" + }, + { + "id": "4286", + "name": "Sticker | ANGE1 (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4286.png" + }, + { + "id": "4287", + "name": "Sticker | ANGE1 (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4287.png" + }, + { + "id": "4288", + "name": "Sticker | ISSAA | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4288.png" + }, + { + "id": "4289", + "name": "Sticker | ISSAA (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4289.png" + }, + { + "id": "4290", + "name": "Sticker | ISSAA (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4290.png" + }, + { + "id": "4291", + "name": "Sticker | oskar | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4291.png" + }, + { + "id": "4292", + "name": "Sticker | oskar (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4292.png" + }, + { + "id": "4293", + "name": "Sticker | oskar (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4293.png" + }, + { + "id": "4294", + "name": "Sticker | AdreN | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4294.png" + }, + { + "id": "4295", + "name": "Sticker | AdreN (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4295.png" + }, + { + "id": "4296", + "name": "Sticker | AdreN (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4296.png" + }, + { + "id": "4297", + "name": "Sticker | Jame | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4297.png" + }, + { + "id": "4298", + "name": "Sticker | Jame (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4298.png" + }, + { + "id": "4299", + "name": "Sticker | Jame (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4299.png" + }, + { + "id": "4300", + "name": "Sticker | qikert | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4300.png" + }, + { + "id": "4301", + "name": "Sticker | qikert (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4301.png" + }, + { + "id": "4302", + "name": "Sticker | qikert (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4302.png" + }, + { + "id": "4303", + "name": "Sticker | buster | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4303.png" + }, + { + "id": "4304", + "name": "Sticker | buster (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4304.png" + }, + { + "id": "4305", + "name": "Sticker | buster (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4305.png" + }, + { + "id": "4306", + "name": "Sticker | SANJI | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4306.png" + }, + { + "id": "4307", + "name": "Sticker | SANJI (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4307.png" + }, + { + "id": "4308", + "name": "Sticker | SANJI (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4308.png" + }, + { + "id": "4309", + "name": "Sticker | JaCkz | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4309.png" + }, + { + "id": "4310", + "name": "Sticker | JaCkz (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4310.png" + }, + { + "id": "4311", + "name": "Sticker | JaCkz (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4311.png" + }, + { + "id": "4312", + "name": "Sticker | shox | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4312.png" + }, + { + "id": "4313", + "name": "Sticker | shox (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4313.png" + }, + { + "id": "4314", + "name": "Sticker | shox (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4314.png" + }, + { + "id": "4315", + "name": "Sticker | kennyS | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4315.png" + }, + { + "id": "4316", + "name": "Sticker | kennyS (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4316.png" + }, + { + "id": "4317", + "name": "Sticker | kennyS (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4317.png" + }, + { + "id": "4318", + "name": "Sticker | Lucky | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4318.png" + }, + { + "id": "4319", + "name": "Sticker | Lucky (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4319.png" + }, + { + "id": "4320", + "name": "Sticker | Lucky (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4320.png" + }, + { + "id": "4321", + "name": "Sticker | AmaNEk | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4321.png" + }, + { + "id": "4322", + "name": "Sticker | AmaNEk (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4322.png" + }, + { + "id": "4323", + "name": "Sticker | AmaNEk (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4323.png" + }, + { + "id": "4324", + "name": "Sticker | NBK- | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4324.png" + }, + { + "id": "4325", + "name": "Sticker | NBK- (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4325.png" + }, + { + "id": "4326", + "name": "Sticker | NBK- (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4326.png" + }, + { + "id": "4327", + "name": "Sticker | apEX | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4327.png" + }, + { + "id": "4328", + "name": "Sticker | apEX (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4328.png" + }, + { + "id": "4329", + "name": "Sticker | apEX (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4329.png" + }, + { + "id": "4330", + "name": "Sticker | ALEX | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4330.png" + }, + { + "id": "4331", + "name": "Sticker | ALEX (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4331.png" + }, + { + "id": "4332", + "name": "Sticker | ALEX (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4332.png" + }, + { + "id": "4333", + "name": "Sticker | RpK | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4333.png" + }, + { + "id": "4334", + "name": "Sticker | RpK (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4334.png" + }, + { + "id": "4335", + "name": "Sticker | RpK (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4335.png" + }, + { + "id": "4336", + "name": "Sticker | ZywOo | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4336.png" + }, + { + "id": "4337", + "name": "Sticker | ZywOo (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4337.png" + }, + { + "id": "4338", + "name": "Sticker | ZywOo (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4338.png" + }, + { + "id": "4339", + "name": "Sticker | Sico | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4339.png" + }, + { + "id": "4340", + "name": "Sticker | Sico (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4340.png" + }, + { + "id": "4341", + "name": "Sticker | Sico (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4341.png" + }, + { + "id": "4342", + "name": "Sticker | dexter | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4342.png" + }, + { + "id": "4343", + "name": "Sticker | dexter (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4343.png" + }, + { + "id": "4344", + "name": "Sticker | dexter (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4344.png" + }, + { + "id": "4345", + "name": "Sticker | erkaSt | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4345.png" + }, + { + "id": "4346", + "name": "Sticker | erkaSt (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4346.png" + }, + { + "id": "4347", + "name": "Sticker | erkaSt (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4347.png" + }, + { + "id": "4348", + "name": "Sticker | malta | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4348.png" + }, + { + "id": "4349", + "name": "Sticker | malta (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4349.png" + }, + { + "id": "4350", + "name": "Sticker | malta (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4350.png" + }, + { + "id": "4351", + "name": "Sticker | DickStacy | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4351.png" + }, + { + "id": "4352", + "name": "Sticker | DickStacy (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4352.png" + }, + { + "id": "4353", + "name": "Sticker | DickStacy (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4353.png" + }, + { + "id": "4354", + "name": "Sticker | chrisJ | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4354.png" + }, + { + "id": "4355", + "name": "Sticker | chrisJ (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4355.png" + }, + { + "id": "4356", + "name": "Sticker | chrisJ (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4356.png" + }, + { + "id": "4357", + "name": "Sticker | karrigan | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4357.png" + }, + { + "id": "4358", + "name": "Sticker | karrigan (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4358.png" + }, + { + "id": "4359", + "name": "Sticker | karrigan (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4359.png" + }, + { + "id": "4360", + "name": "Sticker | ropz | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4360.png" + }, + { + "id": "4361", + "name": "Sticker | ropz (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4361.png" + }, + { + "id": "4362", + "name": "Sticker | ropz (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4362.png" + }, + { + "id": "4363", + "name": "Sticker | frozen | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4363.png" + }, + { + "id": "4364", + "name": "Sticker | frozen (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4364.png" + }, + { + "id": "4365", + "name": "Sticker | frozen (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4365.png" + }, + { + "id": "4366", + "name": "Sticker | woxic | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4366.png" + }, + { + "id": "4367", + "name": "Sticker | woxic (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4367.png" + }, + { + "id": "4368", + "name": "Sticker | woxic (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4368.png" + }, + { + "id": "4369", + "name": "Sticker | FL1T | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4369.png" + }, + { + "id": "4370", + "name": "Sticker | FL1T (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4370.png" + }, + { + "id": "4371", + "name": "Sticker | FL1T (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4371.png" + }, + { + "id": "4372", + "name": "Sticker | Jerry | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4372.png" + }, + { + "id": "4373", + "name": "Sticker | Jerry (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4373.png" + }, + { + "id": "4374", + "name": "Sticker | Jerry (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4374.png" + }, + { + "id": "4375", + "name": "Sticker | almazer | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4375.png" + }, + { + "id": "4376", + "name": "Sticker | almazer (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4376.png" + }, + { + "id": "4377", + "name": "Sticker | almazer (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4377.png" + }, + { + "id": "4378", + "name": "Sticker | xsepower | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4378.png" + }, + { + "id": "4379", + "name": "Sticker | xsepower (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4379.png" + }, + { + "id": "4380", + "name": "Sticker | xsepower (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4380.png" + }, + { + "id": "4381", + "name": "Sticker | facecrack | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4381.png" + }, + { + "id": "4382", + "name": "Sticker | facecrack (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4382.png" + }, + { + "id": "4383", + "name": "Sticker | facecrack (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4383.png" + }, + { + "id": "4384", + "name": "Sticker | tarik | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4384.png" + }, + { + "id": "4385", + "name": "Sticker | tarik (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4385.png" + }, + { + "id": "4386", + "name": "Sticker | tarik (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4386.png" + }, + { + "id": "4387", + "name": "Sticker | stanislaw | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4387.png" + }, + { + "id": "4388", + "name": "Sticker | stanislaw (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4388.png" + }, + { + "id": "4389", + "name": "Sticker | stanislaw (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4389.png" + }, + { + "id": "4390", + "name": "Sticker | Brehze | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4390.png" + }, + { + "id": "4391", + "name": "Sticker | Brehze (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4391.png" + }, + { + "id": "4392", + "name": "Sticker | Brehze (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4392.png" + }, + { + "id": "4393", + "name": "Sticker | Ethan | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4393.png" + }, + { + "id": "4394", + "name": "Sticker | Ethan (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4394.png" + }, + { + "id": "4395", + "name": "Sticker | Ethan (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4395.png" + }, + { + "id": "4396", + "name": "Sticker | CeRq | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4396.png" + }, + { + "id": "4397", + "name": "Sticker | CeRq (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4397.png" + }, + { + "id": "4398", + "name": "Sticker | CeRq (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4398.png" + }, + { + "id": "4399", + "name": "Sticker | Summer | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4399.png" + }, + { + "id": "4400", + "name": "Sticker | Summer (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4400.png" + }, + { + "id": "4401", + "name": "Sticker | Summer (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4401.png" + }, + { + "id": "4402", + "name": "Sticker | somebody | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4402.png" + }, + { + "id": "4403", + "name": "Sticker | somebody (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4403.png" + }, + { + "id": "4404", + "name": "Sticker | somebody (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4404.png" + }, + { + "id": "4405", + "name": "Sticker | Attacker | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4405.png" + }, + { + "id": "4406", + "name": "Sticker | Attacker (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4406.png" + }, + { + "id": "4407", + "name": "Sticker | Attacker (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4407.png" + }, + { + "id": "4408", + "name": "Sticker | BnTeT | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4408.png" + }, + { + "id": "4409", + "name": "Sticker | BnTeT (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4409.png" + }, + { + "id": "4410", + "name": "Sticker | BnTeT (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4410.png" + }, + { + "id": "4411", + "name": "Sticker | Freeman | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4411.png" + }, + { + "id": "4412", + "name": "Sticker | Freeman (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4412.png" + }, + { + "id": "4413", + "name": "Sticker | Freeman (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4413.png" + }, + { + "id": "4414", + "name": "Sticker | VINI | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4414.png" + }, + { + "id": "4415", + "name": "Sticker | VINI (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4415.png" + }, + { + "id": "4416", + "name": "Sticker | VINI (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4416.png" + }, + { + "id": "4417", + "name": "Sticker | ableJ | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4417.png" + }, + { + "id": "4418", + "name": "Sticker | ableJ (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4418.png" + }, + { + "id": "4419", + "name": "Sticker | ableJ (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4419.png" + }, + { + "id": "4420", + "name": "Sticker | arT | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4420.png" + }, + { + "id": "4421", + "name": "Sticker | arT (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4421.png" + }, + { + "id": "4422", + "name": "Sticker | arT (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4422.png" + }, + { + "id": "4423", + "name": "Sticker | KSCERATO | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4423.png" + }, + { + "id": "4424", + "name": "Sticker | KSCERATO (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4424.png" + }, + { + "id": "4425", + "name": "Sticker | KSCERATO (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4425.png" + }, + { + "id": "4426", + "name": "Sticker | yuurih | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4426.png" + }, + { + "id": "4427", + "name": "Sticker | yuurih (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4427.png" + }, + { + "id": "4428", + "name": "Sticker | yuurih (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4428.png" + }, + { + "id": "4429", + "name": "Sticker | nexa | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4429.png" + }, + { + "id": "4430", + "name": "Sticker | nexa (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4430.png" + }, + { + "id": "4431", + "name": "Sticker | nexa (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4431.png" + }, + { + "id": "4432", + "name": "Sticker | huNter- | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4432.png" + }, + { + "id": "4433", + "name": "Sticker | huNter- (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4433.png" + }, + { + "id": "4434", + "name": "Sticker | huNter- (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4434.png" + }, + { + "id": "4435", + "name": "Sticker | ottoNd | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4435.png" + }, + { + "id": "4436", + "name": "Sticker | ottoNd (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4436.png" + }, + { + "id": "4437", + "name": "Sticker | ottoNd (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4437.png" + }, + { + "id": "4438", + "name": "Sticker | LETN1 | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4438.png" + }, + { + "id": "4439", + "name": "Sticker | LETN1 (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4439.png" + }, + { + "id": "4440", + "name": "Sticker | LETN1 (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4440.png" + }, + { + "id": "4441", + "name": "Sticker | EspiranTo | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4441.png" + }, + { + "id": "4442", + "name": "Sticker | EspiranTo (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4442.png" + }, + { + "id": "4443", + "name": "Sticker | EspiranTo (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4443.png" + }, + { + "id": "4444", + "name": "Sticker | t0rick | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4444.png" + }, + { + "id": "4445", + "name": "Sticker | t0rick (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4445.png" + }, + { + "id": "4446", + "name": "Sticker | t0rick (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4446.png" + }, + { + "id": "4447", + "name": "Sticker | neaLaN | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4447.png" + }, + { + "id": "4448", + "name": "Sticker | neaLaN (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4448.png" + }, + { + "id": "4449", + "name": "Sticker | neaLaN (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4449.png" + }, + { + "id": "4450", + "name": "Sticker | Keoz | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4450.png" + }, + { + "id": "4451", + "name": "Sticker | Keoz (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4451.png" + }, + { + "id": "4452", + "name": "Sticker | Keoz (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4452.png" + }, + { + "id": "4453", + "name": "Sticker | Ramz1kBO$$ | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4453.png" + }, + { + "id": "4454", + "name": "Sticker | Ramz1kBO$$ (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4454.png" + }, + { + "id": "4455", + "name": "Sticker | Ramz1kBO$$ (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4455.png" + }, + { + "id": "4456", + "name": "Sticker | Perfecto | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4456.png" + }, + { + "id": "4457", + "name": "Sticker | Perfecto (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4457.png" + }, + { + "id": "4458", + "name": "Sticker | Perfecto (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4458.png" + }, + { + "id": "4459", + "name": "Sticker | gade | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4459.png" + }, + { + "id": "4460", + "name": "Sticker | gade (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4460.png" + }, + { + "id": "4461", + "name": "Sticker | gade (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4461.png" + }, + { + "id": "4462", + "name": "Sticker | Kjaerbye | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4462.png" + }, + { + "id": "4463", + "name": "Sticker | Kjaerbye (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4463.png" + }, + { + "id": "4464", + "name": "Sticker | Kjaerbye (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4464.png" + }, + { + "id": "4465", + "name": "Sticker | JUGi | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4465.png" + }, + { + "id": "4466", + "name": "Sticker | JUGi (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4466.png" + }, + { + "id": "4467", + "name": "Sticker | JUGi (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4467.png" + }, + { + "id": "4468", + "name": "Sticker | aizy | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4468.png" + }, + { + "id": "4469", + "name": "Sticker | aizy (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4469.png" + }, + { + "id": "4470", + "name": "Sticker | aizy (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4470.png" + }, + { + "id": "4471", + "name": "Sticker | v4lde | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4471.png" + }, + { + "id": "4472", + "name": "Sticker | v4lde (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4472.png" + }, + { + "id": "4473", + "name": "Sticker | v4lde (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4473.png" + }, + { + "id": "4474", + "name": "Sticker | svyat | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4474.png" + }, + { + "id": "4475", + "name": "Sticker | svyat (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4475.png" + }, + { + "id": "4476", + "name": "Sticker | svyat (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4476.png" + }, + { + "id": "4477", + "name": "Sticker | kinqie | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4477.png" + }, + { + "id": "4478", + "name": "Sticker | kinqie (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4478.png" + }, + { + "id": "4479", + "name": "Sticker | kinqie (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4479.png" + }, + { + "id": "4480", + "name": "Sticker | Forester | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4480.png" + }, + { + "id": "4481", + "name": "Sticker | Forester (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4481.png" + }, + { + "id": "4482", + "name": "Sticker | Forester (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4482.png" + }, + { + "id": "4483", + "name": "Sticker | Krad | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4483.png" + }, + { + "id": "4484", + "name": "Sticker | Krad (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4484.png" + }, + { + "id": "4485", + "name": "Sticker | Krad (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4485.png" + }, + { + "id": "4486", + "name": "Sticker | speed4k | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4486.png" + }, + { + "id": "4487", + "name": "Sticker | speed4k (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4487.png" + }, + { + "id": "4488", + "name": "Sticker | speed4k (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4488.png" + }, + { + "id": "4489", + "name": "Sticker | kNgV- | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4489.png" + }, + { + "id": "4490", + "name": "Sticker | kNgV- (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4490.png" + }, + { + "id": "4491", + "name": "Sticker | kNgV- (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4491.png" + }, + { + "id": "4492", + "name": "Sticker | DeStiNy | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4492.png" + }, + { + "id": "4493", + "name": "Sticker | DeStiNy (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4493.png" + }, + { + "id": "4494", + "name": "Sticker | DeStiNy (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4494.png" + }, + { + "id": "4495", + "name": "Sticker | yel | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4495.png" + }, + { + "id": "4496", + "name": "Sticker | yel (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4496.png" + }, + { + "id": "4497", + "name": "Sticker | yel (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4497.png" + }, + { + "id": "4498", + "name": "Sticker | chelo | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4498.png" + }, + { + "id": "4499", + "name": "Sticker | chelo (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4499.png" + }, + { + "id": "4500", + "name": "Sticker | chelo (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4500.png" + }, + { + "id": "4501", + "name": "Sticker | xand | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4501.png" + }, + { + "id": "4502", + "name": "Sticker | xand (Foil) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4502.png" + }, + { + "id": "4503", + "name": "Sticker | xand (Gold) | Berlin 2019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4503.png" + }, + { + "id": "4504", + "name": "Sticker | Counter-Tech", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4504.png" + }, + { + "id": "4505", + "name": "Sticker | Gold Web", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4505.png" + }, + { + "id": "4506", + "name": "Sticker | Mastermind", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4506.png" + }, + { + "id": "4507", + "name": "Sticker | Shattered Web", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4507.png" + }, + { + "id": "4508", + "name": "Sticker | Terrorist-Tech", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4508.png" + }, + { + "id": "4509", + "name": "Sticker | Web Stuck", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4509.png" + }, + { + "id": "4510", + "name": "Sticker | Mastermind (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4510.png" + }, + { + "id": "4511", + "name": "Sticker | Web Stuck (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4511.png" + }, + { + "id": "4512", + "name": "Sticker | Gold Web (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4512.png" + }, + { + "id": "4513", + "name": "Sticker | CS20 Classic (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4513.png" + }, + { + "id": "4514", + "name": "Sticker | Too Old for This", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4514.png" + }, + { + "id": "4515", + "name": "Sticker | Pixel Avenger", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4515.png" + }, + { + "id": "4516", + "name": "Sticker | Aztec", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4516.png" + }, + { + "id": "4517", + "name": "Sticker | Too Late", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4517.png" + }, + { + "id": "4518", + "name": "Sticker | Friend Code", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4518.png" + }, + { + "id": "4519", + "name": "Sticker | Clutchman (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4519.png" + }, + { + "id": "4520", + "name": "Sticker | All Hail the King (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4520.png" + }, + { + "id": "4521", + "name": "Sticker | Door Stuck (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4521.png" + }, + { + "id": "4522", + "name": "Sticker | Dragon Lore (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4522.png" + }, + { + "id": "4523", + "name": "Sticker | Guinea Pig (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4523.png" + }, + { + "id": "4524", + "name": "Sticker | Obey SAS", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4524.png" + }, + { + "id": "4525", + "name": "Sticker | Fire in the Hole (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4525.png" + }, + { + "id": "4526", + "name": "Sticker | Nuke Beast", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4526.png" + }, + { + "id": "4527", + "name": "Sticker | Mondays", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4527.png" + }, + { + "id": "4528", + "name": "Sticker | Boost (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4528.png" + }, + { + "id": "4529", + "name": "Sticker | Rush 4x20 (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4529.png" + }, + { + "id": "4530", + "name": "Sticker | Separate Pixels", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4530.png" + }, + { + "id": "4531", + "name": "Sticker | Surf's Up", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4531.png" + }, + { + "id": "4532", + "name": "Sticker | Temperance", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4532.png" + }, + { + "id": "4533", + "name": "Sticker | Assassin", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4533.png" + }, + { + "id": "4534", + "name": "Sticker | Chief", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4534.png" + }, + { + "id": "4535", + "name": "Sticker | Dirty Money", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4535.png" + }, + { + "id": "4536", + "name": "Sticker | Extermination", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4536.png" + }, + { + "id": "4537", + "name": "Sticker | Incineration", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4537.png" + }, + { + "id": "4538", + "name": "Sticker | Killjoy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4538.png" + }, + { + "id": "4539", + "name": "Sticker | Legendary", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4539.png" + }, + { + "id": "4540", + "name": "Sticker | Mister Chief", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4540.png" + }, + { + "id": "4541", + "name": "Sticker | Noble", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4541.png" + }, + { + "id": "4542", + "name": "Sticker | Spartan", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4542.png" + }, + { + "id": "4543", + "name": "Sticker | Assassin (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4543.png" + }, + { + "id": "4544", + "name": "Sticker | Chief (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4544.png" + }, + { + "id": "4545", + "name": "Sticker | Incineration (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4545.png" + }, + { + "id": "4546", + "name": "Sticker | Killjoy (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4546.png" + }, + { + "id": "4547", + "name": "Sticker | Noble (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4547.png" + }, + { + "id": "4548", + "name": "Sticker | Chief (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4548.png" + }, + { + "id": "4549", + "name": "Sticker | Legendary (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4549.png" + }, + { + "id": "4577", + "name": "Sticker | Blinky", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4577.png" + }, + { + "id": "4580", + "name": "Sticker | Chompers", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4580.png" + }, + { + "id": "4590", + "name": "Sticker | Fly High", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4590.png" + }, + { + "id": "4601", + "name": "Sticker | Last Vance", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4601.png" + }, + { + "id": "4602", + "name": "Sticker | Vortigaunt the Painter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4602.png" + }, + { + "id": "4603", + "name": "Sticker | Big Hugs", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4603.png" + }, + { + "id": "4604", + "name": "Sticker | Combine Helmet", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4604.png" + }, + { + "id": "4605", + "name": "Sticker | Gnome Mercy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4605.png" + }, + { + "id": "4606", + "name": "Sticker | Greetings", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4606.png" + }, + { + "id": "4607", + "name": "Sticker | Lambda", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4607.png" + }, + { + "id": "4608", + "name": "Sticker | Vortigaunt (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4608.png" + }, + { + "id": "4609", + "name": "Sticker | Big Hugs (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4609.png" + }, + { + "id": "4610", + "name": "Sticker | Combine Helmet (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4610.png" + }, + { + "id": "4611", + "name": "Sticker | Lambda (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4611.png" + }, + { + "id": "4612", + "name": "Sticker | Last Vance (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4612.png" + }, + { + "id": "4613", + "name": "Sticker | Health (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4613.png" + }, + { + "id": "4614", + "name": "Sticker | Adepta Sororitas", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4614.png" + }, + { + "id": "4615", + "name": "Sticker | Aeldari Avatar", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4615.png" + }, + { + "id": "4616", + "name": "Sticker | Full Buy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4616.png" + }, + { + "id": "4617", + "name": "Sticker | Heresy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4617.png" + }, + { + "id": "4618", + "name": "Sticker | Necron", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4618.png" + }, + { + "id": "4619", + "name": "Sticker | Ork Waaagh!", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4619.png" + }, + { + "id": "4620", + "name": "Sticker | Primaris Keychain", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4620.png" + }, + { + "id": "4621", + "name": "Sticker | Repulsor", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4621.png" + }, + { + "id": "4622", + "name": "Sticker | Space Marine", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4622.png" + }, + { + "id": "4623", + "name": "Sticker | Tyranids Ravener", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4623.png" + }, + { + "id": "4624", + "name": "Sticker | Heresy (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4624.png" + }, + { + "id": "4625", + "name": "Sticker | Lord of Skulls (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4625.png" + }, + { + "id": "4626", + "name": "Sticker | Space Marine (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4626.png" + }, + { + "id": "4627", + "name": "Sticker | Tyranids Hive Tyrant (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4627.png" + }, + { + "id": "4628", + "name": "Sticker | Bloodthirster (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4628.png" + }, + { + "id": "4629", + "name": "Sticker | Chaos Marine (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4629.png" + }, + { + "id": "4630", + "name": "Sticker | Emperor (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4630.png" + }, + { + "id": "4647", + "name": "Sticker | From The Deep", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4647.png" + }, + { + "id": "4648", + "name": "Sticker | Glare", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4648.png" + }, + { + "id": "4649", + "name": "Sticker | Hello AK-47", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4649.png" + }, + { + "id": "4650", + "name": "Sticker | Hello AK-47 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4650.png" + }, + { + "id": "4651", + "name": "Sticker | Hello AUG", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4651.png" + }, + { + "id": "4652", + "name": "Sticker | Hello AUG (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4652.png" + }, + { + "id": "4653", + "name": "Sticker | Hello AWP", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4653.png" + }, + { + "id": "4654", + "name": "Sticker | Hello AWP (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4654.png" + }, + { + "id": "4655", + "name": "Sticker | Hello PP-Bizon", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4655.png" + }, + { + "id": "4656", + "name": "Sticker | Hello PP-Bizon (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4656.png" + }, + { + "id": "4657", + "name": "Sticker | Hello CZ75-Auto", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4657.png" + }, + { + "id": "4658", + "name": "Sticker | Hello CZ75-Auto (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4658.png" + }, + { + "id": "4659", + "name": "Sticker | Hello FAMAS", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4659.png" + }, + { + "id": "4660", + "name": "Sticker | Hello FAMAS (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4660.png" + }, + { + "id": "4661", + "name": "Sticker | Hello Galil AR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4661.png" + }, + { + "id": "4662", + "name": "Sticker | Hello Galil AR (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4662.png" + }, + { + "id": "4663", + "name": "Sticker | Hello M4A1-S", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4663.png" + }, + { + "id": "4664", + "name": "Sticker | Hello M4A1-S (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4664.png" + }, + { + "id": "4665", + "name": "Sticker | Hello M4A4", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4665.png" + }, + { + "id": "4666", + "name": "Sticker | Hello M4A4 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4666.png" + }, + { + "id": "4667", + "name": "Sticker | Hello MAC-10", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4667.png" + }, + { + "id": "4668", + "name": "Sticker | Hello MAC-10 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4668.png" + }, + { + "id": "4669", + "name": "Sticker | Hello MP7", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4669.png" + }, + { + "id": "4670", + "name": "Sticker | Hello MP7 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4670.png" + }, + { + "id": "4671", + "name": "Sticker | Hello MP9", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4671.png" + }, + { + "id": "4672", + "name": "Sticker | Hello MP9 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4672.png" + }, + { + "id": "4673", + "name": "Sticker | Hello P90", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4673.png" + }, + { + "id": "4674", + "name": "Sticker | Hello P90 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4674.png" + }, + { + "id": "4675", + "name": "Sticker | Hello SG 553", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4675.png" + }, + { + "id": "4676", + "name": "Sticker | Hello SG 553 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4676.png" + }, + { + "id": "4677", + "name": "Sticker | Hello UMP-45", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4677.png" + }, + { + "id": "4678", + "name": "Sticker | Hello UMP-45 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4678.png" + }, + { + "id": "4679", + "name": "Sticker | Hello XM1014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4679.png" + }, + { + "id": "4680", + "name": "Sticker | Hello XM1014 (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4680.png" + }, + { + "id": "4681", + "name": "Sticker | Ancient Beast", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4681.png" + }, + { + "id": "4682", + "name": "Sticker | Ancient Marauder", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4682.png" + }, + { + "id": "4683", + "name": "Sticker | Ancient Protector", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4683.png" + }, + { + "id": "4684", + "name": "Sticker | Badge of Service", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4684.png" + }, + { + "id": "4685", + "name": "Sticker | Battle Scarred", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4685.png" + }, + { + "id": "4686", + "name": "Sticker | Broken Fang", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4686.png" + }, + { + "id": "4687", + "name": "Sticker | Coiled Strike", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4687.png" + }, + { + "id": "4688", + "name": "Sticker | Enemy Spotted", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4688.png" + }, + { + "id": "4689", + "name": "Sticker | Stalking Prey", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4689.png" + }, + { + "id": "4690", + "name": "Sticker | Stone Scales", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4690.png" + }, + { + "id": "4691", + "name": "Sticker | Battle Scarred (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4691.png" + }, + { + "id": "4692", + "name": "Sticker | Broken Fang (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4692.png" + }, + { + "id": "4693", + "name": "Sticker | Coiled Strike (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4693.png" + }, + { + "id": "4694", + "name": "Sticker | Enemy Spotted (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4694.png" + }, + { + "id": "4695", + "name": "Sticker | Ancient Beast (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4695.png" + }, + { + "id": "4696", + "name": "Sticker | Stone Scales (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4696.png" + }, + { + "id": "4698", + "name": "Sticker | Lefty (CT)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4698.png" + }, + { + "id": "4701", + "name": "Sticker | Vitality | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4701.png" + }, + { + "id": "4702", + "name": "Sticker | Vitality (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4702.png" + }, + { + "id": "4703", + "name": "Sticker | Vitality (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4703.png" + }, + { + "id": "4704", + "name": "Sticker | Vitality (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4704.png" + }, + { + "id": "4705", + "name": "Sticker | Heroic | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4705.png" + }, + { + "id": "4706", + "name": "Sticker | Heroic (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4706.png" + }, + { + "id": "4707", + "name": "Sticker | Heroic (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4707.png" + }, + { + "id": "4708", + "name": "Sticker | Heroic (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4708.png" + }, + { + "id": "4709", + "name": "Sticker | Ninjas in Pyjamas | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4709.png" + }, + { + "id": "4710", + "name": "Sticker | Ninjas in Pyjamas (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4710.png" + }, + { + "id": "4711", + "name": "Sticker | Ninjas in Pyjamas (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4711.png" + }, + { + "id": "4712", + "name": "Sticker | Ninjas in Pyjamas (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4712.png" + }, + { + "id": "4713", + "name": "Sticker | Astralis | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4713.png" + }, + { + "id": "4714", + "name": "Sticker | Astralis (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4714.png" + }, + { + "id": "4715", + "name": "Sticker | Astralis (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4715.png" + }, + { + "id": "4716", + "name": "Sticker | Astralis (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4716.png" + }, + { + "id": "4717", + "name": "Sticker | BIG | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4717.png" + }, + { + "id": "4718", + "name": "Sticker | BIG (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4718.png" + }, + { + "id": "4719", + "name": "Sticker | BIG (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4719.png" + }, + { + "id": "4720", + "name": "Sticker | BIG (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4720.png" + }, + { + "id": "4721", + "name": "Sticker | Fnatic | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4721.png" + }, + { + "id": "4722", + "name": "Sticker | Fnatic (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4722.png" + }, + { + "id": "4723", + "name": "Sticker | Fnatic (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4723.png" + }, + { + "id": "4724", + "name": "Sticker | Fnatic (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4724.png" + }, + { + "id": "4725", + "name": "Sticker | G2 | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4725.png" + }, + { + "id": "4726", + "name": "Sticker | G2 (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4726.png" + }, + { + "id": "4727", + "name": "Sticker | G2 (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4727.png" + }, + { + "id": "4728", + "name": "Sticker | G2 (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4728.png" + }, + { + "id": "4729", + "name": "Sticker | OG | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4729.png" + }, + { + "id": "4730", + "name": "Sticker | OG (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4730.png" + }, + { + "id": "4731", + "name": "Sticker | OG (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4731.png" + }, + { + "id": "4732", + "name": "Sticker | OG (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4732.png" + }, + { + "id": "4733", + "name": "Sticker | GODSENT | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4733.png" + }, + { + "id": "4734", + "name": "Sticker | GODSENT (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4734.png" + }, + { + "id": "4735", + "name": "Sticker | GODSENT (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4735.png" + }, + { + "id": "4736", + "name": "Sticker | GODSENT (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4736.png" + }, + { + "id": "4737", + "name": "Sticker | FaZe | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4737.png" + }, + { + "id": "4738", + "name": "Sticker | FaZe (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4738.png" + }, + { + "id": "4739", + "name": "Sticker | FaZe (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4739.png" + }, + { + "id": "4740", + "name": "Sticker | FaZe (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4740.png" + }, + { + "id": "4741", + "name": "Sticker | North | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4741.png" + }, + { + "id": "4742", + "name": "Sticker | North (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4742.png" + }, + { + "id": "4743", + "name": "Sticker | North (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4743.png" + }, + { + "id": "4744", + "name": "Sticker | North (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4744.png" + }, + { + "id": "4745", + "name": "Sticker | Spirit | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4745.png" + }, + { + "id": "4746", + "name": "Sticker | Spirit (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4746.png" + }, + { + "id": "4747", + "name": "Sticker | Spirit (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4747.png" + }, + { + "id": "4748", + "name": "Sticker | Spirit (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4748.png" + }, + { + "id": "4749", + "name": "Sticker | Natus Vincere | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4749.png" + }, + { + "id": "4750", + "name": "Sticker | Natus Vincere (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4750.png" + }, + { + "id": "4751", + "name": "Sticker | Natus Vincere (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4751.png" + }, + { + "id": "4752", + "name": "Sticker | Natus Vincere (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4752.png" + }, + { + "id": "4753", + "name": "Sticker | Nemiga | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4753.png" + }, + { + "id": "4754", + "name": "Sticker | Nemiga (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4754.png" + }, + { + "id": "4755", + "name": "Sticker | Nemiga (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4755.png" + }, + { + "id": "4756", + "name": "Sticker | Nemiga (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4756.png" + }, + { + "id": "4757", + "name": "Sticker | Virtus.pro | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4757.png" + }, + { + "id": "4758", + "name": "Sticker | Virtus.pro (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4758.png" + }, + { + "id": "4759", + "name": "Sticker | Virtus.pro (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4759.png" + }, + { + "id": "4760", + "name": "Sticker | Virtus.pro (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4760.png" + }, + { + "id": "4761", + "name": "Sticker | ESPADA | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4761.png" + }, + { + "id": "4762", + "name": "Sticker | ESPADA (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4762.png" + }, + { + "id": "4763", + "name": "Sticker | ESPADA (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4763.png" + }, + { + "id": "4764", + "name": "Sticker | ESPADA (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4764.png" + }, + { + "id": "4765", + "name": "Sticker | Evil Geniuses | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4765.png" + }, + { + "id": "4766", + "name": "Sticker | Evil Geniuses (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4766.png" + }, + { + "id": "4767", + "name": "Sticker | Evil Geniuses (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4767.png" + }, + { + "id": "4768", + "name": "Sticker | Evil Geniuses (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4768.png" + }, + { + "id": "4769", + "name": "Sticker | 100 Thieves | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4769.png" + }, + { + "id": "4770", + "name": "Sticker | 100 Thieves (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4770.png" + }, + { + "id": "4771", + "name": "Sticker | 100 Thieves (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4771.png" + }, + { + "id": "4772", + "name": "Sticker | 100 Thieves (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4772.png" + }, + { + "id": "4773", + "name": "Sticker | FURIA | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4773.png" + }, + { + "id": "4774", + "name": "Sticker | FURIA (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4774.png" + }, + { + "id": "4775", + "name": "Sticker | FURIA (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4775.png" + }, + { + "id": "4776", + "name": "Sticker | FURIA (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4776.png" + }, + { + "id": "4777", + "name": "Sticker | Liquid | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4777.png" + }, + { + "id": "4778", + "name": "Sticker | Liquid (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4778.png" + }, + { + "id": "4779", + "name": "Sticker | Liquid (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4779.png" + }, + { + "id": "4780", + "name": "Sticker | Liquid (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4780.png" + }, + { + "id": "4781", + "name": "Sticker | Gen.G | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4781.png" + }, + { + "id": "4782", + "name": "Sticker | Gen.G (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4782.png" + }, + { + "id": "4783", + "name": "Sticker | Gen.G (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4783.png" + }, + { + "id": "4784", + "name": "Sticker | Gen.G (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4784.png" + }, + { + "id": "4785", + "name": "Sticker | Boom | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4785.png" + }, + { + "id": "4786", + "name": "Sticker | Boom (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4786.png" + }, + { + "id": "4787", + "name": "Sticker | Boom (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4787.png" + }, + { + "id": "4788", + "name": "Sticker | Boom (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4788.png" + }, + { + "id": "4789", + "name": "Sticker | Renegades | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4789.png" + }, + { + "id": "4790", + "name": "Sticker | Renegades (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4790.png" + }, + { + "id": "4791", + "name": "Sticker | Renegades (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4791.png" + }, + { + "id": "4792", + "name": "Sticker | Renegades (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4792.png" + }, + { + "id": "4793", + "name": "Sticker | TYLOO | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4793.png" + }, + { + "id": "4794", + "name": "Sticker | TYLOO (Holo) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4794.png" + }, + { + "id": "4795", + "name": "Sticker | TYLOO (Foil) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4795.png" + }, + { + "id": "4796", + "name": "Sticker | TYLOO (Gold) | 2020 RMR", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4796.png" + }, + { + "id": "4797", + "name": "Sticker | Poorly Drawn Ava", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4797.png" + }, + { + "id": "4798", + "name": "Sticker | Poorly Drawn Balkan", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4798.png" + }, + { + "id": "4799", + "name": "Sticker | Poorly Drawn Bloody Darryl", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4799.png" + }, + { + "id": "4800", + "name": "Sticker | Poorly Drawn Chicken", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4800.png" + }, + { + "id": "4801", + "name": "Sticker | Poorly Drawn FBI", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4801.png" + }, + { + "id": "4802", + "name": "Sticker | Poorly Drawn IDF", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4802.png" + }, + { + "id": "4803", + "name": "Sticker | Poorly Drawn Leet Crew", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4803.png" + }, + { + "id": "4804", + "name": "Sticker | Poorly Drawn Number K", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4804.png" + }, + { + "id": "4805", + "name": "Sticker | Poorly Drawn SAS", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4805.png" + }, + { + "id": "4806", + "name": "Sticker | Poorly Drawn Terrorist", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4806.png" + }, + { + "id": "4807", + "name": "Sticker | Poorly Drawn Ava (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4807.png" + }, + { + "id": "4808", + "name": "Sticker | Poorly Drawn Balkan (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4808.png" + }, + { + "id": "4809", + "name": "Sticker | Poorly Drawn Bloody Darryl (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4809.png" + }, + { + "id": "4810", + "name": "Sticker | Poorly Drawn Chicken (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4810.png" + }, + { + "id": "4811", + "name": "Sticker | Poorly Drawn FBI (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4811.png" + }, + { + "id": "4812", + "name": "Sticker | Poorly Drawn IDF (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4812.png" + }, + { + "id": "4813", + "name": "Sticker | Poorly Drawn Leet Crew (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4813.png" + }, + { + "id": "4814", + "name": "Sticker | Poorly Drawn Number K (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4814.png" + }, + { + "id": "4815", + "name": "Sticker | Poorly Drawn SAS (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4815.png" + }, + { + "id": "4816", + "name": "Sticker | Poorly Drawn Terrorist (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4816.png" + }, + { + "id": "4817", + "name": "Sticker | Orange Gnar", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4817.png" + }, + { + "id": "4818", + "name": "Sticker | Blue Gnar", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4818.png" + }, + { + "id": "4819", + "name": "Sticker | Green Gnar", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4819.png" + }, + { + "id": "4820", + "name": "Sticker | Purple Gnar", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4820.png" + }, + { + "id": "4821", + "name": "Sticker | Yellow Jaggyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4821.png" + }, + { + "id": "4822", + "name": "Sticker | Pink Jaggyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4822.png" + }, + { + "id": "4823", + "name": "Sticker | Purple Jaggyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4823.png" + }, + { + "id": "4824", + "name": "Sticker | Black Jaggyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4824.png" + }, + { + "id": "4825", + "name": "Sticker | Blue Lethal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4825.png" + }, + { + "id": "4826", + "name": "Sticker | Green Lethal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4826.png" + }, + { + "id": "4827", + "name": "Sticker | Fade Lethal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4827.png" + }, + { + "id": "4828", + "name": "Sticker | Yellow Lethal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4828.png" + }, + { + "id": "4829", + "name": "Sticker | Green Shark Shooter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4829.png" + }, + { + "id": "4830", + "name": "Sticker | Black Shark Shooter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4830.png" + }, + { + "id": "4831", + "name": "Sticker | Blue Shark Shooter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4831.png" + }, + { + "id": "4832", + "name": "Sticker | Red Shark Shooter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4832.png" + }, + { + "id": "4833", + "name": "Sticker | Green Cyclawps", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4833.png" + }, + { + "id": "4834", + "name": "Sticker | Red Cyclawps", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4834.png" + }, + { + "id": "4835", + "name": "Sticker | Purple Cyclawps", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4835.png" + }, + { + "id": "4836", + "name": "Sticker | Yellow Cyclawps", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4836.png" + }, + { + "id": "4837", + "name": "Sticker | Purple Bombster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4837.png" + }, + { + "id": "4838", + "name": "Sticker | White Bombster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4838.png" + }, + { + "id": "4839", + "name": "Sticker | Green Bombster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4839.png" + }, + { + "id": "4840", + "name": "Sticker | Yellow Bombster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4840.png" + }, + { + "id": "4841", + "name": "Sticker | Watermelon Tentaskull", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4841.png" + }, + { + "id": "4842", + "name": "Sticker | Blood Moon Tentaskull", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4842.png" + }, + { + "id": "4843", + "name": "Sticker | Sunset Ocean Tentaskull", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4843.png" + }, + { + "id": "4844", + "name": "Sticker | Toxic Tentaskull", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4844.png" + }, + { + "id": "4845", + "name": "Sticker | Watermelon Stabbyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4845.png" + }, + { + "id": "4846", + "name": "Sticker | Miami Stabbyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4846.png" + }, + { + "id": "4847", + "name": "Sticker | After Hours Stabbyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4847.png" + }, + { + "id": "4848", + "name": "Sticker | Ocean Sunset Stabbyfish", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4848.png" + }, + { + "id": "4849", + "name": "Sticker | Miami Wave Rider", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4849.png" + }, + { + "id": "4850", + "name": "Sticker | Blood Moon Wave Rider", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4850.png" + }, + { + "id": "4851", + "name": "Sticker | Toxic Wave Rider", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4851.png" + }, + { + "id": "4852", + "name": "Sticker | Fools Gold Wave Rider", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4852.png" + }, + { + "id": "4853", + "name": "Sticker | Candy Buttery (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4853.png" + }, + { + "id": "4854", + "name": "Sticker | Flame Buttery (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4854.png" + }, + { + "id": "4855", + "name": "Sticker | Watermelon Buttery (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4855.png" + }, + { + "id": "4856", + "name": "Sticker | Miami Buttery (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4856.png" + }, + { + "id": "4857", + "name": "Sticker | Opal Flick (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4857.png" + }, + { + "id": "4858", + "name": "Sticker | Ocean Sunset Flick (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4858.png" + }, + { + "id": "4859", + "name": "Sticker | Mercury Flick (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4859.png" + }, + { + "id": "4860", + "name": "Sticker | Miami Flick (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4860.png" + }, + { + "id": "4861", + "name": "Sticker | Watermelon Flow (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4861.png" + }, + { + "id": "4862", + "name": "Sticker | Toxic Flow (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4862.png" + }, + { + "id": "4863", + "name": "Sticker | Cotton Candy Flow (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4863.png" + }, + { + "id": "4864", + "name": "Sticker | Miami Flow (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4864.png" + }, + { + "id": "4865", + "name": "Sticker | Miami Skill Surf (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4865.png" + }, + { + "id": "4866", + "name": "Sticker | Ocean Sunset Skill Surf (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4866.png" + }, + { + "id": "4867", + "name": "Sticker | Coral Skill Surf (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4867.png" + }, + { + "id": "4868", + "name": "Sticker | Bubble Gum Skill Surf (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4868.png" + }, + { + "id": "4869", + "name": "Sticker | Abalone Strafe (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4869.png" + }, + { + "id": "4870", + "name": "Sticker | Watermelon Strafe (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4870.png" + }, + { + "id": "4871", + "name": "Sticker | Mood Ring Strafe (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4871.png" + }, + { + "id": "4872", + "name": "Sticker | Neon Opal Strafe (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4872.png" + }, + { + "id": "4873", + "name": "Sticker | Flame Tier6 (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4873.png" + }, + { + "id": "4874", + "name": "Sticker | Watermelon Tier6 (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4874.png" + }, + { + "id": "4875", + "name": "Sticker | Miami Tier6 (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4875.png" + }, + { + "id": "4876", + "name": "Sticker | Forge Tier6 (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4876.png" + }, + { + "id": "4877", + "name": "Sticker | Sticker Bomb Surf Ava (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4877.png" + }, + { + "id": "4878", + "name": "Sticker | Dragon Lore Surf Ava (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4878.png" + }, + { + "id": "4879", + "name": "Sticker | Akihabara Accept Surf Ava (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4879.png" + }, + { + "id": "4880", + "name": "Sticker | Dark Water Surf Ava (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4880.png" + }, + { + "id": "4881", + "name": "Sticker | Ultraviolet Poison Frog (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4881.png" + }, + { + "id": "4882", + "name": "Sticker | Clutch Or Kick", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4882.png" + }, + { + "id": "4883", + "name": "Sticker | Dr. Dazzles", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4883.png" + }, + { + "id": "4884", + "name": "Sticker | EZ", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4884.png" + }, + { + "id": "4885", + "name": "Sticker | Fast Banana", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4885.png" + }, + { + "id": "4886", + "name": "Sticker | Hard Carry", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4886.png" + }, + { + "id": "4887", + "name": "Sticker | Kitted Out", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4887.png" + }, + { + "id": "4888", + "name": "Sticker | Nademan", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4888.png" + }, + { + "id": "4889", + "name": "Sticker | No Time", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4889.png" + }, + { + "id": "4890", + "name": "Sticker | Retro Leet", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4890.png" + }, + { + "id": "4891", + "name": "Sticker | Speedy T", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4891.png" + }, + { + "id": "4892", + "name": "Sticker | This Is Fine (CT)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4892.png" + }, + { + "id": "4893", + "name": "Sticker | War", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4893.png" + }, + { + "id": "4894", + "name": "Sticker | Cyber Romanov (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4894.png" + }, + { + "id": "4895", + "name": "Sticker | Eye Contact (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4895.png" + }, + { + "id": "4896", + "name": "Sticker | Handle With Care (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4896.png" + }, + { + "id": "4897", + "name": "Sticker | I See You (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4897.png" + }, + { + "id": "4898", + "name": "Sticker | Nice Clutch (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4898.png" + }, + { + "id": "4899", + "name": "Sticker | Runtime (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4899.png" + }, + { + "id": "4900", + "name": "Sticker | Ace Devil (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4900.png" + }, + { + "id": "4901", + "name": "Sticker | Bullet Hell (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4901.png" + }, + { + "id": "4902", + "name": "Sticker | Purrurists (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4902.png" + }, + { + "id": "4903", + "name": "Sticker | Battlefield Portal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4903.png" + }, + { + "id": "4904", + "name": "Sticker | BF 2042", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4904.png" + }, + { + "id": "4905", + "name": "Sticker | Come Here Boy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4905.png" + }, + { + "id": "4906", + "name": "Sticker | Forty Two", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4906.png" + }, + { + "id": "4907", + "name": "Sticker | Knives Out", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4907.png" + }, + { + "id": "4908", + "name": "Sticker | Mr. Chompy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4908.png" + }, + { + "id": "4909", + "name": "Sticker | No Pats", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4909.png" + }, + { + "id": "4910", + "name": "Sticker | PAC AI", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4910.png" + }, + { + "id": "4911", + "name": "Sticker | PTFO", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4911.png" + }, + { + "id": "4912", + "name": "Sticker | Ready For Battle", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4912.png" + }, + { + "id": "4913", + "name": "Sticker | No Pats (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4913.png" + }, + { + "id": "4914", + "name": "Sticker | PTFO (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4914.png" + }, + { + "id": "4915", + "name": "Sticker | Ready For Battle (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4915.png" + }, + { + "id": "4916", + "name": "Sticker | Wingsuit (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4916.png" + }, + { + "id": "4917", + "name": "Sticker | Mr. Chompy (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4917.png" + }, + { + "id": "4918", + "name": "Sticker | PAC AI (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4918.png" + }, + { + "id": "4919", + "name": "Sticker | Tornado Chaos (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4919.png" + }, + { + "id": "4920", + "name": "Sticker | Lore Poison Frog (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4920.png" + }, + { + "id": "4921", + "name": "Sticker | Crimson Web Poison Frog (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4921.png" + }, + { + "id": "4922", + "name": "Sticker | Doppler Poison Frog (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4922.png" + }, + { + "id": "4923", + "name": "Sticker | Seeing Red", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4923.png" + }, + { + "id": "4924", + "name": "Sticker | Dead Eye", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4924.png" + }, + { + "id": "4925", + "name": "Sticker | Great Wave", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4925.png" + }, + { + "id": "4926", + "name": "Sticker | Gutted", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4926.png" + }, + { + "id": "4927", + "name": "Sticker | Kill Count", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4927.png" + }, + { + "id": "4928", + "name": "Sticker | Operation Riptide", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4928.png" + }, + { + "id": "4929", + "name": "Sticker | Liquid Fire", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4929.png" + }, + { + "id": "4930", + "name": "Sticker | Chicken of the Sky", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4930.png" + }, + { + "id": "4931", + "name": "Sticker | Dead Eye (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4931.png" + }, + { + "id": "4932", + "name": "Sticker | Great Wave (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4932.png" + }, + { + "id": "4933", + "name": "Sticker | Kill Count (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4933.png" + }, + { + "id": "4934", + "name": "Sticker | Liquid Fire (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4934.png" + }, + { + "id": "4935", + "name": "Sticker | Seeing Red (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4935.png" + }, + { + "id": "4936", + "name": "Sticker | Great Wave (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4936.png" + }, + { + "id": "4950", + "name": "Sticker | Sticker Bomb Surf K (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4950.png" + }, + { + "id": "4951", + "name": "Sticker | Hypnotic Surf K (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4951.png" + }, + { + "id": "4952", + "name": "Sticker | Fire Serpent Surf K (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4952.png" + }, + { + "id": "4953", + "name": "Sticker | Blaze Surf K (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4953.png" + }, + { + "id": "4954", + "name": "Sticker | Ninjas in Pyjamas | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4954.png" + }, + { + "id": "4955", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4955.png" + }, + { + "id": "4956", + "name": "Sticker | Ninjas in Pyjamas (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4956.png" + }, + { + "id": "4957", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4957.png" + }, + { + "id": "4958", + "name": "Sticker | FURIA | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4958.png" + }, + { + "id": "4959", + "name": "Sticker | FURIA (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4959.png" + }, + { + "id": "4960", + "name": "Sticker | FURIA (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4960.png" + }, + { + "id": "4961", + "name": "Sticker | FURIA (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4961.png" + }, + { + "id": "4962", + "name": "Sticker | Natus Vincere | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4962.png" + }, + { + "id": "4963", + "name": "Sticker | Natus Vincere (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4963.png" + }, + { + "id": "4964", + "name": "Sticker | Natus Vincere (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4964.png" + }, + { + "id": "4965", + "name": "Sticker | Natus Vincere (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4965.png" + }, + { + "id": "4966", + "name": "Sticker | Vitality | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4966.png" + }, + { + "id": "4967", + "name": "Sticker | Vitality (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4967.png" + }, + { + "id": "4968", + "name": "Sticker | Vitality (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4968.png" + }, + { + "id": "4969", + "name": "Sticker | Vitality (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4969.png" + }, + { + "id": "4970", + "name": "Sticker | Team Liquid | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4970.png" + }, + { + "id": "4971", + "name": "Sticker | Team Liquid (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4971.png" + }, + { + "id": "4972", + "name": "Sticker | Team Liquid (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4972.png" + }, + { + "id": "4973", + "name": "Sticker | Team Liquid (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4973.png" + }, + { + "id": "4974", + "name": "Sticker | Gambit Gaming | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4974.png" + }, + { + "id": "4975", + "name": "Sticker | Gambit Gaming (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4975.png" + }, + { + "id": "4976", + "name": "Sticker | Gambit Gaming (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4976.png" + }, + { + "id": "4977", + "name": "Sticker | Gambit Gaming (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4977.png" + }, + { + "id": "4978", + "name": "Sticker | G2 Esports | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4978.png" + }, + { + "id": "4979", + "name": "Sticker | G2 Esports (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4979.png" + }, + { + "id": "4980", + "name": "Sticker | G2 Esports (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4980.png" + }, + { + "id": "4981", + "name": "Sticker | G2 Esports (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4981.png" + }, + { + "id": "4982", + "name": "Sticker | Evil Geniuses | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4982.png" + }, + { + "id": "4983", + "name": "Sticker | Evil Geniuses (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4983.png" + }, + { + "id": "4984", + "name": "Sticker | Evil Geniuses (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4984.png" + }, + { + "id": "4985", + "name": "Sticker | Evil Geniuses (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4985.png" + }, + { + "id": "4986", + "name": "Sticker | Team Spirit | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4986.png" + }, + { + "id": "4987", + "name": "Sticker | Team Spirit (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4987.png" + }, + { + "id": "4988", + "name": "Sticker | Team Spirit (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4988.png" + }, + { + "id": "4989", + "name": "Sticker | Team Spirit (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4989.png" + }, + { + "id": "4990", + "name": "Sticker | Astralis | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4990.png" + }, + { + "id": "4991", + "name": "Sticker | Astralis (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4991.png" + }, + { + "id": "4992", + "name": "Sticker | Astralis (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4992.png" + }, + { + "id": "4993", + "name": "Sticker | Astralis (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4993.png" + }, + { + "id": "4994", + "name": "Sticker | paiN Gaming | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4994.png" + }, + { + "id": "4995", + "name": "Sticker | paiN Gaming (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4995.png" + }, + { + "id": "4996", + "name": "Sticker | paiN Gaming (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4996.png" + }, + { + "id": "4997", + "name": "Sticker | paiN Gaming (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4997.png" + }, + { + "id": "4998", + "name": "Sticker | ENCE | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4998.png" + }, + { + "id": "4999", + "name": "Sticker | ENCE (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-4999.png" + }, + { + "id": "5000", + "name": "Sticker | ENCE (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5000.png" + }, + { + "id": "5001", + "name": "Sticker | ENCE (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5001.png" + }, + { + "id": "5002", + "name": "Sticker | BIG | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5002.png" + }, + { + "id": "5003", + "name": "Sticker | BIG (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5003.png" + }, + { + "id": "5004", + "name": "Sticker | BIG (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5004.png" + }, + { + "id": "5005", + "name": "Sticker | BIG (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5005.png" + }, + { + "id": "5006", + "name": "Sticker | Movistar Riders | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5006.png" + }, + { + "id": "5007", + "name": "Sticker | Movistar Riders (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5007.png" + }, + { + "id": "5008", + "name": "Sticker | Movistar Riders (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5008.png" + }, + { + "id": "5009", + "name": "Sticker | Movistar Riders (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5009.png" + }, + { + "id": "5010", + "name": "Sticker | Heroic | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5010.png" + }, + { + "id": "5011", + "name": "Sticker | Heroic (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5011.png" + }, + { + "id": "5012", + "name": "Sticker | Heroic (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5012.png" + }, + { + "id": "5013", + "name": "Sticker | Heroic (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5013.png" + }, + { + "id": "5014", + "name": "Sticker | MOUZ | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5014.png" + }, + { + "id": "5015", + "name": "Sticker | MOUZ (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5015.png" + }, + { + "id": "5016", + "name": "Sticker | MOUZ (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5016.png" + }, + { + "id": "5017", + "name": "Sticker | MOUZ (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5017.png" + }, + { + "id": "5018", + "name": "Sticker | Sharks Esports | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5018.png" + }, + { + "id": "5019", + "name": "Sticker | Sharks Esports (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5019.png" + }, + { + "id": "5020", + "name": "Sticker | Sharks Esports (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5020.png" + }, + { + "id": "5021", + "name": "Sticker | Sharks Esports (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5021.png" + }, + { + "id": "5022", + "name": "Sticker | Tyloo | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5022.png" + }, + { + "id": "5023", + "name": "Sticker | Tyloo (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5023.png" + }, + { + "id": "5024", + "name": "Sticker | Tyloo (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5024.png" + }, + { + "id": "5025", + "name": "Sticker | Tyloo (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5025.png" + }, + { + "id": "5026", + "name": "Sticker | Renegades | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5026.png" + }, + { + "id": "5027", + "name": "Sticker | Renegades (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5027.png" + }, + { + "id": "5028", + "name": "Sticker | Renegades (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5028.png" + }, + { + "id": "5029", + "name": "Sticker | Renegades (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5029.png" + }, + { + "id": "5030", + "name": "Sticker | Entropiq | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5030.png" + }, + { + "id": "5031", + "name": "Sticker | Entropiq (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5031.png" + }, + { + "id": "5032", + "name": "Sticker | Entropiq (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5032.png" + }, + { + "id": "5033", + "name": "Sticker | Entropiq (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5033.png" + }, + { + "id": "5034", + "name": "Sticker | GODSENT | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5034.png" + }, + { + "id": "5035", + "name": "Sticker | GODSENT (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5035.png" + }, + { + "id": "5036", + "name": "Sticker | GODSENT (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5036.png" + }, + { + "id": "5037", + "name": "Sticker | GODSENT (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5037.png" + }, + { + "id": "5038", + "name": "Sticker | Virtus.Pro | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5038.png" + }, + { + "id": "5039", + "name": "Sticker | Virtus.Pro (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5039.png" + }, + { + "id": "5040", + "name": "Sticker | Virtus.Pro (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5040.png" + }, + { + "id": "5041", + "name": "Sticker | Virtus.Pro (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5041.png" + }, + { + "id": "5042", + "name": "Sticker | Copenhagen Flames | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5042.png" + }, + { + "id": "5043", + "name": "Sticker | Copenhagen Flames (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5043.png" + }, + { + "id": "5044", + "name": "Sticker | Copenhagen Flames (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5044.png" + }, + { + "id": "5045", + "name": "Sticker | Copenhagen Flames (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5045.png" + }, + { + "id": "5046", + "name": "Sticker | FaZe Clan | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5046.png" + }, + { + "id": "5047", + "name": "Sticker | FaZe Clan (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5047.png" + }, + { + "id": "5048", + "name": "Sticker | FaZe Clan (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5048.png" + }, + { + "id": "5049", + "name": "Sticker | FaZe Clan (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5049.png" + }, + { + "id": "5050", + "name": "Sticker | PGL | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5050.png" + }, + { + "id": "5051", + "name": "Sticker | PGL (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5051.png" + }, + { + "id": "5052", + "name": "Sticker | PGL (Foil) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5052.png" + }, + { + "id": "5053", + "name": "Sticker | PGL (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5053.png" + }, + { + "id": "5129", + "name": "Sticker | s1mple | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5129.png" + }, + { + "id": "5130", + "name": "Sticker | s1mple (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5130.png" + }, + { + "id": "5131", + "name": "Sticker | s1mple (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5131.png" + }, + { + "id": "5132", + "name": "Sticker | Perfecto | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5132.png" + }, + { + "id": "5133", + "name": "Sticker | Perfecto (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5133.png" + }, + { + "id": "5134", + "name": "Sticker | Perfecto (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5134.png" + }, + { + "id": "5135", + "name": "Sticker | Boombl4 | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5135.png" + }, + { + "id": "5136", + "name": "Sticker | Boombl4 (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5136.png" + }, + { + "id": "5137", + "name": "Sticker | Boombl4 (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5137.png" + }, + { + "id": "5138", + "name": "Sticker | b1t | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5138.png" + }, + { + "id": "5139", + "name": "Sticker | b1t (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5139.png" + }, + { + "id": "5140", + "name": "Sticker | b1t (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5140.png" + }, + { + "id": "5141", + "name": "Sticker | electroNic | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5141.png" + }, + { + "id": "5142", + "name": "Sticker | electroNic (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5142.png" + }, + { + "id": "5143", + "name": "Sticker | electroNic (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5143.png" + }, + { + "id": "5144", + "name": "Sticker | NiKo | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5144.png" + }, + { + "id": "5145", + "name": "Sticker | NiKo (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5145.png" + }, + { + "id": "5146", + "name": "Sticker | NiKo (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5146.png" + }, + { + "id": "5147", + "name": "Sticker | nexa | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5147.png" + }, + { + "id": "5148", + "name": "Sticker | nexa (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5148.png" + }, + { + "id": "5149", + "name": "Sticker | nexa (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5149.png" + }, + { + "id": "5150", + "name": "Sticker | huNter- | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5150.png" + }, + { + "id": "5151", + "name": "Sticker | huNter- (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5151.png" + }, + { + "id": "5152", + "name": "Sticker | huNter- (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5152.png" + }, + { + "id": "5153", + "name": "Sticker | JACKZ | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5153.png" + }, + { + "id": "5154", + "name": "Sticker | JACKZ (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5154.png" + }, + { + "id": "5155", + "name": "Sticker | JACKZ (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5155.png" + }, + { + "id": "5156", + "name": "Sticker | AMANEK | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5156.png" + }, + { + "id": "5157", + "name": "Sticker | AMANEK (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5157.png" + }, + { + "id": "5158", + "name": "Sticker | AMANEK (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5158.png" + }, + { + "id": "5159", + "name": "Sticker | TeSeS | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5159.png" + }, + { + "id": "5160", + "name": "Sticker | TeSeS (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5160.png" + }, + { + "id": "5161", + "name": "Sticker | TeSeS (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5161.png" + }, + { + "id": "5162", + "name": "Sticker | stavn | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5162.png" + }, + { + "id": "5163", + "name": "Sticker | stavn (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5163.png" + }, + { + "id": "5164", + "name": "Sticker | stavn (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5164.png" + }, + { + "id": "5165", + "name": "Sticker | sjuush | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5165.png" + }, + { + "id": "5166", + "name": "Sticker | sjuush (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5166.png" + }, + { + "id": "5167", + "name": "Sticker | sjuush (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5167.png" + }, + { + "id": "5168", + "name": "Sticker | refrezh | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5168.png" + }, + { + "id": "5169", + "name": "Sticker | refrezh (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5169.png" + }, + { + "id": "5170", + "name": "Sticker | refrezh (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5170.png" + }, + { + "id": "5171", + "name": "Sticker | cadiaN | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5171.png" + }, + { + "id": "5172", + "name": "Sticker | cadiaN (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5172.png" + }, + { + "id": "5173", + "name": "Sticker | cadiaN (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5173.png" + }, + { + "id": "5174", + "name": "Sticker | nafany | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5174.png" + }, + { + "id": "5175", + "name": "Sticker | nafany (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5175.png" + }, + { + "id": "5176", + "name": "Sticker | nafany (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5176.png" + }, + { + "id": "5177", + "name": "Sticker | Ax1Le | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5177.png" + }, + { + "id": "5178", + "name": "Sticker | Ax1Le (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5178.png" + }, + { + "id": "5179", + "name": "Sticker | Ax1Le (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5179.png" + }, + { + "id": "5180", + "name": "Sticker | interz | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5180.png" + }, + { + "id": "5181", + "name": "Sticker | interz (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5181.png" + }, + { + "id": "5182", + "name": "Sticker | interz (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5182.png" + }, + { + "id": "5183", + "name": "Sticker | sh1ro | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5183.png" + }, + { + "id": "5184", + "name": "Sticker | sh1ro (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5184.png" + }, + { + "id": "5185", + "name": "Sticker | sh1ro (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5185.png" + }, + { + "id": "5186", + "name": "Sticker | HObbit | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5186.png" + }, + { + "id": "5187", + "name": "Sticker | HObbit (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5187.png" + }, + { + "id": "5188", + "name": "Sticker | HObbit (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5188.png" + }, + { + "id": "5189", + "name": "Sticker | drop | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5189.png" + }, + { + "id": "5190", + "name": "Sticker | drop (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5190.png" + }, + { + "id": "5191", + "name": "Sticker | drop (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5191.png" + }, + { + "id": "5192", + "name": "Sticker | KSCERATO | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5192.png" + }, + { + "id": "5193", + "name": "Sticker | KSCERATO (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5193.png" + }, + { + "id": "5194", + "name": "Sticker | KSCERATO (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5194.png" + }, + { + "id": "5195", + "name": "Sticker | VINI | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5195.png" + }, + { + "id": "5196", + "name": "Sticker | VINI (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5196.png" + }, + { + "id": "5197", + "name": "Sticker | VINI (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5197.png" + }, + { + "id": "5198", + "name": "Sticker | arT | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5198.png" + }, + { + "id": "5199", + "name": "Sticker | arT (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5199.png" + }, + { + "id": "5200", + "name": "Sticker | arT (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5200.png" + }, + { + "id": "5201", + "name": "Sticker | yuurih | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5201.png" + }, + { + "id": "5202", + "name": "Sticker | yuurih (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5202.png" + }, + { + "id": "5203", + "name": "Sticker | yuurih (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5203.png" + }, + { + "id": "5204", + "name": "Sticker | Qikert | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5204.png" + }, + { + "id": "5205", + "name": "Sticker | Qikert (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5205.png" + }, + { + "id": "5206", + "name": "Sticker | Qikert (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5206.png" + }, + { + "id": "5207", + "name": "Sticker | buster | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5207.png" + }, + { + "id": "5208", + "name": "Sticker | buster (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5208.png" + }, + { + "id": "5209", + "name": "Sticker | buster (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5209.png" + }, + { + "id": "5210", + "name": "Sticker | YEKINDAR | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5210.png" + }, + { + "id": "5211", + "name": "Sticker | YEKINDAR (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5211.png" + }, + { + "id": "5212", + "name": "Sticker | YEKINDAR (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5212.png" + }, + { + "id": "5213", + "name": "Sticker | Jame | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5213.png" + }, + { + "id": "5214", + "name": "Sticker | Jame (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5214.png" + }, + { + "id": "5215", + "name": "Sticker | Jame (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5215.png" + }, + { + "id": "5216", + "name": "Sticker | FL1T | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5216.png" + }, + { + "id": "5217", + "name": "Sticker | FL1T (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5217.png" + }, + { + "id": "5218", + "name": "Sticker | FL1T (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5218.png" + }, + { + "id": "5219", + "name": "Sticker | hampus | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5219.png" + }, + { + "id": "5220", + "name": "Sticker | hampus (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5220.png" + }, + { + "id": "5221", + "name": "Sticker | hampus (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5221.png" + }, + { + "id": "5222", + "name": "Sticker | LNZ | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5222.png" + }, + { + "id": "5223", + "name": "Sticker | LNZ (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5223.png" + }, + { + "id": "5224", + "name": "Sticker | LNZ (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5224.png" + }, + { + "id": "5225", + "name": "Sticker | REZ | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5225.png" + }, + { + "id": "5226", + "name": "Sticker | REZ (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5226.png" + }, + { + "id": "5227", + "name": "Sticker | REZ (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5227.png" + }, + { + "id": "5228", + "name": "Sticker | Plopski | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5228.png" + }, + { + "id": "5229", + "name": "Sticker | Plopski (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5229.png" + }, + { + "id": "5230", + "name": "Sticker | Plopski (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5230.png" + }, + { + "id": "5231", + "name": "Sticker | device | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5231.png" + }, + { + "id": "5232", + "name": "Sticker | device (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5232.png" + }, + { + "id": "5233", + "name": "Sticker | device (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5233.png" + }, + { + "id": "5234", + "name": "Sticker | ZywOo | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5234.png" + }, + { + "id": "5235", + "name": "Sticker | ZywOo (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5235.png" + }, + { + "id": "5236", + "name": "Sticker | ZywOo (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5236.png" + }, + { + "id": "5237", + "name": "Sticker | misutaaa | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5237.png" + }, + { + "id": "5238", + "name": "Sticker | misutaaa (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5238.png" + }, + { + "id": "5239", + "name": "Sticker | misutaaa (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5239.png" + }, + { + "id": "5240", + "name": "Sticker | Kyojin | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5240.png" + }, + { + "id": "5241", + "name": "Sticker | Kyojin (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5241.png" + }, + { + "id": "5242", + "name": "Sticker | Kyojin (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5242.png" + }, + { + "id": "5243", + "name": "Sticker | shox | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5243.png" + }, + { + "id": "5244", + "name": "Sticker | shox (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5244.png" + }, + { + "id": "5245", + "name": "Sticker | shox (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5245.png" + }, + { + "id": "5246", + "name": "Sticker | apEX | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5246.png" + }, + { + "id": "5247", + "name": "Sticker | apEX (Holo) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5247.png" + }, + { + "id": "5248", + "name": "Sticker | apEX (Gold) | Stockholm 2021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5248.png" + }, + { + "id": "5249", + "name": "Sticker | B Hop", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5249.png" + }, + { + "id": "5250", + "name": "Sticker | Flick Shotter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5250.png" + }, + { + "id": "5251", + "name": "Sticker | Get Clucked", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5251.png" + }, + { + "id": "5252", + "name": "Sticker | I'm Lit", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5252.png" + }, + { + "id": "5253", + "name": "Sticker | Little Mischief", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5253.png" + }, + { + "id": "5254", + "name": "Sticker | Hi, My Game Is", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5254.png" + }, + { + "id": "5255", + "name": "Sticker | Run CT, Run", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5255.png" + }, + { + "id": "5256", + "name": "Sticker | Smoke Criminal", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5256.png" + }, + { + "id": "5257", + "name": "Sticker | Squeaky Door", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5257.png" + }, + { + "id": "5258", + "name": "Sticker | Rat Pack", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5258.png" + }, + { + "id": "5259", + "name": "Sticker | This Is Fine (T)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5259.png" + }, + { + "id": "5260", + "name": "Sticker | Wallbang", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5260.png" + }, + { + "id": "5261", + "name": "Sticker | Flashblack (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5261.png" + }, + { + "id": "5262", + "name": "Sticker | Infinite Diamond (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5262.png" + }, + { + "id": "5263", + "name": "Sticker | Phoenix Balaclava Co. (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5263.png" + }, + { + "id": "5264", + "name": "Sticker | Sneaky Beaky Dept. (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5264.png" + }, + { + "id": "5265", + "name": "Sticker | T Rush (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5265.png" + }, + { + "id": "5266", + "name": "Sticker | V For Victory (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5266.png" + }, + { + "id": "5267", + "name": "Sticker | Face Me (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5267.png" + }, + { + "id": "5268", + "name": "Sticker | Inferno Diorama (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5268.png" + }, + { + "id": "5269", + "name": "Sticker | The Real MVP (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5269.png" + }, + { + "id": "5270", + "name": "Sticker | Rock, Paper, Scissors (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5270.png" + }, + { + "id": "5271", + "name": "Sticker | Heroic | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5271.png" + }, + { + "id": "5272", + "name": "Sticker | Heroic (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5272.png" + }, + { + "id": "5273", + "name": "Sticker | Heroic (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5273.png" + }, + { + "id": "5274", + "name": "Sticker | Heroic (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5274.png" + }, + { + "id": "5275", + "name": "Sticker | Copenhagen Flames | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5275.png" + }, + { + "id": "5276", + "name": "Sticker | Copenhagen Flames (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5276.png" + }, + { + "id": "5277", + "name": "Sticker | Copenhagen Flames (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5277.png" + }, + { + "id": "5278", + "name": "Sticker | Copenhagen Flames (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5278.png" + }, + { + "id": "5279", + "name": "Sticker | BIG | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5279.png" + }, + { + "id": "5280", + "name": "Sticker | BIG (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5280.png" + }, + { + "id": "5281", + "name": "Sticker | BIG (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5281.png" + }, + { + "id": "5282", + "name": "Sticker | BIG (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5282.png" + }, + { + "id": "5283", + "name": "Sticker | Cloud9 | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5283.png" + }, + { + "id": "5284", + "name": "Sticker | Cloud9 (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5284.png" + }, + { + "id": "5285", + "name": "Sticker | Cloud9 (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5285.png" + }, + { + "id": "5286", + "name": "Sticker | Cloud9 (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5286.png" + }, + { + "id": "5287", + "name": "Sticker | FURIA | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5287.png" + }, + { + "id": "5288", + "name": "Sticker | FURIA (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5288.png" + }, + { + "id": "5289", + "name": "Sticker | FURIA (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5289.png" + }, + { + "id": "5290", + "name": "Sticker | FURIA (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5290.png" + }, + { + "id": "5291", + "name": "Sticker | FaZe Clan | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5291.png" + }, + { + "id": "5292", + "name": "Sticker | FaZe Clan (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5292.png" + }, + { + "id": "5293", + "name": "Sticker | FaZe Clan (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5293.png" + }, + { + "id": "5294", + "name": "Sticker | FaZe Clan (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5294.png" + }, + { + "id": "5295", + "name": "Sticker | Ninjas in Pyjamas | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5295.png" + }, + { + "id": "5296", + "name": "Sticker | Ninjas in Pyjamas (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5296.png" + }, + { + "id": "5297", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5297.png" + }, + { + "id": "5298", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5298.png" + }, + { + "id": "5299", + "name": "Sticker | Natus Vincere | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5299.png" + }, + { + "id": "5300", + "name": "Sticker | Natus Vincere (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5300.png" + }, + { + "id": "5301", + "name": "Sticker | Natus Vincere (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5301.png" + }, + { + "id": "5302", + "name": "Sticker | Natus Vincere (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5302.png" + }, + { + "id": "5303", + "name": "Sticker | ENCE | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5303.png" + }, + { + "id": "5304", + "name": "Sticker | ENCE (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5304.png" + }, + { + "id": "5305", + "name": "Sticker | ENCE (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5305.png" + }, + { + "id": "5306", + "name": "Sticker | ENCE (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5306.png" + }, + { + "id": "5307", + "name": "Sticker | G2 Esports | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5307.png" + }, + { + "id": "5308", + "name": "Sticker | G2 Esports (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5308.png" + }, + { + "id": "5309", + "name": "Sticker | G2 Esports (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5309.png" + }, + { + "id": "5310", + "name": "Sticker | G2 Esports (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5310.png" + }, + { + "id": "5311", + "name": "Sticker | forZe eSports | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5311.png" + }, + { + "id": "5312", + "name": "Sticker | forZe eSports (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5312.png" + }, + { + "id": "5313", + "name": "Sticker | forZe eSports (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5313.png" + }, + { + "id": "5314", + "name": "Sticker | forZe eSports (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5314.png" + }, + { + "id": "5315", + "name": "Sticker | Astralis | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5315.png" + }, + { + "id": "5316", + "name": "Sticker | Astralis (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5316.png" + }, + { + "id": "5317", + "name": "Sticker | Astralis (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5317.png" + }, + { + "id": "5318", + "name": "Sticker | Astralis (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5318.png" + }, + { + "id": "5319", + "name": "Sticker | Vitality | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5319.png" + }, + { + "id": "5320", + "name": "Sticker | Vitality (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5320.png" + }, + { + "id": "5321", + "name": "Sticker | Vitality (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5321.png" + }, + { + "id": "5322", + "name": "Sticker | Vitality (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5322.png" + }, + { + "id": "5323", + "name": "Sticker | MIBR | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5323.png" + }, + { + "id": "5324", + "name": "Sticker | MIBR (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5324.png" + }, + { + "id": "5325", + "name": "Sticker | MIBR (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5325.png" + }, + { + "id": "5326", + "name": "Sticker | MIBR (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5326.png" + }, + { + "id": "5327", + "name": "Sticker | Imperial Esports | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5327.png" + }, + { + "id": "5328", + "name": "Sticker | Imperial Esports (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5328.png" + }, + { + "id": "5329", + "name": "Sticker | Imperial Esports (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5329.png" + }, + { + "id": "5330", + "name": "Sticker | Imperial Esports (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5330.png" + }, + { + "id": "5331", + "name": "Sticker | Bad News Eagles | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5331.png" + }, + { + "id": "5332", + "name": "Sticker | Bad News Eagles (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5332.png" + }, + { + "id": "5333", + "name": "Sticker | Bad News Eagles (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5333.png" + }, + { + "id": "5334", + "name": "Sticker | Bad News Eagles (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5334.png" + }, + { + "id": "5335", + "name": "Sticker | Eternal Fire | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5335.png" + }, + { + "id": "5336", + "name": "Sticker | Eternal Fire (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5336.png" + }, + { + "id": "5337", + "name": "Sticker | Eternal Fire (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5337.png" + }, + { + "id": "5338", + "name": "Sticker | Eternal Fire (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5338.png" + }, + { + "id": "5339", + "name": "Sticker | Team Spirit | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5339.png" + }, + { + "id": "5340", + "name": "Sticker | Team Spirit (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5340.png" + }, + { + "id": "5341", + "name": "Sticker | Team Spirit (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5341.png" + }, + { + "id": "5342", + "name": "Sticker | Team Spirit (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5342.png" + }, + { + "id": "5343", + "name": "Sticker | Outsiders | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5343.png" + }, + { + "id": "5344", + "name": "Sticker | Outsiders (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5344.png" + }, + { + "id": "5345", + "name": "Sticker | Outsiders (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5345.png" + }, + { + "id": "5346", + "name": "Sticker | Outsiders (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5346.png" + }, + { + "id": "5347", + "name": "Sticker | Complexity Gaming | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5347.png" + }, + { + "id": "5348", + "name": "Sticker | Complexity Gaming (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5348.png" + }, + { + "id": "5349", + "name": "Sticker | Complexity Gaming (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5349.png" + }, + { + "id": "5350", + "name": "Sticker | Complexity Gaming (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5350.png" + }, + { + "id": "5351", + "name": "Sticker | IHC Esports | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5351.png" + }, + { + "id": "5352", + "name": "Sticker | IHC Esports (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5352.png" + }, + { + "id": "5353", + "name": "Sticker | IHC Esports (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5353.png" + }, + { + "id": "5354", + "name": "Sticker | IHC Esports (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5354.png" + }, + { + "id": "5355", + "name": "Sticker | Renegades | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5355.png" + }, + { + "id": "5356", + "name": "Sticker | Renegades (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5356.png" + }, + { + "id": "5357", + "name": "Sticker | Renegades (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5357.png" + }, + { + "id": "5358", + "name": "Sticker | Renegades (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5358.png" + }, + { + "id": "5359", + "name": "Sticker | Team Liquid | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5359.png" + }, + { + "id": "5360", + "name": "Sticker | Team Liquid (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5360.png" + }, + { + "id": "5361", + "name": "Sticker | Team Liquid (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5361.png" + }, + { + "id": "5362", + "name": "Sticker | Team Liquid (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5362.png" + }, + { + "id": "5363", + "name": "Sticker | 9z Team | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5363.png" + }, + { + "id": "5364", + "name": "Sticker | 9z Team (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5364.png" + }, + { + "id": "5365", + "name": "Sticker | 9z Team (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5365.png" + }, + { + "id": "5366", + "name": "Sticker | 9z Team (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5366.png" + }, + { + "id": "5367", + "name": "Sticker | PGL | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5367.png" + }, + { + "id": "5368", + "name": "Sticker | PGL (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5368.png" + }, + { + "id": "5369", + "name": "Sticker | PGL (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5369.png" + }, + { + "id": "5370", + "name": "Sticker | PGL (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5370.png" + }, + { + "id": "5396", + "name": "Sticker | stavn | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5396.png" + }, + { + "id": "5397", + "name": "Sticker | stavn (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5397.png" + }, + { + "id": "5398", + "name": "Sticker | stavn (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5398.png" + }, + { + "id": "5399", + "name": "Sticker | stavn (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5399.png" + }, + { + "id": "5400", + "name": "Sticker | cadiaN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5400.png" + }, + { + "id": "5401", + "name": "Sticker | cadiaN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5401.png" + }, + { + "id": "5402", + "name": "Sticker | cadiaN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5402.png" + }, + { + "id": "5403", + "name": "Sticker | cadiaN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5403.png" + }, + { + "id": "5404", + "name": "Sticker | TeSeS | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5404.png" + }, + { + "id": "5405", + "name": "Sticker | TeSeS (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5405.png" + }, + { + "id": "5406", + "name": "Sticker | TeSeS (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5406.png" + }, + { + "id": "5407", + "name": "Sticker | TeSeS (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5407.png" + }, + { + "id": "5408", + "name": "Sticker | refrezh | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5408.png" + }, + { + "id": "5409", + "name": "Sticker | refrezh (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5409.png" + }, + { + "id": "5410", + "name": "Sticker | refrezh (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5410.png" + }, + { + "id": "5411", + "name": "Sticker | refrezh (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5411.png" + }, + { + "id": "5412", + "name": "Sticker | sjuush | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5412.png" + }, + { + "id": "5413", + "name": "Sticker | sjuush (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5413.png" + }, + { + "id": "5414", + "name": "Sticker | sjuush (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5414.png" + }, + { + "id": "5415", + "name": "Sticker | sjuush (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5415.png" + }, + { + "id": "5416", + "name": "Sticker | roeJ | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5416.png" + }, + { + "id": "5417", + "name": "Sticker | roeJ (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5417.png" + }, + { + "id": "5418", + "name": "Sticker | roeJ (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5418.png" + }, + { + "id": "5419", + "name": "Sticker | roeJ (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5419.png" + }, + { + "id": "5420", + "name": "Sticker | Zyphon | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5420.png" + }, + { + "id": "5421", + "name": "Sticker | Zyphon (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5421.png" + }, + { + "id": "5422", + "name": "Sticker | Zyphon (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5422.png" + }, + { + "id": "5423", + "name": "Sticker | Zyphon (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5423.png" + }, + { + "id": "5424", + "name": "Sticker | HooXi | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5424.png" + }, + { + "id": "5425", + "name": "Sticker | HooXi (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5425.png" + }, + { + "id": "5426", + "name": "Sticker | HooXi (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5426.png" + }, + { + "id": "5427", + "name": "Sticker | HooXi (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5427.png" + }, + { + "id": "5428", + "name": "Sticker | jabbi | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5428.png" + }, + { + "id": "5429", + "name": "Sticker | jabbi (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5429.png" + }, + { + "id": "5430", + "name": "Sticker | jabbi (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5430.png" + }, + { + "id": "5431", + "name": "Sticker | jabbi (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5431.png" + }, + { + "id": "5432", + "name": "Sticker | nicoodoz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5432.png" + }, + { + "id": "5433", + "name": "Sticker | nicoodoz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5433.png" + }, + { + "id": "5434", + "name": "Sticker | nicoodoz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5434.png" + }, + { + "id": "5435", + "name": "Sticker | nicoodoz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5435.png" + }, + { + "id": "5436", + "name": "Sticker | tabseN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5436.png" + }, + { + "id": "5437", + "name": "Sticker | tabseN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5437.png" + }, + { + "id": "5438", + "name": "Sticker | tabseN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5438.png" + }, + { + "id": "5439", + "name": "Sticker | tabseN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5439.png" + }, + { + "id": "5440", + "name": "Sticker | tiziaN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5440.png" + }, + { + "id": "5441", + "name": "Sticker | tiziaN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5441.png" + }, + { + "id": "5442", + "name": "Sticker | tiziaN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5442.png" + }, + { + "id": "5443", + "name": "Sticker | tiziaN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5443.png" + }, + { + "id": "5444", + "name": "Sticker | faveN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5444.png" + }, + { + "id": "5445", + "name": "Sticker | faveN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5445.png" + }, + { + "id": "5446", + "name": "Sticker | faveN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5446.png" + }, + { + "id": "5447", + "name": "Sticker | faveN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5447.png" + }, + { + "id": "5448", + "name": "Sticker | Krimbo | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5448.png" + }, + { + "id": "5449", + "name": "Sticker | Krimbo (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5449.png" + }, + { + "id": "5450", + "name": "Sticker | Krimbo (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5450.png" + }, + { + "id": "5451", + "name": "Sticker | Krimbo (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5451.png" + }, + { + "id": "5452", + "name": "Sticker | syrsoN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5452.png" + }, + { + "id": "5453", + "name": "Sticker | syrsoN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5453.png" + }, + { + "id": "5454", + "name": "Sticker | syrsoN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5454.png" + }, + { + "id": "5455", + "name": "Sticker | syrsoN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5455.png" + }, + { + "id": "5456", + "name": "Sticker | interz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5456.png" + }, + { + "id": "5457", + "name": "Sticker | interz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5457.png" + }, + { + "id": "5458", + "name": "Sticker | interz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5458.png" + }, + { + "id": "5459", + "name": "Sticker | interz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5459.png" + }, + { + "id": "5460", + "name": "Sticker | sh1ro | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5460.png" + }, + { + "id": "5461", + "name": "Sticker | sh1ro (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5461.png" + }, + { + "id": "5462", + "name": "Sticker | sh1ro (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5462.png" + }, + { + "id": "5463", + "name": "Sticker | sh1ro (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5463.png" + }, + { + "id": "5464", + "name": "Sticker | nafany | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5464.png" + }, + { + "id": "5465", + "name": "Sticker | nafany (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5465.png" + }, + { + "id": "5466", + "name": "Sticker | nafany (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5466.png" + }, + { + "id": "5467", + "name": "Sticker | nafany (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5467.png" + }, + { + "id": "5468", + "name": "Sticker | Ax1Le | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5468.png" + }, + { + "id": "5469", + "name": "Sticker | Ax1Le (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5469.png" + }, + { + "id": "5470", + "name": "Sticker | Ax1Le (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5470.png" + }, + { + "id": "5471", + "name": "Sticker | Ax1Le (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5471.png" + }, + { + "id": "5472", + "name": "Sticker | Hobbit | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5472.png" + }, + { + "id": "5473", + "name": "Sticker | Hobbit (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5473.png" + }, + { + "id": "5474", + "name": "Sticker | Hobbit (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5474.png" + }, + { + "id": "5475", + "name": "Sticker | Hobbit (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5475.png" + }, + { + "id": "5476", + "name": "Sticker | yuurih | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5476.png" + }, + { + "id": "5477", + "name": "Sticker | yuurih (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5477.png" + }, + { + "id": "5478", + "name": "Sticker | yuurih (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5478.png" + }, + { + "id": "5479", + "name": "Sticker | yuurih (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5479.png" + }, + { + "id": "5480", + "name": "Sticker | arT | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5480.png" + }, + { + "id": "5481", + "name": "Sticker | arT (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5481.png" + }, + { + "id": "5482", + "name": "Sticker | arT (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5482.png" + }, + { + "id": "5483", + "name": "Sticker | arT (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5483.png" + }, + { + "id": "5484", + "name": "Sticker | KSCERATO | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5484.png" + }, + { + "id": "5485", + "name": "Sticker | KSCERATO (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5485.png" + }, + { + "id": "5486", + "name": "Sticker | KSCERATO (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5486.png" + }, + { + "id": "5487", + "name": "Sticker | KSCERATO (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5487.png" + }, + { + "id": "5488", + "name": "Sticker | drop | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5488.png" + }, + { + "id": "5489", + "name": "Sticker | drop (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5489.png" + }, + { + "id": "5490", + "name": "Sticker | drop (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5490.png" + }, + { + "id": "5491", + "name": "Sticker | drop (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5491.png" + }, + { + "id": "5492", + "name": "Sticker | saffee | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5492.png" + }, + { + "id": "5493", + "name": "Sticker | saffee (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5493.png" + }, + { + "id": "5494", + "name": "Sticker | saffee (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5494.png" + }, + { + "id": "5495", + "name": "Sticker | saffee (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5495.png" + }, + { + "id": "5496", + "name": "Sticker | rain | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5496.png" + }, + { + "id": "5497", + "name": "Sticker | rain (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5497.png" + }, + { + "id": "5498", + "name": "Sticker | rain (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5498.png" + }, + { + "id": "5499", + "name": "Sticker | rain (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5499.png" + }, + { + "id": "5500", + "name": "Sticker | karrigan | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5500.png" + }, + { + "id": "5501", + "name": "Sticker | karrigan (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5501.png" + }, + { + "id": "5502", + "name": "Sticker | karrigan (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5502.png" + }, + { + "id": "5503", + "name": "Sticker | karrigan (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5503.png" + }, + { + "id": "5504", + "name": "Sticker | Twistzz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5504.png" + }, + { + "id": "5505", + "name": "Sticker | Twistzz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5505.png" + }, + { + "id": "5506", + "name": "Sticker | Twistzz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5506.png" + }, + { + "id": "5507", + "name": "Sticker | Twistzz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5507.png" + }, + { + "id": "5508", + "name": "Sticker | broky | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5508.png" + }, + { + "id": "5509", + "name": "Sticker | broky (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5509.png" + }, + { + "id": "5510", + "name": "Sticker | broky (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5510.png" + }, + { + "id": "5511", + "name": "Sticker | broky (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5511.png" + }, + { + "id": "5512", + "name": "Sticker | ropz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5512.png" + }, + { + "id": "5513", + "name": "Sticker | ropz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5513.png" + }, + { + "id": "5514", + "name": "Sticker | ropz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5514.png" + }, + { + "id": "5515", + "name": "Sticker | ropz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5515.png" + }, + { + "id": "5516", + "name": "Sticker | REZ | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5516.png" + }, + { + "id": "5517", + "name": "Sticker | REZ (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5517.png" + }, + { + "id": "5518", + "name": "Sticker | REZ (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5518.png" + }, + { + "id": "5519", + "name": "Sticker | REZ (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5519.png" + }, + { + "id": "5520", + "name": "Sticker | hampus | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5520.png" + }, + { + "id": "5521", + "name": "Sticker | hampus (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5521.png" + }, + { + "id": "5522", + "name": "Sticker | hampus (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5522.png" + }, + { + "id": "5523", + "name": "Sticker | hampus (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5523.png" + }, + { + "id": "5524", + "name": "Sticker | Plopski | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5524.png" + }, + { + "id": "5525", + "name": "Sticker | Plopski (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5525.png" + }, + { + "id": "5526", + "name": "Sticker | Plopski (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5526.png" + }, + { + "id": "5527", + "name": "Sticker | Plopski (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5527.png" + }, + { + "id": "5528", + "name": "Sticker | es3tag | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5528.png" + }, + { + "id": "5529", + "name": "Sticker | es3tag (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5529.png" + }, + { + "id": "5530", + "name": "Sticker | es3tag (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5530.png" + }, + { + "id": "5531", + "name": "Sticker | es3tag (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5531.png" + }, + { + "id": "5532", + "name": "Sticker | Brollan | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5532.png" + }, + { + "id": "5533", + "name": "Sticker | Brollan (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5533.png" + }, + { + "id": "5534", + "name": "Sticker | Brollan (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5534.png" + }, + { + "id": "5535", + "name": "Sticker | Brollan (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5535.png" + }, + { + "id": "5536", + "name": "Sticker | s1mple | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5536.png" + }, + { + "id": "5537", + "name": "Sticker | s1mple (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5537.png" + }, + { + "id": "5538", + "name": "Sticker | s1mple (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5538.png" + }, + { + "id": "5539", + "name": "Sticker | s1mple (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5539.png" + }, + { + "id": "5540", + "name": "Sticker | Boombl4 | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5540.png" + }, + { + "id": "5541", + "name": "Sticker | Boombl4 (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5541.png" + }, + { + "id": "5542", + "name": "Sticker | Boombl4 (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5542.png" + }, + { + "id": "5543", + "name": "Sticker | Boombl4 (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5543.png" + }, + { + "id": "5544", + "name": "Sticker | Perfecto | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5544.png" + }, + { + "id": "5545", + "name": "Sticker | Perfecto (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5545.png" + }, + { + "id": "5546", + "name": "Sticker | Perfecto (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5546.png" + }, + { + "id": "5547", + "name": "Sticker | Perfecto (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5547.png" + }, + { + "id": "5548", + "name": "Sticker | electronic | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5548.png" + }, + { + "id": "5549", + "name": "Sticker | electronic (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5549.png" + }, + { + "id": "5550", + "name": "Sticker | electronic (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5550.png" + }, + { + "id": "5551", + "name": "Sticker | electronic (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5551.png" + }, + { + "id": "5552", + "name": "Sticker | b1t | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5552.png" + }, + { + "id": "5553", + "name": "Sticker | b1t (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5553.png" + }, + { + "id": "5554", + "name": "Sticker | b1t (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5554.png" + }, + { + "id": "5555", + "name": "Sticker | b1t (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5555.png" + }, + { + "id": "5556", + "name": "Sticker | Snappi | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5556.png" + }, + { + "id": "5557", + "name": "Sticker | Snappi (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5557.png" + }, + { + "id": "5558", + "name": "Sticker | Snappi (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5558.png" + }, + { + "id": "5559", + "name": "Sticker | Snappi (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5559.png" + }, + { + "id": "5560", + "name": "Sticker | dycha | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5560.png" + }, + { + "id": "5561", + "name": "Sticker | dycha (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5561.png" + }, + { + "id": "5562", + "name": "Sticker | dycha (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5562.png" + }, + { + "id": "5563", + "name": "Sticker | dycha (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5563.png" + }, + { + "id": "5564", + "name": "Sticker | Spinx | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5564.png" + }, + { + "id": "5565", + "name": "Sticker | Spinx (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5565.png" + }, + { + "id": "5566", + "name": "Sticker | Spinx (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5566.png" + }, + { + "id": "5567", + "name": "Sticker | Spinx (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5567.png" + }, + { + "id": "5568", + "name": "Sticker | hades | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5568.png" + }, + { + "id": "5569", + "name": "Sticker | hades (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5569.png" + }, + { + "id": "5570", + "name": "Sticker | hades (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5570.png" + }, + { + "id": "5571", + "name": "Sticker | hades (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5571.png" + }, + { + "id": "5572", + "name": "Sticker | maden | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5572.png" + }, + { + "id": "5573", + "name": "Sticker | maden (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5573.png" + }, + { + "id": "5574", + "name": "Sticker | maden (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5574.png" + }, + { + "id": "5575", + "name": "Sticker | maden (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5575.png" + }, + { + "id": "5576", + "name": "Sticker | Aleksib | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5576.png" + }, + { + "id": "5577", + "name": "Sticker | Aleksib (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5577.png" + }, + { + "id": "5578", + "name": "Sticker | Aleksib (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5578.png" + }, + { + "id": "5579", + "name": "Sticker | Aleksib (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5579.png" + }, + { + "id": "5580", + "name": "Sticker | huNter | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5580.png" + }, + { + "id": "5581", + "name": "Sticker | huNter (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5581.png" + }, + { + "id": "5582", + "name": "Sticker | huNter (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5582.png" + }, + { + "id": "5583", + "name": "Sticker | huNter (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5583.png" + }, + { + "id": "5584", + "name": "Sticker | JaCkz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5584.png" + }, + { + "id": "5585", + "name": "Sticker | JaCkz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5585.png" + }, + { + "id": "5586", + "name": "Sticker | JaCkz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5586.png" + }, + { + "id": "5587", + "name": "Sticker | JaCkz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5587.png" + }, + { + "id": "5588", + "name": "Sticker | m0NESY | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5588.png" + }, + { + "id": "5589", + "name": "Sticker | m0NESY (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5589.png" + }, + { + "id": "5590", + "name": "Sticker | m0NESY (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5590.png" + }, + { + "id": "5591", + "name": "Sticker | m0NESY (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5591.png" + }, + { + "id": "5592", + "name": "Sticker | NiKo | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5592.png" + }, + { + "id": "5593", + "name": "Sticker | NiKo (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5593.png" + }, + { + "id": "5594", + "name": "Sticker | NiKo (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5594.png" + }, + { + "id": "5595", + "name": "Sticker | NiKo (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5595.png" + }, + { + "id": "5596", + "name": "Sticker | Jerry | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5596.png" + }, + { + "id": "5597", + "name": "Sticker | Jerry (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5597.png" + }, + { + "id": "5598", + "name": "Sticker | Jerry (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5598.png" + }, + { + "id": "5599", + "name": "Sticker | Jerry (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5599.png" + }, + { + "id": "5600", + "name": "Sticker | zorte | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5600.png" + }, + { + "id": "5601", + "name": "Sticker | zorte (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5601.png" + }, + { + "id": "5602", + "name": "Sticker | zorte (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5602.png" + }, + { + "id": "5603", + "name": "Sticker | zorte (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5603.png" + }, + { + "id": "5604", + "name": "Sticker | KENSi | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5604.png" + }, + { + "id": "5605", + "name": "Sticker | KENSi (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5605.png" + }, + { + "id": "5606", + "name": "Sticker | KENSi (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5606.png" + }, + { + "id": "5607", + "name": "Sticker | KENSi (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5607.png" + }, + { + "id": "5608", + "name": "Sticker | Norwi | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5608.png" + }, + { + "id": "5609", + "name": "Sticker | Norwi (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5609.png" + }, + { + "id": "5610", + "name": "Sticker | Norwi (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5610.png" + }, + { + "id": "5611", + "name": "Sticker | Norwi (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5611.png" + }, + { + "id": "5612", + "name": "Sticker | shalfey | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5612.png" + }, + { + "id": "5613", + "name": "Sticker | shalfey (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5613.png" + }, + { + "id": "5614", + "name": "Sticker | shalfey (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5614.png" + }, + { + "id": "5615", + "name": "Sticker | shalfey (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5615.png" + }, + { + "id": "5616", + "name": "Sticker | gla1ve | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5616.png" + }, + { + "id": "5617", + "name": "Sticker | gla1ve (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5617.png" + }, + { + "id": "5618", + "name": "Sticker | gla1ve (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5618.png" + }, + { + "id": "5619", + "name": "Sticker | gla1ve (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5619.png" + }, + { + "id": "5620", + "name": "Sticker | blameF | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5620.png" + }, + { + "id": "5621", + "name": "Sticker | blameF (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5621.png" + }, + { + "id": "5622", + "name": "Sticker | blameF (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5622.png" + }, + { + "id": "5623", + "name": "Sticker | blameF (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5623.png" + }, + { + "id": "5624", + "name": "Sticker | k0nfig | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5624.png" + }, + { + "id": "5625", + "name": "Sticker | k0nfig (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5625.png" + }, + { + "id": "5626", + "name": "Sticker | k0nfig (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5626.png" + }, + { + "id": "5627", + "name": "Sticker | k0nfig (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5627.png" + }, + { + "id": "5628", + "name": "Sticker | Xyp9x | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5628.png" + }, + { + "id": "5629", + "name": "Sticker | Xyp9x (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5629.png" + }, + { + "id": "5630", + "name": "Sticker | Xyp9x (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5630.png" + }, + { + "id": "5631", + "name": "Sticker | Xyp9x (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5631.png" + }, + { + "id": "5632", + "name": "Sticker | Farlig | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5632.png" + }, + { + "id": "5633", + "name": "Sticker | Farlig (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5633.png" + }, + { + "id": "5634", + "name": "Sticker | Farlig (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5634.png" + }, + { + "id": "5635", + "name": "Sticker | Farlig (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5635.png" + }, + { + "id": "5636", + "name": "Sticker | apEX | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5636.png" + }, + { + "id": "5637", + "name": "Sticker | apEX (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5637.png" + }, + { + "id": "5638", + "name": "Sticker | apEX (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5638.png" + }, + { + "id": "5639", + "name": "Sticker | apEX (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5639.png" + }, + { + "id": "5640", + "name": "Sticker | misutaaa | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5640.png" + }, + { + "id": "5641", + "name": "Sticker | misutaaa (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5641.png" + }, + { + "id": "5642", + "name": "Sticker | misutaaa (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5642.png" + }, + { + "id": "5643", + "name": "Sticker | misutaaa (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5643.png" + }, + { + "id": "5644", + "name": "Sticker | dupreeh | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5644.png" + }, + { + "id": "5645", + "name": "Sticker | dupreeh (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5645.png" + }, + { + "id": "5646", + "name": "Sticker | dupreeh (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5646.png" + }, + { + "id": "5647", + "name": "Sticker | dupreeh (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5647.png" + }, + { + "id": "5648", + "name": "Sticker | Magisk | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5648.png" + }, + { + "id": "5649", + "name": "Sticker | Magisk (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5649.png" + }, + { + "id": "5650", + "name": "Sticker | Magisk (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5650.png" + }, + { + "id": "5651", + "name": "Sticker | Magisk (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5651.png" + }, + { + "id": "5652", + "name": "Sticker | ZywOo | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5652.png" + }, + { + "id": "5653", + "name": "Sticker | ZywOo (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5653.png" + }, + { + "id": "5654", + "name": "Sticker | ZywOo (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5654.png" + }, + { + "id": "5655", + "name": "Sticker | ZywOo (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5655.png" + }, + { + "id": "5656", + "name": "Sticker | WOOD7 | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5656.png" + }, + { + "id": "5657", + "name": "Sticker | WOOD7 (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5657.png" + }, + { + "id": "5658", + "name": "Sticker | WOOD7 (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5658.png" + }, + { + "id": "5659", + "name": "Sticker | WOOD7 (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5659.png" + }, + { + "id": "5660", + "name": "Sticker | chelo | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5660.png" + }, + { + "id": "5661", + "name": "Sticker | chelo (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5661.png" + }, + { + "id": "5662", + "name": "Sticker | chelo (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5662.png" + }, + { + "id": "5663", + "name": "Sticker | chelo (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5663.png" + }, + { + "id": "5664", + "name": "Sticker | Tuurtle | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5664.png" + }, + { + "id": "5665", + "name": "Sticker | Tuurtle (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5665.png" + }, + { + "id": "5666", + "name": "Sticker | Tuurtle (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5666.png" + }, + { + "id": "5667", + "name": "Sticker | Tuurtle (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5667.png" + }, + { + "id": "5668", + "name": "Sticker | exit | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5668.png" + }, + { + "id": "5669", + "name": "Sticker | exit (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5669.png" + }, + { + "id": "5670", + "name": "Sticker | exit (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5670.png" + }, + { + "id": "5671", + "name": "Sticker | exit (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5671.png" + }, + { + "id": "5672", + "name": "Sticker | JOTA | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5672.png" + }, + { + "id": "5673", + "name": "Sticker | JOTA (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5673.png" + }, + { + "id": "5674", + "name": "Sticker | JOTA (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5674.png" + }, + { + "id": "5675", + "name": "Sticker | JOTA (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5675.png" + }, + { + "id": "5676", + "name": "Sticker | FalleN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5676.png" + }, + { + "id": "5677", + "name": "Sticker | FalleN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5677.png" + }, + { + "id": "5678", + "name": "Sticker | FalleN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5678.png" + }, + { + "id": "5679", + "name": "Sticker | FalleN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5679.png" + }, + { + "id": "5680", + "name": "Sticker | fer | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5680.png" + }, + { + "id": "5681", + "name": "Sticker | fer (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5681.png" + }, + { + "id": "5682", + "name": "Sticker | fer (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5682.png" + }, + { + "id": "5683", + "name": "Sticker | fer (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5683.png" + }, + { + "id": "5684", + "name": "Sticker | fnx | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5684.png" + }, + { + "id": "5685", + "name": "Sticker | fnx (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5685.png" + }, + { + "id": "5686", + "name": "Sticker | fnx (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5686.png" + }, + { + "id": "5687", + "name": "Sticker | fnx (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5687.png" + }, + { + "id": "5688", + "name": "Sticker | boltz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5688.png" + }, + { + "id": "5689", + "name": "Sticker | boltz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5689.png" + }, + { + "id": "5690", + "name": "Sticker | boltz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5690.png" + }, + { + "id": "5691", + "name": "Sticker | boltz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5691.png" + }, + { + "id": "5692", + "name": "Sticker | VINI | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5692.png" + }, + { + "id": "5693", + "name": "Sticker | VINI (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5693.png" + }, + { + "id": "5694", + "name": "Sticker | VINI (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5694.png" + }, + { + "id": "5695", + "name": "Sticker | VINI (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5695.png" + }, + { + "id": "5696", + "name": "Sticker | rigoN | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5696.png" + }, + { + "id": "5697", + "name": "Sticker | rigoN (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5697.png" + }, + { + "id": "5698", + "name": "Sticker | rigoN (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5698.png" + }, + { + "id": "5699", + "name": "Sticker | rigoN (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5699.png" + }, + { + "id": "5700", + "name": "Sticker | juanflatroo | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5700.png" + }, + { + "id": "5701", + "name": "Sticker | juanflatroo (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5701.png" + }, + { + "id": "5702", + "name": "Sticker | juanflatroo (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5702.png" + }, + { + "id": "5703", + "name": "Sticker | juanflatroo (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5703.png" + }, + { + "id": "5704", + "name": "Sticker | SENER1 | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5704.png" + }, + { + "id": "5705", + "name": "Sticker | SENER1 (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5705.png" + }, + { + "id": "5706", + "name": "Sticker | SENER1 (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5706.png" + }, + { + "id": "5707", + "name": "Sticker | SENER1 (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5707.png" + }, + { + "id": "5708", + "name": "Sticker | sinnopsyy | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5708.png" + }, + { + "id": "5709", + "name": "Sticker | sinnopsyy (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5709.png" + }, + { + "id": "5710", + "name": "Sticker | sinnopsyy (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5710.png" + }, + { + "id": "5711", + "name": "Sticker | sinnopsyy (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5711.png" + }, + { + "id": "5712", + "name": "Sticker | gxx- | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5712.png" + }, + { + "id": "5713", + "name": "Sticker | gxx- (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5713.png" + }, + { + "id": "5714", + "name": "Sticker | gxx- (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5714.png" + }, + { + "id": "5715", + "name": "Sticker | gxx- (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5715.png" + }, + { + "id": "5716", + "name": "Sticker | XANTARES | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5716.png" + }, + { + "id": "5717", + "name": "Sticker | XANTARES (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5717.png" + }, + { + "id": "5718", + "name": "Sticker | XANTARES (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5718.png" + }, + { + "id": "5719", + "name": "Sticker | XANTARES (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5719.png" + }, + { + "id": "5720", + "name": "Sticker | woxic | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5720.png" + }, + { + "id": "5721", + "name": "Sticker | woxic (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5721.png" + }, + { + "id": "5722", + "name": "Sticker | woxic (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5722.png" + }, + { + "id": "5723", + "name": "Sticker | woxic (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5723.png" + }, + { + "id": "5724", + "name": "Sticker | imoRR | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5724.png" + }, + { + "id": "5725", + "name": "Sticker | imoRR (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5725.png" + }, + { + "id": "5726", + "name": "Sticker | imoRR (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5726.png" + }, + { + "id": "5727", + "name": "Sticker | imoRR (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5727.png" + }, + { + "id": "5728", + "name": "Sticker | Calyx | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5728.png" + }, + { + "id": "5729", + "name": "Sticker | Calyx (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5729.png" + }, + { + "id": "5730", + "name": "Sticker | Calyx (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5730.png" + }, + { + "id": "5731", + "name": "Sticker | Calyx (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5731.png" + }, + { + "id": "5732", + "name": "Sticker | xfl0ud | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5732.png" + }, + { + "id": "5733", + "name": "Sticker | xfl0ud (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5733.png" + }, + { + "id": "5734", + "name": "Sticker | xfl0ud (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5734.png" + }, + { + "id": "5735", + "name": "Sticker | xfl0ud (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5735.png" + }, + { + "id": "5736", + "name": "Sticker | chopper | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5736.png" + }, + { + "id": "5737", + "name": "Sticker | chopper (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5737.png" + }, + { + "id": "5738", + "name": "Sticker | chopper (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5738.png" + }, + { + "id": "5739", + "name": "Sticker | chopper (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5739.png" + }, + { + "id": "5740", + "name": "Sticker | magixx | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5740.png" + }, + { + "id": "5741", + "name": "Sticker | magixx (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5741.png" + }, + { + "id": "5742", + "name": "Sticker | magixx (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5742.png" + }, + { + "id": "5743", + "name": "Sticker | magixx (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5743.png" + }, + { + "id": "5744", + "name": "Sticker | degster | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5744.png" + }, + { + "id": "5745", + "name": "Sticker | degster (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5745.png" + }, + { + "id": "5746", + "name": "Sticker | degster (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5746.png" + }, + { + "id": "5747", + "name": "Sticker | degster (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5747.png" + }, + { + "id": "5748", + "name": "Sticker | Patsi | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5748.png" + }, + { + "id": "5749", + "name": "Sticker | Patsi (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5749.png" + }, + { + "id": "5750", + "name": "Sticker | Patsi (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5750.png" + }, + { + "id": "5751", + "name": "Sticker | Patsi (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5751.png" + }, + { + "id": "5752", + "name": "Sticker | S1ren | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5752.png" + }, + { + "id": "5753", + "name": "Sticker | S1ren (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5753.png" + }, + { + "id": "5754", + "name": "Sticker | S1ren (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5754.png" + }, + { + "id": "5755", + "name": "Sticker | S1ren (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5755.png" + }, + { + "id": "5756", + "name": "Sticker | Jame | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5756.png" + }, + { + "id": "5757", + "name": "Sticker | Jame (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5757.png" + }, + { + "id": "5758", + "name": "Sticker | Jame (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5758.png" + }, + { + "id": "5759", + "name": "Sticker | Jame (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5759.png" + }, + { + "id": "5760", + "name": "Sticker | qikert | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5760.png" + }, + { + "id": "5761", + "name": "Sticker | qikert (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5761.png" + }, + { + "id": "5762", + "name": "Sticker | qikert (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5762.png" + }, + { + "id": "5763", + "name": "Sticker | qikert (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5763.png" + }, + { + "id": "5764", + "name": "Sticker | buster | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5764.png" + }, + { + "id": "5765", + "name": "Sticker | buster (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5765.png" + }, + { + "id": "5766", + "name": "Sticker | buster (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5766.png" + }, + { + "id": "5767", + "name": "Sticker | buster (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5767.png" + }, + { + "id": "5768", + "name": "Sticker | YEKINDAR | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5768.png" + }, + { + "id": "5769", + "name": "Sticker | YEKINDAR (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5769.png" + }, + { + "id": "5770", + "name": "Sticker | YEKINDAR (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5770.png" + }, + { + "id": "5771", + "name": "Sticker | YEKINDAR (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5771.png" + }, + { + "id": "5772", + "name": "Sticker | FL1T | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5772.png" + }, + { + "id": "5773", + "name": "Sticker | FL1T (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5773.png" + }, + { + "id": "5774", + "name": "Sticker | FL1T (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5774.png" + }, + { + "id": "5775", + "name": "Sticker | FL1T (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5775.png" + }, + { + "id": "5776", + "name": "Sticker | FaNg | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5776.png" + }, + { + "id": "5777", + "name": "Sticker | FaNg (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5777.png" + }, + { + "id": "5778", + "name": "Sticker | FaNg (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5778.png" + }, + { + "id": "5779", + "name": "Sticker | FaNg (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5779.png" + }, + { + "id": "5780", + "name": "Sticker | floppy | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5780.png" + }, + { + "id": "5781", + "name": "Sticker | floppy (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5781.png" + }, + { + "id": "5782", + "name": "Sticker | floppy (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5782.png" + }, + { + "id": "5783", + "name": "Sticker | floppy (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5783.png" + }, + { + "id": "5784", + "name": "Sticker | Grim | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5784.png" + }, + { + "id": "5785", + "name": "Sticker | Grim (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5785.png" + }, + { + "id": "5786", + "name": "Sticker | Grim (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5786.png" + }, + { + "id": "5787", + "name": "Sticker | Grim (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5787.png" + }, + { + "id": "5788", + "name": "Sticker | JT | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5788.png" + }, + { + "id": "5789", + "name": "Sticker | JT (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5789.png" + }, + { + "id": "5790", + "name": "Sticker | JT (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5790.png" + }, + { + "id": "5791", + "name": "Sticker | JT (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5791.png" + }, + { + "id": "5792", + "name": "Sticker | junior | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5792.png" + }, + { + "id": "5793", + "name": "Sticker | junior (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5793.png" + }, + { + "id": "5794", + "name": "Sticker | junior (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5794.png" + }, + { + "id": "5795", + "name": "Sticker | junior (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5795.png" + }, + { + "id": "5796", + "name": "Sticker | bLitz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5796.png" + }, + { + "id": "5797", + "name": "Sticker | bLitz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5797.png" + }, + { + "id": "5798", + "name": "Sticker | bLitz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5798.png" + }, + { + "id": "5799", + "name": "Sticker | bLitz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5799.png" + }, + { + "id": "5800", + "name": "Sticker | kabal | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5800.png" + }, + { + "id": "5801", + "name": "Sticker | kabal (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5801.png" + }, + { + "id": "5802", + "name": "Sticker | kabal (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5802.png" + }, + { + "id": "5803", + "name": "Sticker | kabal (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5803.png" + }, + { + "id": "5804", + "name": "Sticker | nin9 | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5804.png" + }, + { + "id": "5805", + "name": "Sticker | nin9 (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5805.png" + }, + { + "id": "5806", + "name": "Sticker | nin9 (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5806.png" + }, + { + "id": "5807", + "name": "Sticker | nin9 (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5807.png" + }, + { + "id": "5808", + "name": "Sticker | sk0R | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5808.png" + }, + { + "id": "5809", + "name": "Sticker | sk0R (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5809.png" + }, + { + "id": "5810", + "name": "Sticker | sk0R (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5810.png" + }, + { + "id": "5811", + "name": "Sticker | sk0R (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5811.png" + }, + { + "id": "5812", + "name": "Sticker | Techno4K | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5812.png" + }, + { + "id": "5813", + "name": "Sticker | Techno4K (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5813.png" + }, + { + "id": "5814", + "name": "Sticker | Techno4K (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5814.png" + }, + { + "id": "5815", + "name": "Sticker | Techno4K (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5815.png" + }, + { + "id": "5816", + "name": "Sticker | ins | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5816.png" + }, + { + "id": "5817", + "name": "Sticker | ins (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5817.png" + }, + { + "id": "5818", + "name": "Sticker | ins (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5818.png" + }, + { + "id": "5819", + "name": "Sticker | ins (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5819.png" + }, + { + "id": "5820", + "name": "Sticker | sico | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5820.png" + }, + { + "id": "5821", + "name": "Sticker | sico (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5821.png" + }, + { + "id": "5822", + "name": "Sticker | sico (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5822.png" + }, + { + "id": "5823", + "name": "Sticker | sico (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5823.png" + }, + { + "id": "5824", + "name": "Sticker | Liazz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5824.png" + }, + { + "id": "5825", + "name": "Sticker | Liazz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5825.png" + }, + { + "id": "5826", + "name": "Sticker | Liazz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5826.png" + }, + { + "id": "5827", + "name": "Sticker | Liazz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5827.png" + }, + { + "id": "5828", + "name": "Sticker | hatz | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5828.png" + }, + { + "id": "5829", + "name": "Sticker | hatz (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5829.png" + }, + { + "id": "5830", + "name": "Sticker | hatz (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5830.png" + }, + { + "id": "5831", + "name": "Sticker | hatz (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5831.png" + }, + { + "id": "5832", + "name": "Sticker | aliStair | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5832.png" + }, + { + "id": "5833", + "name": "Sticker | aliStair (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5833.png" + }, + { + "id": "5834", + "name": "Sticker | aliStair (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5834.png" + }, + { + "id": "5835", + "name": "Sticker | aliStair (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5835.png" + }, + { + "id": "5836", + "name": "Sticker | shox | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5836.png" + }, + { + "id": "5837", + "name": "Sticker | shox (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5837.png" + }, + { + "id": "5838", + "name": "Sticker | shox (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5838.png" + }, + { + "id": "5839", + "name": "Sticker | shox (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5839.png" + }, + { + "id": "5840", + "name": "Sticker | EliGE | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5840.png" + }, + { + "id": "5841", + "name": "Sticker | EliGE (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5841.png" + }, + { + "id": "5842", + "name": "Sticker | EliGE (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5842.png" + }, + { + "id": "5843", + "name": "Sticker | EliGE (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5843.png" + }, + { + "id": "5844", + "name": "Sticker | oSee | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5844.png" + }, + { + "id": "5845", + "name": "Sticker | oSee (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5845.png" + }, + { + "id": "5846", + "name": "Sticker | oSee (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5846.png" + }, + { + "id": "5847", + "name": "Sticker | oSee (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5847.png" + }, + { + "id": "5848", + "name": "Sticker | nitr0 | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5848.png" + }, + { + "id": "5849", + "name": "Sticker | nitr0 (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5849.png" + }, + { + "id": "5850", + "name": "Sticker | nitr0 (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5850.png" + }, + { + "id": "5851", + "name": "Sticker | nitr0 (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5851.png" + }, + { + "id": "5852", + "name": "Sticker | NAF | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5852.png" + }, + { + "id": "5853", + "name": "Sticker | NAF (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5853.png" + }, + { + "id": "5854", + "name": "Sticker | NAF (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5854.png" + }, + { + "id": "5855", + "name": "Sticker | NAF (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5855.png" + }, + { + "id": "5856", + "name": "Sticker | rox | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5856.png" + }, + { + "id": "5857", + "name": "Sticker | rox (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5857.png" + }, + { + "id": "5858", + "name": "Sticker | rox (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5858.png" + }, + { + "id": "5859", + "name": "Sticker | rox (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5859.png" + }, + { + "id": "5860", + "name": "Sticker | luken | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5860.png" + }, + { + "id": "5861", + "name": "Sticker | luken (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5861.png" + }, + { + "id": "5862", + "name": "Sticker | luken (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5862.png" + }, + { + "id": "5863", + "name": "Sticker | luken (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5863.png" + }, + { + "id": "5864", + "name": "Sticker | max | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5864.png" + }, + { + "id": "5865", + "name": "Sticker | max (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5865.png" + }, + { + "id": "5866", + "name": "Sticker | max (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5866.png" + }, + { + "id": "5867", + "name": "Sticker | max (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5867.png" + }, + { + "id": "5868", + "name": "Sticker | dgt | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5868.png" + }, + { + "id": "5869", + "name": "Sticker | dgt (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5869.png" + }, + { + "id": "5870", + "name": "Sticker | dgt (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5870.png" + }, + { + "id": "5871", + "name": "Sticker | dgt (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5871.png" + }, + { + "id": "5872", + "name": "Sticker | dav1d | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5872.png" + }, + { + "id": "5873", + "name": "Sticker | dav1d (Glitter) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5873.png" + }, + { + "id": "5874", + "name": "Sticker | dav1d (Holo) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5874.png" + }, + { + "id": "5875", + "name": "Sticker | dav1d (Gold) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5875.png" + }, + { + "id": "5876", + "name": "Sticker | rain (Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5876.png" + }, + { + "id": "5877", + "name": "Sticker | rain (Glitter, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5877.png" + }, + { + "id": "5878", + "name": "Sticker | rain (Holo, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5878.png" + }, + { + "id": "5879", + "name": "Sticker | rain (Gold, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5879.png" + }, + { + "id": "5880", + "name": "Sticker | karrigan (Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5880.png" + }, + { + "id": "5881", + "name": "Sticker | karrigan (Glitter, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5881.png" + }, + { + "id": "5882", + "name": "Sticker | karrigan (Holo, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5882.png" + }, + { + "id": "5883", + "name": "Sticker | karrigan (Gold, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5883.png" + }, + { + "id": "5884", + "name": "Sticker | Twistzz (Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5884.png" + }, + { + "id": "5885", + "name": "Sticker | Twistzz (Glitter, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5885.png" + }, + { + "id": "5886", + "name": "Sticker | Twistzz (Holo, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5886.png" + }, + { + "id": "5887", + "name": "Sticker | Twistzz (Gold, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5887.png" + }, + { + "id": "5888", + "name": "Sticker | broky (Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5888.png" + }, + { + "id": "5889", + "name": "Sticker | broky (Glitter, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5889.png" + }, + { + "id": "5890", + "name": "Sticker | broky (Holo, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5890.png" + }, + { + "id": "5891", + "name": "Sticker | broky (Gold, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5891.png" + }, + { + "id": "5892", + "name": "Sticker | ropz (Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5892.png" + }, + { + "id": "5893", + "name": "Sticker | ropz (Glitter, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5893.png" + }, + { + "id": "5894", + "name": "Sticker | ropz (Holo, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5894.png" + }, + { + "id": "5895", + "name": "Sticker | ropz (Gold, Champion) | Antwerp 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5895.png" + }, + { + "id": "5896", + "name": "Sticker | Arms Race", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5896.png" + }, + { + "id": "5897", + "name": "Sticker | B-Day", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5897.png" + }, + { + "id": "5898", + "name": "Sticker | Baby Cerberus", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5898.png" + }, + { + "id": "5899", + "name": "Sticker | Baby Fire Serpent", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5899.png" + }, + { + "id": "5900", + "name": "Sticker | Baby Howl", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5900.png" + }, + { + "id": "5901", + "name": "Sticker | Baby Lore", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5901.png" + }, + { + "id": "5902", + "name": "Sticker | Baby Medusa", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5902.png" + }, + { + "id": "5903", + "name": "Sticker | Beaky Decade", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5903.png" + }, + { + "id": "5904", + "name": "Sticker | Booth", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5904.png" + }, + { + "id": "5905", + "name": "Sticker | Call Your Flashes", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5905.png" + }, + { + "id": "5906", + "name": "Sticker | Chicken Whisperer", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5906.png" + }, + { + "id": "5907", + "name": "Sticker | Clicking Heads", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5907.png" + }, + { + "id": "5908", + "name": "Sticker | Co Co Co", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5908.png" + }, + { + "id": "5909", + "name": "Sticker | C-S On The Go", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5909.png" + }, + { + "id": "5910", + "name": "Sticker | Cursed Penmanship", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5910.png" + }, + { + "id": "5911", + "name": "Sticker | Dragon Tale", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5911.png" + }, + { + "id": "5912", + "name": "Sticker | Dragon's Keep", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5912.png" + }, + { + "id": "5913", + "name": "Sticker | Dreams And Mimics", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5913.png" + }, + { + "id": "5914", + "name": "Sticker | Endless Cycle", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5914.png" + }, + { + "id": "5915", + "name": "Sticker | Exo Jumper", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5915.png" + }, + { + "id": "5916", + "name": "Sticker | Free Range", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5916.png" + }, + { + "id": "5917", + "name": "Sticker | Good Sports", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5917.png" + }, + { + "id": "5918", + "name": "Sticker | GO", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5918.png" + }, + { + "id": "5919", + "name": "Sticker | Good Versus Evil", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5919.png" + }, + { + "id": "5920", + "name": "Sticker | Green's Problem", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5920.png" + }, + { + "id": "5921", + "name": "Sticker | Laser Beam", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5921.png" + }, + { + "id": "5922", + "name": "Sticker | Monster", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5922.png" + }, + { + "id": "5923", + "name": "Sticker | Noble Steed", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5923.png" + }, + { + "id": "5924", + "name": "Sticker | Not For Resale", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5924.png" + }, + { + "id": "5925", + "name": "Sticker | Press Start", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5925.png" + }, + { + "id": "5926", + "name": "Sticker | Choose Wisely", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5926.png" + }, + { + "id": "5927", + "name": "Sticker | Shifty Tactics", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5927.png" + }, + { + "id": "5928", + "name": "Sticker | Rush More", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5928.png" + }, + { + "id": "5929", + "name": "Sticker | Save Me", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5929.png" + }, + { + "id": "5930", + "name": "Sticker | Agent Select", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5930.png" + }, + { + "id": "5931", + "name": "Sticker | This Is Fine (H)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5931.png" + }, + { + "id": "5932", + "name": "Sticker | TV On Mirage", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5932.png" + }, + { + "id": "5933", + "name": "Sticker | Zeused", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5933.png" + }, + { + "id": "5934", + "name": "Sticker | Ace Clutch Co. (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5934.png" + }, + { + "id": "5935", + "name": "Sticker | Blue Gem (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5935.png" + }, + { + "id": "5936", + "name": "Sticker | Go Boom (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5936.png" + }, + { + "id": "5937", + "name": "Sticker | Cbbl (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5937.png" + }, + { + "id": "5938", + "name": "Sticker | Defuse It (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5938.png" + }, + { + "id": "5939", + "name": "Sticker | Conspiracy Club (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5939.png" + }, + { + "id": "5940", + "name": "Sticker | Get Smoked (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5940.png" + }, + { + "id": "5941", + "name": "Sticker | Kawaii CT (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5941.png" + }, + { + "id": "5942", + "name": "Sticker | Kawaii T (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5942.png" + }, + { + "id": "5943", + "name": "Sticker | Leaving The Station (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5943.png" + }, + { + "id": "5944", + "name": "Sticker | Pain Train (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5944.png" + }, + { + "id": "5945", + "name": "Sticker | Vertigo's Hero (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5945.png" + }, + { + "id": "5946", + "name": "Sticker | Zeusception (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5946.png" + }, + { + "id": "5947", + "name": "Sticker | Dust FA (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5947.png" + }, + { + "id": "5948", + "name": "Sticker | In The Fire (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5948.png" + }, + { + "id": "5949", + "name": "Sticker | Approaching Site (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5949.png" + }, + { + "id": "5950", + "name": "Sticker | Overpass Diorama (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5950.png" + }, + { + "id": "5951", + "name": "Sticker | Pure Malt (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5951.png" + }, + { + "id": "5952", + "name": "Sticker | Showdown (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5952.png" + }, + { + "id": "5953", + "name": "Sticker | Ten Years (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5953.png" + }, + { + "id": "5954", + "name": "Sticker | Romanov's Fire (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5954.png" + }, + { + "id": "5955", + "name": "Sticker | Freeze (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5955.png" + }, + { + "id": "5956", + "name": "Sticker | Global TV (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5956.png" + }, + { + "id": "5957", + "name": "Sticker | Magic Rush Ball (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5957.png" + }, + { + "id": "5958", + "name": "Sticker | DJ Safecracker (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5958.png" + }, + { + "id": "5959", + "name": "Sticker | Skin Lover (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5959.png" + }, + { + "id": "5960", + "name": "Sticker | TV Installation (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5960.png" + }, + { + "id": "5961", + "name": "Sticker | ENCE | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5961.png" + }, + { + "id": "5962", + "name": "Sticker | ENCE (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5962.png" + }, + { + "id": "5963", + "name": "Sticker | ENCE (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5963.png" + }, + { + "id": "5964", + "name": "Sticker | ENCE (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5964.png" + }, + { + "id": "5965", + "name": "Sticker | FaZe Clan | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5965.png" + }, + { + "id": "5966", + "name": "Sticker | FaZe Clan (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5966.png" + }, + { + "id": "5967", + "name": "Sticker | FaZe Clan (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5967.png" + }, + { + "id": "5968", + "name": "Sticker | FaZe Clan (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5968.png" + }, + { + "id": "5969", + "name": "Sticker | Heroic | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5969.png" + }, + { + "id": "5970", + "name": "Sticker | Heroic (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5970.png" + }, + { + "id": "5971", + "name": "Sticker | Heroic (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5971.png" + }, + { + "id": "5972", + "name": "Sticker | Heroic (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5972.png" + }, + { + "id": "5973", + "name": "Sticker | Natus Vincere | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5973.png" + }, + { + "id": "5974", + "name": "Sticker | Natus Vincere (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5974.png" + }, + { + "id": "5975", + "name": "Sticker | Natus Vincere (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5975.png" + }, + { + "id": "5976", + "name": "Sticker | Natus Vincere (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5976.png" + }, + { + "id": "5977", + "name": "Sticker | Ninjas in Pyjamas | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5977.png" + }, + { + "id": "5978", + "name": "Sticker | Ninjas in Pyjamas (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5978.png" + }, + { + "id": "5979", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5979.png" + }, + { + "id": "5980", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5980.png" + }, + { + "id": "5981", + "name": "Sticker | Sprout Esports | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5981.png" + }, + { + "id": "5982", + "name": "Sticker | Sprout Esports (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5982.png" + }, + { + "id": "5983", + "name": "Sticker | Sprout Esports (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5983.png" + }, + { + "id": "5984", + "name": "Sticker | Sprout Esports (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5984.png" + }, + { + "id": "5985", + "name": "Sticker | Team Liquid | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5985.png" + }, + { + "id": "5986", + "name": "Sticker | Team Liquid (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5986.png" + }, + { + "id": "5987", + "name": "Sticker | Team Liquid (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5987.png" + }, + { + "id": "5988", + "name": "Sticker | Team Liquid (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5988.png" + }, + { + "id": "5989", + "name": "Sticker | Team Spirit | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5989.png" + }, + { + "id": "5990", + "name": "Sticker | Team Spirit (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5990.png" + }, + { + "id": "5991", + "name": "Sticker | Team Spirit (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5991.png" + }, + { + "id": "5992", + "name": "Sticker | Team Spirit (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5992.png" + }, + { + "id": "5993", + "name": "Sticker | 9z Team | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5993.png" + }, + { + "id": "5994", + "name": "Sticker | 9z Team (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5994.png" + }, + { + "id": "5995", + "name": "Sticker | 9z Team (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5995.png" + }, + { + "id": "5996", + "name": "Sticker | 9z Team (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5996.png" + }, + { + "id": "5997", + "name": "Sticker | Bad News Eagles | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5997.png" + }, + { + "id": "5998", + "name": "Sticker | Bad News Eagles (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5998.png" + }, + { + "id": "5999", + "name": "Sticker | Bad News Eagles (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-5999.png" + }, + { + "id": "6000", + "name": "Sticker | Bad News Eagles (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6000.png" + }, + { + "id": "6001", + "name": "Sticker | BIG | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6001.png" + }, + { + "id": "6002", + "name": "Sticker | BIG (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6002.png" + }, + { + "id": "6003", + "name": "Sticker | BIG (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6003.png" + }, + { + "id": "6004", + "name": "Sticker | BIG (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6004.png" + }, + { + "id": "6005", + "name": "Sticker | Cloud9 | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6005.png" + }, + { + "id": "6006", + "name": "Sticker | Cloud9 (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6006.png" + }, + { + "id": "6007", + "name": "Sticker | Cloud9 (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6007.png" + }, + { + "id": "6008", + "name": "Sticker | Cloud9 (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6008.png" + }, + { + "id": "6009", + "name": "Sticker | Evil Geniuses | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6009.png" + }, + { + "id": "6010", + "name": "Sticker | Evil Geniuses (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6010.png" + }, + { + "id": "6011", + "name": "Sticker | Evil Geniuses (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6011.png" + }, + { + "id": "6012", + "name": "Sticker | Evil Geniuses (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6012.png" + }, + { + "id": "6013", + "name": "Sticker | MOUZ | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6013.png" + }, + { + "id": "6014", + "name": "Sticker | MOUZ (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6014.png" + }, + { + "id": "6015", + "name": "Sticker | MOUZ (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6015.png" + }, + { + "id": "6016", + "name": "Sticker | MOUZ (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6016.png" + }, + { + "id": "6017", + "name": "Sticker | OG | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6017.png" + }, + { + "id": "6018", + "name": "Sticker | OG (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6018.png" + }, + { + "id": "6019", + "name": "Sticker | OG (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6019.png" + }, + { + "id": "6020", + "name": "Sticker | OG (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6020.png" + }, + { + "id": "6021", + "name": "Sticker | Vitality | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6021.png" + }, + { + "id": "6022", + "name": "Sticker | Vitality (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6022.png" + }, + { + "id": "6023", + "name": "Sticker | Vitality (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6023.png" + }, + { + "id": "6024", + "name": "Sticker | Vitality (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6024.png" + }, + { + "id": "6025", + "name": "Sticker | 00 Nation | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6025.png" + }, + { + "id": "6026", + "name": "Sticker | 00 Nation (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6026.png" + }, + { + "id": "6027", + "name": "Sticker | 00 Nation (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6027.png" + }, + { + "id": "6028", + "name": "Sticker | 00 Nation (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6028.png" + }, + { + "id": "6029", + "name": "Sticker | Fnatic | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6029.png" + }, + { + "id": "6030", + "name": "Sticker | Fnatic (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6030.png" + }, + { + "id": "6031", + "name": "Sticker | Fnatic (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6031.png" + }, + { + "id": "6032", + "name": "Sticker | Fnatic (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6032.png" + }, + { + "id": "6033", + "name": "Sticker | FURIA | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6033.png" + }, + { + "id": "6034", + "name": "Sticker | FURIA (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6034.png" + }, + { + "id": "6035", + "name": "Sticker | FURIA (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6035.png" + }, + { + "id": "6036", + "name": "Sticker | FURIA (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6036.png" + }, + { + "id": "6037", + "name": "Sticker | GamerLegion | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6037.png" + }, + { + "id": "6038", + "name": "Sticker | GamerLegion (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6038.png" + }, + { + "id": "6039", + "name": "Sticker | GamerLegion (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6039.png" + }, + { + "id": "6040", + "name": "Sticker | GamerLegion (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6040.png" + }, + { + "id": "6041", + "name": "Sticker | Grayhound Gaming | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6041.png" + }, + { + "id": "6042", + "name": "Sticker | Grayhound Gaming (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6042.png" + }, + { + "id": "6043", + "name": "Sticker | Grayhound Gaming (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6043.png" + }, + { + "id": "6044", + "name": "Sticker | Grayhound Gaming (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6044.png" + }, + { + "id": "6045", + "name": "Sticker | IHC Esports | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6045.png" + }, + { + "id": "6046", + "name": "Sticker | IHC Esports (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6046.png" + }, + { + "id": "6047", + "name": "Sticker | IHC Esports (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6047.png" + }, + { + "id": "6048", + "name": "Sticker | IHC Esports (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6048.png" + }, + { + "id": "6049", + "name": "Sticker | Imperial Esports | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6049.png" + }, + { + "id": "6050", + "name": "Sticker | Imperial Esports (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6050.png" + }, + { + "id": "6051", + "name": "Sticker | Imperial Esports (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6051.png" + }, + { + "id": "6052", + "name": "Sticker | Imperial Esports (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6052.png" + }, + { + "id": "6053", + "name": "Sticker | Outsiders | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6053.png" + }, + { + "id": "6054", + "name": "Sticker | Outsiders (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6054.png" + }, + { + "id": "6055", + "name": "Sticker | Outsiders (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6055.png" + }, + { + "id": "6056", + "name": "Sticker | Outsiders (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6056.png" + }, + { + "id": "6057", + "name": "Sticker | IEM | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6057.png" + }, + { + "id": "6058", + "name": "Sticker | IEM (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6058.png" + }, + { + "id": "6059", + "name": "Sticker | IEM (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6059.png" + }, + { + "id": "6060", + "name": "Sticker | IEM (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6060.png" + }, + { + "id": "6086", + "name": "Sticker | Snappi | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6086.png" + }, + { + "id": "6087", + "name": "Sticker | Snappi (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6087.png" + }, + { + "id": "6088", + "name": "Sticker | Snappi (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6088.png" + }, + { + "id": "6089", + "name": "Sticker | Snappi (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6089.png" + }, + { + "id": "6090", + "name": "Sticker | Dycha | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6090.png" + }, + { + "id": "6091", + "name": "Sticker | Dycha (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6091.png" + }, + { + "id": "6092", + "name": "Sticker | Dycha (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6092.png" + }, + { + "id": "6093", + "name": "Sticker | Dycha (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6093.png" + }, + { + "id": "6094", + "name": "Sticker | maden | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6094.png" + }, + { + "id": "6095", + "name": "Sticker | maden (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6095.png" + }, + { + "id": "6096", + "name": "Sticker | maden (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6096.png" + }, + { + "id": "6097", + "name": "Sticker | maden (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6097.png" + }, + { + "id": "6098", + "name": "Sticker | v4lde | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6098.png" + }, + { + "id": "6099", + "name": "Sticker | v4lde (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6099.png" + }, + { + "id": "6100", + "name": "Sticker | v4lde (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6100.png" + }, + { + "id": "6101", + "name": "Sticker | v4lde (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6101.png" + }, + { + "id": "6102", + "name": "Sticker | SunPayus | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6102.png" + }, + { + "id": "6103", + "name": "Sticker | SunPayus (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6103.png" + }, + { + "id": "6104", + "name": "Sticker | SunPayus (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6104.png" + }, + { + "id": "6105", + "name": "Sticker | SunPayus (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6105.png" + }, + { + "id": "6106", + "name": "Sticker | karrigan | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6106.png" + }, + { + "id": "6107", + "name": "Sticker | karrigan (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6107.png" + }, + { + "id": "6108", + "name": "Sticker | karrigan (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6108.png" + }, + { + "id": "6109", + "name": "Sticker | karrigan (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6109.png" + }, + { + "id": "6110", + "name": "Sticker | rain | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6110.png" + }, + { + "id": "6111", + "name": "Sticker | rain (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6111.png" + }, + { + "id": "6112", + "name": "Sticker | rain (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6112.png" + }, + { + "id": "6113", + "name": "Sticker | rain (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6113.png" + }, + { + "id": "6114", + "name": "Sticker | Twistzz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6114.png" + }, + { + "id": "6115", + "name": "Sticker | Twistzz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6115.png" + }, + { + "id": "6116", + "name": "Sticker | Twistzz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6116.png" + }, + { + "id": "6117", + "name": "Sticker | Twistzz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6117.png" + }, + { + "id": "6118", + "name": "Sticker | ropz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6118.png" + }, + { + "id": "6119", + "name": "Sticker | ropz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6119.png" + }, + { + "id": "6120", + "name": "Sticker | ropz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6120.png" + }, + { + "id": "6121", + "name": "Sticker | ropz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6121.png" + }, + { + "id": "6122", + "name": "Sticker | broky | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6122.png" + }, + { + "id": "6123", + "name": "Sticker | broky (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6123.png" + }, + { + "id": "6124", + "name": "Sticker | broky (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6124.png" + }, + { + "id": "6125", + "name": "Sticker | broky (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6125.png" + }, + { + "id": "6126", + "name": "Sticker | cadiaN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6126.png" + }, + { + "id": "6127", + "name": "Sticker | cadiaN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6127.png" + }, + { + "id": "6128", + "name": "Sticker | cadiaN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6128.png" + }, + { + "id": "6129", + "name": "Sticker | cadiaN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6129.png" + }, + { + "id": "6130", + "name": "Sticker | TeSeS | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6130.png" + }, + { + "id": "6131", + "name": "Sticker | TeSeS (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6131.png" + }, + { + "id": "6132", + "name": "Sticker | TeSeS (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6132.png" + }, + { + "id": "6133", + "name": "Sticker | TeSeS (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6133.png" + }, + { + "id": "6134", + "name": "Sticker | sjuush | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6134.png" + }, + { + "id": "6135", + "name": "Sticker | sjuush (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6135.png" + }, + { + "id": "6136", + "name": "Sticker | sjuush (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6136.png" + }, + { + "id": "6137", + "name": "Sticker | sjuush (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6137.png" + }, + { + "id": "6138", + "name": "Sticker | jabbi | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6138.png" + }, + { + "id": "6139", + "name": "Sticker | jabbi (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6139.png" + }, + { + "id": "6140", + "name": "Sticker | jabbi (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6140.png" + }, + { + "id": "6141", + "name": "Sticker | jabbi (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6141.png" + }, + { + "id": "6142", + "name": "Sticker | stavn | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6142.png" + }, + { + "id": "6143", + "name": "Sticker | stavn (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6143.png" + }, + { + "id": "6144", + "name": "Sticker | stavn (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6144.png" + }, + { + "id": "6145", + "name": "Sticker | stavn (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6145.png" + }, + { + "id": "6146", + "name": "Sticker | b1t | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6146.png" + }, + { + "id": "6147", + "name": "Sticker | b1t (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6147.png" + }, + { + "id": "6148", + "name": "Sticker | b1t (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6148.png" + }, + { + "id": "6149", + "name": "Sticker | b1t (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6149.png" + }, + { + "id": "6150", + "name": "Sticker | electronic | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6150.png" + }, + { + "id": "6151", + "name": "Sticker | electronic (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6151.png" + }, + { + "id": "6152", + "name": "Sticker | electronic (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6152.png" + }, + { + "id": "6153", + "name": "Sticker | electronic (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6153.png" + }, + { + "id": "6154", + "name": "Sticker | sdy | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6154.png" + }, + { + "id": "6155", + "name": "Sticker | sdy (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6155.png" + }, + { + "id": "6156", + "name": "Sticker | sdy (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6156.png" + }, + { + "id": "6157", + "name": "Sticker | sdy (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6157.png" + }, + { + "id": "6158", + "name": "Sticker | Perfecto | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6158.png" + }, + { + "id": "6159", + "name": "Sticker | Perfecto (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6159.png" + }, + { + "id": "6160", + "name": "Sticker | Perfecto (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6160.png" + }, + { + "id": "6161", + "name": "Sticker | Perfecto (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6161.png" + }, + { + "id": "6162", + "name": "Sticker | s1mple | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6162.png" + }, + { + "id": "6163", + "name": "Sticker | s1mple (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6163.png" + }, + { + "id": "6164", + "name": "Sticker | s1mple (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6164.png" + }, + { + "id": "6165", + "name": "Sticker | s1mple (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6165.png" + }, + { + "id": "6166", + "name": "Sticker | es3tag | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6166.png" + }, + { + "id": "6167", + "name": "Sticker | es3tag (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6167.png" + }, + { + "id": "6168", + "name": "Sticker | es3tag (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6168.png" + }, + { + "id": "6169", + "name": "Sticker | es3tag (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6169.png" + }, + { + "id": "6170", + "name": "Sticker | Aleksib | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6170.png" + }, + { + "id": "6171", + "name": "Sticker | Aleksib (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6171.png" + }, + { + "id": "6172", + "name": "Sticker | Aleksib (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6172.png" + }, + { + "id": "6173", + "name": "Sticker | Aleksib (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6173.png" + }, + { + "id": "6174", + "name": "Sticker | REZ | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6174.png" + }, + { + "id": "6175", + "name": "Sticker | REZ (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6175.png" + }, + { + "id": "6176", + "name": "Sticker | REZ (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6176.png" + }, + { + "id": "6177", + "name": "Sticker | REZ (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6177.png" + }, + { + "id": "6178", + "name": "Sticker | hampus | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6178.png" + }, + { + "id": "6179", + "name": "Sticker | hampus (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6179.png" + }, + { + "id": "6180", + "name": "Sticker | hampus (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6180.png" + }, + { + "id": "6181", + "name": "Sticker | hampus (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6181.png" + }, + { + "id": "6182", + "name": "Sticker | Brollan | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6182.png" + }, + { + "id": "6183", + "name": "Sticker | Brollan (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6183.png" + }, + { + "id": "6184", + "name": "Sticker | Brollan (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6184.png" + }, + { + "id": "6185", + "name": "Sticker | Brollan (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6185.png" + }, + { + "id": "6186", + "name": "Sticker | slaxz- | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6186.png" + }, + { + "id": "6187", + "name": "Sticker | slaxz- (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6187.png" + }, + { + "id": "6188", + "name": "Sticker | slaxz- (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6188.png" + }, + { + "id": "6189", + "name": "Sticker | slaxz- (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6189.png" + }, + { + "id": "6190", + "name": "Sticker | lauNX | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6190.png" + }, + { + "id": "6191", + "name": "Sticker | lauNX (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6191.png" + }, + { + "id": "6192", + "name": "Sticker | lauNX (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6192.png" + }, + { + "id": "6193", + "name": "Sticker | lauNX (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6193.png" + }, + { + "id": "6194", + "name": "Sticker | refrezh | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6194.png" + }, + { + "id": "6195", + "name": "Sticker | refrezh (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6195.png" + }, + { + "id": "6196", + "name": "Sticker | refrezh (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6196.png" + }, + { + "id": "6197", + "name": "Sticker | refrezh (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6197.png" + }, + { + "id": "6198", + "name": "Sticker | Staehr | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6198.png" + }, + { + "id": "6199", + "name": "Sticker | Staehr (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6199.png" + }, + { + "id": "6200", + "name": "Sticker | Staehr (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6200.png" + }, + { + "id": "6201", + "name": "Sticker | Staehr (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6201.png" + }, + { + "id": "6202", + "name": "Sticker | Zyphon | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6202.png" + }, + { + "id": "6203", + "name": "Sticker | Zyphon (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6203.png" + }, + { + "id": "6204", + "name": "Sticker | Zyphon (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6204.png" + }, + { + "id": "6205", + "name": "Sticker | Zyphon (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6205.png" + }, + { + "id": "6206", + "name": "Sticker | YEKINDAR | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6206.png" + }, + { + "id": "6207", + "name": "Sticker | YEKINDAR (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6207.png" + }, + { + "id": "6208", + "name": "Sticker | YEKINDAR (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6208.png" + }, + { + "id": "6209", + "name": "Sticker | YEKINDAR (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6209.png" + }, + { + "id": "6210", + "name": "Sticker | oSee | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6210.png" + }, + { + "id": "6211", + "name": "Sticker | oSee (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6211.png" + }, + { + "id": "6212", + "name": "Sticker | oSee (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6212.png" + }, + { + "id": "6213", + "name": "Sticker | oSee (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6213.png" + }, + { + "id": "6214", + "name": "Sticker | nitr0 | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6214.png" + }, + { + "id": "6215", + "name": "Sticker | nitr0 (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6215.png" + }, + { + "id": "6216", + "name": "Sticker | nitr0 (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6216.png" + }, + { + "id": "6217", + "name": "Sticker | nitr0 (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6217.png" + }, + { + "id": "6218", + "name": "Sticker | NAF | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6218.png" + }, + { + "id": "6219", + "name": "Sticker | NAF (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6219.png" + }, + { + "id": "6220", + "name": "Sticker | NAF (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6220.png" + }, + { + "id": "6221", + "name": "Sticker | NAF (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6221.png" + }, + { + "id": "6222", + "name": "Sticker | EliGE | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6222.png" + }, + { + "id": "6223", + "name": "Sticker | EliGE (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6223.png" + }, + { + "id": "6224", + "name": "Sticker | EliGE (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6224.png" + }, + { + "id": "6225", + "name": "Sticker | EliGE (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6225.png" + }, + { + "id": "6226", + "name": "Sticker | chopper | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6226.png" + }, + { + "id": "6227", + "name": "Sticker | chopper (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6227.png" + }, + { + "id": "6228", + "name": "Sticker | chopper (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6228.png" + }, + { + "id": "6229", + "name": "Sticker | chopper (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6229.png" + }, + { + "id": "6230", + "name": "Sticker | magixx | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6230.png" + }, + { + "id": "6231", + "name": "Sticker | magixx (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6231.png" + }, + { + "id": "6232", + "name": "Sticker | magixx (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6232.png" + }, + { + "id": "6233", + "name": "Sticker | magixx (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6233.png" + }, + { + "id": "6234", + "name": "Sticker | Patsi | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6234.png" + }, + { + "id": "6235", + "name": "Sticker | Patsi (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6235.png" + }, + { + "id": "6236", + "name": "Sticker | Patsi (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6236.png" + }, + { + "id": "6237", + "name": "Sticker | Patsi (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6237.png" + }, + { + "id": "6238", + "name": "Sticker | S1ren | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6238.png" + }, + { + "id": "6239", + "name": "Sticker | S1ren (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6239.png" + }, + { + "id": "6240", + "name": "Sticker | S1ren (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6240.png" + }, + { + "id": "6241", + "name": "Sticker | S1ren (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6241.png" + }, + { + "id": "6242", + "name": "Sticker | w0nderful | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6242.png" + }, + { + "id": "6243", + "name": "Sticker | w0nderful (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6243.png" + }, + { + "id": "6244", + "name": "Sticker | w0nderful (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6244.png" + }, + { + "id": "6245", + "name": "Sticker | w0nderful (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6245.png" + }, + { + "id": "6246", + "name": "Sticker | NQZ | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6246.png" + }, + { + "id": "6247", + "name": "Sticker | NQZ (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6247.png" + }, + { + "id": "6248", + "name": "Sticker | NQZ (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6248.png" + }, + { + "id": "6249", + "name": "Sticker | NQZ (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6249.png" + }, + { + "id": "6250", + "name": "Sticker | dav1deuS | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6250.png" + }, + { + "id": "6251", + "name": "Sticker | dav1deuS (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6251.png" + }, + { + "id": "6252", + "name": "Sticker | dav1deuS (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6252.png" + }, + { + "id": "6253", + "name": "Sticker | dav1deuS (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6253.png" + }, + { + "id": "6254", + "name": "Sticker | max | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6254.png" + }, + { + "id": "6255", + "name": "Sticker | max (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6255.png" + }, + { + "id": "6256", + "name": "Sticker | max (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6256.png" + }, + { + "id": "6257", + "name": "Sticker | max (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6257.png" + }, + { + "id": "6258", + "name": "Sticker | dgt | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6258.png" + }, + { + "id": "6259", + "name": "Sticker | dgt (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6259.png" + }, + { + "id": "6260", + "name": "Sticker | dgt (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6260.png" + }, + { + "id": "6261", + "name": "Sticker | dgt (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6261.png" + }, + { + "id": "6262", + "name": "Sticker | BUDA | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6262.png" + }, + { + "id": "6263", + "name": "Sticker | BUDA (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6263.png" + }, + { + "id": "6264", + "name": "Sticker | BUDA (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6264.png" + }, + { + "id": "6265", + "name": "Sticker | BUDA (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6265.png" + }, + { + "id": "6266", + "name": "Sticker | gxx- | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6266.png" + }, + { + "id": "6267", + "name": "Sticker | gxx- (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6267.png" + }, + { + "id": "6268", + "name": "Sticker | gxx- (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6268.png" + }, + { + "id": "6269", + "name": "Sticker | gxx- (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6269.png" + }, + { + "id": "6270", + "name": "Sticker | SENER1 | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6270.png" + }, + { + "id": "6271", + "name": "Sticker | SENER1 (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6271.png" + }, + { + "id": "6272", + "name": "Sticker | SENER1 (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6272.png" + }, + { + "id": "6273", + "name": "Sticker | SENER1 (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6273.png" + }, + { + "id": "6274", + "name": "Sticker | juanflatroo | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6274.png" + }, + { + "id": "6275", + "name": "Sticker | juanflatroo (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6275.png" + }, + { + "id": "6276", + "name": "Sticker | juanflatroo (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6276.png" + }, + { + "id": "6277", + "name": "Sticker | juanflatroo (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6277.png" + }, + { + "id": "6278", + "name": "Sticker | rigoN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6278.png" + }, + { + "id": "6279", + "name": "Sticker | rigoN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6279.png" + }, + { + "id": "6280", + "name": "Sticker | rigoN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6280.png" + }, + { + "id": "6281", + "name": "Sticker | rigoN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6281.png" + }, + { + "id": "6282", + "name": "Sticker | sinnopsyy | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6282.png" + }, + { + "id": "6283", + "name": "Sticker | sinnopsyy (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6283.png" + }, + { + "id": "6284", + "name": "Sticker | sinnopsyy (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6284.png" + }, + { + "id": "6285", + "name": "Sticker | sinnopsyy (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6285.png" + }, + { + "id": "6286", + "name": "Sticker | faveN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6286.png" + }, + { + "id": "6287", + "name": "Sticker | faveN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6287.png" + }, + { + "id": "6288", + "name": "Sticker | faveN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6288.png" + }, + { + "id": "6289", + "name": "Sticker | faveN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6289.png" + }, + { + "id": "6290", + "name": "Sticker | Krimbo | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6290.png" + }, + { + "id": "6291", + "name": "Sticker | Krimbo (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6291.png" + }, + { + "id": "6292", + "name": "Sticker | Krimbo (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6292.png" + }, + { + "id": "6293", + "name": "Sticker | Krimbo (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6293.png" + }, + { + "id": "6294", + "name": "Sticker | k1to | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6294.png" + }, + { + "id": "6295", + "name": "Sticker | k1to (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6295.png" + }, + { + "id": "6296", + "name": "Sticker | k1to (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6296.png" + }, + { + "id": "6297", + "name": "Sticker | k1to (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6297.png" + }, + { + "id": "6298", + "name": "Sticker | tabseN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6298.png" + }, + { + "id": "6299", + "name": "Sticker | tabseN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6299.png" + }, + { + "id": "6300", + "name": "Sticker | tabseN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6300.png" + }, + { + "id": "6301", + "name": "Sticker | tabseN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6301.png" + }, + { + "id": "6302", + "name": "Sticker | syrsoN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6302.png" + }, + { + "id": "6303", + "name": "Sticker | syrsoN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6303.png" + }, + { + "id": "6304", + "name": "Sticker | syrsoN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6304.png" + }, + { + "id": "6305", + "name": "Sticker | syrsoN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6305.png" + }, + { + "id": "6306", + "name": "Sticker | sh1ro | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6306.png" + }, + { + "id": "6307", + "name": "Sticker | sh1ro (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6307.png" + }, + { + "id": "6308", + "name": "Sticker | sh1ro (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6308.png" + }, + { + "id": "6309", + "name": "Sticker | sh1ro (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6309.png" + }, + { + "id": "6310", + "name": "Sticker | nafany | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6310.png" + }, + { + "id": "6311", + "name": "Sticker | nafany (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6311.png" + }, + { + "id": "6312", + "name": "Sticker | nafany (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6312.png" + }, + { + "id": "6313", + "name": "Sticker | nafany (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6313.png" + }, + { + "id": "6314", + "name": "Sticker | Ax1Le | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6314.png" + }, + { + "id": "6315", + "name": "Sticker | Ax1Le (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6315.png" + }, + { + "id": "6316", + "name": "Sticker | Ax1Le (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6316.png" + }, + { + "id": "6317", + "name": "Sticker | Ax1Le (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6317.png" + }, + { + "id": "6318", + "name": "Sticker | interz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6318.png" + }, + { + "id": "6319", + "name": "Sticker | interz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6319.png" + }, + { + "id": "6320", + "name": "Sticker | interz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6320.png" + }, + { + "id": "6321", + "name": "Sticker | interz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6321.png" + }, + { + "id": "6322", + "name": "Sticker | Hobbit | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6322.png" + }, + { + "id": "6323", + "name": "Sticker | Hobbit (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6323.png" + }, + { + "id": "6324", + "name": "Sticker | Hobbit (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6324.png" + }, + { + "id": "6325", + "name": "Sticker | Hobbit (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6325.png" + }, + { + "id": "6326", + "name": "Sticker | autimatic | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6326.png" + }, + { + "id": "6327", + "name": "Sticker | autimatic (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6327.png" + }, + { + "id": "6328", + "name": "Sticker | autimatic (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6328.png" + }, + { + "id": "6329", + "name": "Sticker | autimatic (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6329.png" + }, + { + "id": "6330", + "name": "Sticker | neaLaN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6330.png" + }, + { + "id": "6331", + "name": "Sticker | neaLaN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6331.png" + }, + { + "id": "6332", + "name": "Sticker | neaLaN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6332.png" + }, + { + "id": "6333", + "name": "Sticker | neaLaN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6333.png" + }, + { + "id": "6334", + "name": "Sticker | Brehze | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6334.png" + }, + { + "id": "6335", + "name": "Sticker | Brehze (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6335.png" + }, + { + "id": "6336", + "name": "Sticker | Brehze (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6336.png" + }, + { + "id": "6337", + "name": "Sticker | Brehze (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6337.png" + }, + { + "id": "6338", + "name": "Sticker | HexT | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6338.png" + }, + { + "id": "6339", + "name": "Sticker | HexT (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6339.png" + }, + { + "id": "6340", + "name": "Sticker | HexT (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6340.png" + }, + { + "id": "6341", + "name": "Sticker | HexT (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6341.png" + }, + { + "id": "6342", + "name": "Sticker | CeRq | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6342.png" + }, + { + "id": "6343", + "name": "Sticker | CeRq (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6343.png" + }, + { + "id": "6344", + "name": "Sticker | CeRq (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6344.png" + }, + { + "id": "6345", + "name": "Sticker | CeRq (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6345.png" + }, + { + "id": "6346", + "name": "Sticker | frozen | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6346.png" + }, + { + "id": "6347", + "name": "Sticker | frozen (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6347.png" + }, + { + "id": "6348", + "name": "Sticker | frozen (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6348.png" + }, + { + "id": "6349", + "name": "Sticker | frozen (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6349.png" + }, + { + "id": "6350", + "name": "Sticker | dexter | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6350.png" + }, + { + "id": "6351", + "name": "Sticker | dexter (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6351.png" + }, + { + "id": "6352", + "name": "Sticker | dexter (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6352.png" + }, + { + "id": "6353", + "name": "Sticker | dexter (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6353.png" + }, + { + "id": "6354", + "name": "Sticker | JDC | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6354.png" + }, + { + "id": "6355", + "name": "Sticker | JDC (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6355.png" + }, + { + "id": "6356", + "name": "Sticker | JDC (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6356.png" + }, + { + "id": "6357", + "name": "Sticker | JDC (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6357.png" + }, + { + "id": "6358", + "name": "Sticker | torzsi | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6358.png" + }, + { + "id": "6359", + "name": "Sticker | torzsi (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6359.png" + }, + { + "id": "6360", + "name": "Sticker | torzsi (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6360.png" + }, + { + "id": "6361", + "name": "Sticker | torzsi (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6361.png" + }, + { + "id": "6362", + "name": "Sticker | xertioN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6362.png" + }, + { + "id": "6363", + "name": "Sticker | xertioN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6363.png" + }, + { + "id": "6364", + "name": "Sticker | xertioN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6364.png" + }, + { + "id": "6365", + "name": "Sticker | xertioN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6365.png" + }, + { + "id": "6366", + "name": "Sticker | nexa | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6366.png" + }, + { + "id": "6367", + "name": "Sticker | nexa (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6367.png" + }, + { + "id": "6368", + "name": "Sticker | nexa (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6368.png" + }, + { + "id": "6369", + "name": "Sticker | nexa (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6369.png" + }, + { + "id": "6370", + "name": "Sticker | NEOFRAG | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6370.png" + }, + { + "id": "6371", + "name": "Sticker | NEOFRAG (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6371.png" + }, + { + "id": "6372", + "name": "Sticker | NEOFRAG (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6372.png" + }, + { + "id": "6373", + "name": "Sticker | NEOFRAG (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6373.png" + }, + { + "id": "6374", + "name": "Sticker | FlameZ | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6374.png" + }, + { + "id": "6375", + "name": "Sticker | FlameZ (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6375.png" + }, + { + "id": "6376", + "name": "Sticker | FlameZ (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6376.png" + }, + { + "id": "6377", + "name": "Sticker | FlameZ (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6377.png" + }, + { + "id": "6378", + "name": "Sticker | degster | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6378.png" + }, + { + "id": "6379", + "name": "Sticker | degster (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6379.png" + }, + { + "id": "6380", + "name": "Sticker | degster (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6380.png" + }, + { + "id": "6381", + "name": "Sticker | degster (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6381.png" + }, + { + "id": "6382", + "name": "Sticker | F1KU | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6382.png" + }, + { + "id": "6383", + "name": "Sticker | F1KU (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6383.png" + }, + { + "id": "6384", + "name": "Sticker | F1KU (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6384.png" + }, + { + "id": "6385", + "name": "Sticker | F1KU (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6385.png" + }, + { + "id": "6386", + "name": "Sticker | dupreeh | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6386.png" + }, + { + "id": "6387", + "name": "Sticker | dupreeh (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6387.png" + }, + { + "id": "6388", + "name": "Sticker | dupreeh (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6388.png" + }, + { + "id": "6389", + "name": "Sticker | dupreeh (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6389.png" + }, + { + "id": "6390", + "name": "Sticker | Magisk | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6390.png" + }, + { + "id": "6391", + "name": "Sticker | Magisk (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6391.png" + }, + { + "id": "6392", + "name": "Sticker | Magisk (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6392.png" + }, + { + "id": "6393", + "name": "Sticker | Magisk (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6393.png" + }, + { + "id": "6394", + "name": "Sticker | apEX | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6394.png" + }, + { + "id": "6395", + "name": "Sticker | apEX (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6395.png" + }, + { + "id": "6396", + "name": "Sticker | apEX (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6396.png" + }, + { + "id": "6397", + "name": "Sticker | apEX (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6397.png" + }, + { + "id": "6398", + "name": "Sticker | Spinx | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6398.png" + }, + { + "id": "6399", + "name": "Sticker | Spinx (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6399.png" + }, + { + "id": "6400", + "name": "Sticker | Spinx (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6400.png" + }, + { + "id": "6401", + "name": "Sticker | Spinx (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6401.png" + }, + { + "id": "6402", + "name": "Sticker | ZywOo | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6402.png" + }, + { + "id": "6403", + "name": "Sticker | ZywOo (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6403.png" + }, + { + "id": "6404", + "name": "Sticker | ZywOo (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6404.png" + }, + { + "id": "6405", + "name": "Sticker | ZywOo (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6405.png" + }, + { + "id": "6406", + "name": "Sticker | TACO | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6406.png" + }, + { + "id": "6407", + "name": "Sticker | TACO (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6407.png" + }, + { + "id": "6408", + "name": "Sticker | TACO (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6408.png" + }, + { + "id": "6409", + "name": "Sticker | TACO (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6409.png" + }, + { + "id": "6410", + "name": "Sticker | coldzera | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6410.png" + }, + { + "id": "6411", + "name": "Sticker | coldzera (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6411.png" + }, + { + "id": "6412", + "name": "Sticker | coldzera (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6412.png" + }, + { + "id": "6413", + "name": "Sticker | coldzera (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6413.png" + }, + { + "id": "6414", + "name": "Sticker | TRY | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6414.png" + }, + { + "id": "6415", + "name": "Sticker | TRY (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6415.png" + }, + { + "id": "6416", + "name": "Sticker | TRY (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6416.png" + }, + { + "id": "6417", + "name": "Sticker | TRY (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6417.png" + }, + { + "id": "6418", + "name": "Sticker | latto | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6418.png" + }, + { + "id": "6419", + "name": "Sticker | latto (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6419.png" + }, + { + "id": "6420", + "name": "Sticker | latto (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6420.png" + }, + { + "id": "6421", + "name": "Sticker | latto (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6421.png" + }, + { + "id": "6422", + "name": "Sticker | dumau | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6422.png" + }, + { + "id": "6423", + "name": "Sticker | dumau (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6423.png" + }, + { + "id": "6424", + "name": "Sticker | dumau (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6424.png" + }, + { + "id": "6425", + "name": "Sticker | dumau (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6425.png" + }, + { + "id": "6426", + "name": "Sticker | KRIMZ | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6426.png" + }, + { + "id": "6427", + "name": "Sticker | KRIMZ (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6427.png" + }, + { + "id": "6428", + "name": "Sticker | KRIMZ (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6428.png" + }, + { + "id": "6429", + "name": "Sticker | KRIMZ (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6429.png" + }, + { + "id": "6430", + "name": "Sticker | mezii | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6430.png" + }, + { + "id": "6431", + "name": "Sticker | mezii (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6431.png" + }, + { + "id": "6432", + "name": "Sticker | mezii (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6432.png" + }, + { + "id": "6433", + "name": "Sticker | mezii (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6433.png" + }, + { + "id": "6434", + "name": "Sticker | FASHR | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6434.png" + }, + { + "id": "6435", + "name": "Sticker | FASHR (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6435.png" + }, + { + "id": "6436", + "name": "Sticker | FASHR (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6436.png" + }, + { + "id": "6437", + "name": "Sticker | FASHR (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6437.png" + }, + { + "id": "6438", + "name": "Sticker | roeJ | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6438.png" + }, + { + "id": "6439", + "name": "Sticker | roeJ (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6439.png" + }, + { + "id": "6440", + "name": "Sticker | roeJ (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6440.png" + }, + { + "id": "6441", + "name": "Sticker | roeJ (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6441.png" + }, + { + "id": "6442", + "name": "Sticker | nicoodoz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6442.png" + }, + { + "id": "6443", + "name": "Sticker | nicoodoz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6443.png" + }, + { + "id": "6444", + "name": "Sticker | nicoodoz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6444.png" + }, + { + "id": "6445", + "name": "Sticker | nicoodoz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6445.png" + }, + { + "id": "6446", + "name": "Sticker | KSCERATO | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6446.png" + }, + { + "id": "6447", + "name": "Sticker | KSCERATO (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6447.png" + }, + { + "id": "6448", + "name": "Sticker | KSCERATO (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6448.png" + }, + { + "id": "6449", + "name": "Sticker | KSCERATO (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6449.png" + }, + { + "id": "6450", + "name": "Sticker | yuurih | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6450.png" + }, + { + "id": "6451", + "name": "Sticker | yuurih (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6451.png" + }, + { + "id": "6452", + "name": "Sticker | yuurih (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6452.png" + }, + { + "id": "6453", + "name": "Sticker | yuurih (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6453.png" + }, + { + "id": "6454", + "name": "Sticker | drop | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6454.png" + }, + { + "id": "6455", + "name": "Sticker | drop (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6455.png" + }, + { + "id": "6456", + "name": "Sticker | drop (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6456.png" + }, + { + "id": "6457", + "name": "Sticker | drop (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6457.png" + }, + { + "id": "6458", + "name": "Sticker | saffee | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6458.png" + }, + { + "id": "6459", + "name": "Sticker | saffee (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6459.png" + }, + { + "id": "6460", + "name": "Sticker | saffee (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6460.png" + }, + { + "id": "6461", + "name": "Sticker | saffee (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6461.png" + }, + { + "id": "6462", + "name": "Sticker | arT | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6462.png" + }, + { + "id": "6463", + "name": "Sticker | arT (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6463.png" + }, + { + "id": "6464", + "name": "Sticker | arT (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6464.png" + }, + { + "id": "6465", + "name": "Sticker | arT (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6465.png" + }, + { + "id": "6466", + "name": "Sticker | acoR | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6466.png" + }, + { + "id": "6467", + "name": "Sticker | acoR (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6467.png" + }, + { + "id": "6468", + "name": "Sticker | acoR (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6468.png" + }, + { + "id": "6469", + "name": "Sticker | acoR (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6469.png" + }, + { + "id": "6470", + "name": "Sticker | iM | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6470.png" + }, + { + "id": "6471", + "name": "Sticker | iM (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6471.png" + }, + { + "id": "6472", + "name": "Sticker | iM (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6472.png" + }, + { + "id": "6473", + "name": "Sticker | iM (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6473.png" + }, + { + "id": "6474", + "name": "Sticker | siuhy | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6474.png" + }, + { + "id": "6475", + "name": "Sticker | siuhy (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6475.png" + }, + { + "id": "6476", + "name": "Sticker | siuhy (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6476.png" + }, + { + "id": "6477", + "name": "Sticker | siuhy (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6477.png" + }, + { + "id": "6478", + "name": "Sticker | Keoz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6478.png" + }, + { + "id": "6479", + "name": "Sticker | Keoz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6479.png" + }, + { + "id": "6480", + "name": "Sticker | Keoz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6480.png" + }, + { + "id": "6481", + "name": "Sticker | Keoz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6481.png" + }, + { + "id": "6482", + "name": "Sticker | isak | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6482.png" + }, + { + "id": "6483", + "name": "Sticker | isak (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6483.png" + }, + { + "id": "6484", + "name": "Sticker | isak (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6484.png" + }, + { + "id": "6485", + "name": "Sticker | isak (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6485.png" + }, + { + "id": "6486", + "name": "Sticker | INS | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6486.png" + }, + { + "id": "6487", + "name": "Sticker | INS (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6487.png" + }, + { + "id": "6488", + "name": "Sticker | INS (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6488.png" + }, + { + "id": "6489", + "name": "Sticker | INS (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6489.png" + }, + { + "id": "6490", + "name": "Sticker | vexite | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6490.png" + }, + { + "id": "6491", + "name": "Sticker | vexite (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6491.png" + }, + { + "id": "6492", + "name": "Sticker | vexite (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6492.png" + }, + { + "id": "6493", + "name": "Sticker | vexite (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6493.png" + }, + { + "id": "6494", + "name": "Sticker | Sico | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6494.png" + }, + { + "id": "6495", + "name": "Sticker | Sico (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6495.png" + }, + { + "id": "6496", + "name": "Sticker | Sico (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6496.png" + }, + { + "id": "6497", + "name": "Sticker | Sico (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6497.png" + }, + { + "id": "6498", + "name": "Sticker | Liazz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6498.png" + }, + { + "id": "6499", + "name": "Sticker | Liazz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6499.png" + }, + { + "id": "6500", + "name": "Sticker | Liazz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6500.png" + }, + { + "id": "6501", + "name": "Sticker | Liazz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6501.png" + }, + { + "id": "6502", + "name": "Sticker | aliStair | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6502.png" + }, + { + "id": "6503", + "name": "Sticker | aliStair (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6503.png" + }, + { + "id": "6504", + "name": "Sticker | aliStair (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6504.png" + }, + { + "id": "6505", + "name": "Sticker | aliStair (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6505.png" + }, + { + "id": "6506", + "name": "Sticker | sk0R | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6506.png" + }, + { + "id": "6507", + "name": "Sticker | sk0R (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6507.png" + }, + { + "id": "6508", + "name": "Sticker | sk0R (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6508.png" + }, + { + "id": "6509", + "name": "Sticker | sk0R (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6509.png" + }, + { + "id": "6510", + "name": "Sticker | Techno4K | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6510.png" + }, + { + "id": "6511", + "name": "Sticker | Techno4K (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6511.png" + }, + { + "id": "6512", + "name": "Sticker | Techno4K (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6512.png" + }, + { + "id": "6513", + "name": "Sticker | Techno4K (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6513.png" + }, + { + "id": "6514", + "name": "Sticker | kabal | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6514.png" + }, + { + "id": "6515", + "name": "Sticker | kabal (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6515.png" + }, + { + "id": "6516", + "name": "Sticker | kabal (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6516.png" + }, + { + "id": "6517", + "name": "Sticker | kabal (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6517.png" + }, + { + "id": "6518", + "name": "Sticker | bLitz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6518.png" + }, + { + "id": "6519", + "name": "Sticker | bLitz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6519.png" + }, + { + "id": "6520", + "name": "Sticker | bLitz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6520.png" + }, + { + "id": "6521", + "name": "Sticker | bLitz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6521.png" + }, + { + "id": "6522", + "name": "Sticker | ANNIHILATION | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6522.png" + }, + { + "id": "6523", + "name": "Sticker | ANNIHILATION (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6523.png" + }, + { + "id": "6524", + "name": "Sticker | ANNIHILATION (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6524.png" + }, + { + "id": "6525", + "name": "Sticker | ANNIHILATION (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6525.png" + }, + { + "id": "6526", + "name": "Sticker | FalleN | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6526.png" + }, + { + "id": "6527", + "name": "Sticker | FalleN (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6527.png" + }, + { + "id": "6528", + "name": "Sticker | FalleN (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6528.png" + }, + { + "id": "6529", + "name": "Sticker | FalleN (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6529.png" + }, + { + "id": "6530", + "name": "Sticker | fer | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6530.png" + }, + { + "id": "6531", + "name": "Sticker | fer (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6531.png" + }, + { + "id": "6532", + "name": "Sticker | fer (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6532.png" + }, + { + "id": "6533", + "name": "Sticker | fer (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6533.png" + }, + { + "id": "6534", + "name": "Sticker | boltz | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6534.png" + }, + { + "id": "6535", + "name": "Sticker | boltz (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6535.png" + }, + { + "id": "6536", + "name": "Sticker | boltz (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6536.png" + }, + { + "id": "6537", + "name": "Sticker | boltz (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6537.png" + }, + { + "id": "6538", + "name": "Sticker | VINI | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6538.png" + }, + { + "id": "6539", + "name": "Sticker | VINI (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6539.png" + }, + { + "id": "6540", + "name": "Sticker | VINI (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6540.png" + }, + { + "id": "6541", + "name": "Sticker | VINI (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6541.png" + }, + { + "id": "6542", + "name": "Sticker | chelo | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6542.png" + }, + { + "id": "6543", + "name": "Sticker | chelo (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6543.png" + }, + { + "id": "6544", + "name": "Sticker | chelo (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6544.png" + }, + { + "id": "6545", + "name": "Sticker | chelo (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6545.png" + }, + { + "id": "6546", + "name": "Sticker | FL1T | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6546.png" + }, + { + "id": "6547", + "name": "Sticker | FL1T (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6547.png" + }, + { + "id": "6548", + "name": "Sticker | FL1T (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6548.png" + }, + { + "id": "6549", + "name": "Sticker | FL1T (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6549.png" + }, + { + "id": "6550", + "name": "Sticker | n0rb3r7 | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6550.png" + }, + { + "id": "6551", + "name": "Sticker | n0rb3r7 (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6551.png" + }, + { + "id": "6552", + "name": "Sticker | n0rb3r7 (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6552.png" + }, + { + "id": "6553", + "name": "Sticker | n0rb3r7 (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6553.png" + }, + { + "id": "6554", + "name": "Sticker | Jame | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6554.png" + }, + { + "id": "6555", + "name": "Sticker | Jame (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6555.png" + }, + { + "id": "6556", + "name": "Sticker | Jame (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6556.png" + }, + { + "id": "6557", + "name": "Sticker | Jame (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6557.png" + }, + { + "id": "6558", + "name": "Sticker | qikert | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6558.png" + }, + { + "id": "6559", + "name": "Sticker | qikert (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6559.png" + }, + { + "id": "6560", + "name": "Sticker | qikert (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6560.png" + }, + { + "id": "6561", + "name": "Sticker | qikert (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6561.png" + }, + { + "id": "6562", + "name": "Sticker | fame | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6562.png" + }, + { + "id": "6563", + "name": "Sticker | fame (Glitter) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6563.png" + }, + { + "id": "6564", + "name": "Sticker | fame (Holo) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6564.png" + }, + { + "id": "6565", + "name": "Sticker | fame (Gold) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6565.png" + }, + { + "id": "6566", + "name": "Sticker | FL1T (Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6566.png" + }, + { + "id": "6567", + "name": "Sticker | FL1T (Glitter, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6567.png" + }, + { + "id": "6568", + "name": "Sticker | FL1T (Holo, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6568.png" + }, + { + "id": "6569", + "name": "Sticker | FL1T (Gold, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6569.png" + }, + { + "id": "6570", + "name": "Sticker | n0rb3r7 (Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6570.png" + }, + { + "id": "6571", + "name": "Sticker | n0rb3r7 (Glitter, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6571.png" + }, + { + "id": "6572", + "name": "Sticker | n0rb3r7 (Holo, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6572.png" + }, + { + "id": "6573", + "name": "Sticker | n0rb3r7 (Gold, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6573.png" + }, + { + "id": "6574", + "name": "Sticker | Jame (Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6574.png" + }, + { + "id": "6575", + "name": "Sticker | Jame (Glitter, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6575.png" + }, + { + "id": "6576", + "name": "Sticker | Jame (Holo, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6576.png" + }, + { + "id": "6577", + "name": "Sticker | Jame (Gold, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6577.png" + }, + { + "id": "6578", + "name": "Sticker | qikert (Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6578.png" + }, + { + "id": "6579", + "name": "Sticker | qikert (Glitter, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6579.png" + }, + { + "id": "6580", + "name": "Sticker | qikert (Holo, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6580.png" + }, + { + "id": "6581", + "name": "Sticker | qikert (Gold, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6581.png" + }, + { + "id": "6582", + "name": "Sticker | fame (Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6582.png" + }, + { + "id": "6583", + "name": "Sticker | fame (Glitter, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6583.png" + }, + { + "id": "6584", + "name": "Sticker | fame (Holo, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6584.png" + }, + { + "id": "6585", + "name": "Sticker | fame (Gold, Champion) | Rio 2022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6585.png" + }, + { + "id": "6586", + "name": "Sticker | 360 No Scope", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6586.png" + }, + { + "id": "6587", + "name": "Sticker | Aim And Fire", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6587.png" + }, + { + "id": "6588", + "name": "Sticker | Batter Up", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6588.png" + }, + { + "id": "6589", + "name": "Sticker | Sting Like A Butterfly", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6589.png" + }, + { + "id": "6590", + "name": "Sticker | Fireball", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6590.png" + }, + { + "id": "6591", + "name": "Sticker | Explosive Strength", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6591.png" + }, + { + "id": "6592", + "name": "Sticker | Not A Bot", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6592.png" + }, + { + "id": "6593", + "name": "Sticker | Knife's Edge", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6593.png" + }, + { + "id": "6594", + "name": "Sticker | Run T, Run", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6594.png" + }, + { + "id": "6595", + "name": "Sticker | Spectators", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6595.png" + }, + { + "id": "6596", + "name": "Sticker | Zap Cat", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6596.png" + }, + { + "id": "6597", + "name": "Sticker | Well Played", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6597.png" + }, + { + "id": "6598", + "name": "Sticker | Cyber Chicken (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6598.png" + }, + { + "id": "6599", + "name": "Sticker | Mind Games (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6599.png" + }, + { + "id": "6600", + "name": "Sticker | Infinite Triangle (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6600.png" + }, + { + "id": "6601", + "name": "Sticker | Salty (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6601.png" + }, + { + "id": "6602", + "name": "Sticker | Snowfall (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6602.png" + }, + { + "id": "6603", + "name": "Sticker | Street Artist (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6603.png" + }, + { + "id": "6604", + "name": "Sticker | Hidden Hero (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6604.png" + }, + { + "id": "6605", + "name": "Sticker | Ethereal Gaze (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6605.png" + }, + { + "id": "6606", + "name": "Sticker | Peek Me (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6606.png" + }, + { + "id": "6607", + "name": "Sticker | Anubis (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6607.png" + }, + { + "id": "6608", + "name": "Sticker | Fnatic | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6608.png" + }, + { + "id": "6609", + "name": "Sticker | Fnatic (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6609.png" + }, + { + "id": "6610", + "name": "Sticker | Fnatic (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6610.png" + }, + { + "id": "6611", + "name": "Sticker | Fnatic (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6611.png" + }, + { + "id": "6612", + "name": "Sticker | Natus Vincere | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6612.png" + }, + { + "id": "6613", + "name": "Sticker | Natus Vincere (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6613.png" + }, + { + "id": "6614", + "name": "Sticker | Natus Vincere (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6614.png" + }, + { + "id": "6615", + "name": "Sticker | Natus Vincere (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6615.png" + }, + { + "id": "6616", + "name": "Sticker | FURIA | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6616.png" + }, + { + "id": "6617", + "name": "Sticker | FURIA (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6617.png" + }, + { + "id": "6618", + "name": "Sticker | FURIA (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6618.png" + }, + { + "id": "6619", + "name": "Sticker | FURIA (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6619.png" + }, + { + "id": "6620", + "name": "Sticker | Vitality | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6620.png" + }, + { + "id": "6621", + "name": "Sticker | Vitality (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6621.png" + }, + { + "id": "6622", + "name": "Sticker | Vitality (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6622.png" + }, + { + "id": "6623", + "name": "Sticker | Vitality (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6623.png" + }, + { + "id": "6624", + "name": "Sticker | Heroic | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6624.png" + }, + { + "id": "6625", + "name": "Sticker | Heroic (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6625.png" + }, + { + "id": "6626", + "name": "Sticker | Heroic (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6626.png" + }, + { + "id": "6627", + "name": "Sticker | Heroic (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6627.png" + }, + { + "id": "6628", + "name": "Sticker | Bad News Eagles | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6628.png" + }, + { + "id": "6629", + "name": "Sticker | Bad News Eagles (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6629.png" + }, + { + "id": "6630", + "name": "Sticker | Bad News Eagles (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6630.png" + }, + { + "id": "6631", + "name": "Sticker | Bad News Eagles (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6631.png" + }, + { + "id": "6632", + "name": "Sticker | Into The Breach | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6632.png" + }, + { + "id": "6633", + "name": "Sticker | Into The Breach (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6633.png" + }, + { + "id": "6634", + "name": "Sticker | Into The Breach (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6634.png" + }, + { + "id": "6635", + "name": "Sticker | Into The Breach (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6635.png" + }, + { + "id": "6636", + "name": "Sticker | 9INE | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6636.png" + }, + { + "id": "6637", + "name": "Sticker | 9INE (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6637.png" + }, + { + "id": "6638", + "name": "Sticker | 9INE (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6638.png" + }, + { + "id": "6639", + "name": "Sticker | 9INE (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6639.png" + }, + { + "id": "6640", + "name": "Sticker | Ninjas in Pyjamas | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6640.png" + }, + { + "id": "6641", + "name": "Sticker | Ninjas in Pyjamas (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6641.png" + }, + { + "id": "6642", + "name": "Sticker | Ninjas in Pyjamas (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6642.png" + }, + { + "id": "6643", + "name": "Sticker | Ninjas in Pyjamas (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6643.png" + }, + { + "id": "6644", + "name": "Sticker | G2 Esports | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6644.png" + }, + { + "id": "6645", + "name": "Sticker | G2 Esports (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6645.png" + }, + { + "id": "6646", + "name": "Sticker | G2 Esports (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6646.png" + }, + { + "id": "6647", + "name": "Sticker | G2 Esports (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6647.png" + }, + { + "id": "6648", + "name": "Sticker | forZe eSports | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6648.png" + }, + { + "id": "6649", + "name": "Sticker | forZe eSports (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6649.png" + }, + { + "id": "6650", + "name": "Sticker | forZe eSports (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6650.png" + }, + { + "id": "6651", + "name": "Sticker | forZe eSports (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6651.png" + }, + { + "id": "6652", + "name": "Sticker | OG | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6652.png" + }, + { + "id": "6653", + "name": "Sticker | OG (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6653.png" + }, + { + "id": "6654", + "name": "Sticker | OG (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6654.png" + }, + { + "id": "6655", + "name": "Sticker | OG (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6655.png" + }, + { + "id": "6656", + "name": "Sticker | paiN Gaming | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6656.png" + }, + { + "id": "6657", + "name": "Sticker | paiN Gaming (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6657.png" + }, + { + "id": "6658", + "name": "Sticker | paiN Gaming (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6658.png" + }, + { + "id": "6659", + "name": "Sticker | paiN Gaming (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6659.png" + }, + { + "id": "6660", + "name": "Sticker | GamerLegion | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6660.png" + }, + { + "id": "6661", + "name": "Sticker | GamerLegion (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6661.png" + }, + { + "id": "6662", + "name": "Sticker | GamerLegion (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6662.png" + }, + { + "id": "6663", + "name": "Sticker | GamerLegion (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6663.png" + }, + { + "id": "6664", + "name": "Sticker | Apeks | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6664.png" + }, + { + "id": "6665", + "name": "Sticker | Apeks (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6665.png" + }, + { + "id": "6666", + "name": "Sticker | Apeks (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6666.png" + }, + { + "id": "6667", + "name": "Sticker | Apeks (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6667.png" + }, + { + "id": "6668", + "name": "Sticker | Monte | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6668.png" + }, + { + "id": "6669", + "name": "Sticker | Monte (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6669.png" + }, + { + "id": "6670", + "name": "Sticker | Monte (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6670.png" + }, + { + "id": "6671", + "name": "Sticker | Monte (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6671.png" + }, + { + "id": "6672", + "name": "Sticker | Team Liquid | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6672.png" + }, + { + "id": "6673", + "name": "Sticker | Team Liquid (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6673.png" + }, + { + "id": "6674", + "name": "Sticker | Team Liquid (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6674.png" + }, + { + "id": "6675", + "name": "Sticker | Team Liquid (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6675.png" + }, + { + "id": "6676", + "name": "Sticker | FaZe Clan | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6676.png" + }, + { + "id": "6677", + "name": "Sticker | FaZe Clan (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6677.png" + }, + { + "id": "6678", + "name": "Sticker | FaZe Clan (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6678.png" + }, + { + "id": "6679", + "name": "Sticker | FaZe Clan (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6679.png" + }, + { + "id": "6680", + "name": "Sticker | ENCE | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6680.png" + }, + { + "id": "6681", + "name": "Sticker | ENCE (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6681.png" + }, + { + "id": "6682", + "name": "Sticker | ENCE (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6682.png" + }, + { + "id": "6683", + "name": "Sticker | ENCE (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6683.png" + }, + { + "id": "6684", + "name": "Sticker | Grayhound Gaming | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6684.png" + }, + { + "id": "6685", + "name": "Sticker | Grayhound Gaming (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6685.png" + }, + { + "id": "6686", + "name": "Sticker | Grayhound Gaming (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6686.png" + }, + { + "id": "6687", + "name": "Sticker | Grayhound Gaming (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6687.png" + }, + { + "id": "6688", + "name": "Sticker | MOUZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6688.png" + }, + { + "id": "6689", + "name": "Sticker | MOUZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6689.png" + }, + { + "id": "6690", + "name": "Sticker | MOUZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6690.png" + }, + { + "id": "6691", + "name": "Sticker | MOUZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6691.png" + }, + { + "id": "6692", + "name": "Sticker | Complexity Gaming | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6692.png" + }, + { + "id": "6693", + "name": "Sticker | Complexity Gaming (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6693.png" + }, + { + "id": "6694", + "name": "Sticker | Complexity Gaming (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6694.png" + }, + { + "id": "6695", + "name": "Sticker | Complexity Gaming (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6695.png" + }, + { + "id": "6696", + "name": "Sticker | Fluxo | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6696.png" + }, + { + "id": "6697", + "name": "Sticker | Fluxo (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6697.png" + }, + { + "id": "6698", + "name": "Sticker | Fluxo (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6698.png" + }, + { + "id": "6699", + "name": "Sticker | Fluxo (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6699.png" + }, + { + "id": "6700", + "name": "Sticker | The MongolZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6700.png" + }, + { + "id": "6701", + "name": "Sticker | The MongolZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6701.png" + }, + { + "id": "6702", + "name": "Sticker | The MongolZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6702.png" + }, + { + "id": "6703", + "name": "Sticker | The MongolZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6703.png" + }, + { + "id": "6704", + "name": "Sticker | BLAST.tv | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6704.png" + }, + { + "id": "6705", + "name": "Sticker | BLAST.tv (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6705.png" + }, + { + "id": "6706", + "name": "Sticker | BLAST.tv (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6706.png" + }, + { + "id": "6707", + "name": "Sticker | BLAST.tv (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6707.png" + }, + { + "id": "6733", + "name": "Sticker | FASHR | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6733.png" + }, + { + "id": "6734", + "name": "Sticker | FASHR (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6734.png" + }, + { + "id": "6735", + "name": "Sticker | FASHR (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6735.png" + }, + { + "id": "6736", + "name": "Sticker | FASHR (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6736.png" + }, + { + "id": "6737", + "name": "Sticker | KRIMZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6737.png" + }, + { + "id": "6738", + "name": "Sticker | KRIMZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6738.png" + }, + { + "id": "6739", + "name": "Sticker | KRIMZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6739.png" + }, + { + "id": "6740", + "name": "Sticker | KRIMZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6740.png" + }, + { + "id": "6741", + "name": "Sticker | mezii | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6741.png" + }, + { + "id": "6742", + "name": "Sticker | mezii (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6742.png" + }, + { + "id": "6743", + "name": "Sticker | mezii (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6743.png" + }, + { + "id": "6744", + "name": "Sticker | mezii (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6744.png" + }, + { + "id": "6745", + "name": "Sticker | nicoodoz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6745.png" + }, + { + "id": "6746", + "name": "Sticker | nicoodoz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6746.png" + }, + { + "id": "6747", + "name": "Sticker | nicoodoz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6747.png" + }, + { + "id": "6748", + "name": "Sticker | nicoodoz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6748.png" + }, + { + "id": "6749", + "name": "Sticker | roeJ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6749.png" + }, + { + "id": "6750", + "name": "Sticker | roeJ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6750.png" + }, + { + "id": "6751", + "name": "Sticker | roeJ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6751.png" + }, + { + "id": "6752", + "name": "Sticker | roeJ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6752.png" + }, + { + "id": "6753", + "name": "Sticker | b1t | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6753.png" + }, + { + "id": "6754", + "name": "Sticker | b1t (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6754.png" + }, + { + "id": "6755", + "name": "Sticker | b1t (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6755.png" + }, + { + "id": "6756", + "name": "Sticker | b1t (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6756.png" + }, + { + "id": "6757", + "name": "Sticker | electronic | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6757.png" + }, + { + "id": "6758", + "name": "Sticker | electronic (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6758.png" + }, + { + "id": "6759", + "name": "Sticker | electronic (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6759.png" + }, + { + "id": "6760", + "name": "Sticker | electronic (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6760.png" + }, + { + "id": "6761", + "name": "Sticker | npl | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6761.png" + }, + { + "id": "6762", + "name": "Sticker | npl (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6762.png" + }, + { + "id": "6763", + "name": "Sticker | npl (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6763.png" + }, + { + "id": "6764", + "name": "Sticker | npl (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6764.png" + }, + { + "id": "6765", + "name": "Sticker | Perfecto | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6765.png" + }, + { + "id": "6766", + "name": "Sticker | Perfecto (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6766.png" + }, + { + "id": "6767", + "name": "Sticker | Perfecto (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6767.png" + }, + { + "id": "6768", + "name": "Sticker | Perfecto (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6768.png" + }, + { + "id": "6769", + "name": "Sticker | s1mple | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6769.png" + }, + { + "id": "6770", + "name": "Sticker | s1mple (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6770.png" + }, + { + "id": "6771", + "name": "Sticker | s1mple (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6771.png" + }, + { + "id": "6772", + "name": "Sticker | s1mple (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6772.png" + }, + { + "id": "6773", + "name": "Sticker | arT | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6773.png" + }, + { + "id": "6774", + "name": "Sticker | arT (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6774.png" + }, + { + "id": "6775", + "name": "Sticker | arT (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6775.png" + }, + { + "id": "6776", + "name": "Sticker | arT (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6776.png" + }, + { + "id": "6777", + "name": "Sticker | drop | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6777.png" + }, + { + "id": "6778", + "name": "Sticker | drop (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6778.png" + }, + { + "id": "6779", + "name": "Sticker | drop (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6779.png" + }, + { + "id": "6780", + "name": "Sticker | drop (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6780.png" + }, + { + "id": "6781", + "name": "Sticker | KSCERATO | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6781.png" + }, + { + "id": "6782", + "name": "Sticker | KSCERATO (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6782.png" + }, + { + "id": "6783", + "name": "Sticker | KSCERATO (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6783.png" + }, + { + "id": "6784", + "name": "Sticker | KSCERATO (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6784.png" + }, + { + "id": "6785", + "name": "Sticker | saffee | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6785.png" + }, + { + "id": "6786", + "name": "Sticker | saffee (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6786.png" + }, + { + "id": "6787", + "name": "Sticker | saffee (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6787.png" + }, + { + "id": "6788", + "name": "Sticker | saffee (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6788.png" + }, + { + "id": "6789", + "name": "Sticker | yuurih | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6789.png" + }, + { + "id": "6790", + "name": "Sticker | yuurih (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6790.png" + }, + { + "id": "6791", + "name": "Sticker | yuurih (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6791.png" + }, + { + "id": "6792", + "name": "Sticker | yuurih (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6792.png" + }, + { + "id": "6793", + "name": "Sticker | apEX | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6793.png" + }, + { + "id": "6794", + "name": "Sticker | apEX (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6794.png" + }, + { + "id": "6795", + "name": "Sticker | apEX (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6795.png" + }, + { + "id": "6796", + "name": "Sticker | apEX (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6796.png" + }, + { + "id": "6797", + "name": "Sticker | dupreeh | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6797.png" + }, + { + "id": "6798", + "name": "Sticker | dupreeh (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6798.png" + }, + { + "id": "6799", + "name": "Sticker | dupreeh (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6799.png" + }, + { + "id": "6800", + "name": "Sticker | dupreeh (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6800.png" + }, + { + "id": "6801", + "name": "Sticker | Magisk | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6801.png" + }, + { + "id": "6802", + "name": "Sticker | Magisk (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6802.png" + }, + { + "id": "6803", + "name": "Sticker | Magisk (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6803.png" + }, + { + "id": "6804", + "name": "Sticker | Magisk (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6804.png" + }, + { + "id": "6805", + "name": "Sticker | Spinx | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6805.png" + }, + { + "id": "6806", + "name": "Sticker | Spinx (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6806.png" + }, + { + "id": "6807", + "name": "Sticker | Spinx (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6807.png" + }, + { + "id": "6808", + "name": "Sticker | Spinx (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6808.png" + }, + { + "id": "6809", + "name": "Sticker | ZywOo | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6809.png" + }, + { + "id": "6810", + "name": "Sticker | ZywOo (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6810.png" + }, + { + "id": "6811", + "name": "Sticker | ZywOo (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6811.png" + }, + { + "id": "6812", + "name": "Sticker | ZywOo (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6812.png" + }, + { + "id": "6813", + "name": "Sticker | cadiaN | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6813.png" + }, + { + "id": "6814", + "name": "Sticker | cadiaN (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6814.png" + }, + { + "id": "6815", + "name": "Sticker | cadiaN (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6815.png" + }, + { + "id": "6816", + "name": "Sticker | cadiaN (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6816.png" + }, + { + "id": "6817", + "name": "Sticker | jabbi | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6817.png" + }, + { + "id": "6818", + "name": "Sticker | jabbi (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6818.png" + }, + { + "id": "6819", + "name": "Sticker | jabbi (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6819.png" + }, + { + "id": "6820", + "name": "Sticker | jabbi (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6820.png" + }, + { + "id": "6821", + "name": "Sticker | sjuush | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6821.png" + }, + { + "id": "6822", + "name": "Sticker | sjuush (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6822.png" + }, + { + "id": "6823", + "name": "Sticker | sjuush (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6823.png" + }, + { + "id": "6824", + "name": "Sticker | sjuush (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6824.png" + }, + { + "id": "6825", + "name": "Sticker | stavn | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6825.png" + }, + { + "id": "6826", + "name": "Sticker | stavn (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6826.png" + }, + { + "id": "6827", + "name": "Sticker | stavn (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6827.png" + }, + { + "id": "6828", + "name": "Sticker | stavn (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6828.png" + }, + { + "id": "6829", + "name": "Sticker | TeSeS | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6829.png" + }, + { + "id": "6830", + "name": "Sticker | TeSeS (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6830.png" + }, + { + "id": "6831", + "name": "Sticker | TeSeS (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6831.png" + }, + { + "id": "6832", + "name": "Sticker | TeSeS (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6832.png" + }, + { + "id": "6833", + "name": "Sticker | gxx- | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6833.png" + }, + { + "id": "6834", + "name": "Sticker | gxx- (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6834.png" + }, + { + "id": "6835", + "name": "Sticker | gxx- (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6835.png" + }, + { + "id": "6836", + "name": "Sticker | gxx- (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6836.png" + }, + { + "id": "6837", + "name": "Sticker | juanflatroo | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6837.png" + }, + { + "id": "6838", + "name": "Sticker | juanflatroo (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6838.png" + }, + { + "id": "6839", + "name": "Sticker | juanflatroo (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6839.png" + }, + { + "id": "6840", + "name": "Sticker | juanflatroo (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6840.png" + }, + { + "id": "6841", + "name": "Sticker | rigoN | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6841.png" + }, + { + "id": "6842", + "name": "Sticker | rigoN (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6842.png" + }, + { + "id": "6843", + "name": "Sticker | rigoN (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6843.png" + }, + { + "id": "6844", + "name": "Sticker | rigoN (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6844.png" + }, + { + "id": "6845", + "name": "Sticker | SENER1 | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6845.png" + }, + { + "id": "6846", + "name": "Sticker | SENER1 (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6846.png" + }, + { + "id": "6847", + "name": "Sticker | SENER1 (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6847.png" + }, + { + "id": "6848", + "name": "Sticker | SENER1 (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6848.png" + }, + { + "id": "6849", + "name": "Sticker | sinnopsyy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6849.png" + }, + { + "id": "6850", + "name": "Sticker | sinnopsyy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6850.png" + }, + { + "id": "6851", + "name": "Sticker | sinnopsyy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6851.png" + }, + { + "id": "6852", + "name": "Sticker | sinnopsyy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6852.png" + }, + { + "id": "6853", + "name": "Sticker | CRUC1AL | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6853.png" + }, + { + "id": "6854", + "name": "Sticker | CRUC1AL (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6854.png" + }, + { + "id": "6855", + "name": "Sticker | CRUC1AL (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6855.png" + }, + { + "id": "6856", + "name": "Sticker | CRUC1AL (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6856.png" + }, + { + "id": "6857", + "name": "Sticker | Cypher | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6857.png" + }, + { + "id": "6858", + "name": "Sticker | Cypher (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6858.png" + }, + { + "id": "6859", + "name": "Sticker | Cypher (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6859.png" + }, + { + "id": "6860", + "name": "Sticker | Cypher (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6860.png" + }, + { + "id": "6861", + "name": "Sticker | rallen | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6861.png" + }, + { + "id": "6862", + "name": "Sticker | rallen (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6862.png" + }, + { + "id": "6863", + "name": "Sticker | rallen (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6863.png" + }, + { + "id": "6864", + "name": "Sticker | rallen (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6864.png" + }, + { + "id": "6865", + "name": "Sticker | Thomas | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6865.png" + }, + { + "id": "6866", + "name": "Sticker | Thomas (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6866.png" + }, + { + "id": "6867", + "name": "Sticker | Thomas (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6867.png" + }, + { + "id": "6868", + "name": "Sticker | Thomas (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6868.png" + }, + { + "id": "6869", + "name": "Sticker | volt | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6869.png" + }, + { + "id": "6870", + "name": "Sticker | volt (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6870.png" + }, + { + "id": "6871", + "name": "Sticker | volt (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6871.png" + }, + { + "id": "6872", + "name": "Sticker | volt (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6872.png" + }, + { + "id": "6873", + "name": "Sticker | Goofy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6873.png" + }, + { + "id": "6874", + "name": "Sticker | Goofy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6874.png" + }, + { + "id": "6875", + "name": "Sticker | Goofy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6875.png" + }, + { + "id": "6876", + "name": "Sticker | Goofy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6876.png" + }, + { + "id": "6877", + "name": "Sticker | hades | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6877.png" + }, + { + "id": "6878", + "name": "Sticker | hades (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6878.png" + }, + { + "id": "6879", + "name": "Sticker | hades (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6879.png" + }, + { + "id": "6880", + "name": "Sticker | hades (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6880.png" + }, + { + "id": "6881", + "name": "Sticker | KEi | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6881.png" + }, + { + "id": "6882", + "name": "Sticker | KEi (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6882.png" + }, + { + "id": "6883", + "name": "Sticker | KEi (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6883.png" + }, + { + "id": "6884", + "name": "Sticker | KEi (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6884.png" + }, + { + "id": "6885", + "name": "Sticker | Kylar | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6885.png" + }, + { + "id": "6886", + "name": "Sticker | Kylar (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6886.png" + }, + { + "id": "6887", + "name": "Sticker | Kylar (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6887.png" + }, + { + "id": "6888", + "name": "Sticker | Kylar (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6888.png" + }, + { + "id": "6889", + "name": "Sticker | mynio | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6889.png" + }, + { + "id": "6890", + "name": "Sticker | mynio (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6890.png" + }, + { + "id": "6891", + "name": "Sticker | mynio (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6891.png" + }, + { + "id": "6892", + "name": "Sticker | mynio (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6892.png" + }, + { + "id": "6893", + "name": "Sticker | Aleksib | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6893.png" + }, + { + "id": "6894", + "name": "Sticker | Aleksib (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6894.png" + }, + { + "id": "6895", + "name": "Sticker | Aleksib (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6895.png" + }, + { + "id": "6896", + "name": "Sticker | Aleksib (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6896.png" + }, + { + "id": "6897", + "name": "Sticker | Brollan | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6897.png" + }, + { + "id": "6898", + "name": "Sticker | Brollan (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6898.png" + }, + { + "id": "6899", + "name": "Sticker | Brollan (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6899.png" + }, + { + "id": "6900", + "name": "Sticker | Brollan (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6900.png" + }, + { + "id": "6901", + "name": "Sticker | headtr1ck | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6901.png" + }, + { + "id": "6902", + "name": "Sticker | headtr1ck (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6902.png" + }, + { + "id": "6903", + "name": "Sticker | headtr1ck (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6903.png" + }, + { + "id": "6904", + "name": "Sticker | headtr1ck (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6904.png" + }, + { + "id": "6905", + "name": "Sticker | k0nfig | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6905.png" + }, + { + "id": "6906", + "name": "Sticker | k0nfig (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6906.png" + }, + { + "id": "6907", + "name": "Sticker | k0nfig (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6907.png" + }, + { + "id": "6908", + "name": "Sticker | k0nfig (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6908.png" + }, + { + "id": "6909", + "name": "Sticker | REZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6909.png" + }, + { + "id": "6910", + "name": "Sticker | REZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6910.png" + }, + { + "id": "6911", + "name": "Sticker | REZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6911.png" + }, + { + "id": "6912", + "name": "Sticker | REZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6912.png" + }, + { + "id": "6913", + "name": "Sticker | HooXi | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6913.png" + }, + { + "id": "6914", + "name": "Sticker | HooXi (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6914.png" + }, + { + "id": "6915", + "name": "Sticker | HooXi (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6915.png" + }, + { + "id": "6916", + "name": "Sticker | HooXi (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6916.png" + }, + { + "id": "6917", + "name": "Sticker | huNter- | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6917.png" + }, + { + "id": "6918", + "name": "Sticker | huNter- (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6918.png" + }, + { + "id": "6919", + "name": "Sticker | huNter- (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6919.png" + }, + { + "id": "6920", + "name": "Sticker | huNter- (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6920.png" + }, + { + "id": "6921", + "name": "Sticker | jks | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6921.png" + }, + { + "id": "6922", + "name": "Sticker | jks (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6922.png" + }, + { + "id": "6923", + "name": "Sticker | jks (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6923.png" + }, + { + "id": "6924", + "name": "Sticker | jks (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6924.png" + }, + { + "id": "6925", + "name": "Sticker | m0NESY | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6925.png" + }, + { + "id": "6926", + "name": "Sticker | m0NESY (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6926.png" + }, + { + "id": "6927", + "name": "Sticker | m0NESY (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6927.png" + }, + { + "id": "6928", + "name": "Sticker | m0NESY (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6928.png" + }, + { + "id": "6929", + "name": "Sticker | NiKo | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6929.png" + }, + { + "id": "6930", + "name": "Sticker | NiKo (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6930.png" + }, + { + "id": "6931", + "name": "Sticker | NiKo (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6931.png" + }, + { + "id": "6932", + "name": "Sticker | NiKo (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6932.png" + }, + { + "id": "6933", + "name": "Sticker | Jerry | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6933.png" + }, + { + "id": "6934", + "name": "Sticker | Jerry (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6934.png" + }, + { + "id": "6935", + "name": "Sticker | Jerry (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6935.png" + }, + { + "id": "6936", + "name": "Sticker | Jerry (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6936.png" + }, + { + "id": "6937", + "name": "Sticker | Krad | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6937.png" + }, + { + "id": "6938", + "name": "Sticker | Krad (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6938.png" + }, + { + "id": "6939", + "name": "Sticker | Krad (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6939.png" + }, + { + "id": "6940", + "name": "Sticker | Krad (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6940.png" + }, + { + "id": "6941", + "name": "Sticker | r3salt | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6941.png" + }, + { + "id": "6942", + "name": "Sticker | r3salt (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6942.png" + }, + { + "id": "6943", + "name": "Sticker | r3salt (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6943.png" + }, + { + "id": "6944", + "name": "Sticker | r3salt (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6944.png" + }, + { + "id": "6945", + "name": "Sticker | shalfey | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6945.png" + }, + { + "id": "6946", + "name": "Sticker | shalfey (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6946.png" + }, + { + "id": "6947", + "name": "Sticker | shalfey (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6947.png" + }, + { + "id": "6948", + "name": "Sticker | shalfey (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6948.png" + }, + { + "id": "6949", + "name": "Sticker | zorte | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6949.png" + }, + { + "id": "6950", + "name": "Sticker | zorte (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6950.png" + }, + { + "id": "6951", + "name": "Sticker | zorte (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6951.png" + }, + { + "id": "6952", + "name": "Sticker | zorte (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6952.png" + }, + { + "id": "6953", + "name": "Sticker | degster | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6953.png" + }, + { + "id": "6954", + "name": "Sticker | degster (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6954.png" + }, + { + "id": "6955", + "name": "Sticker | degster (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6955.png" + }, + { + "id": "6956", + "name": "Sticker | degster (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6956.png" + }, + { + "id": "6957", + "name": "Sticker | F1KU | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6957.png" + }, + { + "id": "6958", + "name": "Sticker | F1KU (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6958.png" + }, + { + "id": "6959", + "name": "Sticker | F1KU (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6959.png" + }, + { + "id": "6960", + "name": "Sticker | F1KU (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6960.png" + }, + { + "id": "6961", + "name": "Sticker | FlameZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6961.png" + }, + { + "id": "6962", + "name": "Sticker | FlameZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6962.png" + }, + { + "id": "6963", + "name": "Sticker | FlameZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6963.png" + }, + { + "id": "6964", + "name": "Sticker | FlameZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6964.png" + }, + { + "id": "6965", + "name": "Sticker | NEOFRAG | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6965.png" + }, + { + "id": "6966", + "name": "Sticker | NEOFRAG (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6966.png" + }, + { + "id": "6967", + "name": "Sticker | NEOFRAG (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6967.png" + }, + { + "id": "6968", + "name": "Sticker | NEOFRAG (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6968.png" + }, + { + "id": "6969", + "name": "Sticker | niko | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6969.png" + }, + { + "id": "6970", + "name": "Sticker | niko (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6970.png" + }, + { + "id": "6971", + "name": "Sticker | niko (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6971.png" + }, + { + "id": "6972", + "name": "Sticker | niko (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6972.png" + }, + { + "id": "6973", + "name": "Sticker | biguzera | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6973.png" + }, + { + "id": "6974", + "name": "Sticker | biguzera (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6974.png" + }, + { + "id": "6975", + "name": "Sticker | biguzera (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6975.png" + }, + { + "id": "6976", + "name": "Sticker | biguzera (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6976.png" + }, + { + "id": "6977", + "name": "Sticker | hardzao | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6977.png" + }, + { + "id": "6978", + "name": "Sticker | hardzao (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6978.png" + }, + { + "id": "6979", + "name": "Sticker | hardzao (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6979.png" + }, + { + "id": "6980", + "name": "Sticker | hardzao (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6980.png" + }, + { + "id": "6981", + "name": "Sticker | NEKiZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6981.png" + }, + { + "id": "6982", + "name": "Sticker | NEKiZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6982.png" + }, + { + "id": "6983", + "name": "Sticker | NEKiZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6983.png" + }, + { + "id": "6984", + "name": "Sticker | NEKiZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6984.png" + }, + { + "id": "6985", + "name": "Sticker | skullz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6985.png" + }, + { + "id": "6986", + "name": "Sticker | skullz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6986.png" + }, + { + "id": "6987", + "name": "Sticker | skullz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6987.png" + }, + { + "id": "6988", + "name": "Sticker | skullz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6988.png" + }, + { + "id": "6989", + "name": "Sticker | zevy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6989.png" + }, + { + "id": "6990", + "name": "Sticker | zevy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6990.png" + }, + { + "id": "6991", + "name": "Sticker | zevy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6991.png" + }, + { + "id": "6992", + "name": "Sticker | zevy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6992.png" + }, + { + "id": "6993", + "name": "Sticker | acoR | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6993.png" + }, + { + "id": "6994", + "name": "Sticker | acoR (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6994.png" + }, + { + "id": "6995", + "name": "Sticker | acoR (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6995.png" + }, + { + "id": "6996", + "name": "Sticker | acoR (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6996.png" + }, + { + "id": "6997", + "name": "Sticker | iM | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6997.png" + }, + { + "id": "6998", + "name": "Sticker | iM (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6998.png" + }, + { + "id": "6999", + "name": "Sticker | iM (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-6999.png" + }, + { + "id": "7000", + "name": "Sticker | iM (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7000.png" + }, + { + "id": "7001", + "name": "Sticker | isak | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7001.png" + }, + { + "id": "7002", + "name": "Sticker | isak (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7002.png" + }, + { + "id": "7003", + "name": "Sticker | isak (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7003.png" + }, + { + "id": "7004", + "name": "Sticker | isak (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7004.png" + }, + { + "id": "7005", + "name": "Sticker | Keoz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7005.png" + }, + { + "id": "7006", + "name": "Sticker | Keoz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7006.png" + }, + { + "id": "7007", + "name": "Sticker | Keoz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7007.png" + }, + { + "id": "7008", + "name": "Sticker | Keoz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7008.png" + }, + { + "id": "7009", + "name": "Sticker | siuhy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7009.png" + }, + { + "id": "7010", + "name": "Sticker | siuhy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7010.png" + }, + { + "id": "7011", + "name": "Sticker | siuhy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7011.png" + }, + { + "id": "7012", + "name": "Sticker | siuhy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7012.png" + }, + { + "id": "7013", + "name": "Sticker | jkaem | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7013.png" + }, + { + "id": "7014", + "name": "Sticker | jkaem (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7014.png" + }, + { + "id": "7015", + "name": "Sticker | jkaem (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7015.png" + }, + { + "id": "7016", + "name": "Sticker | jkaem (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7016.png" + }, + { + "id": "7017", + "name": "Sticker | jL | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7017.png" + }, + { + "id": "7018", + "name": "Sticker | jL (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7018.png" + }, + { + "id": "7019", + "name": "Sticker | jL (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7019.png" + }, + { + "id": "7020", + "name": "Sticker | jL (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7020.png" + }, + { + "id": "7021", + "name": "Sticker | kyxsan | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7021.png" + }, + { + "id": "7022", + "name": "Sticker | kyxsan (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7022.png" + }, + { + "id": "7023", + "name": "Sticker | kyxsan (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7023.png" + }, + { + "id": "7024", + "name": "Sticker | kyxsan (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7024.png" + }, + { + "id": "7025", + "name": "Sticker | nawwk | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7025.png" + }, + { + "id": "7026", + "name": "Sticker | nawwk (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7026.png" + }, + { + "id": "7027", + "name": "Sticker | nawwk (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7027.png" + }, + { + "id": "7028", + "name": "Sticker | nawwk (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7028.png" + }, + { + "id": "7029", + "name": "Sticker | STYKO | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7029.png" + }, + { + "id": "7030", + "name": "Sticker | STYKO (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7030.png" + }, + { + "id": "7031", + "name": "Sticker | STYKO (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7031.png" + }, + { + "id": "7032", + "name": "Sticker | STYKO (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7032.png" + }, + { + "id": "7033", + "name": "Sticker | BOROS | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7033.png" + }, + { + "id": "7034", + "name": "Sticker | BOROS (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7034.png" + }, + { + "id": "7035", + "name": "Sticker | BOROS (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7035.png" + }, + { + "id": "7036", + "name": "Sticker | BOROS (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7036.png" + }, + { + "id": "7037", + "name": "Sticker | DemQQ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7037.png" + }, + { + "id": "7038", + "name": "Sticker | DemQQ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7038.png" + }, + { + "id": "7039", + "name": "Sticker | DemQQ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7039.png" + }, + { + "id": "7040", + "name": "Sticker | DemQQ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7040.png" + }, + { + "id": "7041", + "name": "Sticker | kRaSnaL | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7041.png" + }, + { + "id": "7042", + "name": "Sticker | kRaSnaL (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7042.png" + }, + { + "id": "7043", + "name": "Sticker | kRaSnaL (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7043.png" + }, + { + "id": "7044", + "name": "Sticker | kRaSnaL (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7044.png" + }, + { + "id": "7045", + "name": "Sticker | sdy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7045.png" + }, + { + "id": "7046", + "name": "Sticker | sdy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7046.png" + }, + { + "id": "7047", + "name": "Sticker | sdy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7047.png" + }, + { + "id": "7048", + "name": "Sticker | sdy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7048.png" + }, + { + "id": "7049", + "name": "Sticker | Woro2k | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7049.png" + }, + { + "id": "7050", + "name": "Sticker | Woro2k (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7050.png" + }, + { + "id": "7051", + "name": "Sticker | Woro2k (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7051.png" + }, + { + "id": "7052", + "name": "Sticker | Woro2k (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7052.png" + }, + { + "id": "7053", + "name": "Sticker | EliGE | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7053.png" + }, + { + "id": "7054", + "name": "Sticker | EliGE (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7054.png" + }, + { + "id": "7055", + "name": "Sticker | EliGE (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7055.png" + }, + { + "id": "7056", + "name": "Sticker | EliGE (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7056.png" + }, + { + "id": "7057", + "name": "Sticker | NAF | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7057.png" + }, + { + "id": "7058", + "name": "Sticker | NAF (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7058.png" + }, + { + "id": "7059", + "name": "Sticker | NAF (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7059.png" + }, + { + "id": "7060", + "name": "Sticker | NAF (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7060.png" + }, + { + "id": "7061", + "name": "Sticker | nitr0 | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7061.png" + }, + { + "id": "7062", + "name": "Sticker | nitr0 (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7062.png" + }, + { + "id": "7063", + "name": "Sticker | nitr0 (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7063.png" + }, + { + "id": "7064", + "name": "Sticker | nitr0 (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7064.png" + }, + { + "id": "7065", + "name": "Sticker | oSee | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7065.png" + }, + { + "id": "7066", + "name": "Sticker | oSee (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7066.png" + }, + { + "id": "7067", + "name": "Sticker | oSee (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7067.png" + }, + { + "id": "7068", + "name": "Sticker | oSee (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7068.png" + }, + { + "id": "7069", + "name": "Sticker | YEKINDAR | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7069.png" + }, + { + "id": "7070", + "name": "Sticker | YEKINDAR (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7070.png" + }, + { + "id": "7071", + "name": "Sticker | YEKINDAR (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7071.png" + }, + { + "id": "7072", + "name": "Sticker | YEKINDAR (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7072.png" + }, + { + "id": "7073", + "name": "Sticker | broky | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7073.png" + }, + { + "id": "7074", + "name": "Sticker | broky (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7074.png" + }, + { + "id": "7075", + "name": "Sticker | broky (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7075.png" + }, + { + "id": "7076", + "name": "Sticker | broky (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7076.png" + }, + { + "id": "7077", + "name": "Sticker | karrigan | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7077.png" + }, + { + "id": "7078", + "name": "Sticker | karrigan (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7078.png" + }, + { + "id": "7079", + "name": "Sticker | karrigan (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7079.png" + }, + { + "id": "7080", + "name": "Sticker | karrigan (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7080.png" + }, + { + "id": "7081", + "name": "Sticker | rain | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7081.png" + }, + { + "id": "7082", + "name": "Sticker | rain (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7082.png" + }, + { + "id": "7083", + "name": "Sticker | rain (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7083.png" + }, + { + "id": "7084", + "name": "Sticker | rain (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7084.png" + }, + { + "id": "7085", + "name": "Sticker | ropz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7085.png" + }, + { + "id": "7086", + "name": "Sticker | ropz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7086.png" + }, + { + "id": "7087", + "name": "Sticker | ropz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7087.png" + }, + { + "id": "7088", + "name": "Sticker | ropz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7088.png" + }, + { + "id": "7089", + "name": "Sticker | Twistzz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7089.png" + }, + { + "id": "7090", + "name": "Sticker | Twistzz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7090.png" + }, + { + "id": "7091", + "name": "Sticker | Twistzz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7091.png" + }, + { + "id": "7092", + "name": "Sticker | Twistzz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7092.png" + }, + { + "id": "7093", + "name": "Sticker | Dycha | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7093.png" + }, + { + "id": "7094", + "name": "Sticker | Dycha (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7094.png" + }, + { + "id": "7095", + "name": "Sticker | Dycha (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7095.png" + }, + { + "id": "7096", + "name": "Sticker | Dycha (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7096.png" + }, + { + "id": "7097", + "name": "Sticker | maden | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7097.png" + }, + { + "id": "7098", + "name": "Sticker | maden (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7098.png" + }, + { + "id": "7099", + "name": "Sticker | maden (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7099.png" + }, + { + "id": "7100", + "name": "Sticker | maden (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7100.png" + }, + { + "id": "7101", + "name": "Sticker | NertZ | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7101.png" + }, + { + "id": "7102", + "name": "Sticker | NertZ (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7102.png" + }, + { + "id": "7103", + "name": "Sticker | NertZ (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7103.png" + }, + { + "id": "7104", + "name": "Sticker | NertZ (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7104.png" + }, + { + "id": "7105", + "name": "Sticker | Snappi | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7105.png" + }, + { + "id": "7106", + "name": "Sticker | Snappi (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7106.png" + }, + { + "id": "7107", + "name": "Sticker | Snappi (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7107.png" + }, + { + "id": "7108", + "name": "Sticker | Snappi (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7108.png" + }, + { + "id": "7109", + "name": "Sticker | SunPayus | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7109.png" + }, + { + "id": "7110", + "name": "Sticker | SunPayus (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7110.png" + }, + { + "id": "7111", + "name": "Sticker | SunPayus (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7111.png" + }, + { + "id": "7112", + "name": "Sticker | SunPayus (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7112.png" + }, + { + "id": "7113", + "name": "Sticker | aliStair | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7113.png" + }, + { + "id": "7114", + "name": "Sticker | aliStair (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7114.png" + }, + { + "id": "7115", + "name": "Sticker | aliStair (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7115.png" + }, + { + "id": "7116", + "name": "Sticker | aliStair (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7116.png" + }, + { + "id": "7117", + "name": "Sticker | INS | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7117.png" + }, + { + "id": "7118", + "name": "Sticker | INS (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7118.png" + }, + { + "id": "7119", + "name": "Sticker | INS (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7119.png" + }, + { + "id": "7120", + "name": "Sticker | INS (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7120.png" + }, + { + "id": "7121", + "name": "Sticker | Liazz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7121.png" + }, + { + "id": "7122", + "name": "Sticker | Liazz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7122.png" + }, + { + "id": "7123", + "name": "Sticker | Liazz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7123.png" + }, + { + "id": "7124", + "name": "Sticker | Liazz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7124.png" + }, + { + "id": "7125", + "name": "Sticker | Sico | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7125.png" + }, + { + "id": "7126", + "name": "Sticker | Sico (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7126.png" + }, + { + "id": "7127", + "name": "Sticker | Sico (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7127.png" + }, + { + "id": "7128", + "name": "Sticker | Sico (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7128.png" + }, + { + "id": "7129", + "name": "Sticker | vexite | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7129.png" + }, + { + "id": "7130", + "name": "Sticker | vexite (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7130.png" + }, + { + "id": "7131", + "name": "Sticker | vexite (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7131.png" + }, + { + "id": "7132", + "name": "Sticker | vexite (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7132.png" + }, + { + "id": "7133", + "name": "Sticker | dexter | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7133.png" + }, + { + "id": "7134", + "name": "Sticker | dexter (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7134.png" + }, + { + "id": "7135", + "name": "Sticker | dexter (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7135.png" + }, + { + "id": "7136", + "name": "Sticker | dexter (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7136.png" + }, + { + "id": "7137", + "name": "Sticker | frozen | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7137.png" + }, + { + "id": "7138", + "name": "Sticker | frozen (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7138.png" + }, + { + "id": "7139", + "name": "Sticker | frozen (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7139.png" + }, + { + "id": "7140", + "name": "Sticker | frozen (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7140.png" + }, + { + "id": "7141", + "name": "Sticker | JDC | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7141.png" + }, + { + "id": "7142", + "name": "Sticker | JDC (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7142.png" + }, + { + "id": "7143", + "name": "Sticker | JDC (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7143.png" + }, + { + "id": "7144", + "name": "Sticker | JDC (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7144.png" + }, + { + "id": "7145", + "name": "Sticker | torzsi | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7145.png" + }, + { + "id": "7146", + "name": "Sticker | torzsi (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7146.png" + }, + { + "id": "7147", + "name": "Sticker | torzsi (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7147.png" + }, + { + "id": "7148", + "name": "Sticker | torzsi (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7148.png" + }, + { + "id": "7149", + "name": "Sticker | xertioN | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7149.png" + }, + { + "id": "7150", + "name": "Sticker | xertioN (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7150.png" + }, + { + "id": "7151", + "name": "Sticker | xertioN (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7151.png" + }, + { + "id": "7152", + "name": "Sticker | xertioN (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7152.png" + }, + { + "id": "7153", + "name": "Sticker | FaNg | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7153.png" + }, + { + "id": "7154", + "name": "Sticker | FaNg (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7154.png" + }, + { + "id": "7155", + "name": "Sticker | FaNg (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7155.png" + }, + { + "id": "7156", + "name": "Sticker | FaNg (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7156.png" + }, + { + "id": "7157", + "name": "Sticker | floppy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7157.png" + }, + { + "id": "7158", + "name": "Sticker | floppy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7158.png" + }, + { + "id": "7159", + "name": "Sticker | floppy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7159.png" + }, + { + "id": "7160", + "name": "Sticker | floppy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7160.png" + }, + { + "id": "7161", + "name": "Sticker | Grim | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7161.png" + }, + { + "id": "7162", + "name": "Sticker | Grim (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7162.png" + }, + { + "id": "7163", + "name": "Sticker | Grim (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7163.png" + }, + { + "id": "7164", + "name": "Sticker | Grim (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7164.png" + }, + { + "id": "7165", + "name": "Sticker | hallzerk | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7165.png" + }, + { + "id": "7166", + "name": "Sticker | hallzerk (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7166.png" + }, + { + "id": "7167", + "name": "Sticker | hallzerk (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7167.png" + }, + { + "id": "7168", + "name": "Sticker | hallzerk (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7168.png" + }, + { + "id": "7169", + "name": "Sticker | JT | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7169.png" + }, + { + "id": "7170", + "name": "Sticker | JT (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7170.png" + }, + { + "id": "7171", + "name": "Sticker | JT (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7171.png" + }, + { + "id": "7172", + "name": "Sticker | JT (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7172.png" + }, + { + "id": "7173", + "name": "Sticker | felps | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7173.png" + }, + { + "id": "7174", + "name": "Sticker | felps (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7174.png" + }, + { + "id": "7175", + "name": "Sticker | felps (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7175.png" + }, + { + "id": "7176", + "name": "Sticker | felps (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7176.png" + }, + { + "id": "7177", + "name": "Sticker | History | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7177.png" + }, + { + "id": "7178", + "name": "Sticker | History (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7178.png" + }, + { + "id": "7179", + "name": "Sticker | History (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7179.png" + }, + { + "id": "7180", + "name": "Sticker | History (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7180.png" + }, + { + "id": "7181", + "name": "Sticker | Lucaozy | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7181.png" + }, + { + "id": "7182", + "name": "Sticker | Lucaozy (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7182.png" + }, + { + "id": "7183", + "name": "Sticker | Lucaozy (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7183.png" + }, + { + "id": "7184", + "name": "Sticker | Lucaozy (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7184.png" + }, + { + "id": "7185", + "name": "Sticker | v$m | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7185.png" + }, + { + "id": "7186", + "name": "Sticker | v$m (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7186.png" + }, + { + "id": "7187", + "name": "Sticker | v$m (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7187.png" + }, + { + "id": "7188", + "name": "Sticker | v$m (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7188.png" + }, + { + "id": "7189", + "name": "Sticker | WOOD7 | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7189.png" + }, + { + "id": "7190", + "name": "Sticker | WOOD7 (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7190.png" + }, + { + "id": "7191", + "name": "Sticker | WOOD7 (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7191.png" + }, + { + "id": "7192", + "name": "Sticker | WOOD7 (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7192.png" + }, + { + "id": "7193", + "name": "Sticker | ANNIHILATION | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7193.png" + }, + { + "id": "7194", + "name": "Sticker | ANNIHILATION (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7194.png" + }, + { + "id": "7195", + "name": "Sticker | ANNIHILATION (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7195.png" + }, + { + "id": "7196", + "name": "Sticker | ANNIHILATION (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7196.png" + }, + { + "id": "7197", + "name": "Sticker | Bart4k | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7197.png" + }, + { + "id": "7198", + "name": "Sticker | Bart4k (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7198.png" + }, + { + "id": "7199", + "name": "Sticker | Bart4k (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7199.png" + }, + { + "id": "7200", + "name": "Sticker | Bart4k (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7200.png" + }, + { + "id": "7201", + "name": "Sticker | bLitz | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7201.png" + }, + { + "id": "7202", + "name": "Sticker | bLitz (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7202.png" + }, + { + "id": "7203", + "name": "Sticker | bLitz (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7203.png" + }, + { + "id": "7204", + "name": "Sticker | bLitz (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7204.png" + }, + { + "id": "7205", + "name": "Sticker | sk0R | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7205.png" + }, + { + "id": "7206", + "name": "Sticker | sk0R (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7206.png" + }, + { + "id": "7207", + "name": "Sticker | sk0R (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7207.png" + }, + { + "id": "7208", + "name": "Sticker | sk0R (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7208.png" + }, + { + "id": "7209", + "name": "Sticker | Techno4K | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7209.png" + }, + { + "id": "7210", + "name": "Sticker | Techno4K (Glitter) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7210.png" + }, + { + "id": "7211", + "name": "Sticker | Techno4K (Holo) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7211.png" + }, + { + "id": "7212", + "name": "Sticker | Techno4K (Gold) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7212.png" + }, + { + "id": "7213", + "name": "Sticker | apEX (Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7213.png" + }, + { + "id": "7214", + "name": "Sticker | apEX (Glitter, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7214.png" + }, + { + "id": "7215", + "name": "Sticker | apEX (Holo, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7215.png" + }, + { + "id": "7216", + "name": "Sticker | apEX (Gold, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7216.png" + }, + { + "id": "7217", + "name": "Sticker | dupreeh (Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7217.png" + }, + { + "id": "7218", + "name": "Sticker | dupreeh (Glitter, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7218.png" + }, + { + "id": "7219", + "name": "Sticker | dupreeh (Holo, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7219.png" + }, + { + "id": "7220", + "name": "Sticker | dupreeh (Gold, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7220.png" + }, + { + "id": "7221", + "name": "Sticker | Magisk (Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7221.png" + }, + { + "id": "7222", + "name": "Sticker | Magisk (Glitter, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7222.png" + }, + { + "id": "7223", + "name": "Sticker | Magisk (Holo, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7223.png" + }, + { + "id": "7224", + "name": "Sticker | Magisk (Gold, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7224.png" + }, + { + "id": "7225", + "name": "Sticker | Spinx (Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7225.png" + }, + { + "id": "7226", + "name": "Sticker | Spinx (Glitter, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7226.png" + }, + { + "id": "7227", + "name": "Sticker | Spinx (Holo, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7227.png" + }, + { + "id": "7228", + "name": "Sticker | Spinx (Gold, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7228.png" + }, + { + "id": "7229", + "name": "Sticker | ZywOo (Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7229.png" + }, + { + "id": "7230", + "name": "Sticker | ZywOo (Glitter, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7230.png" + }, + { + "id": "7231", + "name": "Sticker | ZywOo (Holo, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7231.png" + }, + { + "id": "7232", + "name": "Sticker | ZywOo (Gold, Champion) | Paris 2023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7232.png" + }, + { + "id": "7233", + "name": "Sticker | Ouchie (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7233.png" + }, + { + "id": "7234", + "name": "Sticker | Lost In Smoke (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7234.png" + }, + { + "id": "7235", + "name": "Sticker | Retro Zeus", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7235.png" + }, + { + "id": "7236", + "name": "Sticker | This Is Fine (Chicken)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7236.png" + }, + { + "id": "7237", + "name": "Sticker | Please Return To", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7237.png" + }, + { + "id": "7238", + "name": "Sticker | Peek-A-Boo", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7238.png" + }, + { + "id": "7239", + "name": "Sticker | AKickflip-47", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7239.png" + }, + { + "id": "7240", + "name": "Sticker | Easy For Ricksaw", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7240.png" + }, + { + "id": "7241", + "name": "Sticker | Bum A Smoke", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7241.png" + }, + { + "id": "7242", + "name": "Sticker | Angry T", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7242.png" + }, + { + "id": "7243", + "name": "Sticker | Old School (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7243.png" + }, + { + "id": "7244", + "name": "Sticker | Econometer (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7244.png" + }, + { + "id": "7245", + "name": "Sticker | Dystopian Gaze (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7245.png" + }, + { + "id": "7246", + "name": "Sticker | Loving Eyes (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7246.png" + }, + { + "id": "7247", + "name": "Sticker | Try Hard (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7247.png" + }, + { + "id": "7248", + "name": "Sticker | Lit (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7248.png" + }, + { + "id": "7249", + "name": "Sticker | Cedar Creek (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7249.png" + }, + { + "id": "7250", + "name": "Sticker | Pushing Smokes (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7250.png" + }, + { + "id": "7251", + "name": "Sticker | Lotus (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7251.png" + }, + { + "id": "7252", + "name": "Sticker | Factory Sealed (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7252.png" + }, + { + "id": "7253", + "name": "Sticker | On An Eco (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7253.png" + }, + { + "id": "7254", + "name": "Sticker | Natus Vincere | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7254.png" + }, + { + "id": "7255", + "name": "Sticker | Natus Vincere (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7255.png" + }, + { + "id": "7256", + "name": "Sticker | Natus Vincere (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7256.png" + }, + { + "id": "7257", + "name": "Sticker | Natus Vincere (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7257.png" + }, + { + "id": "7258", + "name": "Sticker | Virtus.pro | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7258.png" + }, + { + "id": "7259", + "name": "Sticker | Virtus.pro (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7259.png" + }, + { + "id": "7260", + "name": "Sticker | Virtus.pro (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7260.png" + }, + { + "id": "7261", + "name": "Sticker | Virtus.pro (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7261.png" + }, + { + "id": "7262", + "name": "Sticker | G2 Esports | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7262.png" + }, + { + "id": "7263", + "name": "Sticker | G2 Esports (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7263.png" + }, + { + "id": "7264", + "name": "Sticker | G2 Esports (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7264.png" + }, + { + "id": "7265", + "name": "Sticker | G2 Esports (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7265.png" + }, + { + "id": "7266", + "name": "Sticker | FaZe Clan | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7266.png" + }, + { + "id": "7267", + "name": "Sticker | FaZe Clan (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7267.png" + }, + { + "id": "7268", + "name": "Sticker | FaZe Clan (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7268.png" + }, + { + "id": "7269", + "name": "Sticker | FaZe Clan (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7269.png" + }, + { + "id": "7270", + "name": "Sticker | Team Spirit | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7270.png" + }, + { + "id": "7271", + "name": "Sticker | Team Spirit (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7271.png" + }, + { + "id": "7272", + "name": "Sticker | Team Spirit (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7272.png" + }, + { + "id": "7273", + "name": "Sticker | Team Spirit (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7273.png" + }, + { + "id": "7274", + "name": "Sticker | Vitality | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7274.png" + }, + { + "id": "7275", + "name": "Sticker | Vitality (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7275.png" + }, + { + "id": "7276", + "name": "Sticker | Vitality (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7276.png" + }, + { + "id": "7277", + "name": "Sticker | Vitality (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7277.png" + }, + { + "id": "7278", + "name": "Sticker | MOUZ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7278.png" + }, + { + "id": "7279", + "name": "Sticker | MOUZ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7279.png" + }, + { + "id": "7280", + "name": "Sticker | MOUZ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7280.png" + }, + { + "id": "7281", + "name": "Sticker | MOUZ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7281.png" + }, + { + "id": "7282", + "name": "Sticker | Complexity Gaming | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7282.png" + }, + { + "id": "7283", + "name": "Sticker | Complexity Gaming (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7283.png" + }, + { + "id": "7284", + "name": "Sticker | Complexity Gaming (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7284.png" + }, + { + "id": "7285", + "name": "Sticker | Complexity Gaming (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7285.png" + }, + { + "id": "7286", + "name": "Sticker | Cloud9 | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7286.png" + }, + { + "id": "7287", + "name": "Sticker | Cloud9 (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7287.png" + }, + { + "id": "7288", + "name": "Sticker | Cloud9 (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7288.png" + }, + { + "id": "7289", + "name": "Sticker | Cloud9 (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7289.png" + }, + { + "id": "7290", + "name": "Sticker | ENCE | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7290.png" + }, + { + "id": "7291", + "name": "Sticker | ENCE (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7291.png" + }, + { + "id": "7292", + "name": "Sticker | ENCE (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7292.png" + }, + { + "id": "7293", + "name": "Sticker | ENCE (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7293.png" + }, + { + "id": "7294", + "name": "Sticker | FURIA | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7294.png" + }, + { + "id": "7295", + "name": "Sticker | FURIA (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7295.png" + }, + { + "id": "7296", + "name": "Sticker | FURIA (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7296.png" + }, + { + "id": "7297", + "name": "Sticker | FURIA (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7297.png" + }, + { + "id": "7298", + "name": "Sticker | Heroic | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7298.png" + }, + { + "id": "7299", + "name": "Sticker | Heroic (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7299.png" + }, + { + "id": "7300", + "name": "Sticker | Heroic (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7300.png" + }, + { + "id": "7301", + "name": "Sticker | Heroic (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7301.png" + }, + { + "id": "7302", + "name": "Sticker | Eternal Fire | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7302.png" + }, + { + "id": "7303", + "name": "Sticker | Eternal Fire (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7303.png" + }, + { + "id": "7304", + "name": "Sticker | Eternal Fire (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7304.png" + }, + { + "id": "7305", + "name": "Sticker | Eternal Fire (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7305.png" + }, + { + "id": "7306", + "name": "Sticker | Apeks | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7306.png" + }, + { + "id": "7307", + "name": "Sticker | Apeks (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7307.png" + }, + { + "id": "7308", + "name": "Sticker | Apeks (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7308.png" + }, + { + "id": "7309", + "name": "Sticker | Apeks (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7309.png" + }, + { + "id": "7310", + "name": "Sticker | GamerLegion | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7310.png" + }, + { + "id": "7311", + "name": "Sticker | GamerLegion (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7311.png" + }, + { + "id": "7312", + "name": "Sticker | GamerLegion (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7312.png" + }, + { + "id": "7313", + "name": "Sticker | GamerLegion (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7313.png" + }, + { + "id": "7314", + "name": "Sticker | SAW | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7314.png" + }, + { + "id": "7315", + "name": "Sticker | SAW (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7315.png" + }, + { + "id": "7316", + "name": "Sticker | SAW (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7316.png" + }, + { + "id": "7317", + "name": "Sticker | SAW (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7317.png" + }, + { + "id": "7318", + "name": "Sticker | paiN Gaming | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7318.png" + }, + { + "id": "7319", + "name": "Sticker | paiN Gaming (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7319.png" + }, + { + "id": "7320", + "name": "Sticker | paiN Gaming (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7320.png" + }, + { + "id": "7321", + "name": "Sticker | paiN Gaming (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7321.png" + }, + { + "id": "7322", + "name": "Sticker | Imperial Esports | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7322.png" + }, + { + "id": "7323", + "name": "Sticker | Imperial Esports (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7323.png" + }, + { + "id": "7324", + "name": "Sticker | Imperial Esports (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7324.png" + }, + { + "id": "7325", + "name": "Sticker | Imperial Esports (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7325.png" + }, + { + "id": "7326", + "name": "Sticker | The MongolZ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7326.png" + }, + { + "id": "7327", + "name": "Sticker | The MongolZ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7327.png" + }, + { + "id": "7328", + "name": "Sticker | The MongolZ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7328.png" + }, + { + "id": "7329", + "name": "Sticker | The MongolZ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7329.png" + }, + { + "id": "7330", + "name": "Sticker | AMKAL ESPORTS | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7330.png" + }, + { + "id": "7331", + "name": "Sticker | AMKAL ESPORTS (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7331.png" + }, + { + "id": "7332", + "name": "Sticker | AMKAL ESPORTS (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7332.png" + }, + { + "id": "7333", + "name": "Sticker | AMKAL ESPORTS (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7333.png" + }, + { + "id": "7334", + "name": "Sticker | ECSTATIC | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7334.png" + }, + { + "id": "7335", + "name": "Sticker | ECSTATIC (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7335.png" + }, + { + "id": "7336", + "name": "Sticker | ECSTATIC (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7336.png" + }, + { + "id": "7337", + "name": "Sticker | ECSTATIC (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7337.png" + }, + { + "id": "7338", + "name": "Sticker | KOI | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7338.png" + }, + { + "id": "7339", + "name": "Sticker | KOI (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7339.png" + }, + { + "id": "7340", + "name": "Sticker | KOI (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7340.png" + }, + { + "id": "7341", + "name": "Sticker | KOI (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7341.png" + }, + { + "id": "7342", + "name": "Sticker | Legacy | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7342.png" + }, + { + "id": "7343", + "name": "Sticker | Legacy (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7343.png" + }, + { + "id": "7344", + "name": "Sticker | Legacy (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7344.png" + }, + { + "id": "7345", + "name": "Sticker | Legacy (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7345.png" + }, + { + "id": "7346", + "name": "Sticker | Lynn Vision | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7346.png" + }, + { + "id": "7347", + "name": "Sticker | Lynn Vision (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7347.png" + }, + { + "id": "7348", + "name": "Sticker | Lynn Vision (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7348.png" + }, + { + "id": "7349", + "name": "Sticker | Lynn Vision (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7349.png" + }, + { + "id": "7350", + "name": "Sticker | PGL | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7350.png" + }, + { + "id": "7351", + "name": "Sticker | PGL (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7351.png" + }, + { + "id": "7352", + "name": "Sticker | PGL (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7352.png" + }, + { + "id": "7353", + "name": "Sticker | PGL (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7353.png" + }, + { + "id": "7379", + "name": "Sticker | jL | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7379.png" + }, + { + "id": "7380", + "name": "Sticker | jL (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7380.png" + }, + { + "id": "7381", + "name": "Sticker | jL (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7381.png" + }, + { + "id": "7382", + "name": "Sticker | jL (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7382.png" + }, + { + "id": "7383", + "name": "Sticker | Aleksib | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7383.png" + }, + { + "id": "7384", + "name": "Sticker | Aleksib (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7384.png" + }, + { + "id": "7385", + "name": "Sticker | Aleksib (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7385.png" + }, + { + "id": "7386", + "name": "Sticker | Aleksib (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7386.png" + }, + { + "id": "7387", + "name": "Sticker | b1t | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7387.png" + }, + { + "id": "7388", + "name": "Sticker | b1t (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7388.png" + }, + { + "id": "7389", + "name": "Sticker | b1t (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7389.png" + }, + { + "id": "7390", + "name": "Sticker | b1t (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7390.png" + }, + { + "id": "7391", + "name": "Sticker | iM | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7391.png" + }, + { + "id": "7392", + "name": "Sticker | iM (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7392.png" + }, + { + "id": "7393", + "name": "Sticker | iM (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7393.png" + }, + { + "id": "7394", + "name": "Sticker | iM (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7394.png" + }, + { + "id": "7395", + "name": "Sticker | w0nderful | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7395.png" + }, + { + "id": "7396", + "name": "Sticker | w0nderful (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7396.png" + }, + { + "id": "7397", + "name": "Sticker | w0nderful (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7397.png" + }, + { + "id": "7398", + "name": "Sticker | w0nderful (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7398.png" + }, + { + "id": "7399", + "name": "Sticker | fame | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7399.png" + }, + { + "id": "7400", + "name": "Sticker | fame (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7400.png" + }, + { + "id": "7401", + "name": "Sticker | fame (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7401.png" + }, + { + "id": "7402", + "name": "Sticker | fame (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7402.png" + }, + { + "id": "7403", + "name": "Sticker | FL1T | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7403.png" + }, + { + "id": "7404", + "name": "Sticker | FL1T (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7404.png" + }, + { + "id": "7405", + "name": "Sticker | FL1T (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7405.png" + }, + { + "id": "7406", + "name": "Sticker | FL1T (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7406.png" + }, + { + "id": "7407", + "name": "Sticker | Jame | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7407.png" + }, + { + "id": "7408", + "name": "Sticker | Jame (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7408.png" + }, + { + "id": "7409", + "name": "Sticker | Jame (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7409.png" + }, + { + "id": "7410", + "name": "Sticker | Jame (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7410.png" + }, + { + "id": "7411", + "name": "Sticker | mir | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7411.png" + }, + { + "id": "7412", + "name": "Sticker | mir (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7412.png" + }, + { + "id": "7413", + "name": "Sticker | mir (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7413.png" + }, + { + "id": "7414", + "name": "Sticker | mir (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7414.png" + }, + { + "id": "7415", + "name": "Sticker | n0rb3r7 | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7415.png" + }, + { + "id": "7416", + "name": "Sticker | n0rb3r7 (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7416.png" + }, + { + "id": "7417", + "name": "Sticker | n0rb3r7 (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7417.png" + }, + { + "id": "7418", + "name": "Sticker | n0rb3r7 (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7418.png" + }, + { + "id": "7419", + "name": "Sticker | HooXi | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7419.png" + }, + { + "id": "7420", + "name": "Sticker | HooXi (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7420.png" + }, + { + "id": "7421", + "name": "Sticker | HooXi (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7421.png" + }, + { + "id": "7422", + "name": "Sticker | HooXi (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7422.png" + }, + { + "id": "7423", + "name": "Sticker | huNter- | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7423.png" + }, + { + "id": "7424", + "name": "Sticker | huNter- (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7424.png" + }, + { + "id": "7425", + "name": "Sticker | huNter- (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7425.png" + }, + { + "id": "7426", + "name": "Sticker | huNter- (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7426.png" + }, + { + "id": "7427", + "name": "Sticker | m0NESY | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7427.png" + }, + { + "id": "7428", + "name": "Sticker | m0NESY (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7428.png" + }, + { + "id": "7429", + "name": "Sticker | m0NESY (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7429.png" + }, + { + "id": "7430", + "name": "Sticker | m0NESY (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7430.png" + }, + { + "id": "7431", + "name": "Sticker | nexa | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7431.png" + }, + { + "id": "7432", + "name": "Sticker | nexa (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7432.png" + }, + { + "id": "7433", + "name": "Sticker | nexa (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7433.png" + }, + { + "id": "7434", + "name": "Sticker | nexa (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7434.png" + }, + { + "id": "7435", + "name": "Sticker | NiKo | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7435.png" + }, + { + "id": "7436", + "name": "Sticker | NiKo (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7436.png" + }, + { + "id": "7437", + "name": "Sticker | NiKo (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7437.png" + }, + { + "id": "7438", + "name": "Sticker | NiKo (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7438.png" + }, + { + "id": "7439", + "name": "Sticker | broky | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7439.png" + }, + { + "id": "7440", + "name": "Sticker | broky (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7440.png" + }, + { + "id": "7441", + "name": "Sticker | broky (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7441.png" + }, + { + "id": "7442", + "name": "Sticker | broky (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7442.png" + }, + { + "id": "7443", + "name": "Sticker | frozen | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7443.png" + }, + { + "id": "7444", + "name": "Sticker | frozen (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7444.png" + }, + { + "id": "7445", + "name": "Sticker | frozen (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7445.png" + }, + { + "id": "7446", + "name": "Sticker | frozen (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7446.png" + }, + { + "id": "7447", + "name": "Sticker | karrigan | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7447.png" + }, + { + "id": "7448", + "name": "Sticker | karrigan (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7448.png" + }, + { + "id": "7449", + "name": "Sticker | karrigan (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7449.png" + }, + { + "id": "7450", + "name": "Sticker | karrigan (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7450.png" + }, + { + "id": "7451", + "name": "Sticker | rain | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7451.png" + }, + { + "id": "7452", + "name": "Sticker | rain (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7452.png" + }, + { + "id": "7453", + "name": "Sticker | rain (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7453.png" + }, + { + "id": "7454", + "name": "Sticker | rain (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7454.png" + }, + { + "id": "7455", + "name": "Sticker | ropz | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7455.png" + }, + { + "id": "7456", + "name": "Sticker | ropz (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7456.png" + }, + { + "id": "7457", + "name": "Sticker | ropz (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7457.png" + }, + { + "id": "7458", + "name": "Sticker | ropz (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7458.png" + }, + { + "id": "7459", + "name": "Sticker | chopper | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7459.png" + }, + { + "id": "7460", + "name": "Sticker | chopper (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7460.png" + }, + { + "id": "7461", + "name": "Sticker | chopper (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7461.png" + }, + { + "id": "7462", + "name": "Sticker | chopper (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7462.png" + }, + { + "id": "7463", + "name": "Sticker | donk | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7463.png" + }, + { + "id": "7464", + "name": "Sticker | donk (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7464.png" + }, + { + "id": "7465", + "name": "Sticker | donk (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7465.png" + }, + { + "id": "7466", + "name": "Sticker | donk (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7466.png" + }, + { + "id": "7467", + "name": "Sticker | magixx | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7467.png" + }, + { + "id": "7468", + "name": "Sticker | magixx (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7468.png" + }, + { + "id": "7469", + "name": "Sticker | magixx (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7469.png" + }, + { + "id": "7470", + "name": "Sticker | magixx (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7470.png" + }, + { + "id": "7471", + "name": "Sticker | sh1ro | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7471.png" + }, + { + "id": "7472", + "name": "Sticker | sh1ro (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7472.png" + }, + { + "id": "7473", + "name": "Sticker | sh1ro (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7473.png" + }, + { + "id": "7474", + "name": "Sticker | sh1ro (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7474.png" + }, + { + "id": "7475", + "name": "Sticker | zont1x | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7475.png" + }, + { + "id": "7476", + "name": "Sticker | zont1x (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7476.png" + }, + { + "id": "7477", + "name": "Sticker | zont1x (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7477.png" + }, + { + "id": "7478", + "name": "Sticker | zont1x (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7478.png" + }, + { + "id": "7479", + "name": "Sticker | apEX | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7479.png" + }, + { + "id": "7480", + "name": "Sticker | apEX (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7480.png" + }, + { + "id": "7481", + "name": "Sticker | apEX (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7481.png" + }, + { + "id": "7482", + "name": "Sticker | apEX (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7482.png" + }, + { + "id": "7483", + "name": "Sticker | FlameZ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7483.png" + }, + { + "id": "7484", + "name": "Sticker | FlameZ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7484.png" + }, + { + "id": "7485", + "name": "Sticker | FlameZ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7485.png" + }, + { + "id": "7486", + "name": "Sticker | FlameZ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7486.png" + }, + { + "id": "7487", + "name": "Sticker | mezii | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7487.png" + }, + { + "id": "7488", + "name": "Sticker | mezii (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7488.png" + }, + { + "id": "7489", + "name": "Sticker | mezii (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7489.png" + }, + { + "id": "7490", + "name": "Sticker | mezii (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7490.png" + }, + { + "id": "7491", + "name": "Sticker | Spinx | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7491.png" + }, + { + "id": "7492", + "name": "Sticker | Spinx (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7492.png" + }, + { + "id": "7493", + "name": "Sticker | Spinx (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7493.png" + }, + { + "id": "7494", + "name": "Sticker | Spinx (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7494.png" + }, + { + "id": "7495", + "name": "Sticker | ZywOo | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7495.png" + }, + { + "id": "7496", + "name": "Sticker | ZywOo (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7496.png" + }, + { + "id": "7497", + "name": "Sticker | ZywOo (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7497.png" + }, + { + "id": "7498", + "name": "Sticker | ZywOo (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7498.png" + }, + { + "id": "7499", + "name": "Sticker | Brollan | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7499.png" + }, + { + "id": "7500", + "name": "Sticker | Brollan (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7500.png" + }, + { + "id": "7501", + "name": "Sticker | Brollan (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7501.png" + }, + { + "id": "7502", + "name": "Sticker | Brollan (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7502.png" + }, + { + "id": "7503", + "name": "Sticker | Jimpphat | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7503.png" + }, + { + "id": "7504", + "name": "Sticker | Jimpphat (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7504.png" + }, + { + "id": "7505", + "name": "Sticker | Jimpphat (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7505.png" + }, + { + "id": "7506", + "name": "Sticker | Jimpphat (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7506.png" + }, + { + "id": "7507", + "name": "Sticker | siuhy | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7507.png" + }, + { + "id": "7508", + "name": "Sticker | siuhy (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7508.png" + }, + { + "id": "7509", + "name": "Sticker | siuhy (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7509.png" + }, + { + "id": "7510", + "name": "Sticker | siuhy (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7510.png" + }, + { + "id": "7511", + "name": "Sticker | torzsi | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7511.png" + }, + { + "id": "7512", + "name": "Sticker | torzsi (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7512.png" + }, + { + "id": "7513", + "name": "Sticker | torzsi (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7513.png" + }, + { + "id": "7514", + "name": "Sticker | torzsi (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7514.png" + }, + { + "id": "7515", + "name": "Sticker | xertioN | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7515.png" + }, + { + "id": "7516", + "name": "Sticker | xertioN (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7516.png" + }, + { + "id": "7517", + "name": "Sticker | xertioN (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7517.png" + }, + { + "id": "7518", + "name": "Sticker | xertioN (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7518.png" + }, + { + "id": "7519", + "name": "Sticker | hallzerk | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7519.png" + }, + { + "id": "7520", + "name": "Sticker | hallzerk (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7520.png" + }, + { + "id": "7521", + "name": "Sticker | hallzerk (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7521.png" + }, + { + "id": "7522", + "name": "Sticker | hallzerk (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7522.png" + }, + { + "id": "7523", + "name": "Sticker | EliGE | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7523.png" + }, + { + "id": "7524", + "name": "Sticker | EliGE (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7524.png" + }, + { + "id": "7525", + "name": "Sticker | EliGE (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7525.png" + }, + { + "id": "7526", + "name": "Sticker | EliGE (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7526.png" + }, + { + "id": "7527", + "name": "Sticker | floppy | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7527.png" + }, + { + "id": "7528", + "name": "Sticker | floppy (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7528.png" + }, + { + "id": "7529", + "name": "Sticker | floppy (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7529.png" + }, + { + "id": "7530", + "name": "Sticker | floppy (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7530.png" + }, + { + "id": "7531", + "name": "Sticker | Grim | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7531.png" + }, + { + "id": "7532", + "name": "Sticker | Grim (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7532.png" + }, + { + "id": "7533", + "name": "Sticker | Grim (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7533.png" + }, + { + "id": "7534", + "name": "Sticker | Grim (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7534.png" + }, + { + "id": "7535", + "name": "Sticker | JT | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7535.png" + }, + { + "id": "7536", + "name": "Sticker | JT (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7536.png" + }, + { + "id": "7537", + "name": "Sticker | JT (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7537.png" + }, + { + "id": "7538", + "name": "Sticker | JT (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7538.png" + }, + { + "id": "7539", + "name": "Sticker | Ax1Le | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7539.png" + }, + { + "id": "7540", + "name": "Sticker | Ax1Le (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7540.png" + }, + { + "id": "7541", + "name": "Sticker | Ax1Le (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7541.png" + }, + { + "id": "7542", + "name": "Sticker | Ax1Le (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7542.png" + }, + { + "id": "7543", + "name": "Sticker | Boombl4 | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7543.png" + }, + { + "id": "7544", + "name": "Sticker | Boombl4 (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7544.png" + }, + { + "id": "7545", + "name": "Sticker | Boombl4 (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7545.png" + }, + { + "id": "7546", + "name": "Sticker | Boombl4 (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7546.png" + }, + { + "id": "7547", + "name": "Sticker | electronic | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7547.png" + }, + { + "id": "7548", + "name": "Sticker | electronic (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7548.png" + }, + { + "id": "7549", + "name": "Sticker | electronic (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7549.png" + }, + { + "id": "7550", + "name": "Sticker | electronic (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7550.png" + }, + { + "id": "7551", + "name": "Sticker | Hobbit | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7551.png" + }, + { + "id": "7552", + "name": "Sticker | Hobbit (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7552.png" + }, + { + "id": "7553", + "name": "Sticker | Hobbit (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7553.png" + }, + { + "id": "7554", + "name": "Sticker | Hobbit (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7554.png" + }, + { + "id": "7555", + "name": "Sticker | Perfecto | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7555.png" + }, + { + "id": "7556", + "name": "Sticker | Perfecto (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7556.png" + }, + { + "id": "7557", + "name": "Sticker | Perfecto (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7557.png" + }, + { + "id": "7558", + "name": "Sticker | Perfecto (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7558.png" + }, + { + "id": "7559", + "name": "Sticker | Goofy | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7559.png" + }, + { + "id": "7560", + "name": "Sticker | Goofy (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7560.png" + }, + { + "id": "7561", + "name": "Sticker | Goofy (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7561.png" + }, + { + "id": "7562", + "name": "Sticker | Goofy (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7562.png" + }, + { + "id": "7563", + "name": "Sticker | Kylar | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7563.png" + }, + { + "id": "7564", + "name": "Sticker | Kylar (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7564.png" + }, + { + "id": "7565", + "name": "Sticker | Kylar (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7565.png" + }, + { + "id": "7566", + "name": "Sticker | Kylar (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7566.png" + }, + { + "id": "7567", + "name": "Sticker | Dycha | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7567.png" + }, + { + "id": "7568", + "name": "Sticker | Dycha (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7568.png" + }, + { + "id": "7569", + "name": "Sticker | Dycha (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7569.png" + }, + { + "id": "7570", + "name": "Sticker | Dycha (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7570.png" + }, + { + "id": "7571", + "name": "Sticker | gla1ve | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7571.png" + }, + { + "id": "7572", + "name": "Sticker | gla1ve (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7572.png" + }, + { + "id": "7573", + "name": "Sticker | gla1ve (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7573.png" + }, + { + "id": "7574", + "name": "Sticker | gla1ve (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7574.png" + }, + { + "id": "7575", + "name": "Sticker | hades | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7575.png" + }, + { + "id": "7576", + "name": "Sticker | hades (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7576.png" + }, + { + "id": "7577", + "name": "Sticker | hades (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7577.png" + }, + { + "id": "7578", + "name": "Sticker | hades (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7578.png" + }, + { + "id": "7579", + "name": "Sticker | arT | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7579.png" + }, + { + "id": "7580", + "name": "Sticker | arT (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7580.png" + }, + { + "id": "7581", + "name": "Sticker | arT (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7581.png" + }, + { + "id": "7582", + "name": "Sticker | arT (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7582.png" + }, + { + "id": "7583", + "name": "Sticker | chelo | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7583.png" + }, + { + "id": "7584", + "name": "Sticker | chelo (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7584.png" + }, + { + "id": "7585", + "name": "Sticker | chelo (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7585.png" + }, + { + "id": "7586", + "name": "Sticker | chelo (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7586.png" + }, + { + "id": "7587", + "name": "Sticker | FalleN | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7587.png" + }, + { + "id": "7588", + "name": "Sticker | FalleN (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7588.png" + }, + { + "id": "7589", + "name": "Sticker | FalleN (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7589.png" + }, + { + "id": "7590", + "name": "Sticker | FalleN (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7590.png" + }, + { + "id": "7591", + "name": "Sticker | KSCERATO | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7591.png" + }, + { + "id": "7592", + "name": "Sticker | KSCERATO (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7592.png" + }, + { + "id": "7593", + "name": "Sticker | KSCERATO (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7593.png" + }, + { + "id": "7594", + "name": "Sticker | KSCERATO (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7594.png" + }, + { + "id": "7595", + "name": "Sticker | yuurih | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7595.png" + }, + { + "id": "7596", + "name": "Sticker | yuurih (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7596.png" + }, + { + "id": "7597", + "name": "Sticker | yuurih (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7597.png" + }, + { + "id": "7598", + "name": "Sticker | yuurih (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7598.png" + }, + { + "id": "7599", + "name": "Sticker | kyxsan | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7599.png" + }, + { + "id": "7600", + "name": "Sticker | kyxsan (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7600.png" + }, + { + "id": "7601", + "name": "Sticker | kyxsan (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7601.png" + }, + { + "id": "7602", + "name": "Sticker | kyxsan (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7602.png" + }, + { + "id": "7603", + "name": "Sticker | NertZ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7603.png" + }, + { + "id": "7604", + "name": "Sticker | NertZ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7604.png" + }, + { + "id": "7605", + "name": "Sticker | NertZ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7605.png" + }, + { + "id": "7606", + "name": "Sticker | NertZ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7606.png" + }, + { + "id": "7607", + "name": "Sticker | nicoodoz | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7607.png" + }, + { + "id": "7608", + "name": "Sticker | nicoodoz (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7608.png" + }, + { + "id": "7609", + "name": "Sticker | nicoodoz (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7609.png" + }, + { + "id": "7610", + "name": "Sticker | nicoodoz (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7610.png" + }, + { + "id": "7611", + "name": "Sticker | sjuush | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7611.png" + }, + { + "id": "7612", + "name": "Sticker | sjuush (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7612.png" + }, + { + "id": "7613", + "name": "Sticker | sjuush (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7613.png" + }, + { + "id": "7614", + "name": "Sticker | sjuush (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7614.png" + }, + { + "id": "7615", + "name": "Sticker | TeSeS | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7615.png" + }, + { + "id": "7616", + "name": "Sticker | TeSeS (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7616.png" + }, + { + "id": "7617", + "name": "Sticker | TeSeS (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7617.png" + }, + { + "id": "7618", + "name": "Sticker | TeSeS (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7618.png" + }, + { + "id": "7619", + "name": "Sticker | Calyx | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7619.png" + }, + { + "id": "7620", + "name": "Sticker | Calyx (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7620.png" + }, + { + "id": "7621", + "name": "Sticker | Calyx (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7621.png" + }, + { + "id": "7622", + "name": "Sticker | Calyx (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7622.png" + }, + { + "id": "7623", + "name": "Sticker | MAJ3R | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7623.png" + }, + { + "id": "7624", + "name": "Sticker | MAJ3R (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7624.png" + }, + { + "id": "7625", + "name": "Sticker | MAJ3R (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7625.png" + }, + { + "id": "7626", + "name": "Sticker | MAJ3R (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7626.png" + }, + { + "id": "7627", + "name": "Sticker | Wicadia | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7627.png" + }, + { + "id": "7628", + "name": "Sticker | Wicadia (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7628.png" + }, + { + "id": "7629", + "name": "Sticker | Wicadia (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7629.png" + }, + { + "id": "7630", + "name": "Sticker | Wicadia (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7630.png" + }, + { + "id": "7631", + "name": "Sticker | woxic | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7631.png" + }, + { + "id": "7632", + "name": "Sticker | woxic (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7632.png" + }, + { + "id": "7633", + "name": "Sticker | woxic (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7633.png" + }, + { + "id": "7634", + "name": "Sticker | woxic (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7634.png" + }, + { + "id": "7635", + "name": "Sticker | XANTARES | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7635.png" + }, + { + "id": "7636", + "name": "Sticker | XANTARES (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7636.png" + }, + { + "id": "7637", + "name": "Sticker | XANTARES (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7637.png" + }, + { + "id": "7638", + "name": "Sticker | XANTARES (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7638.png" + }, + { + "id": "7639", + "name": "Sticker | nawwk | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7639.png" + }, + { + "id": "7640", + "name": "Sticker | nawwk (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7640.png" + }, + { + "id": "7641", + "name": "Sticker | nawwk (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7641.png" + }, + { + "id": "7642", + "name": "Sticker | nawwk (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7642.png" + }, + { + "id": "7643", + "name": "Sticker | CacaNito | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7643.png" + }, + { + "id": "7644", + "name": "Sticker | CacaNito (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7644.png" + }, + { + "id": "7645", + "name": "Sticker | CacaNito (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7645.png" + }, + { + "id": "7646", + "name": "Sticker | CacaNito (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7646.png" + }, + { + "id": "7647", + "name": "Sticker | jkaem | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7647.png" + }, + { + "id": "7648", + "name": "Sticker | jkaem (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7648.png" + }, + { + "id": "7649", + "name": "Sticker | jkaem (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7649.png" + }, + { + "id": "7650", + "name": "Sticker | jkaem (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7650.png" + }, + { + "id": "7651", + "name": "Sticker | sense | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7651.png" + }, + { + "id": "7652", + "name": "Sticker | sense (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7652.png" + }, + { + "id": "7653", + "name": "Sticker | sense (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7653.png" + }, + { + "id": "7654", + "name": "Sticker | sense (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7654.png" + }, + { + "id": "7655", + "name": "Sticker | STYKO | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7655.png" + }, + { + "id": "7656", + "name": "Sticker | STYKO (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7656.png" + }, + { + "id": "7657", + "name": "Sticker | STYKO (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7657.png" + }, + { + "id": "7658", + "name": "Sticker | STYKO (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7658.png" + }, + { + "id": "7659", + "name": "Sticker | acoR | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7659.png" + }, + { + "id": "7660", + "name": "Sticker | acoR (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7660.png" + }, + { + "id": "7661", + "name": "Sticker | acoR (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7661.png" + }, + { + "id": "7662", + "name": "Sticker | acoR (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7662.png" + }, + { + "id": "7663", + "name": "Sticker | isak | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7663.png" + }, + { + "id": "7664", + "name": "Sticker | isak (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7664.png" + }, + { + "id": "7665", + "name": "Sticker | isak (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7665.png" + }, + { + "id": "7666", + "name": "Sticker | isak (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7666.png" + }, + { + "id": "7667", + "name": "Sticker | Keoz | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7667.png" + }, + { + "id": "7668", + "name": "Sticker | Keoz (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7668.png" + }, + { + "id": "7669", + "name": "Sticker | Keoz (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7669.png" + }, + { + "id": "7670", + "name": "Sticker | Keoz (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7670.png" + }, + { + "id": "7671", + "name": "Sticker | Snax | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7671.png" + }, + { + "id": "7672", + "name": "Sticker | Snax (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7672.png" + }, + { + "id": "7673", + "name": "Sticker | Snax (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7673.png" + }, + { + "id": "7674", + "name": "Sticker | Snax (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7674.png" + }, + { + "id": "7675", + "name": "Sticker | volt | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7675.png" + }, + { + "id": "7676", + "name": "Sticker | volt (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7676.png" + }, + { + "id": "7677", + "name": "Sticker | volt (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7677.png" + }, + { + "id": "7678", + "name": "Sticker | volt (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7678.png" + }, + { + "id": "7679", + "name": "Sticker | arrozdoce | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7679.png" + }, + { + "id": "7680", + "name": "Sticker | arrozdoce (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7680.png" + }, + { + "id": "7681", + "name": "Sticker | arrozdoce (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7681.png" + }, + { + "id": "7682", + "name": "Sticker | arrozdoce (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7682.png" + }, + { + "id": "7683", + "name": "Sticker | ewjerkz | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7683.png" + }, + { + "id": "7684", + "name": "Sticker | ewjerkz (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7684.png" + }, + { + "id": "7685", + "name": "Sticker | ewjerkz (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7685.png" + }, + { + "id": "7686", + "name": "Sticker | ewjerkz (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7686.png" + }, + { + "id": "7687", + "name": "Sticker | MUTiRiS | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7687.png" + }, + { + "id": "7688", + "name": "Sticker | MUTiRiS (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7688.png" + }, + { + "id": "7689", + "name": "Sticker | MUTiRiS (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7689.png" + }, + { + "id": "7690", + "name": "Sticker | MUTiRiS (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7690.png" + }, + { + "id": "7691", + "name": "Sticker | roman | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7691.png" + }, + { + "id": "7692", + "name": "Sticker | roman (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7692.png" + }, + { + "id": "7693", + "name": "Sticker | roman (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7693.png" + }, + { + "id": "7694", + "name": "Sticker | roman (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7694.png" + }, + { + "id": "7695", + "name": "Sticker | story | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7695.png" + }, + { + "id": "7696", + "name": "Sticker | story (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7696.png" + }, + { + "id": "7697", + "name": "Sticker | story (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7697.png" + }, + { + "id": "7698", + "name": "Sticker | story (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7698.png" + }, + { + "id": "7699", + "name": "Sticker | biguzera | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7699.png" + }, + { + "id": "7700", + "name": "Sticker | biguzera (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7700.png" + }, + { + "id": "7701", + "name": "Sticker | biguzera (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7701.png" + }, + { + "id": "7702", + "name": "Sticker | biguzera (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7702.png" + }, + { + "id": "7703", + "name": "Sticker | kauez | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7703.png" + }, + { + "id": "7704", + "name": "Sticker | kauez (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7704.png" + }, + { + "id": "7705", + "name": "Sticker | kauez (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7705.png" + }, + { + "id": "7706", + "name": "Sticker | kauez (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7706.png" + }, + { + "id": "7707", + "name": "Sticker | lux | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7707.png" + }, + { + "id": "7708", + "name": "Sticker | lux (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7708.png" + }, + { + "id": "7709", + "name": "Sticker | lux (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7709.png" + }, + { + "id": "7710", + "name": "Sticker | lux (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7710.png" + }, + { + "id": "7711", + "name": "Sticker | n1ssim | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7711.png" + }, + { + "id": "7712", + "name": "Sticker | n1ssim (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7712.png" + }, + { + "id": "7713", + "name": "Sticker | n1ssim (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7713.png" + }, + { + "id": "7714", + "name": "Sticker | n1ssim (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7714.png" + }, + { + "id": "7715", + "name": "Sticker | NQZ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7715.png" + }, + { + "id": "7716", + "name": "Sticker | NQZ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7716.png" + }, + { + "id": "7717", + "name": "Sticker | NQZ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7717.png" + }, + { + "id": "7718", + "name": "Sticker | NQZ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7718.png" + }, + { + "id": "7719", + "name": "Sticker | decenty | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7719.png" + }, + { + "id": "7720", + "name": "Sticker | decenty (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7720.png" + }, + { + "id": "7721", + "name": "Sticker | decenty (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7721.png" + }, + { + "id": "7722", + "name": "Sticker | decenty (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7722.png" + }, + { + "id": "7723", + "name": "Sticker | felps | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7723.png" + }, + { + "id": "7724", + "name": "Sticker | felps (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7724.png" + }, + { + "id": "7725", + "name": "Sticker | felps (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7725.png" + }, + { + "id": "7726", + "name": "Sticker | felps (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7726.png" + }, + { + "id": "7727", + "name": "Sticker | HEN1 | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7727.png" + }, + { + "id": "7728", + "name": "Sticker | HEN1 (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7728.png" + }, + { + "id": "7729", + "name": "Sticker | HEN1 (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7729.png" + }, + { + "id": "7730", + "name": "Sticker | HEN1 (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7730.png" + }, + { + "id": "7731", + "name": "Sticker | noway | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7731.png" + }, + { + "id": "7732", + "name": "Sticker | noway (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7732.png" + }, + { + "id": "7733", + "name": "Sticker | noway (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7733.png" + }, + { + "id": "7734", + "name": "Sticker | noway (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7734.png" + }, + { + "id": "7735", + "name": "Sticker | VINI | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7735.png" + }, + { + "id": "7736", + "name": "Sticker | VINI (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7736.png" + }, + { + "id": "7737", + "name": "Sticker | VINI (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7737.png" + }, + { + "id": "7738", + "name": "Sticker | VINI (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7738.png" + }, + { + "id": "7739", + "name": "Sticker | 910 | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7739.png" + }, + { + "id": "7740", + "name": "Sticker | 910 (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7740.png" + }, + { + "id": "7741", + "name": "Sticker | 910 (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7741.png" + }, + { + "id": "7742", + "name": "Sticker | 910 (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7742.png" + }, + { + "id": "7743", + "name": "Sticker | bLitz | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7743.png" + }, + { + "id": "7744", + "name": "Sticker | bLitz (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7744.png" + }, + { + "id": "7745", + "name": "Sticker | bLitz (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7745.png" + }, + { + "id": "7746", + "name": "Sticker | bLitz (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7746.png" + }, + { + "id": "7747", + "name": "Sticker | mzinho | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7747.png" + }, + { + "id": "7748", + "name": "Sticker | mzinho (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7748.png" + }, + { + "id": "7749", + "name": "Sticker | mzinho (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7749.png" + }, + { + "id": "7750", + "name": "Sticker | mzinho (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7750.png" + }, + { + "id": "7751", + "name": "Sticker | Senzu | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7751.png" + }, + { + "id": "7752", + "name": "Sticker | Senzu (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7752.png" + }, + { + "id": "7753", + "name": "Sticker | Senzu (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7753.png" + }, + { + "id": "7754", + "name": "Sticker | Senzu (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7754.png" + }, + { + "id": "7755", + "name": "Sticker | Techno4K | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7755.png" + }, + { + "id": "7756", + "name": "Sticker | Techno4K (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7756.png" + }, + { + "id": "7757", + "name": "Sticker | Techno4K (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7757.png" + }, + { + "id": "7758", + "name": "Sticker | Techno4K (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7758.png" + }, + { + "id": "7759", + "name": "Sticker | Forester | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7759.png" + }, + { + "id": "7760", + "name": "Sticker | Forester (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7760.png" + }, + { + "id": "7761", + "name": "Sticker | Forester (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7761.png" + }, + { + "id": "7762", + "name": "Sticker | Forester (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7762.png" + }, + { + "id": "7763", + "name": "Sticker | ICY | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7763.png" + }, + { + "id": "7764", + "name": "Sticker | ICY (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7764.png" + }, + { + "id": "7765", + "name": "Sticker | ICY (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7765.png" + }, + { + "id": "7766", + "name": "Sticker | ICY (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7766.png" + }, + { + "id": "7767", + "name": "Sticker | Krad | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7767.png" + }, + { + "id": "7768", + "name": "Sticker | Krad (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7768.png" + }, + { + "id": "7769", + "name": "Sticker | Krad (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7769.png" + }, + { + "id": "7770", + "name": "Sticker | Krad (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7770.png" + }, + { + "id": "7771", + "name": "Sticker | NickelBack | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7771.png" + }, + { + "id": "7772", + "name": "Sticker | NickelBack (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7772.png" + }, + { + "id": "7773", + "name": "Sticker | NickelBack (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7773.png" + }, + { + "id": "7774", + "name": "Sticker | NickelBack (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7774.png" + }, + { + "id": "7775", + "name": "Sticker | TRAVIS | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7775.png" + }, + { + "id": "7776", + "name": "Sticker | TRAVIS (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7776.png" + }, + { + "id": "7777", + "name": "Sticker | TRAVIS (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7777.png" + }, + { + "id": "7778", + "name": "Sticker | TRAVIS (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7778.png" + }, + { + "id": "7779", + "name": "Sticker | kraghen | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7779.png" + }, + { + "id": "7780", + "name": "Sticker | kraghen (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7780.png" + }, + { + "id": "7781", + "name": "Sticker | kraghen (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7781.png" + }, + { + "id": "7782", + "name": "Sticker | kraghen (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7782.png" + }, + { + "id": "7783", + "name": "Sticker | Nodios | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7783.png" + }, + { + "id": "7784", + "name": "Sticker | Nodios (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7784.png" + }, + { + "id": "7785", + "name": "Sticker | Nodios (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7785.png" + }, + { + "id": "7786", + "name": "Sticker | Nodios (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7786.png" + }, + { + "id": "7787", + "name": "Sticker | Patti | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7787.png" + }, + { + "id": "7788", + "name": "Sticker | Patti (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7788.png" + }, + { + "id": "7789", + "name": "Sticker | Patti (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7789.png" + }, + { + "id": "7790", + "name": "Sticker | Patti (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7790.png" + }, + { + "id": "7791", + "name": "Sticker | Queenix | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7791.png" + }, + { + "id": "7792", + "name": "Sticker | Queenix (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7792.png" + }, + { + "id": "7793", + "name": "Sticker | Queenix (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7793.png" + }, + { + "id": "7794", + "name": "Sticker | Queenix (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7794.png" + }, + { + "id": "7795", + "name": "Sticker | salazar | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7795.png" + }, + { + "id": "7796", + "name": "Sticker | salazar (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7796.png" + }, + { + "id": "7797", + "name": "Sticker | salazar (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7797.png" + }, + { + "id": "7798", + "name": "Sticker | salazar (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7798.png" + }, + { + "id": "7799", + "name": "Sticker | adamS | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7799.png" + }, + { + "id": "7800", + "name": "Sticker | adamS (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7800.png" + }, + { + "id": "7801", + "name": "Sticker | adamS (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7801.png" + }, + { + "id": "7802", + "name": "Sticker | adamS (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7802.png" + }, + { + "id": "7803", + "name": "Sticker | dav1g | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7803.png" + }, + { + "id": "7804", + "name": "Sticker | dav1g (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7804.png" + }, + { + "id": "7805", + "name": "Sticker | dav1g (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7805.png" + }, + { + "id": "7806", + "name": "Sticker | dav1g (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7806.png" + }, + { + "id": "7807", + "name": "Sticker | JUST | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7807.png" + }, + { + "id": "7808", + "name": "Sticker | JUST (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7808.png" + }, + { + "id": "7809", + "name": "Sticker | JUST (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7809.png" + }, + { + "id": "7810", + "name": "Sticker | JUST (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7810.png" + }, + { + "id": "7811", + "name": "Sticker | mopoz | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7811.png" + }, + { + "id": "7812", + "name": "Sticker | mopoz (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7812.png" + }, + { + "id": "7813", + "name": "Sticker | mopoz (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7813.png" + }, + { + "id": "7814", + "name": "Sticker | mopoz (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7814.png" + }, + { + "id": "7815", + "name": "Sticker | stadodo | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7815.png" + }, + { + "id": "7816", + "name": "Sticker | stadodo (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7816.png" + }, + { + "id": "7817", + "name": "Sticker | stadodo (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7817.png" + }, + { + "id": "7818", + "name": "Sticker | stadodo (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7818.png" + }, + { + "id": "7819", + "name": "Sticker | b4rtiN | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7819.png" + }, + { + "id": "7820", + "name": "Sticker | b4rtiN (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7820.png" + }, + { + "id": "7821", + "name": "Sticker | b4rtiN (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7821.png" + }, + { + "id": "7822", + "name": "Sticker | b4rtiN (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7822.png" + }, + { + "id": "7823", + "name": "Sticker | coldzera | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7823.png" + }, + { + "id": "7824", + "name": "Sticker | coldzera (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7824.png" + }, + { + "id": "7825", + "name": "Sticker | coldzera (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7825.png" + }, + { + "id": "7826", + "name": "Sticker | coldzera (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7826.png" + }, + { + "id": "7827", + "name": "Sticker | dumau | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7827.png" + }, + { + "id": "7828", + "name": "Sticker | dumau (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7828.png" + }, + { + "id": "7829", + "name": "Sticker | dumau (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7829.png" + }, + { + "id": "7830", + "name": "Sticker | dumau (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7830.png" + }, + { + "id": "7831", + "name": "Sticker | latto | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7831.png" + }, + { + "id": "7832", + "name": "Sticker | latto (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7832.png" + }, + { + "id": "7833", + "name": "Sticker | latto (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7833.png" + }, + { + "id": "7834", + "name": "Sticker | latto (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7834.png" + }, + { + "id": "7835", + "name": "Sticker | NEKiZ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7835.png" + }, + { + "id": "7836", + "name": "Sticker | NEKiZ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7836.png" + }, + { + "id": "7837", + "name": "Sticker | NEKiZ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7837.png" + }, + { + "id": "7838", + "name": "Sticker | NEKiZ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7838.png" + }, + { + "id": "7839", + "name": "Sticker | EmiliaQAQ | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7839.png" + }, + { + "id": "7840", + "name": "Sticker | EmiliaQAQ (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7840.png" + }, + { + "id": "7841", + "name": "Sticker | EmiliaQAQ (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7841.png" + }, + { + "id": "7842", + "name": "Sticker | EmiliaQAQ (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7842.png" + }, + { + "id": "7843", + "name": "Sticker | Jee | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7843.png" + }, + { + "id": "7844", + "name": "Sticker | Jee (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7844.png" + }, + { + "id": "7845", + "name": "Sticker | Jee (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7845.png" + }, + { + "id": "7846", + "name": "Sticker | Jee (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7846.png" + }, + { + "id": "7847", + "name": "Sticker | Starry | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7847.png" + }, + { + "id": "7848", + "name": "Sticker | Starry (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7848.png" + }, + { + "id": "7849", + "name": "Sticker | Starry (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7849.png" + }, + { + "id": "7850", + "name": "Sticker | Starry (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7850.png" + }, + { + "id": "7851", + "name": "Sticker | westmelon | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7851.png" + }, + { + "id": "7852", + "name": "Sticker | westmelon (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7852.png" + }, + { + "id": "7853", + "name": "Sticker | westmelon (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7853.png" + }, + { + "id": "7854", + "name": "Sticker | westmelon (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7854.png" + }, + { + "id": "7855", + "name": "Sticker | z4KR | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7855.png" + }, + { + "id": "7856", + "name": "Sticker | z4KR (Glitter) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7856.png" + }, + { + "id": "7857", + "name": "Sticker | z4KR (Holo) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7857.png" + }, + { + "id": "7858", + "name": "Sticker | z4KR (Gold) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7858.png" + }, + { + "id": "7859", + "name": "Sticker | jL (Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7859.png" + }, + { + "id": "7860", + "name": "Sticker | jL (Glitter, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7860.png" + }, + { + "id": "7861", + "name": "Sticker | jL (Holo, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7861.png" + }, + { + "id": "7862", + "name": "Sticker | jL (Gold, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7862.png" + }, + { + "id": "7863", + "name": "Sticker | Aleksib (Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7863.png" + }, + { + "id": "7864", + "name": "Sticker | Aleksib (Glitter, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7864.png" + }, + { + "id": "7865", + "name": "Sticker | Aleksib (Holo, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7865.png" + }, + { + "id": "7866", + "name": "Sticker | Aleksib (Gold, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7866.png" + }, + { + "id": "7867", + "name": "Sticker | b1t (Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7867.png" + }, + { + "id": "7868", + "name": "Sticker | b1t (Glitter, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7868.png" + }, + { + "id": "7869", + "name": "Sticker | b1t (Holo, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7869.png" + }, + { + "id": "7870", + "name": "Sticker | b1t (Gold, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7870.png" + }, + { + "id": "7871", + "name": "Sticker | iM (Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7871.png" + }, + { + "id": "7872", + "name": "Sticker | iM (Glitter, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7872.png" + }, + { + "id": "7873", + "name": "Sticker | iM (Holo, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7873.png" + }, + { + "id": "7874", + "name": "Sticker | iM (Gold, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7874.png" + }, + { + "id": "7875", + "name": "Sticker | w0nderful (Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7875.png" + }, + { + "id": "7876", + "name": "Sticker | w0nderful (Glitter, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7876.png" + }, + { + "id": "7877", + "name": "Sticker | w0nderful (Holo, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7877.png" + }, + { + "id": "7878", + "name": "Sticker | w0nderful (Gold, Champion) | Copenhagen 2024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7878.png" + }, + { + "id": "7879", + "name": "Sticker | Lefty (T)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7879.png" + }, + { + "id": "7880", + "name": "Sticker | Red Shades (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7880.png" + }, + { + "id": "7881", + "name": "Sticker | Mustachio (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7881.png" + }, + { + "id": "7882", + "name": "Sticker | Bolt Strike", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7882.png" + }, + { + "id": "7883", + "name": "Sticker | Bolt Charge", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7883.png" + }, + { + "id": "7884", + "name": "Sticker | Bolt Energy", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7884.png" + }, + { + "id": "7885", + "name": "Sticker | High Heat", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7885.png" + }, + { + "id": "7886", + "name": "Sticker | Hot Rod Heat", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7886.png" + }, + { + "id": "7887", + "name": "Sticker | Scorch Loop (Reverse)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7887.png" + }, + { + "id": "7888", + "name": "Sticker | Winding Scorch", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7888.png" + }, + { + "id": "7889", + "name": "Sticker | Mirage (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7889.png" + }, + { + "id": "7890", + "name": "Sticker | Overpass (Gold)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7890.png" + }, + { + "id": "7891", + "name": "Sticker | Scorch Loop", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7891.png" + }, + { + "id": "7892", + "name": "Sticker | Boom Detonation", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7892.png" + }, + { + "id": "7893", + "name": "Sticker | Boom Epicenter", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7893.png" + }, + { + "id": "7894", + "name": "Sticker | Boom Blast", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7894.png" + }, + { + "id": "7895", + "name": "Sticker | Boom Trail", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7895.png" + }, + { + "id": "7896", + "name": "Sticker | Rainbow Route (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7896.png" + }, + { + "id": "7897", + "name": "Sticker | Boom Detonation (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7897.png" + }, + { + "id": "7898", + "name": "Sticker | Boom Epicenter (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7898.png" + }, + { + "id": "7899", + "name": "Sticker | Boom Blast (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7899.png" + }, + { + "id": "7900", + "name": "Sticker | Boom Trail (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7900.png" + }, + { + "id": "7901", + "name": "Sticker | Bolt Strike (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7901.png" + }, + { + "id": "7902", + "name": "Sticker | Bolt Charge (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7902.png" + }, + { + "id": "7903", + "name": "Sticker | Bolt Energy (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7903.png" + }, + { + "id": "7904", + "name": "Sticker | Winding Scorch (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7904.png" + }, + { + "id": "7905", + "name": "Sticker | Flex", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7905.png" + }, + { + "id": "7906", + "name": "Sticker | Clown Nose", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7906.png" + }, + { + "id": "7907", + "name": "Sticker | Clown Wig", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7907.png" + }, + { + "id": "7909", + "name": "Sticker | Quick Peek", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7909.png" + }, + { + "id": "7910", + "name": "Sticker | XD", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7910.png" + }, + { + "id": "7911", + "name": "Sticker | Ribbon Tie", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7911.png" + }, + { + "id": "7912", + "name": "Sticker | Taste Bud", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7912.png" + }, + { + "id": "7913", + "name": "Sticker | Kawaii Eyes (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7913.png" + }, + { + "id": "7914", + "name": "Sticker | From The Deep (Glitter)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7914.png" + }, + { + "id": "7915", + "name": "Sticker | Say Cheese (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7915.png" + }, + { + "id": "7916", + "name": "Sticker | Taste Buddy (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7916.png" + }, + { + "id": "7917", + "name": "Sticker | Gold Teef (Foil)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7917.png" + }, + { + "id": "7918", + "name": "Sticker | Side Eyes (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7918.png" + }, + { + "id": "7919", + "name": "Sticker | Googly Eye (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7919.png" + }, + { + "id": "7921", + "name": "Sticker | Hypnoteyes (Holo)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7921.png" + }, + { + "id": "7922", + "name": "Sticker | Hydro Geyser", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7922.png" + }, + { + "id": "7923", + "name": "Sticker | Hydro Stream", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7923.png" + }, + { + "id": "7924", + "name": "Sticker | Hydro Wave", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7924.png" + }, + { + "id": "7925", + "name": "Sticker | Ruby Stream (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7925.png" + }, + { + "id": "7926", + "name": "Sticker | Ruby Wave (Lenticular)", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7926.png" + }, + { + "id": "7927", + "name": "Sticker | Strike A Pose", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sticker-7927.png" + } +] \ No newline at end of file diff --git a/resources/views/appeals/list.blade.php b/resources/views/appeals/list.blade.php index c9e629a..250a00e 100755 --- a/resources/views/appeals/list.blade.php +++ b/resources/views/appeals/list.blade.php @@ -36,7 +36,11 @@